Optimize shared memory usage for WaitLSNProcInfo

Alexander Korotkov <akorotkov@postgresql.org>

Commit: 75e82b2f5a6f5de6b42dbd9ea73be5ff36a931b1
Author: Alexander Korotkov <akorotkov@postgresql.org>
Date: 2025-11-18T07:50:12Z
Optimize shared memory usage for WaitLSNProcInfo

We need separate pairing heaps for different WaitLSNType's, because there
might be waiters for different LSN's at the same time.  However, one process
can wait only for one type of LSN at a time.  So, no need for inHeap
and heapNode fields to be arrays.

Discussion: https://postgr.es/m/CAPpHfdsBR-7sDtXFJ1qpJtKiohfGoj%3DvqzKVjWxtWsWidx7G_A%40mail.gmail.com
Author: Alexander Korotkov <aekorotkov@gmail.com>
Reviewed-by: Xuneng Zhou <xunengzhou@gmail.com>

Files

PathChange+/−
src/backend/access/transam/xlogwait.c modified +19 −23
src/include/access/xlogwait.h modified +10 −4

Discussion