From: | Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> |
---|---|
To: | Bharath Rupireddy <bharath(dot)rupireddyforpostgres(at)gmail(dot)com> |
Cc: | PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>, John Naylor <johncnaylorls(at)gmail(dot)com> |
Subject: | Re: Question on LWLockMode in dsa.c |
Date: | 2024-01-30 12:16:36 |
Message-ID: | CAD21AoBab3e9A-Mcz2r-Yn-mXchVzXu5x0vPXZnTiYE9G=zdjQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Tue, Jan 30, 2024 at 4:43 PM Bharath Rupireddy
<bharath(dot)rupireddyforpostgres(at)gmail(dot)com> wrote:
>
> On Tue, Jan 30, 2024 at 6:24 AM Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com> wrote:
> >
> > Hi,
> >
> > While working on radix tree patch[1], John Naylor found that dsa.c
> > doesn't already use shared locks even in dsa_dump(). dsa_dump() seems
> > a pure read-only function so I thought we could use a shared lock mode
> > there. Is there any reason to use exclusive mode even in dsa_dump()?
>
> check_for_freed_segments_locked which is called from dsa_dump does
> mark a few variables of the dsa area to NULL right?
Right. But IIUC these are backend-local variables, and we don't change
any shared variables.
> Are you suggesting
> to take initially a shared lock in dsa_dump and upgrade it to
> exclusive mode in the unlikely event of
> unlikely(area->freed_segment_counter != freed_segment_counter)
> occurring in check_for_freed_segments_locked?
I thought we could just take a shared lock in dsa_dump().
>
> > Ultimately, since we're trying to add a new function
> > dsa_get_total_size() that just returns
> > dsa_area_control.total_segment_size and therefore would also be a
> > read-only function, I'd like to find out the correct lock mode there.
> >
> > [1] https://www.postgresql.org/message-id/CANWCAZYYzoKp_4%2B1m5mn-TRD62BTwom8iLXLOWMsHkkwFi%3Drzg%40mail.gmail.com
>
> Do you see any lock contention or any other issues with exclusive
> locks on dsa areas?
Not particularly for now. But we don't need to unnecessarily take an
exclusive lock and even a shared lock looks safe at a glance. So I
need to convince myself that we need to take an exclusive lock there
in order to add a new dsa_get_total_size() function. And we might need
comments.
Regards,
--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com
From | Date | Subject | |
---|---|---|---|
Next Message | Aleksander Alekseev | 2024-01-30 12:18:44 | Re: Incorrect cost for MergeAppend |
Previous Message | Alvaro Herrera | 2024-01-30 11:58:21 | Re: Supporting MERGE on updatable views |