Read the original article at Bulletproofing MySQL replication with checksums
Your MySQL replications running well? You might not even know if
they aren’t. One of the scariest things about MySQL replication
is that it can drift out of sync with the master “silently”. No
errors, no warnings.
- What and Why?
MySQL’s replication solution evolved as a statement based technology. Instead of sending actual block changes, MySQL just has to log committed transactions, and reapply those on the slave side. This affords a wonderful array of topologies and different uses, but has it’s drawbacks. The biggest occur when data does not get updated or changed in the …
[Read more]