From: | Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Consolidate postmaster code to launch background processes |
Date: | 2024-08-12 07:04:58 |
Message-ID: | E1sdP6w-003opA-4C@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Consolidate postmaster code to launch background processes
Much of the code in process_pm_child_exit() to launch replacement
processes when one exits or when progressing to next postmaster state
was unnecessary, because the ServerLoop will launch any missing
background processes anyway. Remove the redundant code and let
ServerLoop handle it.
In ServerLoop, move the code to launch all the processes to a new
subroutine, to group it all together.
Reviewed-by: Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
Discussion: https://www.postgresql.org/message-id/8f2118b9-79e3-4af7-b2c9-bd5818193ca4@iki.fi
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/3354f85284dc5439c25b57e002e62a88490aca1e
Modified Files
--------------
src/backend/postmaster/postmaster.c | 279 ++++++++++++++++--------------------
1 file changed, 122 insertions(+), 157 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Heikki Linnakangas | 2024-08-12 07:58:12 | pgsql: Fix bad indentation introduced in commit f011e82c2c |
Previous Message | Peter Eisentraut | 2024-08-12 07:00:31 | pgsql: Remove dead code |