AlgoMaster Logo

Split Brain Problem

Medium Priority10 min readUpdated June 12, 2026
AI Mock Interview

Practice this topic in a realistic system design interview

Split-brain is a failure mode where more than one node believes it is the leader and starts making authoritative decisions.

In a healthy leader-based system, one node coordinates writes and others follow. That single-leader rule is what gives the system one ordered history of changes.

Split-brain breaks the rule: a network partition, slow failure detector, or unsafe failover can leave the old leader still accepting writes while another node is promoted in its place. The system now has two sources of truth.

The damage is not always obvious at the moment. It appears later, when the system tries to merge two histories that should never have existed.

What Is Split-Brain?

Premium Content

This content is for premium members only.