pgsql: Move synchronous_standbys_defined updates from WAL writer to BG - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Move synchronous_standbys_defined updates from WAL writer to BG
Date
Msg-id E1Q0lGG-0002mU-Fb@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Move synchronous_standbys_defined updates from WAL writer to BG writer.

This is advantageous because the BG writer is alive until much later in
the shutdown sequence than WAL writer; we want to make sure that it's
possible to shut off synchronous replication during a smart shutdown,
else it might not be possible to complete the shutdown at all.

Per very reasonable gripes from Fujii Masao and Simon Riggs.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/727589995a3e027046f0da7af6ba665b0b47f89f

Modified Files
--------------
src/backend/postmaster/bgwriter.c  |    8 ++++++++
src/backend/postmaster/walwriter.c |    6 ------
src/backend/replication/syncrep.c  |    6 +++---
3 files changed, 11 insertions(+), 9 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: Woops. Previous patch to remove -X options missed getopt_long c
Next
From: Robert Haas
Date:
Subject: pgsql: Fix possible "tuple concurrently updated" error in ALTER TABLE.