codership-mysql contains write set replication patches for MySQL maintained by Codership team.
This patch implements hooks inside MySQL/Innodb engine, which can be used to build external replication system for MySQL servers. The replication system built on these hooks can be asynchronous or synchronous and have single or multi-master support.
The replication hooks provide management of transaction write sets:
* populating of write sets, in the sending side
* applying of write sets, in the receiving end
The applying happens by high priority transaction(s). Innodb lock manager has been modified to give preference to dedicated high priority MySQL threads.
There are also calls for providing "total order isolated" processing of certain SQL statements. This feature guarantees that each MySQL server in the cluster process the SQL statement in the same order and uninterrupted. .e.g. all DDL statements need to be processed isolated, to maintain data consistency in the cluster.
Product's homepage
What's New in This Release: [ read full changelog ]
· better configuration system
· scriptable state transfer methods
· scriptable notifications for cluster and node state changes
· better status reporting for troubleshooting
· better performance through optimized flow control and parallel applying
· higher transparency (many compatibility bugs fixed)