106#define MULTIXACT_OFFSETS_PER_PAGE (BLCKSZ / sizeof(MultiXactOffset))
139#define MXACT_MEMBER_BITS_PER_XACT 8
140#define MXACT_MEMBER_FLAGS_PER_BYTE 1
141#define MXACT_MEMBER_XACT_BITMASK ((1 << MXACT_MEMBER_BITS_PER_XACT) - 1)
144#define MULTIXACT_FLAGBYTES_PER_GROUP 4
145#define MULTIXACT_MEMBERS_PER_MEMBERGROUP \
146 (MULTIXACT_FLAGBYTES_PER_GROUP * MXACT_MEMBER_FLAGS_PER_BYTE)
148#define MULTIXACT_MEMBERGROUP_SIZE \
149 (sizeof(TransactionId) * MULTIXACT_MEMBERS_PER_MEMBERGROUP + MULTIXACT_FLAGBYTES_PER_GROUP)
150#define MULTIXACT_MEMBERGROUPS_PER_PAGE (BLCKSZ / MULTIXACT_MEMBERGROUP_SIZE)
151#define MULTIXACT_MEMBERS_PER_PAGE \
152 (MULTIXACT_MEMBERGROUPS_PER_PAGE * MULTIXACT_MEMBERS_PER_MEMBERGROUP)
164#define MAX_MEMBERS_IN_LAST_MEMBERS_PAGE \
165 ((uint32) ((0xFFFFFFFF % MULTIXACT_MEMBERS_PER_PAGE) + 1))
212#define MULTIXACT_MEMBER_SAFE_THRESHOLD (MaxMultiXactOffset / 2)
213#define MULTIXACT_MEMBER_DANGER_THRESHOLD \
214 (MaxMultiXactOffset - MaxMultiXactOffset / 4)
228#define MultiXactOffsetCtl (&MultiXactOffsetCtlData)
229#define MultiXactMemberCtl (&MultiXactMemberCtlData)
333#define MaxOldestSlot (MaxBackends + max_prepared_xacts)
366#define MAX_CACHE_ENTRIES 256
370#ifdef MULTIXACT_DEBUG
371#define debug_elog2(a,b) elog(a,b)
372#define debug_elog3(a,b,c) elog(a,b,c)
373#define debug_elog4(a,b,c,d) elog(a,b,c,d)
374#define debug_elog5(a,b,c,d,e) elog(a,b,c,d,e)
375#define debug_elog6(a,b,c,d,e,f) elog(a,b,c,d,e,f)
377#define debug_elog2(a,b)
378#define debug_elog3(a,b,c)
379#define debug_elog4(a,b,c,d)
380#define debug_elog5(a,b,c,d,e)
381#define debug_elog6(a,b,c,d,e,f)
445 members[0].
xid = xid1;
446 members[0].
status = status1;
447 members[1].
xid = xid2;
448 members[1].
status = status2;
527 for (
i = 0;
i < nmembers;
i++)
530 (members[
i].status == status))
555 for (
i = 0,
j = 0;
i < nmembers;
i++)
566 newMembers[
j].
xid = xid;
567 newMembers[
j++].
status = status;
617 for (
i = 0;
i < nmembers;
i++)
632 for (
i = 0;
i < nmembers;
i++)
745 oldestMXact = thisoldest;
835 bool has_update =
false;
837 for (
i = 0;
i < nmembers;
i++)
842 elog(
ERROR,
"new multixact has more than one updating member: %s",
951 for (
i = 0;
i < nmembers;
i++, offset++)
967 if (pageno != prev_pageno)
975 if (lock != prevlock)
977 if (prevlock != NULL)
984 prev_pageno = pageno;
990 *memberptr = members[
i].
xid;
995 flagsval = *flagsptr;
997 flagsval |= (members[
i].
status << bshift);
998 *flagsptr = flagsval;
1003 if (prevlock != NULL)
1032 elog(
ERROR,
"cannot assign MultiXactIds during recovery");
1087 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1088 errmsg(
"database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database \"%s\"",
1090 errhint(
"Execute a database-wide VACUUM in that database.\n"
1091 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1094 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1095 errmsg(
"database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database with OID %u",
1097 errhint(
"Execute a database-wide VACUUM in that database.\n"
1098 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1116 (
errmsg_plural(
"database \"%s\" must be vacuumed before %u more MultiXactId is used",
1117 "database \"%s\" must be vacuumed before %u more MultiXactIds are used",
1118 multiWrapLimit - result,
1120 multiWrapLimit - result),
1121 errhint(
"Execute a database-wide VACUUM in that database.\n"
1122 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1125 (
errmsg_plural(
"database with OID %u must be vacuumed before %u more MultiXactId is used",
1126 "database with OID %u must be vacuumed before %u more MultiXactIds are used",
1127 multiWrapLimit - result,
1129 multiWrapLimit - result),
1130 errhint(
"Execute a database-wide VACUUM in that database.\n"
1131 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1150 if (nextOffset == 0)
1156 *offset = nextOffset;
1176#define OFFSET_WARN_SEGMENTS 20
1185 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1186 errmsg(
"multixact \"members\" limit exceeded"),
1187 errdetail_plural(
"This command would create a multixact with %u members, but the remaining space is only enough for %u member.",
1188 "This command would create a multixact with %u members, but the remaining space is only enough for %u members.",
1192 errhint(
"Execute a database-wide VACUUM in database with OID %u with reduced \"vacuum_multixact_freeze_min_age\" and \"vacuum_multixact_freeze_table_age\" settings.",
1222 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1223 errmsg_plural(
"database with OID %u must be vacuumed before %d more multixact member is used",
1224 "database with OID %u must be vacuumed before %d more multixact members are used",
1228 errhint(
"Execute a database-wide VACUUM in that database with reduced \"vacuum_multixact_freeze_min_age\" and \"vacuum_multixact_freeze_table_age\" settings.")));
1291 bool from_pgupgrade,
bool isLockOnly)
1367 (
errcode(ERRCODE_INTERNAL_ERROR),
1368 errmsg(
"MultiXactId %u does no longer exist -- apparent wraparound",
1373 (
errcode(ERRCODE_INTERNAL_ERROR),
1374 errmsg(
"MultiXactId %u has not been created yet -- apparent wraparound",
1431 tmpMXact = multi + 1;
1433 if (nextMXact == tmpMXact)
1436 length = nextOffset - offset;
1446 prev_pageno = pageno;
1451 if (pageno != prev_pageno)
1461 if (newlock != lock)
1472 nextMXOffset = *offptr;
1474 if (nextMXOffset == 0)
1483 WAIT_EVENT_MULTIXACT_CREATION);
1488 length = nextMXOffset - offset;
1504 for (
int i = 0;
i < length;
i++, offset++)
1515 if (pageno != prev_pageno)
1525 if (newlock != lock)
1534 prev_pageno = pageno;
1551 ptr[truelength].
xid = *xactptr;
1585 if (member1.
xid > member2.
xid)
1587 if (member1.
xid < member2.
xid)
1636 return entry->
multi;
1664 if (entry->
multi == multi)
1672 memcpy(ptr, entry->
members, size);
1712 "MultiXact cache context",
1721 entry->
multi = multi;
1754 return "fornokeyupd";
1762 elog(
ERROR,
"unrecognized multixact status %d", status);
1770 static char *
str = NULL;
1782 for (
i = 1;
i < nmembers;
i++)
1943#define SHARED_MULTIXACT_STATE_SIZE \
1944 add_size(offsetof(MultiXactStateData, perBackendXactIds), \
1945 mul_size(sizeof(MultiXactId) * 2, MaxOldestSlot))
1966 "pg_multixact/offsets", LWTRANCHE_MULTIXACTOFFSET_BUFFER,
1967 LWTRANCHE_MULTIXACTOFFSET_SLRU,
1973 "pg_multixact/members", LWTRANCHE_MULTIXACTMEMBER_BUFFER,
1974 LWTRANCHE_MULTIXACTMEMBER_SLRU,
2187 MemSet(xidptr, 0, BLCKSZ - memberoff);
2226 "MultiXact: checkpoint is nextMulti %u, nextOffset %u, oldestMulti %u in DB %u",
2227 *nextMulti, *nextMultiOffset, *oldestMulti, *oldestMultiDB);
2236 TRACE_POSTGRESQL_MULTIXACT_CHECKPOINT_START(
true);
2246 TRACE_POSTGRESQL_MULTIXACT_CHECKPOINT_DONE(
true);
2262 nextMulti, nextMultiOffset);
2300 bool needs_offset_vacuum;
2319 multiStopLimit = multiWrapLimit - 3000000;
2333 multiWarnLimit = multiWrapLimit - 40000000;
2362 (
errmsg_internal(
"MultiXactId wrap limit is %u, limited by database with OID %u",
2363 multiWrapLimit, oldest_datoid)));
2394 char *oldest_datname;
2408 oldest_datname = NULL;
2412 (
errmsg_plural(
"database \"%s\" must be vacuumed before %u more MultiXactId is used",
2413 "database \"%s\" must be vacuumed before %u more MultiXactIds are used",
2414 multiWrapLimit - curMulti,
2416 multiWrapLimit - curMulti),
2417 errhint(
"To avoid MultiXactId assignment failures, execute a database-wide VACUUM in that database.\n"
2418 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
2421 (
errmsg_plural(
"database with OID %u must be vacuumed before %u more MultiXactId is used",
2422 "database with OID %u must be vacuumed before %u more MultiXactIds are used",
2423 multiWrapLimit - curMulti,
2425 multiWrapLimit - curMulti),
2426 errhint(
"To avoid MultiXactId assignment failures, execute a database-wide VACUUM in that database.\n"
2427 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
2525 while (nmembers > 0)
2536 if (flagsoff == 0 && flagsbit == 0)
2615 oldestMXact = nextMXact;
2623 oldestMXact = thisoldest;
2627 oldestMXact = thisoldest;
2654 bool oldestOffsetKnown =
false;
2655 bool prevOldestOffsetKnown;
2683 if (oldestMultiXactId == nextMXact)
2689 oldestOffset = nextOffset;
2690 oldestOffsetKnown =
true;
2703 if (oldestOffsetKnown)
2709 (
errmsg(
"MultiXact member wraparound protections are disabled because oldest checkpointed MultiXact %u does not exist on disk",
2710 oldestMultiXactId)));
2720 if (oldestOffsetKnown)
2723 offsetStopLimit = oldestOffset - (oldestOffset %
2729 if (!prevOldestOffsetKnown && !is_startup)
2731 (
errmsg(
"MultiXact member wraparound protections are now enabled")));
2734 (
errmsg_internal(
"MultiXact member stop limit is now %u based on MultiXact %u",
2735 offsetStopLimit, oldestMultiXactId)));
2737 else if (prevOldestOffsetKnown)
2745 oldestOffset = prevOldestOffset;
2746 oldestOffsetKnown =
true;
2747 offsetStopLimit = prevOffsetStopLimit;
2760 return !oldestOffsetKnown ||
2783 finish =
start + distance;
2806 if (
start < boundary)
2807 return finish >= boundary || finish <
start;
2809 return finish >= boundary && finish <
start;
2872 bool oldestOffsetKnown;
2882 if (!oldestOffsetKnown)
2891 *members = nextOffset - *oldestOffset;
2892 *multixacts = nextMultiXactId - *oldestMultiXactId;
2928 uint32 victim_multixacts;
2935 if (!
GetMultiXactInfo(&multixacts, &members, &oldestMultiXactId, &oldestOffset))
2949 victim_multixacts = multixacts * fraction;
2952 if (victim_multixacts > multixacts)
2954 result = multixacts - victim_multixacts;
3001 int64 segment = startsegment;
3007 while (segment != endsegment)
3009 elog(
DEBUG2,
"truncating multixact members segment %" PRIx64,
3014 if (segment == maxsegment)
3128 if (oldestMulti == nextMulti)
3131 oldestOffset = nextOffset;
3136 (
errmsg(
"oldest MultiXact %u not found, earliest MultiXact %u, skipping truncation",
3137 oldestMulti, earliest)));
3146 if (newOldestMulti == nextMulti)
3149 newOldestOffset = nextOffset;
3154 (
errmsg(
"cannot truncate up to MultiXact %u because it does not exist on disk, skipping truncation",
3160 elog(
DEBUG1,
"performing multixact truncation: "
3161 "offsets [%u, %u), offsets segments [%" PRIx64
", %" PRIx64
"), "
3162 "members [%u, %u), members segments [%" PRIx64
", %" PRIx64
")",
3163 oldestMulti, newOldestMulti,
3166 oldestOffset, newOldestOffset,
3189 oldestMulti, newOldestMulti,
3190 oldestOffset, newOldestOffset);
3388 elog(
DEBUG1,
"replaying multixact truncation: "
3389 "offsets [%u, %u), offsets segments [%" PRIx64
", %" PRIx64
"), "
3390 "members [%u, %u), members segments [%" PRIx64
", %" PRIx64
")",
3422 elog(
PANIC,
"multixact_redo: unknown op code %u", info);
static void pg_atomic_write_u64(volatile pg_atomic_uint64 *ptr, uint64 val)
int autovacuum_multixact_freeze_max_age
TransactionId MultiXactId
#define FLEXIBLE_ARRAY_MEMBER
#define MemSet(start, val, len)
bool ConditionVariableCancelSleep(void)
void ConditionVariableBroadcast(ConditionVariable *cv)
void ConditionVariableInit(ConditionVariable *cv)
void ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
int errmsg_internal(const char *fmt,...)
int errdetail_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
Datum difference(PG_FUNCTION_ARGS)
int multixact_offset_buffers
int multixact_member_buffers
Assert(PointerIsAligned(start, uint64))
#define dclist_container(type, membername, ptr)
static uint32 dclist_count(const dclist_head *head)
static void dclist_move_head(dclist_head *head, dlist_node *node)
static dlist_node * dclist_tail_node(dclist_head *head)
static void dclist_delete_from(dclist_head *head, dlist_node *node)
#define DCLIST_STATIC_INIT(name)
static void dclist_push_head(dclist_head *head, dlist_node *node)
static void dclist_init(dclist_head *head)
#define dclist_foreach(iter, lhead)
#define INJECTION_POINT(name, arg)
#define INJECTION_POINT_CACHED(name, arg)
#define INJECTION_POINT_LOAD(name)
if(TABLE==NULL||TABLE_index==NULL)
char * get_database_name(Oid dbid)
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
void LWLockRelease(LWLock *lock)
char * MemoryContextStrdup(MemoryContext context, const char *string)
void * MemoryContextAlloc(MemoryContext context, Size size)
MemoryContext TopTransactionContext
void pfree(void *pointer)
MemoryContext TopMemoryContext
#define AllocSetContextCreate
#define ALLOCSET_SMALL_SIZES
#define START_CRIT_SECTION()
#define CHECK_FOR_INTERRUPTS()
#define END_CRIT_SECTION()
static void WriteMTruncateXlogRec(Oid oldestMultiDB, MultiXactId startTruncOff, MultiXactId endTruncOff, MultiXactOffset startTruncMemb, MultiXactOffset endTruncMemb)
static MultiXactId PreviousMultiXactId(MultiXactId multi)
static SlruCtlData MultiXactOffsetCtlData
void MultiXactShmemInit(void)
#define MULTIXACT_MEMBER_SAFE_THRESHOLD
static bool MultiXactMemberPagePrecedes(int64 page1, int64 page2)
static MultiXactId GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
static int mXactCacheGetById(MultiXactId multi, MultiXactMember **members)
MultiXactId MultiXactIdExpand(MultiXactId multi, TransactionId xid, MultiXactStatus status)
static int64 MXOffsetToMemberPage(MultiXactOffset offset)
#define MXACT_MEMBER_BITS_PER_XACT
static int64 MultiXactIdToOffsetSegment(MultiXactId multi)
static void ExtendMultiXactMember(MultiXactOffset offset, int nmembers)
void ReadMultiXactIdRange(MultiXactId *oldest, MultiXactId *next)
static void PerformOffsetsTruncation(MultiXactId oldestMulti, MultiXactId newOldestMulti)
#define MXACT_MEMBER_XACT_BITMASK
#define MULTIXACT_FLAGBYTES_PER_GROUP
bool MultiXactIdPrecedes(MultiXactId multi1, MultiXactId multi2)
char * mxstatus_to_string(MultiXactStatus status)
void multixact_redo(XLogReaderState *record)
#define MULTIXACT_OFFSETS_PER_PAGE
void multixact_twophase_postcommit(FullTransactionId fxid, uint16 info, void *recdata, uint32 len)
#define debug_elog5(a, b, c, d, e)
static void MultiXactIdSetOldestVisible(void)
int multixactoffsetssyncfiletag(const FileTag *ftag, char *path)
static bool find_multixact_start(MultiXactId multi, MultiXactOffset *result)
void PostPrepare_MultiXact(FullTransactionId fxid)
void MultiXactSetNextMXact(MultiXactId nextMulti, MultiXactOffset nextMultiOffset)
#define MultiXactMemberCtl
static bool SlruScanDirCbFindEarliest(SlruCtl ctl, char *filename, int64 segpage, void *data)
void AtPrepare_MultiXact(void)
static bool MultiXactOffsetWouldWrap(MultiXactOffset boundary, MultiXactOffset start, uint32 distance)
bool MultiXactIdPrecedesOrEquals(MultiXactId multi1, MultiXactId multi2)
void MultiXactAdvanceOldest(MultiXactId oldestMulti, Oid oldestMultiDB)
static int MultiXactIdToOffsetEntry(MultiXactId multi)
static void mXactCachePut(MultiXactId multi, int nmembers, MultiXactMember *members)
static void MaybeExtendOffsetSlru(void)
bool MultiXactIdIsRunning(MultiXactId multi, bool isLockOnly)
void MultiXactIdSetOldestMember(void)
static void PerformMembersTruncation(MultiXactOffset oldestOffset, MultiXactOffset newOldestOffset)
static MemoryContext MXactContext
#define SHARED_MULTIXACT_STATE_SIZE
static MultiXactId * OldestVisibleMXactId
struct mxtruncinfo mxtruncinfo
static int mxactMemberComparator(const void *arg1, const void *arg2)
struct MultiXactStateData MultiXactStateData
static void ExtendMultiXactOffset(MultiXactId multi)
Size MultiXactShmemSize(void)
#define MULTIXACT_MEMBERGROUPS_PER_PAGE
#define MultiXactOffsetCtl
static int MXOffsetToMemberOffset(MultiXactOffset offset)
void MultiXactGetCheckptMulti(bool is_shutdown, MultiXactId *nextMulti, MultiXactOffset *nextMultiOffset, MultiXactId *oldestMulti, Oid *oldestMultiDB)
void SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid, bool is_startup)
static void RecordNewMultiXact(MultiXactId multi, MultiXactOffset offset, int nmembers, MultiXactMember *members)
int multixactmemberssyncfiletag(const FileTag *ftag, char *path)
#define MAX_CACHE_ENTRIES
static int64 MultiXactIdToOffsetPage(MultiXactId multi)
MultiXactId GetOldestMultiXactId(void)
void CheckPointMultiXact(void)
MultiXactId MultiXactIdCreateFromMembers(int nmembers, MultiXactMember *members)
struct mXactCacheEnt mXactCacheEnt
static int64 MXOffsetToMemberSegment(MultiXactOffset offset)
static MultiXactId mXactCacheGetBySet(int nmembers, MultiXactMember *members)
static dclist_head MXactCache
#define debug_elog3(a, b, c)
char * mxid_to_string(MultiXactId multi, int nmembers, MultiXactMember *members)
#define MULTIXACT_MEMBERGROUP_SIZE
#define debug_elog4(a, b, c, d)
void multixact_twophase_postabort(FullTransactionId fxid, uint16 info, void *recdata, uint32 len)
static bool MultiXactOffsetPagePrecedes(int64 page1, int64 page2)
static bool SetOffsetVacuumLimit(bool is_startup)
static int MXOffsetToFlagsOffset(MultiXactOffset offset)
int MultiXactMemberFreezeThreshold(void)
void MultiXactAdvanceNextMXact(MultiXactId minMulti, MultiXactOffset minMultiOffset)
static MultiXactId * OldestMemberMXactId
#define MAX_MEMBERS_IN_LAST_MEMBERS_PAGE
static MultiXactStateData * MultiXactState
#define MULTIXACT_MEMBERS_PER_MEMBERGROUP
#define OFFSET_WARN_SEGMENTS
MultiXactId ReadNextMultiXactId(void)
void BootStrapMultiXact(void)
#define debug_elog6(a, b, c, d, e, f)
void multixact_twophase_recover(FullTransactionId fxid, uint16 info, void *recdata, uint32 len)
#define MULTIXACT_MEMBERS_PER_PAGE
MultiXactId MultiXactIdCreate(TransactionId xid1, MultiXactStatus status1, TransactionId xid2, MultiXactStatus status2)
void TruncateMultiXact(MultiXactId newOldestMulti, Oid newOldestMultiDB)
#define MULTIXACT_MEMBER_DANGER_THRESHOLD
static int MXOffsetToFlagsBitShift(MultiXactOffset offset)
bool check_multixact_offset_buffers(int *newval, void **extra, GucSource source)
static bool MultiXactOffsetPrecedes(MultiXactOffset offset1, MultiXactOffset offset2)
bool GetMultiXactInfo(uint32 *multixacts, MultiXactOffset *members, MultiXactId *oldestMultiXactId, MultiXactOffset *oldestOffset)
bool check_multixact_member_buffers(int *newval, void **extra, GucSource source)
void AtEOXact_MultiXact(void)
static SlruCtlData MultiXactMemberCtlData
#define debug_elog2(a, b)
void StartupMultiXact(void)
int GetMultiXactIdMembers(MultiXactId multi, MultiXactMember **members, bool from_pgupgrade, bool isLockOnly)
#define MultiXactIdIsValid(multi)
#define XLOG_MULTIXACT_ZERO_MEM_PAGE
#define XLOG_MULTIXACT_ZERO_OFF_PAGE
@ MultiXactStatusForShare
@ MultiXactStatusForNoKeyUpdate
@ MultiXactStatusNoKeyUpdate
@ MultiXactStatusForUpdate
@ MultiXactStatusForKeyShare
#define ISUPDATE_from_mxstatus(status)
#define InvalidMultiXactId
#define XLOG_MULTIXACT_TRUNCATE_ID
#define SizeOfMultiXactCreate
#define SizeOfMultiXactTruncate
#define XLOG_MULTIXACT_CREATE_ID
#define MaxMultiXactOffset
struct MultiXactMember MultiXactMember
static rewind_source * source
void SendPostmasterSignal(PMSignalReason reason)
@ PMSIGNAL_START_AUTOVAC_LAUNCHER
#define qsort(a, b, c, d)
#define DELAY_CHKPT_START
bool TransactionIdIsInProgress(TransactionId xid)
Size add_size(Size s1, Size s2)
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
void SimpleLruInit(SlruCtl ctl, const char *name, int nslots, int nlsns, const char *subdir, int buffer_tranche_id, int bank_tranche_id, SyncRequestHandler sync_handler, bool long_segment_names)
int SimpleLruReadPage_ReadOnly(SlruCtl ctl, int64 pageno, TransactionId xid)
void SimpleLruWritePage(SlruCtl ctl, int slotno)
void SimpleLruWriteAll(SlruCtl ctl, bool allow_redirtied)
bool SimpleLruDoesPhysicalPageExist(SlruCtl ctl, int64 pageno)
void SlruDeleteSegment(SlruCtl ctl, int64 segno)
bool SlruScanDirectory(SlruCtl ctl, SlruScanCallback callback, void *data)
int SimpleLruReadPage(SlruCtl ctl, int64 pageno, bool write_ok, TransactionId xid)
int SlruSyncFileTag(SlruCtl ctl, const FileTag *ftag, char *path)
int SimpleLruZeroPage(SlruCtl ctl, int64 pageno)
void SimpleLruZeroAndWritePage(SlruCtl ctl, int64 pageno)
void SimpleLruTruncate(SlruCtl ctl, int64 cutoffPage)
Size SimpleLruShmemSize(int nslots, int nlsns)
bool check_slru_buffers(const char *name, int *newval)
static LWLock * SimpleLruGetBankLock(SlruCtl ctl, int64 pageno)
#define SlruPagePrecedesUnitTests(ctl, per_page)
#define SLRU_PAGES_PER_SEGMENT
void appendStringInfo(StringInfo str, const char *fmt,...)
void appendStringInfoChar(StringInfo str, char ch)
void initStringInfo(StringInfo str)
MultiXactId multiWrapLimit
MultiXactId multiStopLimit
MultiXactId multiWarnLimit
MultiXactId multiVacLimit
MultiXactOffset offsetStopLimit
MultiXactOffset nextOffset
MultiXactId oldestMultiXactId
MultiXactId perBackendXactIds[FLEXIBLE_ARRAY_MEMBER]
MultiXactOffset oldestOffset
ConditionVariable nextoff_cv
MultiXactMember members[FLEXIBLE_ARRAY_MEMBER]
int64 earliestExistingPage
MultiXactMember members[FLEXIBLE_ARRAY_MEMBER]
MultiXactOffset startTruncMemb
MultiXactOffset endTruncMemb
MultiXactId startTruncOff
@ SYNC_HANDLER_MULTIXACT_MEMBER
@ SYNC_HANDLER_MULTIXACT_OFFSET
bool TransactionIdDidCommit(TransactionId transactionId)
bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
#define TransactionIdEquals(id1, id2)
#define TransactionIdIsValid(xid)
ProcNumber TwoPhaseGetDummyProcNumber(FullTransactionId fxid, bool lock_held)
void RegisterTwoPhaseRecord(TwoPhaseRmgrId rmid, uint16 info, const void *data, uint32 len)
#define TWOPHASE_RM_MULTIXACT_ID
void AdvanceNextFullTransactionIdPastXid(TransactionId xid)
bool IsTransactionState(void)
bool TransactionIdIsCurrentTransactionId(TransactionId xid)
bool RecoveryInProgress(void)
void XLogFlush(XLogRecPtr record)
XLogRecPtr XLogSimpleInsertInt64(RmgrId rmid, uint8 info, int64 value)
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
void XLogRegisterData(const void *data, uint32 len)
void XLogBeginInsert(void)
#define XLogRecGetInfo(decoder)
#define XLogRecGetData(decoder)
#define XLogRecGetXid(decoder)
#define XLogRecHasAnyBlockRefs(decoder)