v30-0004-Add-TIDStore-to-store-sets-of-TIDs-ItemPointerDa.patch
application/octet-stream
Filename: v30-0004-Add-TIDStore-to-store-sets-of-TIDs-ItemPointerDa.patch
Type: application/octet-stream
Part: 6
Patch
Format: format-patch
Series: patch v30-0004
Subject: Add TIDStore, to store sets of TIDs (ItemPointerData) efficiently.
| File | + | − |
|---|---|---|
| doc/src/sgml/monitoring.sgml | 4 | 0 |
| src/backend/access/common/Makefile | 1 | 0 |
| src/backend/access/common/meson.build | 1 | 0 |
| src/backend/access/common/tidstore.c | 710 | 0 |
| src/backend/storage/lmgr/lwlock.c | 2 | 0 |
| src/include/access/tidstore.h | 50 | 0 |
| src/include/storage/lwlock.h | 1 | 0 |
| src/test/modules/Makefile | 1 | 0 |
| src/test/modules/meson.build | 1 | 0 |
| src/test/modules/test_tidstore/expected/test_tidstore.out | 13 | 0 |
| src/test/modules/test_tidstore/Makefile | 23 | 0 |
| src/test/modules/test_tidstore/meson.build | 35 | 0 |
| src/test/modules/test_tidstore/sql/test_tidstore.sql | 7 | 0 |
| src/test/modules/test_tidstore/test_tidstore--1.0.sql | 8 | 0 |
| src/test/modules/test_tidstore/test_tidstore.c | 228 | 0 |
| src/test/modules/test_tidstore/test_tidstore.control | 4 | 0 |
From 95bb8dc701efa4a5923a355880b60885dc18cfa3 Mon Sep 17 00:00:00 2001
From: Masahiko Sawada <sawada.mshk@gmail.com>
Date: Fri, 23 Dec 2022 23:50:39 +0900
Subject: [PATCH v30 04/11] Add TIDStore, to store sets of TIDs
(ItemPointerData) efficiently.
The TIDStore is designed to store large sets of TIDs efficiently, and
is backed by the radix tree. A TID is encoded into 64-bit key and
value and inserted to the radix tree.
The TIDStore is not used for anything yet, aside from the test code,
but the follow up patch integrates the TIDStore with lazy vacuum,
reducing lazy vacuum memory usage and lifting the 1GB limit on its
size, by storing the list of dead TIDs more efficiently.
This includes a unit test module, in src/test/modules/test_tidstore.
---
doc/src/sgml/monitoring.sgml | 4 +
src/backend/access/common/Makefile | 1 +
src/backend/access/common/meson.build | 1 +
src/backend/access/common/tidstore.c | 710 ++++++++++++++++++
src/backend/storage/lmgr/lwlock.c | 2 +
src/include/access/tidstore.h | 50 ++
src/include/storage/lwlock.h | 1 +
src/test/modules/Makefile | 1 +
src/test/modules/meson.build | 1 +
src/test/modules/test_tidstore/Makefile | 23 +
.../test_tidstore/expected/test_tidstore.out | 13 +
src/test/modules/test_tidstore/meson.build | 35 +
.../test_tidstore/sql/test_tidstore.sql | 7 +
.../test_tidstore/test_tidstore--1.0.sql | 8 +
.../modules/test_tidstore/test_tidstore.c | 228 ++++++
.../test_tidstore/test_tidstore.control | 4 +
16 files changed, 1089 insertions(+)
create mode 100644 src/backend/access/common/tidstore.c
create mode 100644 src/include/access/tidstore.h
create mode 100644 src/test/modules/test_tidstore/Makefile
create mode 100644 src/test/modules/test_tidstore/expected/test_tidstore.out
create mode 100644 src/test/modules/test_tidstore/meson.build
create mode 100644 src/test/modules/test_tidstore/sql/test_tidstore.sql
create mode 100644 src/test/modules/test_tidstore/test_tidstore--1.0.sql
create mode 100644 src/test/modules/test_tidstore/test_tidstore.c
create mode 100644 src/test/modules/test_tidstore/test_tidstore.control
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml
index 6249bb50d0..97d588b1d8 100644
--- a/doc/src/sgml/monitoring.sgml
+++ b/doc/src/sgml/monitoring.sgml
@@ -2203,6 +2203,10 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
<entry>Waiting to access a shared TID bitmap during a parallel bitmap
index scan.</entry>
</row>
+ <row>
+ <entry><literal>SharedTidStore</literal></entry>
+ <entry>Waiting to access a shared TID store.</entry>
+ </row>
<row>
<entry><literal>SharedTupleStore</literal></entry>
<entry>Waiting to access a shared tuple store during parallel
diff --git a/src/backend/access/common/Makefile b/src/backend/access/common/Makefile
index b9aff0ccfd..67b8cc6108 100644
--- a/src/backend/access/common/Makefile
+++ b/src/backend/access/common/Makefile
@@ -27,6 +27,7 @@ OBJS = \
syncscan.o \
toast_compression.o \
toast_internals.o \
+ tidstore.o \
tupconvert.o \
tupdesc.o
diff --git a/src/backend/access/common/meson.build b/src/backend/access/common/meson.build
index f5ac17b498..fce19c09ce 100644
--- a/src/backend/access/common/meson.build
+++ b/src/backend/access/common/meson.build
@@ -15,6 +15,7 @@ backend_sources += files(
'syncscan.c',
'toast_compression.c',
'toast_internals.c',
+ 'tidstore.c',
'tupconvert.c',
'tupdesc.c',
)
diff --git a/src/backend/access/common/tidstore.c b/src/backend/access/common/tidstore.c
new file mode 100644
index 0000000000..2d6f2b3ab9
--- /dev/null
+++ b/src/backend/access/common/tidstore.c
@@ -0,0 +1,710 @@
+/*-------------------------------------------------------------------------
+ *
+ * tidstore.c
+ * Tid (ItemPointerData) storage implementation.
+ *
+ * TidStore is a in-memory data structure to store tids (ItemPointerData).
+ * Internally, a tid is encoded as a pair of 64-bit key and 64-bit value,
+ * and stored in the radix tree.
+ *
+ * TidStore can be shared among parallel worker processes by passing DSA area
+ * to TidStoreCreate(). Other backends can attach to the shared TidStore by
+ * TidStoreAttach().
+ *
+ * Regarding the concurrency support, we use a single LWLock for the TidStore.
+ * The TidStore is exclusively locked when inserting encoded tids to the
+ * radix tree or when resetting itself. When searching on the TidStore or
+ * doing the iteration, it is not locked but the underlying radix tree is
+ * locked in shared mode.
+ *
+ * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ * IDENTIFICATION
+ * src/backend/access/common/tidstore.c
+ *
+ *-------------------------------------------------------------------------
+ */
+#include "postgres.h"
+
+#include "access/tidstore.h"
+#include "miscadmin.h"
+#include "port/pg_bitutils.h"
+#include "storage/lwlock.h"
+#include "utils/dsa.h"
+#include "utils/memutils.h"
+
+/*
+ * For encoding purposes, a tid is represented as a pair of 64-bit key and
+ * 64-bit value.
+ *
+ * First, we construct a 64-bit unsigned integer by combining the block
+ * number and the offset number. The number of bits used for the offset number
+ * is specified by max_off in TidStoreCreate(). We are frugal with the bits,
+ * because smaller keys could help keeping the radix tree shallow.
+ *
+ * For example, a tid of heap on a 8kB block uses the lowest 9 bits for
+ * the offset number and uses the next 32 bits for the block number. 9 bits
+ * are enough for the offset number, because MaxHeapTuplesPerPage < 2^9
+ * on 8kB blocks. That is, only 41 bits are used:
+ *
+ * uuuuuuuY YYYYYYYY YYYYYYYY YYYYYYYY YYYYYYYX XXXXXXXX
+ *
+ * X = bits used for offset number
+ * Y = bits used for block number
+ * u = unused bit
+ * (high on the left, low on the right)
+ *
+ * Then, 64-bit value is the bitmap representation of the lowest 6 bits
+ * (LOWER_OFFSET_NBITS) of the integer, and 64-bit key consists of the
+ * upper 3 bits of the offset number and the block number, 35 bits in
+ * total:
+ *
+ * uuuuuuuY YYYYYYYY YYYYYYYY YYYYYYYY YYYYYYYX XXXXXXXX
+ * |----| value
+ * |--------------------------------------| key
+ *
+ * The maximum height of the radix tree is 5 in this case.
+ *
+ * If the number of bits required for offset numbers fits in LOWER_OFFSET_NBITS,
+ * 64-bit value is the bitmap representation of the offset number, and the
+ * 64-bit key is the block number.
+ */
+typedef uint64 tidkey;
+typedef uint64 offsetbm;
+#define LOWER_OFFSET_NBITS 6 /* log(sizeof(offsetbm), 2) */
+#define LOWER_OFFSET_MASK ((1 << LOWER_OFFSET_NBITS) - 1)
+
+/* A magic value used to identify our TidStore. */
+#define TIDSTORE_MAGIC 0x826f6a10
+
+#define RT_PREFIX local_rt
+#define RT_SCOPE static
+#define RT_DECLARE
+#define RT_DEFINE
+#define RT_VALUE_TYPE tidkey
+#include "lib/radixtree.h"
+
+#define RT_PREFIX shared_rt
+#define RT_SHMEM
+#define RT_SCOPE static
+#define RT_DECLARE
+#define RT_DEFINE
+#define RT_VALUE_TYPE tidkey
+#include "lib/radixtree.h"
+
+/* The control object for a TidStore */
+typedef struct TidStoreControl
+{
+ /* the number of tids in the store */
+ int64 num_tids;
+
+ /* These values are never changed after creation */
+ size_t max_bytes; /* the maximum bytes a TidStore can use */
+ OffsetNumber max_off; /* the maximum offset number */
+ int max_off_nbits; /* the number of bits required for offset
+ * numbers */
+ int upper_off_nbits; /* the number of bits of offset numbers
+ * used in a key */
+
+ /* The below fields are used only in shared case */
+
+ uint32 magic;
+ LWLock lock;
+
+ /* handles for TidStore and radix tree */
+ TidStoreHandle handle;
+ shared_rt_handle tree_handle;
+} TidStoreControl;
+
+/* Per-backend state for a TidStore */
+struct TidStore
+{
+ /*
+ * Control object. This is allocated in DSA area 'area' in the shared
+ * case, otherwise in backend-local memory.
+ */
+ TidStoreControl *control;
+
+ /* Storage for Tids. Use either one depending on TidStoreIsShared() */
+ union
+ {
+ local_rt_radix_tree *local;
+ shared_rt_radix_tree *shared;
+ } tree;
+
+ /* DSA area for TidStore if used */
+ dsa_area *area;
+};
+#define TidStoreIsShared(ts) ((ts)->area != NULL)
+
+/* Iterator for TidStore */
+typedef struct TidStoreIter
+{
+ TidStore *ts;
+
+ /* iterator of radix tree. Use either one depending on TidStoreIsShared() */
+ union
+ {
+ shared_rt_iter *shared;
+ local_rt_iter *local;
+ } tree_iter;
+
+ /* we returned all tids? */
+ bool finished;
+
+ /* save for the next iteration */
+ tidkey next_tidkey;
+ offsetbm next_off_bitmap;
+
+ /*
+ * output for the caller. Must be last because variable-size.
+ */
+ TidStoreIterResult output;
+} TidStoreIter;
+
+static void iter_decode_key_off(TidStoreIter *iter, tidkey key, offsetbm off_bitmap);
+static inline BlockNumber key_get_blkno(TidStore *ts, tidkey key);
+static inline tidkey encode_blk_off(TidStore *ts, BlockNumber block,
+ OffsetNumber offset, offsetbm *off_bit);
+static inline tidkey encode_tid(TidStore *ts, ItemPointer tid, offsetbm *off_bit);
+
+/*
+ * Create a TidStore. The returned object is allocated in backend-local memory.
+ * The radix tree for storage is allocated in DSA area is 'area' is non-NULL.
+ */
+TidStore *
+TidStoreCreate(size_t max_bytes, OffsetNumber max_off, dsa_area *area)
+{
+ TidStore *ts;
+
+ Assert(max_off <= MaxOffsetNumber);
+
+ ts = palloc0(sizeof(TidStore));
+
+ /*
+ * Create the radix tree for the main storage.
+ *
+ * Memory consumption depends on the number of stored tids, but also on the
+ * distribution of them, how the radix tree stores, and the memory management
+ * that backed the radix tree. The maximum bytes that a TidStore can
+ * use is specified by the max_bytes in TidStoreCreate(). We want the total
+ * amount of memory consumption by a TidStore not to exceed the max_bytes.
+ *
+ * In local TidStore cases, the radix tree uses slab allocators for each kind
+ * of node class. The most memory consuming case while adding Tids associated
+ * with one page (i.e. during TidStoreSetBlockOffsets()) is that we allocate a new
+ * slab block for a new radix tree node, which is approximately 70kB. Therefore,
+ * we deduct 70kB from the max_bytes.
+ *
+ * In shared cases, DSA allocates the memory segments big enough to follow
+ * a geometric series that approximately doubles the total DSA size (see
+ * make_new_segment() in dsa.c). We simulated the how DSA increases segment
+ * size and the simulation revealed, the 75% threshold for the maximum bytes
+ * perfectly works in case where the max_bytes is a power-of-2, and the 60%
+ * threshold works for other cases.
+ */
+ if (area != NULL)
+ {
+ dsa_pointer dp;
+ float ratio = ((max_bytes & (max_bytes - 1)) == 0) ? 0.75 : 0.6;
+
+ ts->tree.shared = shared_rt_create(CurrentMemoryContext, area,
+ LWTRANCHE_SHARED_TIDSTORE);
+
+ dp = dsa_allocate0(area, sizeof(TidStoreControl));
+ ts->control = (TidStoreControl *) dsa_get_address(area, dp);
+ ts->control->max_bytes = (size_t) (max_bytes * ratio);
+ ts->area = area;
+
+ ts->control->magic = TIDSTORE_MAGIC;
+ LWLockInitialize(&ts->control->lock, LWTRANCHE_SHARED_TIDSTORE);
+ ts->control->handle = dp;
+ ts->control->tree_handle = shared_rt_get_handle(ts->tree.shared);
+ }
+ else
+ {
+ ts->tree.local = local_rt_create(CurrentMemoryContext);
+
+ ts->control = (TidStoreControl *) palloc0(sizeof(TidStoreControl));
+ ts->control->max_bytes = max_bytes - (70 * 1024);
+ }
+
+ ts->control->max_off = max_off;
+ ts->control->max_off_nbits = pg_ceil_log2_32(max_off);
+
+ if (ts->control->max_off_nbits < LOWER_OFFSET_NBITS)
+ ts->control->max_off_nbits = LOWER_OFFSET_NBITS;
+
+ ts->control->upper_off_nbits =
+ ts->control->max_off_nbits - LOWER_OFFSET_NBITS;
+
+ return ts;
+}
+
+/*
+ * Attach to the shared TidStore using a handle. The returned object is
+ * allocated in backend-local memory using the CurrentMemoryContext.
+ */
+TidStore *
+TidStoreAttach(dsa_area *area, TidStoreHandle handle)
+{
+ TidStore *ts;
+ dsa_pointer control;
+
+ Assert(area != NULL);
+ Assert(DsaPointerIsValid(handle));
+
+ /* create per-backend state */
+ ts = palloc0(sizeof(TidStore));
+
+ /* Find the control object in shared memory */
+ control = handle;
+
+ /* Set up the TidStore */
+ ts->control = (TidStoreControl *) dsa_get_address(area, control);
+ Assert(ts->control->magic == TIDSTORE_MAGIC);
+
+ ts->tree.shared = shared_rt_attach(area, ts->control->tree_handle);
+ ts->area = area;
+
+ return ts;
+}
+
+/*
+ * Detach from a TidStore. This detaches from radix tree and frees the
+ * backend-local resources. The radix tree will continue to exist until
+ * it is either explicitly destroyed, or the area that backs it is returned
+ * to the operating system.
+ */
+void
+TidStoreDetach(TidStore *ts)
+{
+ Assert(TidStoreIsShared(ts) && ts->control->magic == TIDSTORE_MAGIC);
+
+ shared_rt_detach(ts->tree.shared);
+ pfree(ts);
+}
+
+/*
+ * Destroy a TidStore, returning all memory.
+ *
+ * TODO: The caller must be certain that no other backend will attempt to
+ * access the TidStore before calling this function. Other backend must
+ * explicitly call TidStoreDetach() to free up backend-local memory associated
+ * with the TidStore. The backend that calls TidStoreDestroy() must not call
+ * TidStoreDetach().
+ */
+void
+TidStoreDestroy(TidStore *ts)
+{
+ if (TidStoreIsShared(ts))
+ {
+ Assert(ts->control->magic == TIDSTORE_MAGIC);
+
+ /*
+ * Vandalize the control block to help catch programming error where
+ * other backends access the memory formerly occupied by this radix
+ * tree.
+ */
+ ts->control->magic = 0;
+ dsa_free(ts->area, ts->control->handle);
+ shared_rt_free(ts->tree.shared);
+ }
+ else
+ {
+ pfree(ts->control);
+ local_rt_free(ts->tree.local);
+ }
+
+ pfree(ts);
+}
+
+/*
+ * Forget all collected Tids. It's similar to TidStoreDestroy() but we don't free
+ * entire TidStore but recreate only the radix tree storage.
+ */
+void
+TidStoreReset(TidStore *ts)
+{
+ if (TidStoreIsShared(ts))
+ {
+ Assert(ts->control->magic == TIDSTORE_MAGIC);
+
+ LWLockAcquire(&ts->control->lock, LW_EXCLUSIVE);
+
+ /*
+ * Free the radix tree and return allocated DSA segments to
+ * the operating system.
+ */
+ shared_rt_free(ts->tree.shared);
+ dsa_trim(ts->area);
+
+ /* Recreate the radix tree */
+ ts->tree.shared = shared_rt_create(CurrentMemoryContext, ts->area,
+ LWTRANCHE_SHARED_TIDSTORE);
+
+ /* update the radix tree handle as we recreated it */
+ ts->control->tree_handle = shared_rt_get_handle(ts->tree.shared);
+
+ /* Reset the statistics */
+ ts->control->num_tids = 0;
+
+ LWLockRelease(&ts->control->lock);
+ }
+ else
+ {
+ local_rt_free(ts->tree.local);
+ ts->tree.local = local_rt_create(CurrentMemoryContext);
+
+ /* Reset the statistics */
+ ts->control->num_tids = 0;
+ }
+}
+
+/*
+ * Set the given tids on the blkno to TidStore.
+ *
+ * NB: the offset numbers in offsets must be sorted in ascending order.
+ */
+void
+TidStoreSetBlockOffsets(TidStore *ts, BlockNumber blkno, OffsetNumber *offsets,
+ int num_offsets)
+{
+ offsetbm *bitmaps;
+ tidkey key;
+ tidkey prev_key;
+ offsetbm off_bitmap = 0;
+ int idx;
+ const tidkey key_base = ((uint64) blkno) << ts->control->upper_off_nbits;
+ const int nkeys = UINT64CONST(1) << ts->control->upper_off_nbits;
+
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+ Assert(BlockNumberIsValid(blkno));
+
+ bitmaps = palloc(sizeof(offsetbm) * nkeys);
+ key = prev_key = key_base;
+
+ for (int i = 0; i < num_offsets; i++)
+ {
+ offsetbm off_bit;
+
+ Assert(offsets[i] <= ts->control->max_off);
+
+ /* encode the tid to a key and partial offset */
+ key = encode_blk_off(ts, blkno, offsets[i], &off_bit);
+
+ /* make sure we scanned the line pointer array in order */
+ Assert(key >= prev_key);
+
+ if (key > prev_key)
+ {
+ idx = prev_key - key_base;
+ Assert(idx >= 0 && idx < nkeys);
+
+ /* write out offset bitmap for this key */
+ bitmaps[idx] = off_bitmap;
+
+ /* zero out any gaps up to the current key */
+ for (int empty_idx = idx + 1; empty_idx < key - key_base; empty_idx++)
+ bitmaps[empty_idx] = 0;
+
+ /* reset for current key -- the current offset will be handled below */
+ off_bitmap = 0;
+ prev_key = key;
+ }
+
+ off_bitmap |= off_bit;
+ }
+
+ /* save the final index for later */
+ idx = key - key_base;
+ /* write out last offset bitmap */
+ bitmaps[idx] = off_bitmap;
+
+ if (TidStoreIsShared(ts))
+ LWLockAcquire(&ts->control->lock, LW_EXCLUSIVE);
+
+ /* insert the calculated key-values to the tree */
+ for (int i = 0; i <= idx; i++)
+ {
+ if (bitmaps[i])
+ {
+ key = key_base + i;
+
+ if (TidStoreIsShared(ts))
+ shared_rt_set(ts->tree.shared, key, &bitmaps[i]);
+ else
+ local_rt_set(ts->tree.local, key, &bitmaps[i]);
+ }
+ }
+
+ /* update statistics */
+ ts->control->num_tids += num_offsets;
+
+ if (TidStoreIsShared(ts))
+ LWLockRelease(&ts->control->lock);
+
+ pfree(bitmaps);
+}
+
+/* Return true if the given tid is present in the TidStore */
+bool
+TidStoreIsMember(TidStore *ts, ItemPointer tid)
+{
+ tidkey key;
+ offsetbm off_bitmap = 0;
+ offsetbm off_bit;
+ bool found;
+
+ Assert(ItemPointerIsValid(tid));
+
+ key = encode_tid(ts, tid, &off_bit);
+
+ if (TidStoreIsShared(ts))
+ found = shared_rt_search(ts->tree.shared, key, &off_bitmap);
+ else
+ found = local_rt_search(ts->tree.local, key, &off_bitmap);
+
+ if (!found)
+ return false;
+
+ return (off_bitmap & off_bit) != 0;
+}
+
+/*
+ * Prepare to iterate through a TidStore. Since the radix tree is locked during
+ * the iteration, so TidStoreEndIterate() needs to be called when finished.
+ *
+ * The TidStoreIter struct is created in the caller's memory context.
+ *
+ * Concurrent updates during the iteration will be blocked when inserting a
+ * key-value to the radix tree.
+ */
+TidStoreIter *
+TidStoreBeginIterate(TidStore *ts)
+{
+ TidStoreIter *iter;
+
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+
+ iter = palloc0(sizeof(TidStoreIter) +
+ sizeof(OffsetNumber) * ts->control->max_off);
+ iter->ts = ts;
+
+ if (TidStoreIsShared(ts))
+ iter->tree_iter.shared = shared_rt_begin_iterate(ts->tree.shared);
+ else
+ iter->tree_iter.local = local_rt_begin_iterate(ts->tree.local);
+
+ /* If the TidStore is empty, there is no business */
+ if (TidStoreNumTids(ts) == 0)
+ iter->finished = true;
+
+ return iter;
+}
+
+static inline bool
+tidstore_iter(TidStoreIter *iter, tidkey *key, offsetbm *off_bitmap)
+{
+ if (TidStoreIsShared(iter->ts))
+ return shared_rt_iterate_next(iter->tree_iter.shared, key, off_bitmap);
+
+ return local_rt_iterate_next(iter->tree_iter.local, key, off_bitmap);
+}
+
+/*
+ * Scan the TidStore and return a pointer to TidStoreIterResult that has tids
+ * in one block. We return the block numbers in ascending order and the offset
+ * numbers in each result is also sorted in ascending order.
+ */
+TidStoreIterResult *
+TidStoreIterateNext(TidStoreIter *iter)
+{
+ tidkey key;
+ offsetbm off_bitmap = 0;
+ TidStoreIterResult *output = &(iter->output);
+
+ if (iter->finished)
+ return NULL;
+
+ /* Initialize the outputs */
+ output->blkno = InvalidBlockNumber;
+ output->num_offsets = 0;
+
+ /*
+ * Decode the key and offset bitmap that are collected in the previous
+ * time, if exists.
+ */
+ if (iter->next_off_bitmap > 0)
+ iter_decode_key_off(iter, iter->next_tidkey, iter->next_off_bitmap);
+
+ while (tidstore_iter(iter, &key, &off_bitmap))
+ {
+ BlockNumber blkno = key_get_blkno(iter->ts, key);
+ Assert(BlockNumberIsValid(blkno));
+
+ if (BlockNumberIsValid(output->blkno) && output->blkno != blkno)
+ {
+ /*
+ * We got tids for a different block. We return the collected
+ * tids so far, and remember the key-value for the next
+ * iteration.
+ */
+ iter->next_tidkey = key;
+ iter->next_off_bitmap = off_bitmap;
+ return output;
+ }
+
+ /* Collect tids decoded from the key and offset bitmap */
+ iter_decode_key_off(iter, key, off_bitmap);
+ }
+
+ iter->finished = true;
+ return output;
+}
+
+/*
+ * Finish an iteration over TidStore. This needs to be called after finishing
+ * or when existing an iteration.
+ */
+void
+TidStoreEndIterate(TidStoreIter *iter)
+{
+ if (TidStoreIsShared(iter->ts))
+ shared_rt_end_iterate(iter->tree_iter.shared);
+ else
+ local_rt_end_iterate(iter->tree_iter.local);
+
+ pfree(iter);
+}
+
+/* Return the number of tids we collected so far */
+int64
+TidStoreNumTids(TidStore *ts)
+{
+ int64 num_tids;
+
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+
+ if (!TidStoreIsShared(ts))
+ return ts->control->num_tids;
+
+ LWLockAcquire(&ts->control->lock, LW_SHARED);
+ num_tids = ts->control->num_tids;
+ LWLockRelease(&ts->control->lock);
+
+ Assert(num_tids >= 0);
+ return num_tids;
+}
+
+/* Return true if the current memory usage of TidStore exceeds the limit */
+bool
+TidStoreIsFull(TidStore *ts)
+{
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+
+ return (TidStoreMemoryUsage(ts) > ts->control->max_bytes);
+}
+
+/* Return the maximum memory TidStore can use */
+size_t
+TidStoreMaxMemory(TidStore *ts)
+{
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+
+ return ts->control->max_bytes;
+}
+
+/* Return the memory usage of TidStore */
+size_t
+TidStoreMemoryUsage(TidStore *ts)
+{
+ Assert(!TidStoreIsShared(ts) || ts->control->magic == TIDSTORE_MAGIC);
+
+ /*
+ * In the shared case, TidStoreControl and radix_tree are backed by the
+ * same DSA area and rt_memory_usage() returns the value including both.
+ * So we don't need to add the size of TidStoreControl separately.
+ */
+ if (TidStoreIsShared(ts))
+ return sizeof(TidStore) + shared_rt_memory_usage(ts->tree.shared);
+
+ return sizeof(TidStore) + sizeof(TidStore) + local_rt_memory_usage(ts->tree.local);
+}
+
+/*
+ * Get a handle that can be used by other processes to attach to this TidStore
+ */
+TidStoreHandle
+TidStoreGetHandle(TidStore *ts)
+{
+ Assert(TidStoreIsShared(ts) && ts->control->magic == TIDSTORE_MAGIC);
+
+ return ts->control->handle;
+}
+
+/*
+ * Decode the key and offset bitmap to tids and store them to the iteration
+ * result.
+ */
+static void
+iter_decode_key_off(TidStoreIter *iter, tidkey key, offsetbm off_bitmap)
+{
+ TidStoreIterResult *output = (&iter->output);
+
+ while (off_bitmap)
+ {
+ uint64 compressed_tid;
+ OffsetNumber off;
+
+ compressed_tid = key << LOWER_OFFSET_NBITS;
+ compressed_tid |= pg_rightmost_one_pos64(off_bitmap);
+
+ off = compressed_tid & ((UINT64CONST(1) << iter->ts->control->max_off_nbits) - 1);
+
+ Assert(output->num_offsets < iter->ts->control->max_off);
+ output->offsets[output->num_offsets++] = off;
+
+ /* unset the rightmost bit */
+ off_bitmap &= ~pg_rightmost_one64(off_bitmap);
+ }
+
+ output->blkno = key_get_blkno(iter->ts, key);
+}
+
+/* Get block number from the given key */
+static inline BlockNumber
+key_get_blkno(TidStore *ts, tidkey key)
+{
+ return (BlockNumber) (key >> ts->control->upper_off_nbits);
+}
+
+/* Encode a tid to key and partial offset */
+static inline tidkey
+encode_tid(TidStore *ts, ItemPointer tid, offsetbm *off_bit)
+{
+ OffsetNumber offset = ItemPointerGetOffsetNumber(tid);
+ BlockNumber block = ItemPointerGetBlockNumber(tid);
+
+ return encode_blk_off(ts, block, offset, off_bit);
+}
+
+/* encode a block and offset to a key and partial offset */
+static inline tidkey
+encode_blk_off(TidStore *ts, BlockNumber block, OffsetNumber offset,
+ offsetbm *off_bit)
+{
+ tidkey key;
+ uint64 compressed_tid;
+ uint32 off_lower;
+
+ off_lower = offset & LOWER_OFFSET_MASK;
+ Assert(off_lower < (sizeof(offsetbm) * BITS_PER_BYTE));
+
+ *off_bit = UINT64CONST(1) << off_lower;
+ compressed_tid = offset | ((uint64) block << ts->control->max_off_nbits);
+ key = compressed_tid >> LOWER_OFFSET_NBITS;
+
+ return key;
+}
diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c
index d2ec396045..55b3a04097 100644
--- a/src/backend/storage/lmgr/lwlock.c
+++ b/src/backend/storage/lmgr/lwlock.c
@@ -176,6 +176,8 @@ static const char *const BuiltinTrancheNames[] = {
"SharedTupleStore",
/* LWTRANCHE_SHARED_TIDBITMAP: */
"SharedTidBitmap",
+ /* LWTRANCHE_SHARED_TIDSTORE: */
+ "SharedTidStore",
/* LWTRANCHE_PARALLEL_APPEND: */
"ParallelAppend",
/* LWTRANCHE_PER_XACT_PREDICATE_LIST: */
diff --git a/src/include/access/tidstore.h b/src/include/access/tidstore.h
new file mode 100644
index 0000000000..d1cc93cbb6
--- /dev/null
+++ b/src/include/access/tidstore.h
@@ -0,0 +1,50 @@
+/*-------------------------------------------------------------------------
+ *
+ * tidstore.h
+ * Tid storage.
+ *
+ *
+ * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ * src/include/access/tidstore.h
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef TIDSTORE_H
+#define TIDSTORE_H
+
+#include "storage/itemptr.h"
+#include "utils/dsa.h"
+
+typedef dsa_pointer TidStoreHandle;
+
+typedef struct TidStore TidStore;
+typedef struct TidStoreIter TidStoreIter;
+
+/* Result struct for TidStoreIterateNext */
+typedef struct TidStoreIterResult
+{
+ BlockNumber blkno;
+ int num_offsets;
+ OffsetNumber offsets[FLEXIBLE_ARRAY_MEMBER];
+} TidStoreIterResult;
+
+extern TidStore *TidStoreCreate(size_t max_bytes, OffsetNumber max_off, dsa_area *dsa);
+extern TidStore *TidStoreAttach(dsa_area *dsa, dsa_pointer handle);
+extern void TidStoreDetach(TidStore *ts);
+extern void TidStoreDestroy(TidStore *ts);
+extern void TidStoreReset(TidStore *ts);
+extern void TidStoreSetBlockOffsets(TidStore *ts, BlockNumber blkno, OffsetNumber *offsets,
+ int num_offsets);
+extern bool TidStoreIsMember(TidStore *ts, ItemPointer tid);
+extern TidStoreIter * TidStoreBeginIterate(TidStore *ts);
+extern TidStoreIterResult *TidStoreIterateNext(TidStoreIter *iter);
+extern void TidStoreEndIterate(TidStoreIter *iter);
+extern int64 TidStoreNumTids(TidStore *ts);
+extern bool TidStoreIsFull(TidStore *ts);
+extern size_t TidStoreMaxMemory(TidStore *ts);
+extern size_t TidStoreMemoryUsage(TidStore *ts);
+extern TidStoreHandle TidStoreGetHandle(TidStore *ts);
+
+#endif /* TIDSTORE_H */
diff --git a/src/include/storage/lwlock.h b/src/include/storage/lwlock.h
index d2c7afb8f4..07002fdfbe 100644
--- a/src/include/storage/lwlock.h
+++ b/src/include/storage/lwlock.h
@@ -199,6 +199,7 @@ typedef enum BuiltinTrancheIds
LWTRANCHE_PER_SESSION_RECORD_TYPMOD,
LWTRANCHE_SHARED_TUPLESTORE,
LWTRANCHE_SHARED_TIDBITMAP,
+ LWTRANCHE_SHARED_TIDSTORE,
LWTRANCHE_PARALLEL_APPEND,
LWTRANCHE_PER_XACT_PREDICATE_LIST,
LWTRANCHE_PGSTATS_DSA,
diff --git a/src/test/modules/Makefile b/src/test/modules/Makefile
index 9659eb85d7..bddc16ada7 100644
--- a/src/test/modules/Makefile
+++ b/src/test/modules/Makefile
@@ -34,6 +34,7 @@ SUBDIRS = \
test_rls_hooks \
test_shm_mq \
test_slru \
+ test_tidstore \
unsafe_tests \
worker_spi
diff --git a/src/test/modules/meson.build b/src/test/modules/meson.build
index 232cbdac80..c0d5645ad8 100644
--- a/src/test/modules/meson.build
+++ b/src/test/modules/meson.build
@@ -30,5 +30,6 @@ subdir('test_regex')
subdir('test_rls_hooks')
subdir('test_shm_mq')
subdir('test_slru')
+subdir('test_tidstore')
subdir('unsafe_tests')
subdir('worker_spi')
diff --git a/src/test/modules/test_tidstore/Makefile b/src/test/modules/test_tidstore/Makefile
new file mode 100644
index 0000000000..dab107d70c
--- /dev/null
+++ b/src/test/modules/test_tidstore/Makefile
@@ -0,0 +1,23 @@
+# src/test/modules/test_tidstore/Makefile
+
+MODULE_big = test_tidstore
+OBJS = \
+ $(WIN32RES) \
+ test_tidstore.o
+PGFILEDESC = "test_tidstore - test code for src/backend/access/common/tidstore.c"
+
+EXTENSION = test_tidstore
+DATA = test_tidstore--1.0.sql
+
+REGRESS = test_tidstore
+
+ifdef USE_PGXS
+PG_CONFIG = pg_config
+PGXS := $(shell $(PG_CONFIG) --pgxs)
+include $(PGXS)
+else
+subdir = src/test/modules/test_tidstore
+top_builddir = ../../../..
+include $(top_builddir)/src/Makefile.global
+include $(top_srcdir)/contrib/contrib-global.mk
+endif
diff --git a/src/test/modules/test_tidstore/expected/test_tidstore.out b/src/test/modules/test_tidstore/expected/test_tidstore.out
new file mode 100644
index 0000000000..7ff2f9af87
--- /dev/null
+++ b/src/test/modules/test_tidstore/expected/test_tidstore.out
@@ -0,0 +1,13 @@
+CREATE EXTENSION test_tidstore;
+--
+-- All the logic is in the test_tidstore() function. It will throw
+-- an error if something fails.
+--
+SELECT test_tidstore();
+NOTICE: testing empty tidstore
+NOTICE: testing basic operations
+ test_tidstore
+---------------
+
+(1 row)
+
diff --git a/src/test/modules/test_tidstore/meson.build b/src/test/modules/test_tidstore/meson.build
new file mode 100644
index 0000000000..31f2da7b61
--- /dev/null
+++ b/src/test/modules/test_tidstore/meson.build
@@ -0,0 +1,35 @@
+# FIXME: prevent install during main install, but not during test :/
+
+test_tidstore_sources = files(
+ 'test_tidstore.c',
+)
+
+if host_system == 'windows'
+ test_tidstore_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
+ '--NAME', 'test_tidstore',
+ '--FILEDESC', 'test_tidstore - test code for src/backend/access/common/tidstore.c',])
+endif
+
+test_tidstore = shared_module('test_tidstore',
+ test_tidstore_sources,
+ link_with: pgport_srv,
+ kwargs: pg_mod_args,
+)
+testprep_targets += test_tidstore
+
+install_data(
+ 'test_tidstore.control',
+ 'test_tidstore--1.0.sql',
+ kwargs: contrib_data_args,
+)
+
+tests += {
+ 'name': 'test_tidstore',
+ 'sd': meson.current_source_dir(),
+ 'bd': meson.current_build_dir(),
+ 'regress': {
+ 'sql': [
+ 'test_tidstore',
+ ],
+ },
+}
diff --git a/src/test/modules/test_tidstore/sql/test_tidstore.sql b/src/test/modules/test_tidstore/sql/test_tidstore.sql
new file mode 100644
index 0000000000..03aea31815
--- /dev/null
+++ b/src/test/modules/test_tidstore/sql/test_tidstore.sql
@@ -0,0 +1,7 @@
+CREATE EXTENSION test_tidstore;
+
+--
+-- All the logic is in the test_tidstore() function. It will throw
+-- an error if something fails.
+--
+SELECT test_tidstore();
diff --git a/src/test/modules/test_tidstore/test_tidstore--1.0.sql b/src/test/modules/test_tidstore/test_tidstore--1.0.sql
new file mode 100644
index 0000000000..47e9149900
--- /dev/null
+++ b/src/test/modules/test_tidstore/test_tidstore--1.0.sql
@@ -0,0 +1,8 @@
+/* src/test/modules/test_tidstore/test_tidstore--1.0.sql */
+
+-- complain if script is sourced in psql, rather than via CREATE EXTENSION
+\echo Use "CREATE EXTENSION test_tidstore" to load this file. \quit
+
+CREATE FUNCTION test_tidstore()
+RETURNS pg_catalog.void STRICT
+AS 'MODULE_PATHNAME' LANGUAGE C;
diff --git a/src/test/modules/test_tidstore/test_tidstore.c b/src/test/modules/test_tidstore/test_tidstore.c
new file mode 100644
index 0000000000..8659e6780e
--- /dev/null
+++ b/src/test/modules/test_tidstore/test_tidstore.c
@@ -0,0 +1,228 @@
+/*--------------------------------------------------------------------------
+ *
+ * test_tidstore.c
+ * Test TidStore data structure.
+ *
+ * Copyright (c) 2023, PostgreSQL Global Development Group
+ *
+ * IDENTIFICATION
+ * src/test/modules/test_tidstore/test_tidstore.c
+ *
+ * -------------------------------------------------------------------------
+ */
+#include "postgres.h"
+
+#include "access/htup_details.h"
+#include "access/tidstore.h"
+#include "fmgr.h"
+#include "miscadmin.h"
+#include "storage/block.h"
+#include "storage/itemptr.h"
+#include "storage/lwlock.h"
+#include "utils/memutils.h"
+
+PG_MODULE_MAGIC;
+
+/* #define TEST_SHARED_TIDSTORE 1 */
+
+#define TEST_TIDSTORE_MAX_BYTES (2 * 1024 * 1024L) /* 2MB */
+
+PG_FUNCTION_INFO_V1(test_tidstore);
+
+static void
+check_tid(TidStore *ts, BlockNumber blkno, OffsetNumber off, bool expect)
+{
+ ItemPointerData tid;
+ bool found;
+
+ ItemPointerSet(&tid, blkno, off);
+
+ found = TidStoreIsMember(ts, &tid);
+
+ if (found != expect)
+ elog(ERROR, "TidStoreIsMember for TID (%u, %u) returned %d, expected %d",
+ blkno, off, found, expect);
+}
+
+static void
+test_basic(int max_offset)
+{
+#define TEST_TIDSTORE_NUM_BLOCKS 5
+#define TEST_TIDSTORE_NUM_OFFSETS 5
+
+ TidStore *ts;
+ TidStoreIter *iter;
+ TidStoreIterResult *iter_result;
+ BlockNumber blks[TEST_TIDSTORE_NUM_BLOCKS] = {
+ 0, MaxBlockNumber, MaxBlockNumber - 1, 1, MaxBlockNumber / 2,
+ };
+ BlockNumber blks_sorted[TEST_TIDSTORE_NUM_BLOCKS] = {
+ 0, 1, MaxBlockNumber / 2, MaxBlockNumber - 1, MaxBlockNumber
+ };
+ OffsetNumber offs[TEST_TIDSTORE_NUM_OFFSETS];
+ int blk_idx;
+
+#ifdef TEST_SHARED_TIDSTORE
+ int tranche_id = LWLockNewTrancheId();
+ dsa_area *dsa;
+
+ LWLockRegisterTranche(tranche_id, "test_tidstore");
+ dsa = dsa_create(tranche_id);
+
+ ts = TidStoreCreate(TEST_TIDSTORE_MAX_BYTES, max_offset, dsa);
+#else
+ ts = TidStoreCreate(TEST_TIDSTORE_MAX_BYTES, max_offset, NULL);
+#endif
+
+ /* prepare the offset array */
+ offs[0] = FirstOffsetNumber;
+ offs[1] = FirstOffsetNumber + 1;
+ offs[2] = max_offset / 2;
+ offs[3] = max_offset - 1;
+ offs[4] = max_offset;
+
+ /* add tids */
+ for (int i = 0; i < TEST_TIDSTORE_NUM_BLOCKS; i++)
+ TidStoreSetBlockOffsets(ts, blks[i], offs, TEST_TIDSTORE_NUM_OFFSETS);
+
+ /* lookup test */
+ for (OffsetNumber off = FirstOffsetNumber ; off < max_offset; off++)
+ {
+ bool expect = false;
+ for (int i = 0; i < TEST_TIDSTORE_NUM_OFFSETS; i++)
+ {
+ if (offs[i] == off)
+ {
+ expect = true;
+ break;
+ }
+ }
+
+ check_tid(ts, 0, off, expect);
+ check_tid(ts, 2, off, false);
+ check_tid(ts, MaxBlockNumber - 2, off, false);
+ check_tid(ts, MaxBlockNumber, off, expect);
+ }
+
+ /* test the number of tids */
+ if (TidStoreNumTids(ts) != (TEST_TIDSTORE_NUM_BLOCKS * TEST_TIDSTORE_NUM_OFFSETS))
+ elog(ERROR, "TidStoreNumTids returned " UINT64_FORMAT ", expected %d",
+ TidStoreNumTids(ts),
+ TEST_TIDSTORE_NUM_BLOCKS * TEST_TIDSTORE_NUM_OFFSETS);
+
+ /* iteration test */
+ iter = TidStoreBeginIterate(ts);
+ blk_idx = 0;
+ while ((iter_result = TidStoreIterateNext(iter)) != NULL)
+ {
+ /* check the returned block number */
+ if (blks_sorted[blk_idx] != iter_result->blkno)
+ elog(ERROR, "TidStoreIterateNext returned block number %u, expected %u",
+ iter_result->blkno, blks_sorted[blk_idx]);
+
+ /* check the returned offset numbers */
+ if (TEST_TIDSTORE_NUM_OFFSETS != iter_result->num_offsets)
+ elog(ERROR, "TidStoreIterateNext %u offsets, expected %u",
+ iter_result->num_offsets, TEST_TIDSTORE_NUM_OFFSETS);
+
+ for (int i = 0; i < iter_result->num_offsets; i++)
+ {
+ if (offs[i] != iter_result->offsets[i])
+ elog(ERROR, "TidStoreIterateNext offset number %u on block %u, expected %u",
+ iter_result->offsets[i], iter_result->blkno, offs[i]);
+ }
+
+ blk_idx++;
+ }
+
+ if (blk_idx != TEST_TIDSTORE_NUM_BLOCKS)
+ elog(ERROR, "TidStoreIterateNext returned %d blocks, expected %d",
+ blk_idx, TEST_TIDSTORE_NUM_BLOCKS);
+
+ /* remove all tids */
+ TidStoreReset(ts);
+
+ /* test the number of tids */
+ if (TidStoreNumTids(ts) != 0)
+ elog(ERROR, "TidStoreNumTids on empty store returned non-zero");
+
+ /* lookup test for empty store */
+ for (OffsetNumber off = FirstOffsetNumber ; off < MaxHeapTuplesPerPage;
+ off++)
+ {
+ check_tid(ts, 0, off, false);
+ check_tid(ts, 2, off, false);
+ check_tid(ts, MaxBlockNumber - 2, off, false);
+ check_tid(ts, MaxBlockNumber, off, false);
+ }
+
+ TidStoreDestroy(ts);
+
+#ifdef TEST_SHARED_TIDSTORE
+ dsa_detach(dsa);
+#endif
+}
+
+static void
+test_empty(void)
+{
+ TidStore *ts;
+ TidStoreIter *iter;
+ ItemPointerData tid;
+
+#ifdef TEST_SHARED_TIDSTORE
+ int tranche_id = LWLockNewTrancheId();
+ dsa_area *dsa;
+
+ LWLockRegisterTranche(tranche_id, "test_tidstore");
+ dsa = dsa_create(tranche_id);
+
+ ts = TidStoreCreate(TEST_TIDSTORE_MAX_BYTES, MaxHeapTuplesPerPage, dsa);
+#else
+ ts = TidStoreCreate(TEST_TIDSTORE_MAX_BYTES, MaxHeapTuplesPerPage, NULL);
+#endif
+
+ elog(NOTICE, "testing empty tidstore");
+
+ ItemPointerSet(&tid, 0, FirstOffsetNumber);
+ if (TidStoreIsMember(ts, &tid))
+ elog(ERROR, "TidStoreIsMember for TID (%u,%u) on empty store returned true",
+ 0, FirstOffsetNumber);
+
+ ItemPointerSet(&tid, MaxBlockNumber, MaxOffsetNumber);
+ if (TidStoreIsMember(ts, &tid))
+ elog(ERROR, "TidStoreIsMember for TID (%u,%u) on empty store returned true",
+ MaxBlockNumber, MaxOffsetNumber);
+
+ if (TidStoreNumTids(ts) != 0)
+ elog(ERROR, "TidStoreNumTids on empty store returned non-zero");
+
+ if (TidStoreIsFull(ts))
+ elog(ERROR, "TidStoreIsFull on empty store returned true");
+
+ iter = TidStoreBeginIterate(ts);
+
+ if (TidStoreIterateNext(iter) != NULL)
+ elog(ERROR, "TidStoreIterateNext on empty store returned TIDs");
+
+ TidStoreEndIterate(iter);
+
+ TidStoreDestroy(ts);
+
+#ifdef TEST_SHARED_TIDSTORE
+ dsa_detach(dsa);
+#endif
+}
+
+Datum
+test_tidstore(PG_FUNCTION_ARGS)
+{
+ test_empty();
+
+ elog(NOTICE, "testing basic operations");
+ test_basic(MaxHeapTuplesPerPage);
+ test_basic(10);
+ test_basic(MaxHeapTuplesPerPage * 2);
+
+ PG_RETURN_VOID();
+}
diff --git a/src/test/modules/test_tidstore/test_tidstore.control b/src/test/modules/test_tidstore/test_tidstore.control
new file mode 100644
index 0000000000..9b6bd4638f
--- /dev/null
+++ b/src/test/modules/test_tidstore/test_tidstore.control
@@ -0,0 +1,4 @@
+comment = 'Test code for tidstore'
+default_version = '1.0'
+module_pathname = '$libdir/test_tidstore'
+relocatable = true
--
2.31.1