Re: pgsql: Refactor how some aux processes advertise their ProcNumber

From: Thom Brown <thom(at)linux(dot)com>
To: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
Cc: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: Refactor how some aux processes advertise their ProcNumber
Date: 2026-07-08 21:57:00
Message-ID: CAA-aLv6UHXubNxmAjNH8PnyKKkaXePO1ggB15=iidNW08T4hSg@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On Wed, 8 Jul 2026 at 18:43, Heikki Linnakangas
<heikki(dot)linnakangas(at)iki(dot)fi> wrote:
>
> Refactor how some aux processes advertise their ProcNumber
>
> This moves the responsibility of setting the ProcGlobal->walwriterProc
> and checkpointerProc fields into InitAuxiliaryProcess. Also switch to
> the same pattern to advertise the autovacuum launcher's ProcNumber,
> replacing the ad hoc av_launcherpid field in shared memory. This can
> easily be extended to other aux processes in the future, if other
> processes need to find them.
>
> Switch to pg_atomic_uint32 for the fields. Seems easier to reason
> about than volatile pointers. There was some precedence for that, as
> were already using pg_atomic_uint32 for the procArrayGroupFirst and
> clogGroupFirst fields, which also store ProcNumbers.
>
> Todo: We could also replace WalRecv->procno with this, but that's a
> little more code churn so I left that for the future.
>
> Reviewed-by: Andres Freund <andres(at)anarazel(dot)de>
> Discussion: https://www.postgresql.org/message-id/818bafaf-1e77-4c78-8037-d7120878d87c@iki.fi
>
> Branch
> ------
> master
>
> Details
> -------
> https://git.postgresql.org/pg/commitdiff/842169b6c110f48c9f7a2dc29d0cedcc97c2ff29
>
> Modified Files
> --------------
> src/backend/access/transam/xlog.c | 3 +--
> src/backend/postmaster/autovacuum.c | 19 ++++++++++---------
> src/backend/postmaster/checkpointer.c | 14 ++++----------
> src/backend/postmaster/walwriter.c | 6 ------
> src/backend/storage/lmgr/proc.c | 32 ++++++++++++++++++++++++++++++--
> src/include/storage/proc.h | 7 ++++---
> 6 files changed, 49 insertions(+), 32 deletions(-)

@@ -724,6 +725,14 @@ InitAuxiliaryProcess(void)
*/
PGSemaphoreReset(MyProc->sem);

+ /* Some aux processes are also advertised in ProcGlobal */
+ if (MyBackendType == B_AUTOVAC_LAUNCHER)
+ pg_atomic_write_u32(&ProcGlobal->avLauncherProc, MyProcNumber);

I'm looking for the places this gets called from. I can only see
auxprocess.c which the launcher doesn't go through. The same question
for similar code in AuxiliaryProcKill().

Thom

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Alexander Korotkov 2026-07-08 23:42:14 pgsql: Don't create SPLIT/MERGE partitions as internal relations
Previous Message Nathan Bossart 2026-07-08 21:23:00 pgsql: Remove the refint extension.