pgsql: Move RecoveryLockList into a hash table.

From: Thomas Munro <tmunro(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move RecoveryLockList into a hash table.
Date: 2018-06-26 07:11:51
Message-ID: E1fXi8l-0004wN-98@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move RecoveryLockList into a hash table.

Standbys frequently need to release all locks held by a given xid.
Instead of searching one big list linearly, let's create one list
per xid and put them in a hash table, so we can find what we need
in O(1) time.

Earlier analysis and a prototype were done by David Rowley, though
this isn't his patch.

Back-patch all the way.

Author: Thomas Munro
Diagnosed-by: David Rowley, Andres Freund
Reviewed-by: Andres Freund, Tom Lane, Robert Haas
Discussion: https://postgr.es/m/CAEepm%3D1mL0KiQ2KJ4yuPpLGX94a4Ns_W6TL4EGRouxWibu56pA%40mail.gmail.com
Discussion: https://postgr.es/m/CAKJS1f9vJ841HY%3DwonnLVbfkTWGYWdPN72VMxnArcGCjF3SywA%40mail.gmail.com

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/35750a38b7ab6e30aa2ee6eb7765ebd2172dd7c5

Modified Files
--------------
src/backend/storage/ipc/standby.c | 164 ++++++++++++++++++++------------------
1 file changed, 87 insertions(+), 77 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2018-06-26 07:12:09 pgsql: Move RecoveryLockList into a hash table.
Previous Message Thomas Munro 2018-06-26 07:11:29 pgsql: Move RecoveryLockList into a hash table.