Split Brain
Also known as:
Dual Leadership
Cluster Partition
Definition
Split brain is a failure where two or more nodes both think they are the leader, usually because a network partition has cut the cluster in half. Each side keeps accepting writes and the data starts to diverge. Without something to stop one side from making changes, the shared state ends up corrupted.
Popular reads
View All
Cursor Skills: How to Create and Use Agent Skills
Jun 23, 2026
Payment System Design: Ledger, Idempotency, and Settlement
Jul 18, 2026
X Algorithm Explained: How the Open Source Recommendation System Works
Jan 22, 2026
Complete Guide to Graph Data Structure: BFS, DFS, Adjacency List vs Matrix
Jan 20, 2026
The Complete HTMX Guide: From Zero to Production
Dec 22, 2025
Transactional Outbox Pattern: Never Lose an Event Again
Apr 07, 2026
Key Takeaways
- Split brain happens when liveness, the desire that someone has to lead, is put ahead of safety, the rule that only one can lead.
- A correct system uses a quorum and fencing tokens so the minority side cannot commit changes.
- With N replicas, only one partition can have a majority. That side keeps serving writes. The other side has to step down or refuse.
- Detection alone is not enough. The system has to actively kill the other node, often called STONITH, or invalidate its writes through fencing.
How It Works
- A network failure cuts off some replicas from the rest of the cluster.
- Each side runs failure detection, misses heartbeats, and starts a leader election.
- Without a quorum rule, both sides can elect their own leader and start taking writes.
- When the partition heals, the two sides have conflicting state and someone has to reconcile or roll back, often by hand.
Where It Is Used
- MongoDB, Redis Sentinel, and Kafka all use quorum based leader election to make split brain unlikely or bounded.
- Galera Cluster and PostgreSQL clusters used to suffer from split brain when partitions outpaced quorum logic.
- VMware vSphere uses STONITH to forcibly kill a partitioned host before it can write.