jargon

Backend & systems·Consistency and replication

the primary acknowledges your write immediately and ships it to the replicas whenever it gets around to it.

Asynchronous replication

The leader commits and returns without waiting for followers. Writes stay fast and a slow replica cannot stall the primary. The exposure is a window of acknowledged-but-unreplicated writes, which are lost if the leader dies — the size of that window is exactly your replication lag.

Commonly confused with