pgsql: Grab heavyweight tuple lock only before sleeping - Mailing list pgsql-committers

From Alvaro Herrera
Subject pgsql: Grab heavyweight tuple lock only before sleeping
Date
Msg-id E1Y4Y9y-0003hy-Mh@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Grab heavyweight tuple lock only before sleeping

We were trying to acquire the lock even when we were subsequently
not sleeping in some other transaction, which opens us up unnecessarily
to deadlocks.  In particular, this is troublesome if an update tries to
lock an updated version of a tuple and finds itself doing EvalPlanQual
update chain walking; more than two sessions doing this concurrently
will find themselves sleeping on each other because the HW tuple lock
acquisition in heap_lock_tuple called from EvalPlanQualFetch races with
the same tuple lock being acquired in heap_update -- one of these
sessions sleeps on the other one to finish while holding the tuple lock,
and the other one sleeps on the tuple lock.

Per trouble report from Andrew Sackville-West in
http://www.postgresql.org/message-id/20140731233051.GN17765@andrew-ThinkPad-X230

His scenario can be simplified down to a relatively simple
isolationtester spec file which I don't include in this commit; the
reason is that the current isolationtester is not able to deal with more
than one blocked session concurrently and it blocks instead of raising
the expected deadlock.  In the future, if we improve isolationtester, it
would be good to include the spec file in the isolation schedule.  I
posted it in
http://www.postgresql.org/message-id/20141212205254.GC1768@alvh.no-ip.org

Hat tip to Mark Kirkwood, who helped diagnose the trouble.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0e3a1f71dfb31527c07a80ccba815b2928d70d8f

Modified Files
--------------
src/backend/access/heap/heapam.c |  241 +++++++++++++++++++++++---------------
1 file changed, 144 insertions(+), 97 deletions(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Do not pass "-N" to initdb.
Next
From: Alvaro Herrera
Date:
Subject: pgsql: Grab heavyweight tuple lock only before sleeping