Re: pgsql: Move named LWLock tranche requests to shared memory. - Mailing list pgsql-committers

From Nathan Bossart
Subject Re: pgsql: Move named LWLock tranche requests to shared memory.
Date
Msg-id aMrG8F-NkiedEugc@nathan
Whole thread Raw
In response to Re: pgsql: Move named LWLock tranche requests to shared memory.  (Michael Paquier <michael@paquier.xyz>)
Responses Re: pgsql: Move named LWLock tranche requests to shared memory.
List pgsql-committers
On Wed, Sep 17, 2025 at 01:47:19PM +0900, Michael Paquier wrote:
> Perhaps LocalNamedLWLockTrancheRequestArray should be initialized to
> NULL when declared, and I'd rather document the reasons behind what
> this patch is doing in LWLockShmemSize() and when the state is
> initialized in CreateLWLocks(), than have the reader assume why the
> local pointer is needed (aka reinitialized with restart_after_crash).

I've added some commentary to this effect in v3.

> Note: I forgot for a second if shared_preload_libraries was reloaded
> when the postmaster reinitializes a cluster, and the answer is that
> we only go into process_shared_preload_libraries() once at startup..
> I was wondering for a second about a potential case where s_p_l is
> updated with more lwlocks added in-between, where a reinitialization
> would mess up things.

Yeah, this stuff is rather precarious, and I'm a bit surprised there
haven't been more problems in this area.

-- 
nathan

Attachment

pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: pgsql: Move named LWLock tranche requests to shared memory.
Next
From: Tom Lane
Date:
Subject: pgsql: Calculate agglevelsup correctly when Aggref contains a CTE.