1
我已經設置了2個MySQL服務器:主 - 主複製auto_increment_offset
my.cnf文件服務器1:
auto_increment_increment = 2
auto_increment_offset = 1
my.cnf文件服務器2:
auto_increment_increment = 2
auto_increment_offset = 2
但是當我插入一條記錄由不同服務器提供10次:
INSERT INTO `table1` (`id`, `text`) VALUES (NULL, '22222');
結果:
id text
1 22222
2 22222
5 22222
6 22222
9 22222
...
但我想:
id text
1 22222
2 22222
3 22222
4 22222
5 22222
...
這是可能的嗎?
這樣做會造成潛在的衝突風險。 –