From 6e200d32a46324f0007f1136d34d42fd75d68b79 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 20 Aug 2019 11:17:36 +0900 Subject: [PATCH] doc: add note about max_wal_senders in Pg12 and later --- doc/configuration.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/configuration.xml b/doc/configuration.xml index e173bf58..dd952ded 100644 --- a/doc/configuration.xml +++ b/doc/configuration.xml @@ -148,9 +148,19 @@ instances in the replication cluster which may potentially become a primary server or (in cascading replication) the upstream server of a standby. - + PostgreSQL documentation: max_wal_senders. + + + From PostgreSQL 12, + must be set to the same or a higher value as the primary node + (at the time the node was cloned), otherwise the standby will refuse + to start (unless is set to off, which + will prevent the node from accepting queries). + + +