This post explains how to disable Arbitration when using MySQL Cluster. It gives a case where this could be useful.
First, a piece of advice: you do not want to run MySQL Cluster
with arbitration disabled. But if you must, e.g. because of
an oversight in your implementation, you can.
Arbitration is very important in MySQL Cluster. It makes sure you
don't end up with a Split Brain situation: 2 halves working
independently, continuing changing data, making it impossible for
them to work together later on.
However, Arbitration comes with a price: you need an extra machine. "Sure, what's …
[Read more]