On Tue, Mar 15, 2022 at 11:02:37PM +0100, Magnus Hagander wrote: > I think we're talking about two different things here. > > I think the "avoid extra logging" would be worth seeing if we can > address for 15.
A simple approach could be to just set log_min_messages to PANIC before exiting. I've attached a patch for this. With this patch, we'll still see a FATAL if we try to use 'postgres -C' for a runtime-computed GUC on a running server, and there will be no extra output as long as the user sets log_min_messages to INFO or higher (i.e., not a DEBUG* value). For comparison, 'postgres -C' for a non-runtime-computed GUC does not emit extra output as long as the user sets log_min_messages to DEBUG2 or higher. > The "able to run on a live cluster" seems a lot bigger and more scary > and not 15 material. +1 -- Nathan Bossart Amazon Web Services: https://aws.amazon.com
>From cdfd1ad00ca1d8afbfcbafc1f684b5ba9cc43eb6 Mon Sep 17 00:00:00 2001 From: Nathan Bossart <nathandboss...@gmail.com> Date: Tue, 15 Mar 2022 15:36:41 -0700 Subject: [PATCH v2 1/1] don't emit shutdown messages for 'postgres -C' with runtime-computed GUCs --- src/backend/postmaster/postmaster.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 80bb269599..bf48bc6326 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -1066,6 +1066,10 @@ PostmasterMain(int argc, char *argv[]) false, false); puts(config_val ? config_val : ""); + + /* don't emit shutdown messages */ + SetConfigOption("log_min_messages", "PANIC", PGC_INTERNAL, PGC_S_OVERRIDE); + ExitPostmaster(0); } -- 2.25.1