Replicated Logs
Quorum Commit
A prefix is committed when a majority holds each leader term in that prefix.
Quorum commit
An entry commits when a majority of nodes hold the leader's term at that index. The committed marker stops before any leader-only suffix. Note: the marker is computed from the logs.
Majority threshold
The quorum is 2 out of 3 nodes. Note: the leader counts only if its entry is present with its term.
a simplified leader-based log replication; quorum commit + log repair are exact on these tiny clusters; full Raft safety, leader election (next book), and network partitions/timing are beyond these traces - no product claims.
Committed marker
The committedIndex is 2 while the leader has 3 entries. Note: the suffix held only by the leader is not committed.
a simplified leader-based log replication; quorum commit + log repair are exact on these tiny clusters; full Raft safety, leader election (next book), and network partitions/timing are beyond these traces - no product claims.
Summary
Quorum commit is a prefix rule: every earlier index must also be quorum-replicated. Note: this is simplified leader-based replication; full Raft safety and leader election are the next book, while partitions and timing are beyond these traces.