vote up 0 vote down star

From what I learned, a MySQL MASTER server is one that can both read and write. Correct?

My question is: Suppose you have 2 MySQL master-write servers (and many slave-read servers).

How can you solve the problem of auto-increment? How do you sync it? Suppose you are writing to both the Master1 and Master2...how will you sync it so that the auto-increment is consistent? Can someone please explain the solution to this in a simple sense.

flag

@alex - This isn't really a programming question though – martin clayton Nov 4 at 7:16

1 Answer

vote up 1 vote down check

You set server #1 to use odd numbered auto increment values and server number #2 to use even numbered.

# server 1 
auto_increment_increment 2                                
auto_increment_offset    1   

# server 2
auto_increment_increment 2                                
auto_increment_offset    2

There's a linux how-to which outlines the process. See also MySQL docs on this.

link|flag
But what if one server dies? Then...the server left standing will continue to increment odd? – alex Nov 4 at 7:25
Yes, that would be how it is configured. You would get gaps. – martin clayton Nov 4 at 7:47
Is Gaps OKay ?? – alex Nov 4 at 7:54
Maybe. Depends on how you use the autoincrement values. If you need them to be monotonically increasing with no gaps, you have an issue. If they are unique internal ids in the system, which is usually the case, then gaps are no big deal. – martin clayton Nov 4 at 8:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.