diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-02-28 11:02:40 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-02-28 11:02:40 +0900 |
commit | 00382f373239feff9dacc99dd2e5dace50da60de (patch) | |
tree | 55665a3b150152fe62285373a3e885ec51a81963 | |
parent | 53c2bb78db9f9bb47de14d61fc8b2a71cf1052ca (diff) |
Improve documentation of data_sync_retry
Reflecting an updated parameter value requires a server restart, which
was not mentioned in the documentation and in postgresql.conf.sample.
Reported-by: Thomas Poty
Discussion: https://postgr.es/m/15659-0cd812f13027a2d8@postgresql.org
-rw-r--r-- | doc/src/sgml/config.sgml | 3 | ||||
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 8628ae4db13..984314055b4 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -6847,7 +6847,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' <para> When set to false, which is the default, <productname>PostgreSQL</productname> will raise a PANIC-level error on failure to flush modified data files - to the filesystem. This causes the database server to crash. + to the filesystem. This causes the database server to crash. This + parameter can only be set at server start. </para> <para> On some operating systems, the status of data in the kernel's page diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 092284423e0..3adf80d022c 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -587,7 +587,9 @@ #exit_on_error = off # terminate session on any error? #restart_after_crash = on # reinitialize after backend crash? -#data_sync_retry = off # retry or panic on failure to fsync data? +#data_sync_retry = off # retry or panic on failure to fsync + # data? + # (change requires restart) #------------------------------------------------------------------------------ |