summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/postgresql.conf.sample
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2011-07-19 08:59:55 +0100
committerSimon Riggs <simon@2ndQuadrant.com>2011-07-19 08:59:55 +0100
commit4bd8ed31b76fde16ee00c123751e25019e4d9854 (patch)
tree3af5cec13390a95855e4d720168ee5af06c80aed /src/backend/utils/misc/postgresql.conf.sample
parent6307fff3586294214e3f256035b82bbba9a9054a (diff)
Introduce sending servers as new category for replication params
Fujii Masao
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index fa67e7a3d5c..037316e727a 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -194,19 +194,24 @@
# REPLICATION
#------------------------------------------------------------------------------
-# - Master Server -
+# - Sending Server(s) -
-# These settings are ignored on a standby server
+# Set these on the master and on any standby that will send replication data
#max_wal_senders = 0 # max number of walsender processes
# (change requires restart)
#wal_sender_delay = 1s # walsender cycle time, 1-10000 milliseconds
#wal_keep_segments = 0 # in logfile segments, 16MB each; 0 disables
-#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
#replication_timeout = 60s # in milliseconds; 0 disables
+
+# - Master Server -
+
+# These settings are ignored on a standby server
+
#synchronous_standby_names = '' # standby servers that provide sync rep
# comma-separated list of application_name
# from standby(s); '*' = all
+#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
# - Standby Servers -