Acquire ProcArrayLock exclusively in ProcArrayClearTransaction.
authorAndres Freund <andres@anarazel.de>
Thu, 20 Aug 2020 01:19:52 +0000 (18:19 -0700)
committerAndres Freund <andres@anarazel.de>
Thu, 20 Aug 2020 01:24:33 +0000 (18:24 -0700)
commit1fe1f42e3e85279e1cb8b004b3b076a04bde4cee
tree716bd049bed8d5f64568ee1e069095b820ffa78b
parent20729324078055a4d9654fc5af9570fe625786a5
Acquire ProcArrayLock exclusively in ProcArrayClearTransaction.

This corrects an oversight by me in 20729324078, which made
ProcArrayClearTransaction() increment xactCompletionCount. That requires an
exclusive lock, obviously.

There's other approaches that avoid the exclusive acquisition, but given that a
2PC commit is fairly heavyweight, it doesn't seem worth doing so. I've not been
able to measure a performance difference, unsurprisingly.  I did add a
comment documenting that we could do so, should it ever become a bottleneck.

Reported-By: Tom Lane <tgl@sss.pgh.pa.us>
Author: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/1355915.1597794204@sss.pgh.pa.us
src/backend/storage/ipc/procarray.c