pgsql: Support invalidating replication slots due to horizon and wal_le

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Support invalidating replication slots due to horizon and wal_le
Date: 2023-04-08 06:09:11
Message-ID: E1pl1l7-001zjq-RM@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Support invalidating replication slots due to horizon and wal_level

Needed for logical decoding on a standby. Slots need to be invalidated because
of the horizon if rows required for logical decoding are removed. If the
primary's wal_level is lowered from 'logical', logical slots on the standby
need to be invalidated.

The new invalidation methods will be used in a subsequent commit.

Logical slots that have been invalidated can be identified via the new
pg_replication_slots.conflicting column.

See 6af1793954e for an overall design of logical decoding on a standby.

Bumps catversion for the addition of the new pg_replication_slots column.

Author: "Drouvot, Bertrand" <bertranddrouvot(dot)pg(at)gmail(dot)com>
Author: Andres Freund <andres(at)anarazel(dot)de>
Author: Amit Khandekar <amitdkhan(dot)pg(at)gmail(dot)com> (in an older version)
Reviewed-by: "Drouvot, Bertrand" <bertranddrouvot(dot)pg(at)gmail(dot)com>
Reviewed-by: Andres Freund <andres(at)anarazel(dot)de>
Reviewed-by: Robert Haas <robertmhaas(at)gmail(dot)com>
Reviewed-by: Fabrízio de Royes Mello <fabriziomello(at)gmail(dot)com>
Reviewed-by: Bharath Rupireddy <bharath(dot)rupireddyforpostgres(at)gmail(dot)com>
Reviewed-by: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>
Reviewed-by: Melanie Plageman <melanieplageman(at)gmail(dot)com>
Reviewed-by: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Discussion: https://postgr.es/m/20230407075009.igg7be27ha2htkbt@awork3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/be87200efd9308ccfe217ce8828f316e93e370da

Modified Files
--------------
doc/src/sgml/system-views.sgml | 10 ++
src/backend/access/transam/xlog.c | 8 +-
src/backend/catalog/system_views.sql | 3 +-
src/backend/replication/logical/logical.c | 7 ++
src/backend/replication/slot.c | 151 +++++++++++++++++++++++++-----
src/backend/replication/slotfuncs.c | 12 ++-
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.dat | 6 +-
src/include/replication/slot.h | 9 +-
src/test/regress/expected/rules.out | 5 +-
10 files changed, 176 insertions(+), 37 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2023-04-08 07:11:01 pgsql: Handle logical slot conflicts on standby
Previous Message Andres Freund 2023-04-08 05:37:59 pgsql: Fix underspecified sort order in inherit.sql