aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2021-10-12 09:50:17 +0900
committerFujii Masao <fujii@postgresql.org>2021-10-12 09:50:17 +0900
commite3e29cec10d15bbcedc6b41887d8f4e138d719bd (patch)
treef716b40d5296a37182e3f94cfcdd06df026b445c /src
parent292698f158ddb3f9a88f536e6eecb9e55d9619c9 (diff)
downloadpostgresql-e3e29cec10d15bbcedc6b41887d8f4e138d719bd.tar.gz
postgresql-e3e29cec10d15bbcedc6b41887d8f4e138d719bd.zip
Make autovacuum launcher more responsive to pg_log_backend_memory_contexts().
Previously when pg_log_backend_memory_contexts() sent the request to the autovacuum launcher, it could take more than several seconds to log its memory contexts. Because the function (HandleAutoVacLauncherInterrupts) to process any new interrupts that autovacuum launcher received didn't handle the request for logging of memory contexts. This commit changes the function so that it handles the request, to make autovacuum launcher more responsitve to pg_log_backend_memory_contexts(). Back-patch to v14 where pg_log_backend_memory_contexts() was added. Author: Koyu Tanigawa Reviewed-by: Bharath Rupireddy, Atsushi Torikoshi Discussion: https://postgr.es/m/0aae3e074face409b35153451be5cc11@oss.nttdata.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/autovacuum.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c
index 3b3df8fa8cc..96332320a73 100644
--- a/src/backend/postmaster/autovacuum.c
+++ b/src/backend/postmaster/autovacuum.c
@@ -836,6 +836,10 @@ HandleAutoVacLauncherInterrupts(void)
if (ProcSignalBarrierPending)
ProcessProcSignalBarrier();
+ /* Perform logging of memory contexts of this process */
+ if (LogMemoryContextPending)
+ ProcessLogMemoryContextInterrupt();
+
/* Process sinval catchup interrupts that happened while sleeping */
ProcessCatchupInterrupt();
}