diff options
| author | Robert Haas | 2023-02-06 15:51:08 +0000 |
|---|---|---|
| committer | Robert Haas | 2023-02-06 15:51:08 +0000 |
| commit | 8a2f783cc489e4e1820163c1c439125aad4d7a92 (patch) | |
| tree | c054ee8bd08ffc3f0c8ede4b3548e774e1985242 /src/include/postmaster | |
| parent | 0ae4e49fa66342b7c6294a6534db51284f5385b7 (diff) | |
Disable STARTUP_PROGRESS_TIMEOUT in standby mode.
In standby mode, we don't actually report progress of recovery,
but up until now, startup_progress_timeout_handler() nevertheless
got called every log_startup_progress_interval seconds. That's
an unnecessary expense, so avoid it.
Report by Thomas Munro. Patch by Bharath Rupireddy, reviewed by
Simon Riggs, Thomas Munro, and me. Back-patch to v15, where
the problem was introduced.
Discussion: https://www.postgresql.org/message-id/CA%2BhUKGKCHSffAj8zZJKJvNX7ygnQFxVD6wm1d-2j3fVw%2BMafPQ%40mail.gmail.com
Diffstat (limited to 'src/include/postmaster')
| -rw-r--r-- | src/include/postmaster/startup.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/postmaster/startup.h b/src/include/postmaster/startup.h index dd957f9291f..6a2e4c4526b 100644 --- a/src/include/postmaster/startup.h +++ b/src/include/postmaster/startup.h @@ -32,6 +32,8 @@ extern void PostRestoreCommand(void); extern bool IsPromoteSignaled(void); extern void ResetPromoteSignaled(void); +extern void enable_startup_progress_timeout(void); +extern void disable_startup_progress_timeout(void); extern void begin_startup_progress_phase(void); extern void startup_progress_timeout_handler(void); extern bool has_startup_progress_timeout_expired(long *secs, int *usecs); |
