agora inbox for pgsql-committers@postgresql.org  
help / color / mirror / Atom feed
From: Michael Paquier <michael@paquier.xyz>
To: pgsql-committers@lists.postgresql.org
Subject: pgsql: Fix race with timeline selection in logical decoding during prom
Date: Thu, 11 Jun 2026 08:30:01 +0000
Message-ID: <E1wXanZ-001ymA-1o@gemulon.postgresql.org> (raw)

Fix race with timeline selection in logical decoding during promotion

During promotion, there is a window where RecoveryInProgress() returns
true but the WAL segments of the old timeline have already been removed.
A logical decoding could pick up the old timeline in this window when
reading a page, failing with the following error:
ERROR: requested WAL segment ... has already been removed

This issue does not lead to any data correctness issue, as retrying to
decode the data works in follow-up decoding attempts.  It impacts
availability, though.  Other WAL page read callbacks have a similar
issue, this commit takes care of what should be the noisiest code path:
logical decoding with START_REPLICATION in a WAL sender.

A TAP test, based on an injection point waiting in the startup process
after the segments have been removed/recycled, is added.  This part is
backpatched down to v17.

This issue has been causing sporadic failures in the buildfarm, and
was reproducible manually.  This issue happens since logical decoding on
standbys exists, down to v16.

Reported-by: Alexander Lakhin <exclusion@gmail.com>
Author: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Reviewed-by: Hayato Kuroda <kuroda.hayato@fujitsu.com>
Reviewed-by: Xuneng Zhou <xunengzhou@gmail.com>
Discussion: https://postgr.es/m/7daef094-abf3-4672-bc23-3df4763b16a3@gmail.com
Backpatch-through: 16

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/16b89ff048391c7f1bb4758de203c82c1a6dd7b8

Modified Files
--------------
src/backend/access/transam/xlog.c                  |  2 +
src/backend/replication/walsender.c                | 24 +++++++-
.../recovery/t/035_standby_logical_decoding.pl     | 69 ++++++++++++++++++++++
3 files changed, 94 insertions(+), 1 deletion(-)



view thread (4+ messages)  latest in thread

Message-ID: <E1wXanZ-001ymA-1o@gemulon.postgresql.org>
Permalink:  ../E1wXanZ-001ymA-1o@gemulon.postgresql.org/
Also on:    postgresql.org/message-id/E1wXanZ-001ymA-1o@gemulon.postgresql.org

reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Reply to all the recipients using the --to and --cc options:
  reply via email

  To: pgsql-committers@postgresql.org
  Cc: michael@paquier.xyz, pgsql-committers@lists.postgresql.org
  Subject: Re: pgsql: Fix race with timeline selection in logical decoding during prom
  In-Reply-To: <E1wXanZ-001ymA-1o@gemulon.postgresql.org>

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox