I posted a similar question a bit earlier but I was a bit confused because of the settings already set and by reading this http://mariadb.org/auto-increments-in-galera/ I totally understand and corrected the settings but from what I read the output of the auto increment id will be like
both nodes are increment of 2
node 1 with offset 1
1,3,5,7
node 2 with offset 2
2,4,6,8
but when I create new rows...this happens
create with node 1, node 1, node 2 would give me
1,3,4
it wouldn't give me 2
create with node 1, node 2, node 1, node 2 would give me
1,2,3,4
I am just wondering if this kind of reaction is considered as normal or there is something I am missing that I should correct?
Thanks in advance