pgsql: Create a function to reliably identify which sessions block whic - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Create a function to reliably identify which sessions block whic
Date
Msg-id E1aXwD7-0004gW-Op@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Create a function to reliably identify which sessions block which others.

This patch introduces "pg_blocking_pids(int) returns int[]", which returns
the PIDs of any sessions that are blocking the session with the given PID.
Historically people have obtained such information using a self-join on
the pg_locks view, but it's unreasonably tedious to do it that way with any
modicum of correctness, and the addition of parallel queries has pretty
much broken that approach altogether.  (Given some more columns in the view
than there are today, you could imagine handling parallel-query cases with
a 4-way join; but ugh.)

The new function has the following behaviors that are painful or impossible
to get right via pg_locks:

1. Correctly understands which lock modes block which other ones.

2. In soft-block situations (two processes both waiting for conflicting lock
modes), only the one that's in front in the wait queue is reported to
block the other.

3. In parallel-query cases, reports all sessions blocking any member of
the given PID's lock group, and reports a session by naming its leader
process's PID, which will be the pg_backend_pid() value visible to
clients.

The motivation for doing this right now is mostly to fix the isolation
tests.  Commit 38f8bdcac4982215beb9f65a19debecaf22fd470 lobotomized
isolationtester's is-it-waiting query by removing its ability to recognize
nonconflicting lock modes, as a crude workaround for the inability to
handle soft-block situations properly.  But even without the lock mode
tests, the old query was excessively slow, particularly in
CLOBBER_CACHE_ALWAYS builds; some of our buildfarm animals fail the new
deadlock-hard test because the deadlock timeout elapses before they can
probe the waiting status of all eight sessions.  Replacing the pg_locks
self-join with use of pg_blocking_pids() is not only much more correct, but
a lot faster: I measure it at about 9X faster in a typical dev build with
Asserts, and 3X faster in CLOBBER_CACHE_ALWAYS builds.  That should provide
enough headroom for the slower CLOBBER_CACHE_ALWAYS animals to pass the
test, without having to lengthen deadlock_timeout yet more and thus slow
down the test for everyone else.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/52f5d578d6c29bf254e93c69043b817d4047ca67

Modified Files
--------------
doc/src/sgml/catalogs.sgml           |  56 +++++----
doc/src/sgml/func.sgml               |  29 +++++
src/backend/storage/ipc/procarray.c  |  27 ++++-
src/backend/storage/lmgr/lock.c      | 216 ++++++++++++++++++++++++++++++++++-
src/backend/utils/adt/lockfuncs.c    | 125 +++++++++++++++++++-
src/include/catalog/catversion.h     |   2 +-
src/include/catalog/pg_proc.h        |   2 +
src/include/storage/lock.h           |  35 +++++-
src/include/storage/procarray.h      |   1 +
src/include/utils/builtins.h         |   1 +
src/test/isolation/isolationtester.c |  30 ++---
11 files changed, 470 insertions(+), 54 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Remove redundant PGPROC.lockGroupLeaderIdentifier field.
Next
From: Noah Misch
Date:
Subject: pgsql: MSVC: Clean tmp_check directory of pg_controldata test suite.