majorityquorum
Majority quorum is a voting threshold used in distributed systems to determine when a decision can be considered valid. In a group of N members, the majority quorum size is floor(N/2) + 1. For example, a 3-node cluster requires 2 votes, a 5-node cluster requires 3, and a 6-node cluster requires 4. This threshold is designed so that any two majorities have at least one member in common, which helps preserve safety properties in consensus protocols.
Rationale and use: Majority quorums underpin consensus mechanisms such as Paxos and Raft. Decisions made with
Fault tolerance and partitions: In a system of N nodes, up to floor((N−1)/2) nodes can fail or
Dynamic membership: Many implementations support changing the set of participating nodes. Reconfiguration must be handled carefully
Relation to other thresholds: Majority quorum differs from supermajority thresholds (such as 2/3) that require a