Writes to geographically distributed database

60 Views Asked by At

If we have a database system replicated in geographically separate locations... and we want to allow writes on each of them. What is the best way to do that?

For example: A site like expedia.com allows customers around the world to book any hotel.
Say customers in US, Europe and Asia are looking to book a room in the same hotel. We can read from multiple RO instances which are geographically separated (and replicated), so we show the customers that a room is available in that hotel.
Now if all these customers try to book, the easiest way would be to write to a single instance.
Before writing we check every time, if the room is available or not. If it is still available, we write.
In that way once the first request goes through we can reject the others.
But in this way customer in US (where the master instance is located) will have an unfair advantage as it takes longer time for the write request to go over the wire across long distances.

So we will have to allow write to multiple instance.. and then allow some time for it to sync across instances. But if we write to two instances how will we ensure that only one write request succeeds? I'm sure there must be some industry standard way of doing this. But I can't seem to find anything good to read.

0

There are 0 best solutions below