From 3d5dc3cc70a37d24e1c1c8fc6ab3549f28a5e9c0 Mon Sep 17 00:00:00 2001 From: David Leutgeb Date: Thu, 7 Jul 2022 10:45:03 +0200 Subject: [PATCH] Changed change_settings.md --- change_settings.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/change_settings.md b/change_settings.md index acf982c..55a9dac 100644 --- a/change_settings.md +++ b/change_settings.md @@ -1,10 +1,10 @@ -# How to reload config changes during the runtime (SIGHUP)? +## How to reload config changes during the runtime (SIGHUP)? ``` select pg_reload_conf(); ``` -# Does changing a config setting require a restart of postgresql or just a reload (SIGHUP)? +## Does changing a config setting require a restart of postgresql or just a reload (SIGHUP)? This can be archived by simply selecting the setting from pg_settings. @@ -12,7 +12,7 @@ This can be archived by simply selecting the setting from pg_settings. select context from pg_settings where name='max_wal_size'; ``` -# Is a restart of postgresql required? +## Is a restart of postgresql required? ``` select pending_restart from pg_settings where name='max_wal_size';