61#include "utils/fmgrprotos.h"
69#define RECOVERY_COMMAND_FILE "recovery.conf"
70#define RECOVERY_COMMAND_DONE "recovery.done"
422 int emode,
bool fetching_ckpt,
426 int reqLen,
XLogRecPtr targetRecPtr,
char *readBuf);
519 bool *haveBackupLabel_ptr,
bool *haveTblspcMap_ptr)
526 bool haveTblspcMap =
false;
527 bool haveBackupLabel =
false;
529 bool backupFromStandby =
false;
564 .segment_open = NULL,
569 (
errcode(ERRCODE_OUT_OF_MEMORY),
571 errdetail(
"Failed while allocating a WAL reading processor.")));
623 (
errmsg(
"starting backup recovery with redo LSN %X/%X, checkpoint LSN %X/%X, on timeline ID %u",
655 (
errmsg(
"could not find redo location %X/%X referenced by checkpoint record at %X/%X",
657 errhint(
"If you are restoring from a backup, touch \"%s/recovery.signal\" or \"%s/standby.signal\" and add required recovery options.\n"
658 "If you are not restoring from a backup, try removing the file \"%s/backup_label\".\n"
659 "Be careful: removing \"%s/backup_label\" will result in a corrupt cluster if restoring from a backup.",
666 (
errmsg(
"could not locate required checkpoint record at %X/%X",
668 errhint(
"If you are restoring from a backup, touch \"%s/recovery.signal\" or \"%s/standby.signal\" and add required recovery options.\n"
669 "If you are not restoring from a backup, try removing the file \"%s/backup_label\".\n"
670 "Be careful: removing \"%s/backup_label\" will result in a corrupt cluster if restoring from a backup.",
680 foreach(lc, tablespaces)
696 errmsg(
"could not create symbolic link \"%s\": %m",
704 haveTblspcMap =
true;
708 haveBackupLabel =
true;
729 (
errmsg(
"ignoring file \"%s\" because no file \"%s\" exists",
731 errdetail(
"File \"%s\" was renamed to \"%s\".",
735 (
errmsg(
"ignoring file \"%s\" because no file \"%s\" exists",
737 errdetail(
"Could not rename file \"%s\" to \"%s\": %m.",
776 (
errmsg(
"restarting backup recovery with redo LSN %X/%X",
801 (
errmsg(
"could not locate a valid checkpoint record at %X/%X",
812 (
errmsg(
"entering standby mode")));
815 (
errmsg(
"starting point-in-time recovery to XID %u",
819 (
errmsg(
"starting point-in-time recovery to %s",
823 (
errmsg(
"starting point-in-time recovery to \"%s\"",
827 (
errmsg(
"starting point-in-time recovery to WAL location (LSN) \"%X/%X\"",
831 (
errmsg(
"starting point-in-time recovery to earliest consistent point")));
834 (
errmsg(
"starting archive recovery")));
855 (
errmsg(
"requested timeline %u is not a child of this server's history",
858 errdetail(
"Latest checkpoint in file \"%s\" is at %X/%X on timeline %u, but in the history of the requested timeline, the server forked off from that timeline at %X/%X.",
859 haveBackupLabel ?
"backup_label" :
"pg_control",
873 (
errmsg(
"requested timeline %u does not contain minimum recovery point %X/%X on timeline %u",
881 wasShutdown ?
"true" :
"false")));
901 (
errmsg(
"invalid next transaction ID")));
906 (
errmsg(
"invalid redo in checkpoint record")));
917 (
errmsg(
"invalid redo record in shutdown checkpoint")));
946 (
errmsg(
"database system was not properly shut down; "
947 "automatic recovery in progress")));
950 (
errmsg(
"crash recovery starts in timeline %u "
951 "and has target timeline %u",
988 if (backupFromStandby)
993 (
errmsg(
"backup_label contains data inconsistent with control file"),
994 errhint(
"This means that the backup is corrupted and you will "
995 "have to use another backup for recovery.")));
1022 *wasShutdown_ptr = wasShutdown;
1023 *haveBackupLabel_ptr = haveBackupLabel;
1024 *haveTblspcMap_ptr = haveTblspcMap;
1037 struct stat stat_buf;
1048 errmsg(
"using recovery command file \"%s\" is not supported",
1112 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1113 errmsg(
"standby mode is not supported by single-user servers")));
1130 (
errmsg(
"specified neither \"primary_conninfo\" nor \"restore_command\""),
1131 errhint(
"The database server will regularly poll the pg_wal subdirectory to check for files placed there.")));
1138 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1139 errmsg(
"must specify \"restore_command\" when standby mode is not enabled")));
1176 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1177 errmsg(
"recovery target timeline %u does not exist",
1224 char backuptype[20];
1225 char backupfrom[20];
1227 char backuptime[128];
1233 *backupLabelTLI = 0;
1235 *backupFromStandby =
false;
1243 if (errno != ENOENT)
1246 errmsg(
"could not read file \"%s\": %m",
1256 if (fscanf(lfp,
"START WAL LOCATION: %X/%X (file %08X%16s)%c",
1257 &hi, &lo, &tli_from_walseg, startxlogfilename, &ch) != 5 || ch !=
'\n')
1259 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1263 if (fscanf(lfp,
"CHECKPOINT LOCATION: %X/%X%c",
1264 &hi, &lo, &ch) != 3 || ch !=
'\n')
1266 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1268 *checkPointLoc = ((
uint64) hi) << 32 | lo;
1269 *backupLabelTLI = tli_from_walseg;
1281 if (fscanf(lfp,
"BACKUP METHOD: %19s\n", backuptype) == 1)
1283 if (strcmp(backuptype,
"streamed") == 0)
1292 if (fscanf(lfp,
"BACKUP FROM: %19s\n", backupfrom) == 1)
1294 if (strcmp(backupfrom,
"standby") == 0)
1295 *backupFromStandby =
true;
1307 if (fscanf(lfp,
"START TIME: %127[^\n]\n", backuptime) == 1)
1312 if (fscanf(lfp,
"LABEL: %1023[^\n]\n", backuplabel) == 1)
1321 if (fscanf(lfp,
"START TIMELINE: %u\n", &tli_from_file) == 1)
1323 if (tli_from_walseg != tli_from_file)
1325 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1327 errdetail(
"Timeline ID parsed is %u, but expected %u.",
1328 tli_from_file, tli_from_walseg)));
1335 if (fscanf(lfp,
"INCREMENTAL FROM LSN: %X/%X\n", &hi, &lo) > 0)
1337 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1338 errmsg(
"this is an incremental backup, not a data directory"),
1339 errhint(
"Use pg_combinebackup to reconstruct a valid data directory.")));
1344 errmsg(
"could not read file \"%s\": %m",
1378 if (errno != ENOENT)
1381 errmsg(
"could not read file \"%s\": %m",
1392 was_backslash =
false;
1393 while ((ch = fgetc(lfp)) != EOF)
1395 if (!was_backslash && (ch ==
'\n' || ch ==
'\r'))
1409 while (
str[n] &&
str[n] !=
' ')
1411 if (n < 1 || n >=
i - 1)
1413 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1419 ti->
oid = strtoul(
str, &endp, 10);
1420 if (*endp !=
'\0' || errno == EINVAL || errno == ERANGE)
1422 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1425 *tablespaces =
lappend(*tablespaces, ti);
1430 else if (!was_backslash && ch ==
'\\')
1431 was_backslash =
true;
1434 if (
i <
sizeof(
str) - 1)
1436 was_backslash =
false;
1440 if (
i != 0 || was_backslash)
1442 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
1448 errmsg(
"could not read file \"%s\": %m",
1569 if (endOfLog % XLOG_BLCKSZ != 0)
1575 pageBeginPtr = endOfLog - (endOfLog % XLOG_BLCKSZ);
1579 len = endOfLog % XLOG_BLCKSZ;
1639 unlink(recoveryPath);
1643 unlink(recoveryPath);
1663 bool reachedRecoveryTarget =
false;
1722 if (record->
xl_rmid != RM_XLOG_ID ||
1725 (
errmsg(
"unexpected record type found at redo point %X/%X",
1748 (
errmsg(
"redo starts at %X/%X",
1806 reachedRecoveryTarget =
true;
1835 reachedRecoveryTarget =
true;
1841 }
while (record != NULL);
1847 if (reachedRecoveryTarget)
1851 (
errmsg(
"requested recovery stop point is before consistent recovery point")));
1883 (
errmsg(
"redo done at %X/%X system usage: %s",
1889 (
errmsg(
"last completed transaction was at log time %s",
1898 (
errmsg(
"redo is not required")));
1907 !reachedRecoveryTarget)
1909 (
errcode(ERRCODE_CONFIG_FILE_ERROR),
1910 errmsg(
"recovery ended before configured recovery target was reached")));
1920 bool switchedTLI =
false;
1941 if (record->
xl_rmid == RM_XLOG_ID)
1964 if (newReplayTLI != *replayTLI)
1968 newReplayTLI, prevReplayTLI, *replayTLI);
1971 *replayTLI = newReplayTLI;
1996 if (record->
xl_rmid == RM_XLOG_ID)
2095 elog(
FATAL,
"mismatching overwritten LSN %X/%X -> %X/%X",
2104 (
errmsg(
"successfully skipped missing contrecord at %X/%X, overwritten at %s",
2127 elog(
DEBUG1,
"end of backup record reached");
2132 elog(
DEBUG1,
"saw end-of-backup record for backup starting at %X/%X, waiting for %X/%X",
2163 if (strspn(de->
d_name,
"0123456789") != strlen(de->
d_name))
2171 errmsg(
"unexpected directory entry \"%s\" found in %s",
2173 errdetail(
"All directory entries in %s/ should be symbolic links.",
2175 errhint(
"Remove those directories, or set \"allow_in_place_tablespaces\" to ON transiently to let recovery complete.")));
2227 (
errmsg(
"completed backup recovery with redo LSN %X/%X and end LSN %X/%X",
2258 (
errmsg(
"consistent recovery state reached at %X/%X",
2359 &rlocator, &forknum, &blk, NULL))
2392 if (prevTLI != replayTLI)
2394 (
errmsg(
"unexpected previous timeline ID %u (current timeline ID %u) in checkpoint record",
2395 prevTLI, replayTLI)));
2403 (
errmsg(
"unexpected timeline ID %u (after %u) in checkpoint record",
2404 newTLI, replayTLI)));
2419 (
errmsg(
"unexpected timeline ID %u in checkpoint record, before reaching minimum recovery point %X/%X on timeline %u",
2492 &rlocator, &forknum, &blkno, NULL))
2551 (
errcode(ERRCODE_INTERNAL_ERROR),
2568 "inconsistent page found, rel %u/%u/%u, forknum %u, blkno %u",
2586 bool stopsHere =
false;
2603 (
errmsg(
"recovery stopping after reaching consistency")));
2624 (
errmsg(
"recovery stopping before WAL location (LSN) \"%X/%X\"",
2714 (
errmsg(
"recovery stopping before commit of transaction %u, time %s",
2721 (
errmsg(
"recovery stopping before abort of transaction %u, time %s",
2774 (
errmsg(
"recovery stopping at restore point \"%s\", time %s",
2792 (
errmsg(
"recovery stopping after WAL location (LSN) \"%X/%X\"",
2797 if (rmid != RM_XACT_ID)
2859 (
errmsg(
"recovery stopping after commit of transaction %u, time %s",
2867 (
errmsg(
"recovery stopping after abort of transaction %u, time %s",
2879 (
errmsg(
"recovery stopping after reaching consistency")));
2903 "%s transaction %u",
2918 "at restore point \"%s\"",
2921 snprintf(reason,
sizeof(reason),
"reached consistency");
2923 snprintf(reason,
sizeof(reason),
"no recovery target specified");
2948 (
errmsg(
"pausing at the end of recovery"),
2949 errhint(
"Execute pg_wal_replay_resume() to promote.")));
2952 (
errmsg(
"recovery has paused"),
2953 errhint(
"Execute pg_wal_replay_resume() to continue.")));
2974 WAIT_EVENT_RECOVERY_PAUSE);
3067 elog(
DEBUG2,
"recovery apply delay %ld milliseconds", msecs);
3072 WAIT_EVENT_RECOVERY_APPLY_DELAY);
3150 private->fetching_ckpt = fetching_ckpt;
3151 private->emode = emode;
3153 private->replayTLI = replayTLI;
3216 (
errmsg(
"unexpected timeline ID %u in WAL segment %s, LSN %X/%X, offset %u",
3250 (
errmsg_internal(
"reached end of WAL in pg_wal, entering archive recovery")));
3314 int emode = private->emode;
3364 private->randAccess,
3365 private->fetching_ckpt,
3399 if (((targetPagePtr) / XLOG_BLCKSZ) != (
flushedUpto / XLOG_BLCKSZ))
3416 if (r != XLOG_BLCKSZ)
3419 int save_errno = errno;
3432 errmsg(
"could not read from WAL segment %s, LSN %X/%X, offset %u: %m",
3439 errmsg(
"could not read from WAL segment %s, LSN %X/%X, offset %u: read %d of %zu",
3442 goto next_record_is_invalid;
3501 goto next_record_is_invalid;
3506next_record_is_invalid:
3571 bool streaming_reply_sent =
false;
3611 bool startWalReceiver =
false;
3658 startWalReceiver =
true;
3721 elog(
LOG,
"waiting for WAL to become available at %X/%X",
3731 WAIT_EVENT_RECOVERY_RETRIEVE_RETRY_INTERVAL);
3738 last_fail_time =
now;
3758 elog(
DEBUG2,
"switched WAL source from %s to %s after %s",
3832 startWalReceiver =
true;
3845 if (startWalReceiver &&
3867 elog(
ERROR,
"according to history file, WAL location %X/%X belongs to timeline %u, but previous recovered WAL file came from timeline %u",
3910 if (latestChunkStart <= RecPtr)
3986 if (!streaming_reply_sent)
3989 streaming_reply_sent =
true;
4005 WAIT_EVENT_RECOVERY_WAL_STREAM);
4058 if (RecPtr == lastComplaint)
4061 lastComplaint = RecPtr;
4082 (
errmsg(
"invalid checkpoint location")));
4092 (
errmsg(
"invalid checkpoint record")));
4095 if (record->
xl_rmid != RM_XLOG_ID)
4098 (
errmsg(
"invalid resource manager ID in checkpoint record")));
4101 info = record->
xl_info & ~XLR_INFO_MASK;
4106 (
errmsg(
"invalid xl_info in checkpoint record")));
4112 (
errmsg(
"invalid length of checkpoint record")));
4128 List *newExpectedTLEs;
4153 foreach(cell, newExpectedTLEs)
4166 (
errmsg(
"new timeline %u is not a child of database system timeline %u",
4177 if (currentTle->
end < replayLSN)
4180 (
errmsg(
"new timeline %u forked off current database system timeline %u before current recovery point %X/%X",
4199 (
errmsg(
"new target timeline is %u",
4227 snprintf(activitymsg,
sizeof(activitymsg),
"waiting for %s",
4269 snprintf(activitymsg,
sizeof(activitymsg),
"recovering %s",
4282 if (errno != ENOENT || !notfoundOk)
4285 errmsg(
"could not open file \"%s\": %m", path)));
4353 if (segno < beginseg)
4362 elog(
DEBUG1,
"got WAL segment from archive");
4386 errmsg(
"could not open file \"%s\": %m", path)));
4400 (
errmsg(
"WAL receiver process shutdown requested")));
4485 struct stat stat_buf;
4593 *replayEndTLI = tli;
4681 if (currValue < minValue)
4685 bool warned_for_promote =
false;
4688 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4689 errmsg(
"hot standby is not possible because of insufficient parameter settings"),
4690 errdetail(
"%s = %d is a lower setting than on the primary server, where its value was %d.",
4698 (
errmsg(
"recovery has paused"),
4699 errdetail(
"If recovery is unpaused, the server will shut down."),
4700 errhint(
"You can then restart the server after making the necessary configuration changes.")));
4708 if (!warned_for_promote)
4710 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4711 errmsg(
"promotion is not possible because of insufficient parameter settings"),
4717 errdetail(
"%s = %d is a lower setting than on the primary server, where its value was %d.",
4721 errhint(
"Restart the server after making the necessary configuration changes.")));
4722 warned_for_promote =
true;
4738 WAIT_EVENT_RECOVERY_PAUSE);
4744 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4745 errmsg(
"recovery aborted because of insufficient parameter settings"),
4747 errdetail(
"%s = %d is a lower setting than on the primary server, where its value was %d.",
4751 errhint(
"You can restart the server after making the necessary configuration changes.")));
4791 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4792 errmsg(
"multiple recovery targets specified"),
4793 errdetail(
"At most one of \"recovery_target\", \"recovery_target_lsn\", \"recovery_target_name\", \"recovery_target_time\", \"recovery_target_xid\" may be set.")));
4802 if (strcmp(*
newval,
"immediate") != 0 && strcmp(*
newval,
"") != 0)
4832 if (strcmp(*
newval,
"") != 0)
4836 bool have_error =
false;
4917 if (strcmp(*
newval,
"") != 0)
4920 if (strcmp(*
newval,
"now") == 0 ||
4921 strcmp(*
newval,
"today") == 0 ||
4922 strcmp(*
newval,
"tomorrow") == 0 ||
4923 strcmp(*
newval,
"yesterday") == 0)
4950 &dtype,
tm, &fsec, &tz, &dtextra);
4991 if (strcmp(*
newval,
"current") == 0)
4993 else if (strcmp(*
newval,
"latest") == 0)
5000 strtoul(*
newval, NULL, 0);
5001 if (errno == EINVAL || errno == ERANGE)
5036 if (strcmp(*
newval,
"") != 0)
5043 if (errno == EINVAL || errno == ERANGE)
List * readTimeLineHistory(TimeLineID targetTLI)
TimeLineID findNewestTimeLine(TimeLineID startTLI)
TimeLineID tliOfPointInHistory(XLogRecPtr ptr, List *history)
XLogRecPtr tliSwitchPoint(TimeLineID tli, List *history, TimeLineID *nextTLI)
bool existsTimeLineHistory(TimeLineID probeTLI)
void restoreTimeLineHistoryFiles(TimeLineID begin, TimeLineID end)
bool tliInHistory(TimeLineID tli, List *expectedTLEs)
void remove_tablespace_symlink(const char *linkloc)
bool allow_in_place_tablespaces
void disable_startup_progress_timeout(void)
bool IsPromoteSignaled(void)
void begin_startup_progress_phase(void)
void ProcessStartupProcInterrupts(void)
void ResetPromoteSignaled(void)
int ParseDateTime(const char *timestr, char *workbuf, size_t buflen, char **field, int *ftype, int maxfields, int *numfields)
int DecodeDateTime(char **field, int *ftype, int nf, int *dtype, struct pg_tm *tm, fsec_t *fsec, int *tzp, DateTimeErrorExtra *extra)
long TimestampDifferenceMilliseconds(TimestampTz start_time, TimestampTz stop_time)
int tm2timestamp(struct pg_tm *tm, fsec_t fsec, int *tzp, Timestamp *result)
bool TimestampDifferenceExceeds(TimestampTz start_time, TimestampTz stop_time, int msec)
Datum timestamptz_in(PG_FUNCTION_ARGS)
TimestampTz GetCurrentTimestamp(void)
const char * timestamptz_to_str(TimestampTz t)
Datum now(PG_FUNCTION_ARGS)
void UnlockReleaseBuffer(Buffer buffer)
void LockBuffer(Buffer buffer, int mode)
static Page BufferGetPage(Buffer buffer)
#define BUFFER_LOCK_EXCLUSIVE
static bool BufferIsValid(Buffer bufnum)
static XLogRecPtr PageGetLSN(const PageData *page)
#define PG_USED_FOR_ASSERTS_ONLY
void RequestCheckpoint(int flags)
bool ConditionVariableCancelSleep(void)
bool ConditionVariableTimedSleep(ConditionVariable *cv, long timeout, uint32 wait_event_info)
void ConditionVariableBroadcast(ConditionVariable *cv)
void ConditionVariableInit(ConditionVariable *cv)
int errmsg_internal(const char *fmt,...)
int errcode_for_file_access(void)
int errdetail(const char *fmt,...)
ErrorContextCallback * error_context_stack
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
int BasicOpenFilePerm(const char *fileName, int fileFlags, mode_t fileMode)
int durable_rename(const char *oldfile, const char *newfile, int elevel)
int BasicOpenFile(const char *fileName, int fileFlags)
DIR * AllocateDir(const char *dirname)
struct dirent * ReadDir(DIR *dir, const char *dirname)
FILE * AllocateFile(const char *name, const char *mode)
PGFileType get_dirent_type(const char *path, const struct dirent *de, bool look_through_symlinks, int elevel)
#define DirectFunctionCall3(func, arg1, arg2, arg3)
bool IsPostmasterEnvironment
void * guc_malloc(int elevel, size_t size)
#define GUC_check_errdetail
Assert(PointerIsAligned(start, uint64))
void OwnLatch(Latch *latch)
void DisownLatch(Latch *latch)
void InitSharedLatch(Latch *latch)
void SetLatch(Latch *latch)
void ResetLatch(Latch *latch)
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
List * lappend(List *list, void *datum)
void list_free_deep(List *list)
char * pstrdup(const char *in)
void pfree(void *pointer)
void * palloc0(Size size)
#define AmStartupProcess()
#define IsBootstrapProcessingMode()
#define ERRCODE_DATA_CORRUPTED
#define XLOG_RESTORE_POINT
#define XLOG_CHECKPOINT_REDO
#define XLOG_OVERWRITE_CONTRECORD
@ DB_SHUTDOWNED_IN_RECOVERY
#define XLOG_CHECKPOINT_SHUTDOWN
#define XLOG_CHECKPOINT_ONLINE
#define XLOG_END_OF_RECOVERY
XLogRecPtr pg_lsn_in_internal(const char *str, bool *have_error)
static rewind_source * source
const char * pg_rusage_show(const PGRUsage *ru0)
void pg_rusage_init(PGRUsage *ru0)
instr_time pgstat_prepare_io_time(bool track_io_guc)
void pgstat_count_io_op_time(IOObject io_object, IOContext io_context, IOOp io_op, instr_time start_time, uint32 cnt, uint64 bytes)
void SendPostmasterSignal(PMSignalReason reason)
@ PMSIGNAL_RECOVERY_STARTED
@ PMSIGNAL_BEGIN_HOT_STANDBY
@ PMSIGNAL_RECOVERY_CONSISTENT
size_t strlcpy(char *dst, const char *src, size_t siz)
static Datum ObjectIdGetDatum(Oid X)
static Datum CStringGetDatum(const char *X)
static Datum Int32GetDatum(int32 X)
static int fd(const char *x, int i)
void RecordKnownAssignedTransactionIds(TransactionId xid)
void KnownAssignedTransactionIdsIdleMaintenance(void)
static void set_ps_display(const char *activity)
char * psprintf(const char *fmt,...)
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
bool ReplicationSlotValidateName(const char *name, int elevel)
void ShutDownSlotSync(void)
#define SpinLockInit(lock)
#define SpinLockRelease(lock)
#define SpinLockAcquire(lock)
#define ereport_startup_progress(msg,...)
void appendStringInfo(StringInfo str, const char *fmt,...)
void appendStringInfoString(StringInfo str, const char *s)
void appendStringInfoChar(StringInfo str, char ch)
void initStringInfo(StringInfo str)
MultiXactOffset nextMultiOffset
TransactionId newestCommitTsXid
TimeLineID PrevTimeLineID
TimeLineID ThisTimeLineID
FullTransactionId nextXid
TransactionId oldestCommitTsXid
XLogRecPtr backupStartPoint
CheckPoint checkPointCopy
XLogRecPtr backupEndPoint
XLogRecPtr minRecoveryPoint
TimeLineID minRecoveryPointTLI
bool standby_signal_file_found
XLogRecPtr lastPageBeginPtr
char * recoveryStopReason
XLogRecPtr missingContrecPtr
bool recovery_signal_file_found
struct ErrorContextCallback * previous
void(* callback)(void *arg)
const char *(* rm_identify)(uint8 info)
void(* rm_mask)(char *pagedata, BlockNumber blkno)
void(* rm_redo)(XLogReaderState *record)
void(* rm_desc)(StringInfo buf, XLogReaderState *record)
XLogRecPtr missingContrecPtr
XLogRecPtr overwrittenRecPtr
ConditionVariable recoveryNotPausedCV
XLogRecPtr lastReplayedEndRecPtr
bool SharedHotStandbyActive
TimeLineID lastReplayedTLI
bool SharedPromoteIsTriggered
TimestampTz currentChunkStartTime
XLogRecPtr replayEndRecPtr
Latch recoveryWakeupLatch
TimestampTz recoveryLastXTime
RecoveryPauseState recoveryPauseState
XLogRecPtr lastReplayedReadRecPtr
TimeLineID PrevTimeLineID
TimeLineID ThisTimeLineID
TimestampTz overwrite_time
XLogRecPtr overwritten_lsn
char rp_name[MAXFNAMELEN]
TransactionId twophase_xid
TransactionId twophase_xid
#define InvalidTransactionId
#define U64FromFullTransactionId(x)
#define XidFromFullTransactionId(x)
#define TransactionIdIsValid(xid)
#define TransactionIdIsNormal(xid)
#define TimestampTzPlusMilliseconds(tz, ms)
static TimestampTz DatumGetTimestampTz(Datum X)
void AdvanceNextFullTransactionIdPastXid(TransactionId xid)
static void pgstat_report_wait_start(uint32 wait_event_info)
static void pgstat_report_wait_end(void)
#define WL_EXIT_ON_PM_DEATH
void WalRcvForceReply(void)
#define AllowCascadeReplication()
XLogRecPtr GetWalRcvFlushRecPtr(XLogRecPtr *latestChunkStart, TimeLineID *receiveTLI)
bool WalRcvStreaming(void)
void RequestXLogStreaming(TimeLineID tli, XLogRecPtr recptr, const char *conninfo, const char *slotname, bool create_temp_slot)
void WalSndWakeup(bool physical, bool logical)
#define symlink(oldpath, newpath)
#define XLOG_XACT_COMMIT_PREPARED
#define XLOG_XACT_ABORT_PREPARED
void ParseCommitRecord(uint8 info, xl_xact_commit *xlrec, xl_xact_parsed_commit *parsed)
void ParseAbortRecord(uint8 info, xl_xact_abort *xlrec, xl_xact_parsed_abort *parsed)
int wal_decode_buffer_size
XLogRecPtr GetRedoRecPtr(void)
void SetInstallXLogFileSegmentActive(void)
bool IsInstallXLogFileSegmentActive(void)
void SwitchIntoArchiveRecovery(XLogRecPtr EndRecPtr, TimeLineID replayTLI)
void RemoveNonParentXlogFiles(XLogRecPtr switchpoint, TimeLineID newTLI)
void ReachedEndOfBackup(XLogRecPtr EndRecPtr, TimeLineID tli)
int wal_retrieve_retry_interval
static ControlFileData * ControlFile
void XLogShutdownWalRcv(void)
bool XLogCheckpointNeeded(XLogSegNo new_segno)
#define TABLESPACE_MAP_OLD
#define STANDBY_SIGNAL_FILE
#define CHECKPOINT_CAUSE_XLOG
#define PROMOTE_SIGNAL_FILE
#define BACKUP_LABEL_FILE
#define RECOVERY_SIGNAL_FILE
static RmgrData GetRmgr(RmgrId rmid)
@ RECOVERY_TARGET_ACTION_PAUSE
@ RECOVERY_TARGET_ACTION_PROMOTE
@ RECOVERY_TARGET_ACTION_SHUTDOWN
#define XLogSegmentOffset(xlogptr, wal_segsz_bytes)
#define XLByteToSeg(xlrp, logSegNo, wal_segsz_bytes)
static void XLogFilePath(char *path, TimeLineID tli, XLogSegNo logSegNo, int wal_segsz_bytes)
#define XRecOffIsValid(xlrp)
static void XLogFileName(char *fname, TimeLineID tli, XLogSegNo logSegNo, int wal_segsz_bytes)
#define XLByteInSeg(xlrp, logSegNo, wal_segsz_bytes)
bool RestoreArchivedFile(char *path, const char *xlogfname, const char *recovername, off_t expectedSize, bool cleanupEnabled)
void KeepFileRestoredFromArchive(const char *path, const char *xlogfname)
#define LSN_FORMAT_ARGS(lsn)
#define XLogRecPtrIsInvalid(r)
#define InvalidXLogRecPtr
void XLogPrefetcherComputeStats(XLogPrefetcher *prefetcher)
XLogPrefetcher * XLogPrefetcherAllocate(XLogReaderState *reader)
void XLogPrefetchReconfigure(void)
XLogRecord * XLogPrefetcherReadRecord(XLogPrefetcher *prefetcher, char **errmsg)
XLogReaderState * XLogPrefetcherGetReader(XLogPrefetcher *prefetcher)
void XLogPrefetcherBeginRead(XLogPrefetcher *prefetcher, XLogRecPtr recPtr)
void XLogPrefetcherFree(XLogPrefetcher *prefetcher)
bool XLogRecGetBlockTagExtended(XLogReaderState *record, uint8 block_id, RelFileLocator *rlocator, ForkNumber *forknum, BlockNumber *blknum, Buffer *prefetch_buffer)
XLogReaderState * XLogReaderAllocate(int wal_segment_size, const char *waldir, XLogReaderRoutine *routine, void *private_data)
void XLogReaderSetDecodeBuffer(XLogReaderState *state, void *buffer, size_t size)
void XLogReaderResetError(XLogReaderState *state)
bool XLogReaderValidatePageHeader(XLogReaderState *state, XLogRecPtr recptr, char *phdr)
void XLogReaderFree(XLogReaderState *state)
bool RestoreBlockImage(XLogReaderState *record, uint8 block_id, char *page)
#define XLogRecGetDataLen(decoder)
#define XLogRecGetInfo(decoder)
#define XLogRecBlockImageApply(decoder, block_id)
#define XLogRecGetRmid(decoder)
#define XLogRecGetData(decoder)
#define XLogRecGetXid(decoder)
#define XLogRecMaxBlockId(decoder)
#define XLogRecHasBlockImage(decoder, block_id)
#define XLogRecGetPrev(decoder)
#define XLogRecHasAnyBlockRefs(decoder)
#define SizeOfXLogRecordDataHeaderShort
#define XLR_CHECK_CONSISTENCY
bool check_primary_slot_name(char **newval, void **extra, GucSource source)
static bool getRecordTimestamp(XLogReaderState *record, TimestampTz *recordXtime)
static XLogRecPtr recoveryStopLSN
static bool recoveryStopsBefore(XLogReaderState *record)
static TimestampTz recoveryStopTime
void assign_recovery_target_xid(const char *newval, void *extra)
static bool CheckForStandbyTrigger(void)
int recovery_min_apply_delay
bool check_recovery_target(char **newval, void **extra, GucSource source)
static bool backupEndRequired
bool HotStandbyActive(void)
static char * getRecoveryStopReason(void)
void ShutdownWalRecovery(void)
RecoveryTargetTimeLineGoal recoveryTargetTimeLineGoal
static void rm_redo_error_callback(void *arg)
static bool recoveryApplyDelay(XLogReaderState *record)
bool ArchiveRecoveryRequested
const char * recoveryTargetName
static void xlogrecovery_redo(XLogReaderState *record, TimeLineID replayTLI)
bool check_recovery_target_timeline(char **newval, void **extra, GucSource source)
static XLogRecPtr minRecoveryPoint
static int XLogPageRead(XLogReaderState *xlogreader, XLogRecPtr targetPagePtr, int reqLen, XLogRecPtr targetRecPtr, char *readBuf)
static XLogRecPtr backupEndPoint
const struct config_enum_entry recovery_target_action_options[]
static void validateRecoveryParameters(void)
static void checkTimeLineSwitch(XLogRecPtr lsn, TimeLineID newTLI, TimeLineID prevTLI, TimeLineID replayTLI)
static XLogRecord * ReadCheckpointRecord(XLogPrefetcher *xlogprefetcher, XLogRecPtr RecPtr, TimeLineID replayTLI)
void StartupRequestWalReceiverRestart(void)
static bool recoveryStopsAfter(XLogReaderState *record)
void RecoveryRequiresIntParameter(const char *param_name, int currValue, int minValue)
static TimeLineID curFileTLI
static char recoveryStopName[MAXFNAMELEN]
static void CheckRecoveryConsistency(void)
static bool pendingWalRcvRestart
void PerformWalRecovery(void)
static XLogSource XLogReceiptSource
bool CheckPromoteSignal(void)
struct XLogPageReadPrivate XLogPageReadPrivate
static bool recoveryStopAfter
static const char *const xlogSourceNames[]
static TimeLineID RedoStartTLI
char * recoveryRestoreCommand
static void verifyBackupPageConsistency(XLogReaderState *record)
static int XLogFileReadAnyTLI(XLogSegNo segno, XLogSource source)
void assign_recovery_target(const char *newval, void *extra)
void SetRecoveryPause(bool recoveryPause)
static bool lastSourceFailed
char * archiveCleanupCommand
XLogRecPtr GetCurrentReplayRecPtr(TimeLineID *replayEndTLI)
static TimeLineID receiveTLI
void WakeupRecovery(void)
void xlog_outdesc(StringInfo buf, XLogReaderState *record)
static bool LocalPromoteIsTriggered
bool PromoteIsTriggered(void)
TimestampTz GetCurrentChunkReplayStartTime(void)
static void ConfirmRecoveryPaused(void)
static void readRecoverySignalFile(void)
static XLogRecPtr missingContrecPtr
static XLogRecoveryCtlData * XLogRecoveryCtl
static bool standby_signal_file_found
char * recovery_target_time_string
static XLogPageReadResult WaitForWALToBecomeAvailable(XLogRecPtr RecPtr, bool randAccess, bool fetching_ckpt, XLogRecPtr tliRecPtr, TimeLineID replayTLI, XLogRecPtr replayLSN, bool nonblocking)
XLogRecPtr recoveryTargetLSN
RecoveryTargetType recoveryTarget
static bool read_tablespace_map(List **tablespaces)
static bool doRequestWalReceiverReply
static bool read_backup_label(XLogRecPtr *checkPointLoc, TimeLineID *backupLabelTLI, bool *backupEndRequired, bool *backupFromStandby)
static int XLogFileRead(XLogSegNo segno, TimeLineID tli, XLogSource source, bool notfoundOk)
static XLogSource currentSource
XLogRecPtr GetXLogReplayRecPtr(TimeLineID *replayTLI)
void GetXLogReceiptTime(TimestampTz *rtime, bool *fromStream)
static List * expectedTLEs
static XLogSegNo readSegNo
void assign_recovery_target_name(const char *newval, void *extra)
static XLogRecPtr abortedRecPtr
static char * primary_image_masked
static TimeLineID minRecoveryPointTLI
static XLogRecord * ReadRecord(XLogPrefetcher *xlogprefetcher, int emode, bool fetching_ckpt, TimeLineID replayTLI)
EndOfWalRecoveryInfo * FinishWalRecovery(void)
void assign_recovery_target_time(const char *newval, void *extra)
static void SetCurrentChunkStartTime(TimestampTz xtime)
static XLogRecPtr CheckPointLoc
bool check_recovery_target_xid(char **newval, void **extra, GucSource source)
static bool LocalHotStandbyActive
struct XLogRecoveryCtlData XLogRecoveryCtlData
static bool HotStandbyActiveInReplay(void)
static TransactionId recoveryStopXid
bool check_recovery_target_time(char **newval, void **extra, GucSource source)
static XLogSource readSource
static void SetPromoteIsTriggered(void)
#define RECOVERY_COMMAND_FILE
TransactionId recoveryTargetXid
TimeLineID recoveryTargetTLIRequested
static pg_noreturn void error_multiple_recovery_targets(void)
void InitWalRecovery(ControlFileData *ControlFile, bool *wasShutdown_ptr, bool *haveBackupLabel_ptr, bool *haveTblspcMap_ptr)
static void xlog_block_info(StringInfo buf, XLogReaderState *record)
static TimestampTz XLogReceiptTime
static void ApplyWalRecord(XLogReaderState *xlogreader, XLogRecord *record, TimeLineID *replayTLI)
Size XLogRecoveryShmemSize(void)
static char * replay_image_masked
bool wal_receiver_create_temp_slot
static void CheckTablespaceDirectory(void)
char * recoveryEndCommand
RecoveryPauseState GetRecoveryPauseState(void)
TimeLineID recoveryTargetTLI
static int emode_for_corrupt_record(int emode, XLogRecPtr RecPtr)
void assign_recovery_target_lsn(const char *newval, void *extra)
bool check_recovery_target_lsn(char **newval, void **extra, GucSource source)
static XLogRecPtr RedoStartLSN
static XLogRecPtr flushedUpto
void XLogRecoveryShmemInit(void)
static void recoveryPausesHere(bool endOfRecovery)
static void EnableStandbyMode(void)
#define RECOVERY_COMMAND_DONE
static bool recovery_signal_file_found
TimestampTz recoveryTargetTime
TimestampTz GetLatestXTime(void)
void XLogRequestWalReceiverReply(void)
static bool rescanLatestTimeLine(TimeLineID replayTLI, XLogRecPtr replayLSN)
static XLogPrefetcher * xlogprefetcher
static bool StandbyModeRequested
bool check_recovery_target_name(char **newval, void **extra, GucSource source)
bool recoveryTargetInclusive
static XLogReaderState * xlogreader
void RemovePromoteSignalFiles(void)
void assign_recovery_target_timeline(const char *newval, void *extra)
static XLogRecPtr backupStartPoint
static void SetLatestXTime(TimestampTz xtime)
static TimeLineID CheckPointTLI
@ RECOVERY_TARGET_IMMEDIATE
RecoveryTargetTimeLineGoal
@ RECOVERY_TARGET_TIMELINE_NUMERIC
@ RECOVERY_TARGET_TIMELINE_CONTROLFILE
@ RECOVERY_TARGET_TIMELINE_LATEST
@ RECOVERY_PAUSE_REQUESTED
void wal_segment_close(XLogReaderState *state)
Buffer XLogReadBufferExtended(RelFileLocator rlocator, ForkNumber forknum, BlockNumber blkno, ReadBufferMode mode, Buffer recent_buffer)
HotStandbyState standbyState
void XLogCheckInvalidPages(void)