From: | Phillip Diffley <phillip6402(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Replication slot WAL reservation |
Date: | 2025-03-25 16:56:39 |
Message-ID: | CAGAwPgR=B9VTDwKkHZRHjYTmQzvJ+30mK-uyc7MMw6Tf9s9Fsw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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?
From | Date | Subject | |
---|---|---|---|
Next Message | Sami Imseih | 2025-03-25 16:58:21 | Re: query_id: jumble names of temp tables for better pg_stat_statement UX |
Previous Message | Christoph Berg | 2025-03-25 15:41:06 | Re: query_id: jumble names of temp tables for better pg_stat_statement UX |