On Sat, 2022-01-08 at 00:13 +0530, Bharath Rupireddy wrote: > If there are long running txns on the primary and the async standbys > were to wait until quorum commit from sync standbys, won't they fall > behind the primary by too much?
No, because replication is based on LSNs, not transactions. With the proposed change: an LSN can be replicated to all sync replicas as soon as it's durable on the primary; and an LSN can be replicated to all async replicas as soon as it's durable on the primary *and* the sync rep quorum is satisfied. Regards, Jeff Davis