Improve documentation of data_sync_retry
authorMichael Paquier
Thu, 28 Feb 2019 02:02:18 +0000 (11:02 +0900)
committerMichael Paquier
Thu, 28 Feb 2019 02:02:18 +0000 (11:02 +0900)
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

doc/src/sgml/config.sgml
src/backend/utils/misc/postgresql.conf.sample

index 8999eee5f14ca795b081503c02da9a5d8fcaa2e1..d94d0333aadb5225279f3560721ab5b72db81772 100644 (file)
@@ -8145,7 +8145,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
        
         When set to false, which is the default, PostgreSQL
         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.
        
        
         On some operating systems, the status of data in the kernel's page
index 1404946c410ac50fe5ebeea57cc4f9f78e616fae..6f7fa22c6c1a3fd3cf1e1ecd53f867a4aa1063ef 100644 (file)
 
 #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)
 
 
 #------------------------------------------------------------------------------