pgsql: Allow a streaming replication standby to follow a timeline switc - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Allow a streaming replication standby to follow a timeline switc
Date
Msg-id E1TjCRc-00084r-1H@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow a streaming replication standby to follow a timeline switch.

Before this patch, streaming replication would refuse to start replicating
if the timeline in the primary doesn't exactly match the standby. The
situation where it doesn't match is when you have a master, and two
standbys, and you promote one of the standbys to become new master.
Promoting bumps up the timeline ID, and after that bump, the other standby
would refuse to continue.

There's significantly more timeline related logic in streaming replication
now. First of all, when a standby connects to primary, it will ask the
primary for any timeline history files that are missing from the standby.
The missing files are sent using a new replication command TIMELINE_HISTORY,
and stored in standby's pg_xlog directory. Using the timeline history files,
the standby can follow the latest timeline present in the primary
(recovery_target_timeline='latest'), just as it can follow new timelines
appearing in an archive directory.

START_REPLICATION now takes a TIMELINE parameter, to specify exactly which
timeline to stream WAL from. This allows the standby to request the primary
to send over WAL that precedes the promotion. The replication protocol is
changed slightly (in a backwards-compatible way although there's little hope
of streaming replication working across major versions anyway), to allow
replication to stop when the end of timeline reached, putting the walsender
back into accepting a replication command.

Many thanks to Amit Kapila for testing and reviewing various versions of
this patch.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/abfd192b1b5ba5216ac4b1f31dcd553106304b19

Modified Files
--------------
doc/src/sgml/high-availability.sgml                |    7 +-
doc/src/sgml/protocol.sgml                         |   77 +++-
src/backend/access/transam/timeline.c              |   83 +++
src/backend/access/transam/xlog.c                  |   55 +-
src/backend/access/transam/xlogfuncs.c             |    4 +-
src/backend/postmaster/postmaster.c                |   21 -
src/backend/postmaster/startup.c                   |    2 +
src/backend/replication/basebackup.c               |   21 +-
.../libpqwalreceiver/libpqwalreceiver.c            |  202 +++++--
src/backend/replication/repl_gram.y                |   47 ++-
src/backend/replication/repl_scanner.l             |   10 +
src/backend/replication/walreceiver.c              |  472 +++++++++++++---
src/backend/replication/walreceiverfuncs.c         |   90 +++-
src/backend/replication/walsender.c                |  587 +++++++++++++++----
src/include/access/timeline.h                      |    1 +
src/include/access/xlog.h                          |    4 +-
src/include/nodes/nodes.h                          |    1 +
src/include/nodes/replnodes.h                      |   12 +
src/include/replication/walreceiver.h              |   52 ++-
src/include/replication/walsender.h                |    1 -
src/include/replication/walsender_private.h        |    2 +-
src/interfaces/libpq/fe-exec.c                     |    8 +-
src/interfaces/libpq/fe-protocol3.c                |    7 +-
23 files changed, 1396 insertions(+), 370 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Make xlog_internal.h includable in frontend context.
Next
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Improve search_path mentions in index