From: | David Rowley <dgrowleyml(at)gmail(dot)com> |
---|---|
To: | Evgeny Morozov <postgresql4(at)realityexists(dot)net> |
Cc: | PostgreSQL General <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Querying one partition in a function takes locks on all partitions |
Date: | 2025-03-31 20:28:00 |
Message-ID: | CAApHDvpTGLFvnxrraLPHy-izdeu80+_f4rLFCUcpsTeh0nh=sw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Sat, 29 Mar 2025 at 06:00, Evgeny Morozov
<postgresql4(at)realityexists(dot)net> wrote:
>
> On 23/03/2025 2:35 pm, David Rowley wrote:
> >> alter table entity_2 add column new_column text;
> > Is this just an example command? You can't add a column to a
> > partition directly.
>
> Yes, it was just the simplest way I could think of to take an exclusive
> lock. But on this note: I guess it takes a lock before checking that the
> table is partition because it might otherwise get attached/detached as a
> partition between doing the check and taking a lock, but it would be
> nice if it took a shared lock to do all checks, then upgraded to an
> exclusive lock to actually do the work. Then the user would not have to
> wait for an exclusive lock only for the command to fail.
Unfortunately, that's probably just swapping one problem for another.
Once you have 2 sessions following such a pattern of locking, you're
prone to unnecessary deadlocking.
For example:
-- session1
begin;
lock table t in access share mode; -- gets lock
-- session2
begin;
lock table t in access share mode; -- gets lock
lock table t in access exclusive mode; -- waits
-- session1
lock table t in access exclusive mode; -- deadlock
If you don't bother with the access share lock, there's no deadlock.
David
From | Date | Subject | |
---|---|---|---|
Next Message | Jayadevan M | 2025-04-01 03:38:50 | Doubt on pg_timezone_names and pg_timezone_abbrevs |
Previous Message | Christophe Pettus | 2025-03-31 20:22:54 | Re: [EXTERNAL] RDS IO Read time |