Reputation: 2731
Is it possible that decentralized mysql solution. Where updates in one mysql server has to reflect on all other regions. Like wise other region changes should sync with remaning regions.
Upvotes: 0
Views: 487
Reputation: 25
Some popular solutions are:
Master/Master replication. Can scale indefinitely, but the two master databases can have conflicting data, unlike the master/slave scenario. When that happens, you will also have to code somewhat complex solutions in your application to deal with the corrupt data. It is also possible to set a master that sends data to a slave that happens to be a master of another slave, binding all in a master/slave system that goes in circles.
With any of these strategies, changes you make to one database are replicated to 1 or more.
Upvotes: 1
Reputation: 1471
You could use Mysql Cluster solution https://dev.mysql.com/downloads/cluster/
Upvotes: 0