]> granicus.if.org Git - postgresql/commit
Reduce ProcArrayLock contention by removing backends in batches.
authorRobert Haas <rhaas@postgresql.org>
Thu, 6 Aug 2015 15:52:51 +0000 (11:52 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 6 Aug 2015 16:02:12 +0000 (12:02 -0400)
commit0e141c0fbb211bdd23783afa731e3eef95c9ad7a
tree9b33e0846effa4c5f2f48efad39632f5f87a8940
parent253de7e1eb9abbcf57e6c229a8a38abd6455c7de
Reduce ProcArrayLock contention by removing backends in batches.

When a write transaction commits, it must clear its XID advertised via
the ProcArray, which requires that we hold ProcArrayLock in exclusive
mode in order to prevent concurrent processes running GetSnapshotData
from seeing inconsistent results.  When many processes try to commit
at once, ProcArrayLock must change hands repeatedly, with each
concurrent process trying to commit waking up to acquire the lock in
turn.  To make things more efficient, when more than one backend is
trying to commit a write transaction at the same time, have just one
of them acquire ProcArrayLock in exclusive mode and clear the XIDs of
all processes in the group.  Benchmarking reveals that this is much
more efficient at very high client counts.

Amit Kapila, heavily revised by me, with some review also from Pavan
Deolasee.
src/backend/access/transam/README
src/backend/storage/ipc/procarray.c
src/backend/storage/lmgr/proc.c
src/include/storage/proc.h