postgresql/src/include/replication
Fujii Masao 989be0810d Support multiple synchronous standby servers.
Previously synchronous replication offered only the ability to confirm
that all changes made by a transaction had been transferred to at most
one synchronous standby server.

This commit extends synchronous replication so that it supports multiple
synchronous standby servers. It enables users to consider one or more
standby servers as synchronous, and increase the level of transaction
durability by ensuring that transaction commits wait for replies from
all of those synchronous standbys.

Multiple synchronous standby servers are configured in
synchronous_standby_names which is extended to support new syntax of
'num_sync ( standby_name [ , ... ] )', where num_sync specifies
the number of synchronous standbys that transaction commits need to
wait for replies from and standby_name is the name of a standby
server.

The syntax of 'standby_name [ , ... ]' which was used in 9.5 or before
is also still supported. It's the same as new syntax with num_sync=1.

This commit doesn't include "quorum commit" feature which was discussed
in pgsql-hackers. Synchronous standbys are chosen based on their priorities.
synchronous_standby_names determines the priority of each standby for
being chosen as a synchronous standby. The standbys whose names appear
earlier in the list are given higher priority and will be considered as
synchronous. Other standby servers appearing later in this list
represent potential synchronous standbys.

The regression test for multiple synchronous standbys is not included
in this commit. It should come later.

Authors: Sawada Masahiko, Beena Emerson, Michael Paquier, Fujii Masao
Reviewed-By: Kyotaro Horiguchi, Amit Kapila, Robert Haas, Simon Riggs,
Amit Langote, Thomas Munro, Sameer Thakur, Suraj Kharage, Abhijit Menon-Sen,
Rajeev Rastogi

Many thanks to the various individuals who were involved in
discussing and developing this feature.
2016-04-06 17:18:25 +09:00
..
basebackup.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
decode.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
logical.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
logicalfuncs.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
origin.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
output_plugin.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
reorderbuffer.h logical decoding: Fix handling of large old tuples with replica identity full. 2016-03-05 18:02:20 -08:00
slot.h Blind attempt at fixing Win32 issue on 24c5f1a103 2016-03-30 23:12:20 -03:00
snapbuild.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
syncrep.h Support multiple synchronous standby servers. 2016-04-06 17:18:25 +09:00
walreceiver.h Add new replication mode synchronous_commit = 'remote_apply'. 2016-03-29 21:29:49 -04:00
walsender_private.h Update copyright for 2016 2016-01-02 13:33:40 -05:00
walsender.h Update copyright for 2016 2016-01-02 13:33:40 -05:00