Replication slot WAL reservation - Mailing list pgsql-general

From Phillip Diffley
Subject Replication slot WAL reservation
Date
Msg-id CAGAwPgR=B9VTDwKkHZRHjYTmQzvJ+30mK-uyc7MMw6Tf9s9Fsw@mail.gmail.com
Whole thread Raw
Responses Re: Replication slot WAL reservation
Re: Replication slot WAL reservation
List pgsql-general
I am trying to understand how logical replication slots work, specifically in regard to how WAL is reserved and freed by a replication slot.

My current understanding of the WAL (set to wal_level logical) is that:
1. Every DML operation (insert, update, delete, truncate) will have a row in the WAL and that row will have an LSN assigned to it. 
2. The LSNs are assigned when the operation happens.
3. Operations within a transaction are written to the WAL in a contiguous block when the transaction commits.
4. Each transaction block in the WAL has a commit timestamp associated with it, and these timestamps are monotonically increasing (I'm only inferring this, so please correct me if this is not always the case).

A result of an operation being assigned an LSN when the operation occurs but not being recorded to the WAL until it's transaction commits is that LSNs in the WAL are not necessarily in order.

But when processing data from a replication slot, we confirm rows that have been processed and can be deleted from the WAL based on the LSN (eg. with pg_replication_slot_advance). How does postgres identify what parts of the WAL can be freed?

pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: Experience and feedback on pg_restore --data-only
Next
From: Christophe Pettus
Date:
Subject: Re: Replication slot WAL reservation