]> granicus.if.org Git - postgresql/commit
Delay reading timeline history file until it's fetched from master.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 3 Jan 2013 08:41:58 +0000 (10:41 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 3 Jan 2013 08:41:58 +0000 (10:41 +0200)
commitee994272ca50f70b53074f0febaec97e28f83c4e
tree50bb5ac80dd8ef3c344c1e86320a6dab63778a5e
parentbcbe99244f41950dcfb7be9d9badc3b31e596867
Delay reading timeline history file until it's fetched from master.

Streaming replication can fetch any missing timeline history files from the
master, but recovery would read the timeline history file for the target
timeline before reading the checkpoint record, and before walreceiver has
had a chance to fetch it from the master. Delay reading it, and the sanity
checks involving timeline history, until after reading the checkpoint
record.

There is at least one scenario where this makes a difference: if you take
a base backup from a standby server right after a timeline switch, the
WAL segment containing the initial checkpoint record will begin with an
older timeline ID. Without the timeline history file, recovering that file
will fail as the older timeline ID is not recognized to be an ancestor of
the target timeline. If you try to recover from such a backup, using only
streaming replication to fetch the WAL, this patch is required for that to
work.
src/backend/access/transam/xlog.c
src/backend/replication/walreceiver.c