Django 1.8 Migration with Postgres BDR 9.4.1

限于喜欢 提交于 2020-02-02 04:22:53

问题


I am trying to run Django migrations on a Postgres database with BDR.

python manage.py makemigrations

works fine, but running

python manage.py migrate

results in the following error:

ALTER TABLE … ALTER COLUMN TYPE … may only affect UNLOGGED or TEMPORARY tables when BDR is active; auth_permission is a regular table

The offending module is django/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py.

I am not finding anything on how to UNLOGGED tables using Django, especially, since auth_permissions is a Django table (not created by me). I am also not sure if UNLOGGED tables will replicate.

Does anyone have any advice?


回答1:


In order to use migrations with BDR, you would need to create your migrations by hand, using only "safe" operations, because BDR is not currently able to replicate operations such as the one in your migration.

In an email conversation I had recently with support at 2nd Quadrant (the primary sponsors of BDR development), I was given this information on the topic:

There is no timeline in delivering this. It's very hard to accomplish.

You can still alter a column's type, it just takes multiple steps. In general, you do DDL in BDR as if you were doing it with a lock-avoidance approach in stock PostgreSQL. So in this case you:

  • ADD the new column without a DEFAULT and without any NOT NULL, and commit. If needed, also create a trigger to automatically fill the new column when values are inserted. Or ALTER the new column to set a DEFAULT, if that's more appropriate.
  • UPDATE the table to copy values to the new column with new type
  • ALTER the table to make it NOT NULL if appropriate
  • DROP the old column

I also found this article from BrainTree to be a great reference for what could be considered "safe" operations, and how you would have to rewrite the behavior in your migrations.




回答2:


You can override built-in migrations for auth app using the MIGRATION_MODULES setting, for example:

MIGRATION_MODULES = {
    'auth': 'bdr_migrations.auth',
}

Then copy migration files from django package to /project/bdr_migrations/auth/ and adjust them to match BDR restrictions.



来源:https://stackoverflow.com/questions/32748630/django-1-8-migration-with-postgres-bdr-9-4-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!