]> granicus.if.org Git - postgresql/commit
Don't archive bogus recycled or preallocated files after timeline switch.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 13 Apr 2015 13:53:49 +0000 (16:53 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 13 Apr 2015 14:22:21 +0000 (17:22 +0300)
commitd72792d0213ec352cdb71f3994a53194bc00f220
treee65e3a5b31838a1ab50e6c4043f092b0cbdc0f37
parent131fb7fc66332b4c13cab2f1a5a87aab0767ebd9
Don't archive bogus recycled or preallocated files after timeline switch.

After a timeline switch, we would leave behind recycled WAL segments that
are in the future, but on the old timeline. After promotion, and after they
become old enough to be recycled again, we would notice that they don't have
a .ready or .done file, create a .ready file for them, and archive them.
That's bogus, because the files contain garbage, recycled from an older
timeline (or prealloced as zeros). We shouldn't archive such files.

This could happen when we're following a timeline switch during replay, or
when we switch to new timeline at end-of-recovery.

To fix, whenever we switch to a new timeline, scan the data directory for
WAL segments on the old timeline, but with a higher segment number, and
remove them. Those don't belong to our timeline history, and are most
likely bogus recycled or preallocated files. They could also be valid files
that we streamed from the primary ahead of time, but in any case, they're
not needed to recover to the new timeline.
src/backend/access/transam/xlog.c
src/backend/access/transam/xlogarchive.c
src/include/access/xlog_internal.h