December 2023
Intermediate to advanced
464 pages
12h 35m
English
Have a single server to coordinate replication across a set of servers.
To achieve fault tolerance in systems that manage data, the data needs to be replicated on multiple servers.
It’s also important to give some guarantee about consistency to clients. When data is updated on multiple servers, you need to decide when to make it visible to clients. Write and read Majority Quorum is not sufficient, as some failure scenarios can cause clients to see data inconsistently. Each individual server does not know about the state of data on the other servers in the quorum. It’s only when data is read from multiple servers, the inconsistencies can be resolved. In some cases, this is not enough. Stronger guarantees ...