added change_settings.md

This commit is contained in:
David Leutgeb 2022-07-07 10:41:37 +02:00
commit 18477a7d78
1 changed files with 15 additions and 0 deletions

15
change_settings.md Normal file
View File

@ -0,0 +1,15 @@
# 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.
```
select context from pg_settings where name='max_wal_size';
```
# Is a restart of postgresql required?
```
select pending_restart from pg_settings where name='max_wal_size';
```
This will tell you if a restart is pending for a setting.