Tune consistency vs availability per operation.
Quorums and R+W>N: tune consistency vs availability per operation
choose the failure mode you can explain
Lower R/W → more availability, less consistency.
Quorum stores (Dynamo-style) replicate to N nodes and let you pick how many must respond for reads (R) and writes (W). R+W>N guarantees you read at least one node that saw the latest write.
Common: N=3, R=2, W=2 — balanced. Any one node down, still works.
Strong-read leaning: N=3, R=3, W=1 — fast writes, slow reads, fragile reads.
Strong-write leaning: N=3, R=1, W=3 — fast reads, fragile writes.
Tunable per-op: critical operations W=ALL; cosmetic R=1.
Cassandra cluster with N=3.