With our newest release of Percona XtraDB Cluster, I would like to
highlight a very nice ability to recovery a node and bring it
back to the cluster with an incremental transfer after a
crash.
This feature was available even in previous release, but now I
want to give some details.
So, MySQL crashes from time to time and this a fact of life. HA solution is exactly needed to deal with an one node failure and allowing whole cluster continuing to work.
The idea is, if a node crashed, after it recovered – we just transfer all changes that happened in the cluster, while the node was down. It sounds easy in words, but proven hard when it comes to implementation. It all comes to the question: if mysqld crashes, how do we know what is the last transaction was executed. For a single InnoDB instance it is …
[Read more]