Should MySQL slave have the same version or higher than Master for replication to work properly?

link|improve this question

50% accept rate
feedback

2 Answers

I would go for the same version to avoid any incompatibilities. Since the queries are executes "as is", both machines need to interpret them identically.

If you can not match the version, go for a higher version on the slave. However, in my own experience MySQL has been known to add "reserved keywords" in newer version, which broke certain queries for me. That might not be a problem since it's a binary log that is used for replication, not plain text queries.

link|improve this answer
1  
Just to supplement jishi's answer, please note that if you're using Row-based replication, both master and slave must be >= 5.1. You cannot replicate 5.1 -> 5.0 in that case. – Fran Jan 18 '11 at 21:35
feedback

Someone asked a similar question about the side effects.

The headers of binary logs are different.

MySQL 5.5 has a 107 byte header in a binary log.
MySQL 5.1 has a 106 byte header in a binary log.
MySQL 5.0 and prior has a 98 byte header in a binary log.

So, by all means, use the same version on both master and slave. Higher version on the Slave is OK.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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