Leaderless Replication
Understand the concept of leaderless replication where no single node leads writes, using quorum consensus to manage read/write requests. Learn how databases handle conflicts with versioning, data reconciliation via read repair and anti-entropy, and maintain availability through sloppy quorum and hinted handoff techniques.
We'll cover the following...
Introduction
Single-leader and multileader replication strategies involve a replica called a leader that receives writes and sequences the write for the rest of the replicas. The followers then apply the write requests in the same order dictated by the leader. Leaderless replication is a special class of replication strategy that removes the concept of a leader and treats every replica in the database uniformly.
Amazon published a research paper on the characteristics of a distributed leaderless database in, “ ...