I have set up normal (non-clustered, ndb) two server Mysql Master-Master replication for high availability. Each server has an application that can update the local database, the changes propagate to the other database via replication.
It is possible that both applications can do an update on the same data item, with the newer one overwriting the older during the replication process. Mysql Cluster solves this problem with a "same value wins" conflict resololution set-up.
Is it possible to setup similar or same conflict resolution rules for non-cluster (ndb) replication?