Leaderless Replication
Source: https://arpitbhayani.me/blogs/leaderless-replication Date: 2022-01-16
Explore leaderless replication - a fault-tolerant, strongly consistent data replication strategy. Learn how it works and its benefits.
Traditional leader-centric replication strategies revolve around the fact that there will be one Master (leader) node that will acknowledge and accept all the writes operations and then replicate the updates across the replicas (read or master). In this essay, we take a look into a different way of replication, called Leaderless Replication, that comes in handy in a multi-master setup that demands strong consistency.
Leader-centric Replication
In a leader-centric replication, there is a Master node that accepts the writes. Upon applying the writes on its copy of data, the database engine sends out the updates across read-replicas or master nodes. Given that all the writes flow through the Master node, the order of the writes is deterministic, slimming down the chances of having a write conflict.




