We have Master Database A
and clients DATABASE B
and DATABASE C
.
Now Database A
is having auto_increment = 10000
and auto_increment_offset = 10000
.
We want my clients DATABASE B
and DATABASE C
setted with auto_increment = 10001
and auto_increment_offset = 10000
AND auto_increment = 10002
and auto_increment_offset = 10000
respectively to get merge with Master Database A
.
My question is that above clients part is possible or not, if possible, what is the percentage of getting conflicts and how to avoid it.
Also,about performance that we are concerned as per table auto increment increases by 10000 at a time rather than typical increment by 1.