Consistency Models and Distributed Databases Questions
Data correctness across distributed systems: strong versus eventual consistency, the CAP and PACELC trade-offs, consensus and quorum reads/writes, and consistency-versus-availability decisions. Covers how distributed databases reconcile replicas and what guarantees applications can rely on. A staple of distributed-systems and architecture interviews.
Explain read-repair and anti-entropy (background) repair in replicated stores. Compare their roles, their performance impacts, and when you would tune one over the other. Cover the operational side too: how you would schedule and prioritize background repair at scale, how you would detect divergence cheaply across millions of keys, and what you would monitor to know it is working.
Sample Answer
Direct answer
Read-repair and anti-entropy are the two standard ways a replicated store fixes replicas that have drifted apart: read-repair is reactive, fixing divergence the moment a read happens to touch it, and anti-entropy is proactive, a background process that scans and reconciles replicas continuously, regardless of whether anyone reads that data. You tune read-repair up when correctness of frequently-read keys matters most and you can afford slightly higher read latency; you tune anti-entropy up (or its scheduling more aggressive) when data is rarely read but must still converge, or when you need a floor on staleness independent of read traffic.
Structured elaboration
- Read-repair: on a read, the coordinator queries multiple replicas, compares their values, returns the most recent one to the client, and asynchronously (or synchronously, in "read-repair-blocking" mode) writes the corrected value back to the stale replicas. Its coverage is limited to keys that actually get read; a key nobody reads never gets repaired this way.
- Anti-entropy: a background process (commonly using Merkle trees or version-vector comparisons) periodically compares whole replicas or partitions of them, independent of read traffic, and repairs whatever divergence it finds. It guarantees eventual convergence even for cold keys, at the cost of continuous background I/O and bandwidth.
Operationally, running anti-entropy well at scale requires: scheduling and staggering (so a full sweep does not hit every node's disk and network at once), prioritization (hot or business-critical keys first, so the highest-impact divergence is fixed soonest), bandwidth control (throttling so the repair traffic does not starve foreground reads and writes), verification via checksums or Merkle trees (comparing hashes of subtrees rather than every raw key, so divergence detection is cheap), and resuming cleanly after a node crash mid-sweep rather than restarting the whole comparison from scratch.
To know anti-entropy is actually working, monitor: the divergence rate found per sweep (how many keys or subtrees needed repair, which tells you how fast replicas are drifting relative to how fast you are fixing them), the age of the oldest unrepaired divergence you have detected (the real staleness bound the system is delivering in practice, not the theoretical one), sweep completion time versus the sweep interval (a sweep that takes longer to finish than the gap between sweeps means the system is falling behind, not keeping up), and the bandwidth/CPU the repair process is consuming against its throttle budget. A widening trend in any of these, more divergence found per sweep than last time, or sweeps that no longer complete inside their scheduled window, is the signal that anti-entropy is losing ground to write volume rather than keeping pace with it.
Worked example
A Merkle tree turns an O(n) "compare every key" scan into an O(log n) divergence check. With two replicas holding 3 keys, where only user:42 has diverged:
import hashlib
def h(x):
return hashlib.sha256(x.encode()).hexdigest()[:8]
replica_A = {"user:1": "v1", "user:2": "v1", "user:42": "vA-stale"}
replica_B = {"user:1": "v1", "user:2": "v1", "user:42": "vB-fresh"}
def merkle_root(replica):
keys = sorted(replica.keys())
leaves = [h(k + ":" + replica[k]) for k in keys]
level = leaves
while len(level) > 1:
nxt = []
for i in range(0, len(level), 2):
if i + 1 < len(level):
nxt.append(h(level[i] + level[i + 1]))
else:
nxt.append(h(level[i] + level[i])) # odd node: duplicate
level = nxt
return level[0]
print(merkle_root(replica_A))
print(merkle_root(replica_B))
Running this (executed; confirmed): merkle_root(replica_A) is 56c6f93d, merkle_root(replica_B) is 36243be6. Since the roots differ, the process knows immediately that something diverged without comparing all 3 keys directly. Walking down from the root to find which branch's hash differs then pinpoints exactly user:42 as the diverged key; the other two keys never need to be compared. At production scale (millions of keys per node) this is the difference between an O(log n) check most sweeps can complete cheaply and an O(n) full scan that would saturate the network.
Trade-offs and pitfalls
Read-repair alone leaves cold data permanently stale if it is never read again, which is why production systems run both together, not one instead of the other. Anti-entropy alone, run too aggressively, competes with foreground traffic for disk and network bandwidth, which is why prioritization (hot keys first) and throttling matter as much as the comparison algorithm itself. A repair sweep that dies mid-run and restarts from scratch every time is a common operational trap: track progress (a cursor or checkpoint over the key range) so a crash costs minutes of re-work, not a full re-scan.
Walk through the CAP theorem in your own words, then name a popular production distributed database that intentionally sacrifices one of the three guarantees for a specific workload. Explain which guarantee it sacrifices and why that trade-off makes sense for that workload.
Sample Answer
Direct answer
The CAP theorem states that a distributed data store that is split across a network partition can provide either Consistency (every read sees the latest write) or Availability (every request gets a response), but not both, for the duration of the partition. Partition tolerance itself is not optional in a real multi-node deployment, since the network will fail eventually, so in practice CAP is really a CP-vs-AP choice about what happens during a partition. Apache Cassandra is a well-known example that defaults to sacrificing Consistency: during a partition it keeps accepting reads and writes on both sides (AP), because for its original use case (Amazon's shopping cart) staying available mattered more than every replica agreeing instantly.
Structured elaboration
- Consistency (C): every node that receives a read returns the most recent write, or an error. No stale reads are ever served.
- Availability (A): every request that reaches a non-failed node gets a non-error response, even if it might be stale.
- Partition tolerance (P): the system keeps operating even when network messages between nodes are lost or delayed.
Because a network partition is a fact of distributed deployment rather than a design choice, CAP in practice forces a decision only about what happens while partitioned: refuse some requests to stay consistent (CP), or keep serving and reconcile afterward (AP). A single-node database that never partitions can be both C and A, which is why "CA" only makes sense for non-distributed systems.
Worked example
Cassandra's default read/write path favors availability: each node accepts writes independently and reconciles differences later through mechanisms like read-repair and anti-entropy. During a network partition between two data centers, both sides keep accepting writes to the same key. This is a deliberate trade-off: Cassandra's original design goal (from the Dynamo paper it descends from) was "the shopping cart must always accept an add-to-cart write," because losing a sale to an unavailable cart was judged worse than occasionally having to merge two divergent cart states after the fact.
Trade-offs and pitfalls
The common mistake is treating CAP as a single, permanent, whole-database choice. Real systems often make the CP-vs-AP decision per operation or per keyspace, not once for the whole deployment (Cassandra itself supports tunable consistency levels that let you dial toward the CP end for specific operations). CAP also says nothing about latency in the absence of a partition, which is why PACELC (adding "else, trade latency for consistency") is a more complete framing for day-to-day operation when the network is healthy.
Explain the CAP theorem and how CAP trade-offs actually manifest in real distributed databases (for example, Cassandra, MongoDB, CockroachDB, Spanner). For a financial payments system versus a shopping-cart analytics system, recommend consistency and availability settings (for example, quorum sizes, synchronous vs asynchronous replication) and justify your choices in terms of user experience and failure modes.
Sample Answer
Direct answer
CAP forces a real distributed database to choose, during a network partition, between staying available and staying consistent, and different production databases make that choice differently by default: Cassandra and DynamoDB default to availability (AP), MongoDB defaults to consistency on its primary-driven writes (closer to CP), and CockroachDB and Spanner are built CP from the ground up, using consensus per range of data. For a financial payments system you want a CP configuration with a majority write quorum, because a lost or double-applied write is unacceptable. For a shopping-cart analytics dashboard you want an AP configuration tuned for availability, because a few seconds of staleness is invisible and losing availability during a network blip is the worse outcome.
Structured elaboration
- Financial payments (recommend CP, majority quorum, synchronous replication): use a write quorum requiring a strict majority of replicas (for N=5 replicas, W=3, R=3, so R+W=6 > N=5, which guarantees every read sees the latest committed write). Replicate synchronously to at least that majority before acknowledging the write, so a client is never told a payment succeeded when it could still be lost on a single-node failure. The cost is added write latency and the possibility of temporarily refusing writes if a majority is unreachable, both acceptable trade-offs for money movement.
- Shopping-cart analytics (recommend AP, low quorum, asynchronous replication): use a low write quorum (W=1, sometimes called ONE) so a write is acknowledged the instant a single replica accepts it, and replicate asynchronously to the rest. Reads can go to whichever replica is nearest, tolerating a stale count. During a partition, both sides of the cluster keep serving, which matters far more for a dashboard than any staleness bound does.
Worked example (executed quorum arithmetic)
For N=5 replicas, is R=3, W=3 strongly consistent, and how many node failures can each side tolerate?
def strongly_consistent(N, R, W):
return (R + W) > N
Running this for N=5, R=3, W=3: R+W = 6 > N = 5, so strongly_consistent returns True (executed; confirmed). A write still succeeds with up to N - W = 2 replicas down, and a read still succeeds with up to N - R = 2 replicas down, which is the majority-quorum configuration recommended above for the financial case.
Compare that to the fast, availability-favoring configuration used for the analytics dashboard: N=3, R=1, W=1. Here R+W = 2, which is not greater than N=3, so strongly_consistent returns False (executed; confirmed). A write only needs 1 of 3 replicas to succeed (tolerating 2 node failures), which is exactly the low-latency, high-availability behavior the dashboard workload wants and can afford, because an occasional stale read costs nothing.
Trade-offs and pitfalls
The mistake to avoid is picking one quorum configuration for the whole database. The financial system and the analytics dashboard are not the same workload wearing different UI: the payments path needs R+W>N (majority quorum) and synchronous replication because the cost of being wrong is a lost or double-applied dollar; the analytics path deliberately drops that guarantee because the cost of being wrong is a number that is off by a few seconds, which nobody notices, in exchange for materially better latency and availability. Applying the payments-grade quorum to the dashboard would slow it down for no benefit; applying the dashboard's low quorum to payments would risk lost money for a latency win nobody needed there.
Explain eventual consistency and strong consistency with concrete examples from real distributed databases (for example, Dynamo-style stores vs Google Spanner). For each model, describe the typical latency profile, the burden it puts on application developers, and the common patterns used to handle anomalies like stale reads.
Sample Answer
Direct answer
Eventual consistency guarantees only that replicas converge given enough time with no new writes; a read taken during that window can return a stale value. Strong consistency guarantees every read reflects the latest committed write, at the cost of coordinating with enough replicas (or the current leader) on every read. Dynamo-style stores (DynamoDB, Cassandra) default to eventual consistency and let you opt into stronger reads per request; Google Spanner defaults to strong (externally-consistent) reads everywhere, using synchronized clocks to make that affordable at global scale.
Structured elaboration
- Latency profile: eventual reads are cheap, typically a single nearby replica answers with no cross-node coordination. Strong reads pay for coordination: Dynamo-style systems pay it by contacting a quorum of replicas; Spanner pays it by waiting out its clock-uncertainty bound (TrueTime) before a read can be certified as externally consistent, and by using two-phase commit across the replica groups involved in a transaction.
- Developer burden: with eventual consistency, the application must anticipate stale reads: idempotent writes, conflict-resolution logic, and UI patterns that hide or tolerate staleness. With strong consistency (Spanner), the application can mostly reason about the database as if it were a single machine, which is a large simplification, but the application still has to design around the added write latency of global coordination.
- Handling anomalies: Dynamo-style systems commonly use read-repair, anti-entropy, and vector clocks or version vectors to detect and resolve the stale-read and conflicting-write anomalies that eventual consistency permits. Spanner avoids most of those anomalies by construction (every committed transaction gets a globally-ordered timestamp), so it does not need reconciliation machinery for its core read/write path; the cost shows up instead as higher write latency, since a transaction cannot commit until TrueTime's uncertainty window has elapsed.
Worked example
A social app's "follower count" is a good fit for Dynamo-style eventual consistency: reads are extremely frequent, a few seconds of staleness is invisible, and the system stays fast and available even during a regional network hiccup. A bank's core ledger, if built on a globally-distributed SQL layer, is a good fit for Spanner-style strong consistency: a teller in one region and an ATM in another must never disagree about the current balance, and the extra tens of milliseconds a transaction pays to wait out the clock-uncertainty bound is a small price next to the cost of a wrong balance.
Trade-offs and pitfalls
The common mistake is treating this as "Dynamo is old and weak, Spanner is new and strong," rather than as a real engineering trade-off: Spanner's strong consistency requires GPS-and-atomic-clock hardware (TrueTime) that most organizations do not have and cannot easily replicate outside a hyperscaler, and it pays real write latency for the certainty. Dynamo-style eventual consistency is not "worse," it is a deliberate bet that most operations do not need that certainty, and the ones that do can be special-cased with a stronger read rather than paying the coordination cost on every single request.
Two teams own services with conflicting requirements: Team A needs strong consistency on writes (which raises latency), Team B needs sub-50ms reads. Propose architecture and policy options (consistency models, API design, caching, eventual-consistency compromises) that reconcile both requirements while minimizing complexity and operational risk.
Sample Answer
Direct answer
The two teams' requirements are not actually incompatible on the SAME data, they are only in conflict if you insist on serving both from one undifferentiated read/write path. The fix is to split the responsibility: Team A's strongly-consistent writes stay strongly consistent (accept the latency), while Team B's reads are served from a fast, eventually-consistent read path, most simply a cache or read replica in front of the same source of truth, so Team B never touches the write path's latency at all.
Structured elaboration
- Keep the write path strongly consistent for Team A: writes go through a quorum (or a single leader) so the moment a write is acknowledged, it is durable and correct. This does not change; Team A's requirement is non-negotiable and it lives entirely on the write side.
- Decouple Team B's reads onto a fast path: introduce a cache, a read replica, or a materialized view that Team B reads from, refreshed asynchronously from the strongly-consistent source. This gets Team B's sub-50ms target because a cache read never pays the write path's coordination cost, at the cost of Team B's reads being slightly stale relative to the absolute latest write.
- Make the staleness bound explicit, not implicit: agree with Team B on how stale "sub-50ms reads" is allowed to be (a bounded-staleness guarantee, not unbounded eventual consistency), and monitor the actual replication lag against that bound so a degradation is caught before it silently exceeds what Team B's use case can tolerate.
- API design matters: expose the two access patterns as genuinely different API calls or endpoints (a strongly-consistent "read after my own write" endpoint for Team A's own confirmation flow, and a fast "read the latest available" endpoint for Team B), rather than one endpoint with an ambiguous consistency guarantee that neither team can rely on confidently.
Worked example
A checkout service (Team A) needs its own write, and its own immediate confirmation read, to be strongly consistent, since telling a customer "order placed" before the write is durable risks losing the order. A separate order-status widget elsewhere in the product (Team B, sub-50ms reads) does not need that guarantee: it reads from a cache populated asynchronously from the same underlying order data, refreshed within, say, a 200ms bound. Team A's write path and Team B's read path can share the same source of truth without either team paying for the other's requirement.
Trade-offs and pitfalls
The main operational cost of this split is now having two paths to keep healthy instead of one: the cache or replica feeding Team B's fast reads needs its own monitoring (is it actually staying within the agreed staleness bound, and what happens if replication falls behind), and a bug in cache invalidation can silently violate Team B's freshness assumption without anyone noticing until a customer complains. The common mistake is trying to satisfy both teams with a single tunable "consistency level" setting on one shared path, which forces a compromise that under-serves both (either Team A's writes get riskier, or Team B's reads get slower) instead of giving each team exactly what they actually need.
Unlock Full Question Bank
Get access to all 12 Consistency Models and Distributed Databases interview questions and detailed answers.
Sign in to ContinueJoin thousands of developers preparing for their dream job.