All challenges
intermediateReal-World Systems~45 min

Gossip Protocol

Spread state across a cluster with no coordinator — the way rumors spread through a crowd. Each node holds versioned key/value state; when two nodes gossip they exchange updates and keep the higher version of every key. Build the versioned store, the anti-entropy merge, a bidirectional gossip exchange, and prove the whole cluster converges. The dissemination layer inside Cassandra, DynamoDB, and Consul.