---
answer: direct
beat: system-design
source: 1 article · updated: August 7, 2026
---

How does Raft prevent split-brain?

Raft enforces that a leader must receive votes from a quorum (majority) of nodes. In any 2-partition split, only ONE partition can contain enough nodes to reach quorum. The majority partition elects a leader and continues; the minority partition cannot and blocks writes, preventing divergence.

Answered in

Why Raft Consensus Prevents Split-Brain

Raft ensures only one partition can reach quorum, making split-brain impossible. Writes commit to majorities. Powers etcd and CockroachDB.

Crashtech Editorial August 7, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.