How to handle sequences in Bucardo Postgresql multi master

别等时光非礼了梦想. 提交于 2020-07-09 04:12:44

问题


We are setting up a database on three different Postgresql servers (and maybe on more in the future), currently syncing all tables using bucardo multi-master groups.

We are not syncing sequences; we tried that, and we noticed bucardo is making us lose data when simultaneous writes occur in the same table, on different servers. Since they use the same keys, on sync time bucardo chooses to drop one of the duplicate rows.

Our current approach is to manually namespace the sequence on each instance of the database. E.g. instance 1 is left as it is, all instance2 table sequences are updated to start from 2^31/10, instances3 table sequences will be altered to start from 2^31/10*2 .. instance10 sequences to start from 2^31/10*9.

What is your opinion on this approach and what other advice do you have for a Bucardo multi-master setup? Postgresql BDR is not an option as it is not considered a stable release yet.


回答1:


Sequences must not be replicated in a multi-source setup with Bucardo as conflicts will arise.

Start the sequences in different big numbers is a common, valid, approach. For me is a question about:

  • If you apply "semantic meaning" to the auto incremental primary key, like "insertion order"
  • How do you reason about the data
  • The expected amount of rows that will be generated in each database. For example if most of your rows will be generated from only one of the sources, maybe put the same number of available autoincrements in all the sources is not the best strategy.

If there are only two sources involved in the sync my preferred strategy is use odd numbers for one, and even for the other.

If there are up to nine sources, for me is easy to reason about the data setting up the autoincrement value to 10, and start each db in a different number, 1, 2, ... so, "first database" will generate 1, 11, 21, ... second 2, 12, 22, ... A good thing of this approach is that if you start with four sources and need another one, nothing should be changed. In your suggested strategy if you split all available space between 4 databases, and need another one split again the space is more difficult.

If you are not limited to use autoincremental primary keys, other good options is to use UUID, but for sure it have caveats.



来源:https://stackoverflow.com/questions/30752829/how-to-handle-sequences-in-bucardo-postgresql-multi-master

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