Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b3ff53

Browse files
committed
Prevent WAL corruption after a standby promotion.
When a PostgreSQL instance performing archive recovery but not using standby mode is promoted, and the last WAL segment that it attempted to read ended in a partial record, the previous code would create invalid WAL on the new timeline. The WAL from the previously timeline would be copied to the new timeline up until the end of the last valid record, but instead of beginning to write WAL at immediately afterwards, the promoted server would write an overwrite contrecord at the beginning of the next segment. The end of the previous segment would be left as all-zeroes, resulting in failures if anything tried to read WAL from that file. The root of the issue is that ReadRecord() decides whether to set abortedRecPtr and missingContrecPtr based on the value of StandbyMode, but ReadRecord() switches to a new timeline based on the value of ArchiveRecoveryRequested. We shouldn't try to write an overwrite contrecord if we're switching to a new timeline, so change the test in ReadRecod() to check ArchiveRecoveryRequested instead. Code fix by Dilip Kumar. Comments by me incorporating suggested language from Álvaro Herrera. Further review from Kyotaro Horiguchi and Sami Imseih. Discussion: http://postgr.es/m/CAFiTN-t7umki=PK8dT1tcPV=mOUe2vNhHML6b3T7W7qqvvajjg@mail.gmail.com Discussion: http://postgr.es/m/FB0DEA0B-E14E-43A0-811F-C1AE93D00FF3%40amazon.com
1 parent 2efeb04 commit 0b3ff53

File tree

1 file changed

+19
-5
lines changed
  • src/backend/access/transam

1 file changed

+19
-5
lines changed

src/backend/access/transam/xlog.c

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4260,12 +4260,18 @@ ReadRecord(XLogReaderState *xlogreader, XLogRecPtr RecPtr, int emode,
42604260
if (record == NULL)
42614261
{
42624262
/*
4263-
* When not in standby mode we find that WAL ends in an incomplete
4264-
* record, keep track of that record. After recovery is done,
4265-
* we'll write a record to indicate downstream WAL readers that
4266-
* that portion is to be ignored.
4263+
* When we find that WAL ends in an incomplete record, keep track
4264+
* of that record. After recovery is done, we'll write a record to
4265+
* indicate to downstream WAL readers that that portion is to be
4266+
* ignored.
4267+
*
4268+
* However, when ArchiveRecoveryRequested = true, we're going to
4269+
* switch to a new timeline at the end of recovery. We will only
4270+
* copy WAL over to the new timeline up to the end of the last
4271+
* complete record, so if we did this, we would later create an
4272+
* overwrite contrecord in the wrong place, breaking everything.
42674273
*/
4268-
if (!StandbyMode &&
4274+
if (!ArchiveRecoveryRequested &&
42694275
!XLogRecPtrIsInvalid(xlogreader->abortedRecPtr))
42704276
{
42714277
abortedRecPtr = xlogreader->abortedRecPtr;
@@ -7667,6 +7673,14 @@ StartupXLOG(void)
76677673
*/
76687674
if (!XLogRecPtrIsInvalid(missingContrecPtr))
76697675
{
7676+
/*
7677+
* We should only have a missingContrecPtr if we're not switching to
7678+
* a new timeline. When a timeline switch occurs, WAL is copied from
7679+
* the old timeline to the new only up to the end of the last complete
7680+
* record, so there can't be an incomplete WAL record that we need to
7681+
* disregard.
7682+
*/
7683+
Assert(ThisTimeLineID == PrevTimeLineID);
76707684
Assert(!XLogRecPtrIsInvalid(abortedRecPtr));
76717685
EndOfLog = missingContrecPtr;
76727686
}

0 commit comments

Comments
 (0)