← writing

Notes from reading the Raft paper

June 21, 2026

This is a dummy post so the design has something to render. Delete it when the real writing starts.

Raft’s core trick is that it makes consensus legible. Where Paxos is a proof that happens to be an algorithm, Raft is an algorithm designed to be taught: leader election, log replication, and safety, each of which can be held in your head separately.

A few things that stuck:

More once I’ve actually implemented it.