Skip to content

Consistency models

Category: Distributed systems · Status: stub

One line: The promise a distributed store makes about what a reader will see — from strong consistency, where every read sees the latest write, to eventual consistency, where replicas agree only in the end.

Also called: ACID, BASE, eventual consistency, external consistency.

How it connects

In each language

Elsewhere etcd ↗ is linearizable by default and serializable on request; Cassandra ↗ lets each operation choose how many replicas must respond, from ONE to QUORUM and beyond

Where to read more