pgsql: Pause recovery for insufficient parameter settings - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Pause recovery for insufficient parameter settings
Date
Msg-id E1l1Po9-0007DP-P5@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Pause recovery for insufficient parameter settings

When certain parameters are changed on a physical replication primary,
this is communicated to standbys using the XLOG_PARAMETER_CHANGE WAL
record.  The standby then checks whether its own settings are at least
as big as the ones on the primary.  If not, the standby shuts down
with a fatal error.

This patch changes this behavior for hot standbys to pause recovery at
that point instead.  That allows read traffic on the standby to
continue while database administrators figure out next steps.  When
recovery is unpaused, the server shuts down (as before).  The idea is
to fix the parameters while recovery is paused and then restart when
there is a maintenance window.

Reviewed-by: Sergei Kornilov <sk@zsrv.org>
Discussion: https://www.postgresql.org/message-id/flat/4ad69a4c-cc9b-0dfe-0352-8b1b0cd36c7b@2ndquadrant.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/15251c0a60be76eedee74ac0e94b433f9acca5af

Modified Files
--------------
doc/src/sgml/high-availability.sgml | 51 ++++++++++++++++++++++++--------
src/backend/access/transam/xlog.c   | 59 +++++++++++++++++++++++++++++++++----
2 files changed, 93 insertions(+), 17 deletions(-)


pgsql-committers by date:

Previous
From: Fujii Masao
Date:
Subject: pgsql: postgres_fdw: Add function to list cached connections to foreign
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Check for BuildIndexValueDescription returning NULL in gist_page