90 #include "utils/fmgrprotos.h"
110 #define MULTIXACT_OFFSETS_PER_PAGE (BLCKSZ / sizeof(MultiXactOffset))
143 #define MXACT_MEMBER_BITS_PER_XACT 8
144 #define MXACT_MEMBER_FLAGS_PER_BYTE 1
145 #define MXACT_MEMBER_XACT_BITMASK ((1 << MXACT_MEMBER_BITS_PER_XACT) - 1)
148 #define MULTIXACT_FLAGBYTES_PER_GROUP 4
149 #define MULTIXACT_MEMBERS_PER_MEMBERGROUP \
150 (MULTIXACT_FLAGBYTES_PER_GROUP * MXACT_MEMBER_FLAGS_PER_BYTE)
152 #define MULTIXACT_MEMBERGROUP_SIZE \
153 (sizeof(TransactionId) * MULTIXACT_MEMBERS_PER_MEMBERGROUP + MULTIXACT_FLAGBYTES_PER_GROUP)
154 #define MULTIXACT_MEMBERGROUPS_PER_PAGE (BLCKSZ / MULTIXACT_MEMBERGROUP_SIZE)
155 #define MULTIXACT_MEMBERS_PER_PAGE \
156 (MULTIXACT_MEMBERGROUPS_PER_PAGE * MULTIXACT_MEMBERS_PER_MEMBERGROUP)
168 #define MAX_MEMBERS_IN_LAST_MEMBERS_PAGE \
169 ((uint32) ((0xFFFFFFFF % MULTIXACT_MEMBERS_PER_PAGE) + 1))
216 #define MULTIXACT_MEMBER_SAFE_THRESHOLD (MaxMultiXactOffset / 2)
217 #define MULTIXACT_MEMBER_DANGER_THRESHOLD \
218 (MaxMultiXactOffset - MaxMultiXactOffset / 4)
232 #define MultiXactOffsetCtl (&MultiXactOffsetCtlData)
233 #define MultiXactMemberCtl (&MultiXactMemberCtlData)
337 #define MaxOldestSlot (MaxBackends + max_prepared_xacts)
370 #define MAX_CACHE_ENTRIES 256
374 #ifdef MULTIXACT_DEBUG
375 #define debug_elog2(a,b) elog(a,b)
376 #define debug_elog3(a,b,c) elog(a,b,c)
377 #define debug_elog4(a,b,c,d) elog(a,b,c,d)
378 #define debug_elog5(a,b,c,d,e) elog(a,b,c,d,e)
379 #define debug_elog6(a,b,c,d,e,f) elog(a,b,c,d,e,f)
381 #define debug_elog2(a,b)
382 #define debug_elog3(a,b,c)
383 #define debug_elog4(a,b,c,d)
384 #define debug_elog5(a,b,c,d,e)
385 #define debug_elog6(a,b,c,d,e,f)
454 members[0].
xid = xid1;
455 members[0].
status = status1;
456 members[1].
xid = xid2;
457 members[1].
status = status2;
536 for (
i = 0;
i < nmembers;
i++)
539 (members[
i].status == status))
564 for (
i = 0,
j = 0;
i < nmembers;
i++)
575 newMembers[
j].
xid = xid;
576 newMembers[
j++].
status = status;
626 for (
i = 0;
i < nmembers;
i++)
641 for (
i = 0;
i < nmembers;
i++)
754 oldestMXact = thisoldest;
844 bool has_update =
false;
846 for (
i = 0;
i < nmembers;
i++)
851 elog(
ERROR,
"new multixact has more than one updating member: %s",
960 for (
i = 0;
i < nmembers;
i++, offset++)
976 if (pageno != prev_pageno)
984 if (lock != prevlock)
986 if (prevlock != NULL)
993 prev_pageno = pageno;
999 *memberptr = members[
i].
xid;
1004 flagsval = *flagsptr;
1006 flagsval |= (members[
i].
status << bshift);
1007 *flagsptr = flagsval;
1012 if (prevlock != NULL)
1041 elog(
ERROR,
"cannot assign MultiXactIds during recovery");
1096 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1097 errmsg(
"database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database \"%s\"",
1099 errhint(
"Execute a database-wide VACUUM in that database.\n"
1100 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1103 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1104 errmsg(
"database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database with OID %u",
1106 errhint(
"Execute a database-wide VACUUM in that database.\n"
1107 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1125 (
errmsg_plural(
"database \"%s\" must be vacuumed before %u more MultiXactId is used",
1126 "database \"%s\" 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.")));
1134 (
errmsg_plural(
"database with OID %u must be vacuumed before %u more MultiXactId is used",
1135 "database with OID %u must be vacuumed before %u more MultiXactIds are used",
1136 multiWrapLimit - result,
1138 multiWrapLimit - result),
1139 errhint(
"Execute a database-wide VACUUM in that database.\n"
1140 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1159 if (nextOffset == 0)
1165 *offset = nextOffset;
1185 #define OFFSET_WARN_SEGMENTS 20
1194 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1195 errmsg(
"multixact \"members\" limit exceeded"),
1196 errdetail_plural(
"This command would create a multixact with %u members, but the remaining space is only enough for %u member.",
1197 "This command would create a multixact with %u members, but the remaining space is only enough for %u members.",
1201 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.",
1231 (
errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1232 errmsg_plural(
"database with OID %u must be vacuumed before %d more multixact member is used",
1233 "database with OID %u must be vacuumed before %d more multixact members are used",
1237 errhint(
"Execute a database-wide VACUUM in that database with reduced \"vacuum_multixact_freeze_min_age\" and \"vacuum_multixact_freeze_table_age\" settings.")));
1300 bool from_pgupgrade,
bool isLockOnly)
1376 (
errcode(ERRCODE_INTERNAL_ERROR),
1377 errmsg(
"MultiXactId %u does no longer exist -- apparent wraparound",
1382 (
errcode(ERRCODE_INTERNAL_ERROR),
1383 errmsg(
"MultiXactId %u has not been created yet -- apparent wraparound",
1440 tmpMXact = multi + 1;
1442 if (nextMXact == tmpMXact)
1445 length = nextOffset - offset;
1455 prev_pageno = pageno;
1460 if (pageno != prev_pageno)
1470 if (newlock != lock)
1481 nextMXOffset = *offptr;
1483 if (nextMXOffset == 0)
1492 WAIT_EVENT_MULTIXACT_CREATION);
1497 length = nextMXOffset - offset;
1513 for (
int i = 0;
i < length;
i++, offset++)
1524 if (pageno != prev_pageno)
1534 if (newlock != lock)
1543 prev_pageno = pageno;
1560 ptr[truelength].
xid = *xactptr;
1594 if (member1.
xid > member2.
xid)
1596 if (member1.
xid < member2.
xid)
1645 return entry->
multi;
1673 if (entry->
multi == multi)
1721 "MultiXact cache context",
1730 entry->
multi = multi;
1763 return "fornokeyupd";
1771 elog(
ERROR,
"unrecognized multixact status %d", status);
1779 static char *
str = NULL;
1791 for (
i = 1;
i < nmembers;
i++)
1952 #define SHARED_MULTIXACT_STATE_SIZE \
1953 add_size(offsetof(MultiXactStateData, perBackendXactIds), \
1954 mul_size(sizeof(MultiXactId) * 2, MaxOldestSlot))
2257 MemSet(xidptr, 0, BLCKSZ - memberoff);
2296 "MultiXact: checkpoint is nextMulti %u, nextOffset %u, oldestMulti %u in DB %u",
2297 *nextMulti, *nextMultiOffset, *oldestMulti, *oldestMultiDB);
2306 TRACE_POSTGRESQL_MULTIXACT_CHECKPOINT_START(
true);
2316 TRACE_POSTGRESQL_MULTIXACT_CHECKPOINT_DONE(
true);
2332 nextMulti, nextMultiOffset);
2370 bool needs_offset_vacuum;
2389 multiStopLimit = multiWrapLimit - 3000000;
2403 multiWarnLimit = multiWrapLimit - 40000000;
2432 (
errmsg_internal(
"MultiXactId wrap limit is %u, limited by database with OID %u",
2433 multiWrapLimit, oldest_datoid)));
2464 char *oldest_datname;
2478 oldest_datname = NULL;
2482 (
errmsg_plural(
"database \"%s\" must be vacuumed before %u more MultiXactId is used",
2483 "database \"%s\" must be vacuumed before %u more MultiXactIds are used",
2484 multiWrapLimit - curMulti,
2486 multiWrapLimit - curMulti),
2487 errhint(
"To avoid MultiXactId assignment failures, execute a database-wide VACUUM in that database.\n"
2488 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
2491 (
errmsg_plural(
"database with OID %u must be vacuumed before %u more MultiXactId is used",
2492 "database with OID %u must be vacuumed before %u more MultiXactIds are used",
2493 multiWrapLimit - curMulti,
2495 multiWrapLimit - curMulti),
2496 errhint(
"To avoid MultiXactId assignment failures, execute a database-wide VACUUM in that database.\n"
2497 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
2593 while (nmembers > 0)
2604 if (flagsoff == 0 && flagsbit == 0)
2681 oldestMXact = nextMXact;
2689 oldestMXact = thisoldest;
2693 oldestMXact = thisoldest;
2720 bool oldestOffsetKnown =
false;
2721 bool prevOldestOffsetKnown;
2749 if (oldestMultiXactId == nextMXact)
2755 oldestOffset = nextOffset;
2756 oldestOffsetKnown =
true;
2769 if (oldestOffsetKnown)
2775 (
errmsg(
"MultiXact member wraparound protections are disabled because oldest checkpointed MultiXact %u does not exist on disk",
2776 oldestMultiXactId)));
2786 if (oldestOffsetKnown)
2789 offsetStopLimit = oldestOffset - (oldestOffset %
2795 if (!prevOldestOffsetKnown && !is_startup)
2797 (
errmsg(
"MultiXact member wraparound protections are now enabled")));
2800 (
errmsg_internal(
"MultiXact member stop limit is now %u based on MultiXact %u",
2801 offsetStopLimit, oldestMultiXactId)));
2803 else if (prevOldestOffsetKnown)
2811 oldestOffset = prevOldestOffset;
2812 oldestOffsetKnown =
true;
2813 offsetStopLimit = prevOffsetStopLimit;
2826 return !oldestOffsetKnown ||
2849 finish =
start + distance;
2872 if (
start < boundary)
2873 return finish >= boundary || finish <
start;
2875 return finish >= boundary && finish <
start;
2932 bool oldestOffsetKnown;
2942 if (!oldestOffsetKnown)
2945 *members = nextOffset - oldestOffset;
2946 *multixacts = nextMultiXactId - oldestMultiXactId;
2982 uint32 victim_multixacts;
3001 victim_multixacts = multixacts * fraction;
3004 if (victim_multixacts > multixacts)
3006 result = multixacts - victim_multixacts;
3053 int64 segment = startsegment;
3059 while (segment != endsegment)
3061 elog(
DEBUG2,
"truncating multixact members segment %llx",
3062 (
unsigned long long) segment);
3066 if (segment == maxsegment)
3180 if (oldestMulti == nextMulti)
3183 oldestOffset = nextOffset;
3188 (
errmsg(
"oldest MultiXact %u not found, earliest MultiXact %u, skipping truncation",
3189 oldestMulti, earliest)));
3198 if (newOldestMulti == nextMulti)
3201 newOldestOffset = nextOffset;
3206 (
errmsg(
"cannot truncate up to MultiXact %u because it does not exist on disk, skipping truncation",
3212 elog(
DEBUG1,
"performing multixact truncation: "
3213 "offsets [%u, %u), offsets segments [%llx, %llx), "
3214 "members [%u, %u), members segments [%llx, %llx)",
3215 oldestMulti, newOldestMulti,
3218 oldestOffset, newOldestOffset,
3241 oldestMulti, newOldestMulti,
3242 oldestOffset, newOldestOffset);
3472 elog(
DEBUG1,
"replaying multixact truncation: "
3473 "offsets [%u, %u), offsets segments [%llx, %llx), "
3474 "members [%u, %u), members segments [%llx, %llx)",
3506 elog(
PANIC,
"multixact_redo: unknown op code %u", info);
3524 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3525 errmsg(
"invalid MultiXactId: %u", mxid)));
3535 multi =
palloc(
sizeof(mxact));
3542 elog(
ERROR,
"return type must be a row type");
3553 while (multi->iter < multi->nmembers)
static void pg_atomic_write_u64(volatile pg_atomic_uint64 *ptr, uint64 val)
int autovacuum_multixact_freeze_max_age
static Datum values[MAXATTR]
#define Assert(condition)
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)
char * get_database_name(Oid dbid)
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,...)
HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values)
AttInMetadata * TupleDescGetAttInMetadata(TupleDesc tupdesc)
#define PG_GETARG_TRANSACTIONID(n)
TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo, Oid *resultTypeId, TupleDesc *resultTupleDesc)
#define SRF_IS_FIRSTCALL()
#define SRF_PERCALL_SETUP()
#define SRF_RETURN_NEXT(_funcctx, _result)
#define SRF_FIRSTCALL_INIT()
static Datum HeapTupleGetDatum(const HeapTupleData *tuple)
#define SRF_RETURN_DONE(_funcctx)
Datum difference(PG_FUNCTION_ARGS)
int multixact_offset_buffers
int multixact_member_buffers
#define dclist_container(type, membername, ptr)
static dlist_node * dclist_tail_node(dclist_head *head)
static uint32 dclist_count(const dclist_head *head)
static void dclist_move_head(dclist_head *head, dlist_node *node)
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)
#define INJECTION_POINT_CACHED(name)
#define INJECTION_POINT_LOAD(name)
if(TABLE==NULL||TABLE_index==NULL)
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
void LWLockRelease(LWLock *lock)
@ LWTRANCHE_MULTIXACTOFFSET_SLRU
@ LWTRANCHE_MULTIXACTMEMBER_SLRU
@ LWTRANCHE_MULTIXACTMEMBER_BUFFER
@ LWTRANCHE_MULTIXACTOFFSET_BUFFER
MemoryContext TopTransactionContext
void pfree(void *pointer)
MemoryContext TopMemoryContext
void * MemoryContextAlloc(MemoryContext context, Size size)
char * MemoryContextStrdup(MemoryContext context, const char *string)
#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 int ZeroMultiXactMemberPage(int64 pageno, bool writeXlog)
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)
void multixact_redo(XLogReaderState *record)
#define MULTIXACT_OFFSETS_PER_PAGE
#define debug_elog5(a, b, c, d, e)
static void MultiXactIdSetOldestVisible(void)
int multixactoffsetssyncfiletag(const FileTag *ftag, char *path)
void multixact_twophase_postcommit(TransactionId xid, uint16 info, void *recdata, uint32 len)
static bool find_multixact_start(MultiXactId multi, MultiXactOffset *result)
void MultiXactSetNextMXact(MultiXactId nextMulti, MultiXactOffset nextMultiOffset)
void multixact_twophase_recover(TransactionId xid, uint16 info, void *recdata, uint32 len)
#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)
void PostPrepare_MultiXact(TransactionId xid)
Size MultiXactShmemSize(void)
#define MULTIXACT_MEMBERGROUPS_PER_PAGE
#define MultiXactOffsetCtl
void multixact_twophase_postabort(TransactionId xid, uint16 info, void *recdata, uint32 len)
static int MXOffsetToMemberOffset(MultiXactOffset offset)
void MultiXactGetCheckptMulti(bool is_shutdown, MultiXactId *nextMulti, MultiXactOffset *nextMultiOffset, MultiXactId *oldestMulti, Oid *oldestMultiDB)
static void WriteMZeroPageXlogRec(int64 pageno, uint8 info)
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)
static bool ReadMultiXactCounts(uint32 *multixacts, MultiXactOffset *members)
struct mXactCacheEnt mXactCacheEnt
static int64 MXOffsetToMemberSegment(MultiXactOffset offset)
static MultiXactId mXactCacheGetBySet(int nmembers, MultiXactMember *members)
static dclist_head MXactCache
char * mxid_to_string(MultiXactId multi, int nmembers, MultiXactMember *members)
#define debug_elog3(a, b, c)
#define MULTIXACT_MEMBERGROUP_SIZE
#define debug_elog4(a, b, c, d)
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
static int ZeroMultiXactOffsetPage(int64 pageno, bool writeXlog)
#define MULTIXACT_MEMBERS_PER_MEMBERGROUP
static char * mxstatus_to_string(MultiXactStatus status)
#define OFFSET_WARN_SEGMENTS
Datum pg_get_multixact_members(PG_FUNCTION_ARGS)
MultiXactId ReadNextMultiXactId(void)
void BootStrapMultiXact(void)
#define debug_elog6(a, b, c, d, e, f)
#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 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)
char * psprintf(const char *fmt,...)
MemoryContextSwitchTo(old_ctx)
Size add_size(Size s1, Size s2)
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
static pg_noinline void Size size
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 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)
AttInMetadata * attinmeta
MemoryContext multi_call_memory_ctx
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)
void RegisterTwoPhaseRecord(TwoPhaseRmgrId rmid, uint16 info, const void *data, uint32 len)
ProcNumber TwoPhaseGetDummyProcNumber(TransactionId xid, bool lock_held)
#define TWOPHASE_RM_MULTIXACT_ID
void AdvanceNextFullTransactionIdPastXid(TransactionId xid)
bool IsTransactionState(void)
bool TransactionIdIsCurrentTransactionId(TransactionId xid)
bool RecoveryInProgress(void)
void XLogFlush(XLogRecPtr record)
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
void XLogRegisterData(const char *data, uint32 len)
void XLogBeginInsert(void)
#define XLogRecGetInfo(decoder)
#define XLogRecGetData(decoder)
#define XLogRecGetXid(decoder)
#define XLogRecHasAnyBlockRefs(decoder)