diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 0075a1ee0d..76af829d2d 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -1459,7 +1459,11 @@ SET ENABLE_SEQSCAN TO OFF;
Not all of these choices are available on all platforms.
The default is the first method in the above list that is supported
- by the platform.
+ by the platform. The default is not necessarily best; it may be
+ necessary to change this setting, or other aspects of your system
+ configuration, in order to create a crash-safe configuration, as
+ discussed in , or to achieve best
+ performance.
The open_>* options also use O_DIRECT> if available.
This parameter can only be set in the postgresql.conf>
file or on the server command line.
diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml
index c21e4a4d62..36545e4e1a 100644
--- a/doc/src/sgml/wal.sgml
+++ b/doc/src/sgml/wal.sgml
@@ -75,7 +75,9 @@
by unchecking My Computer\Open\{select disk
drive}\Properties\Hardware\Properties\Policies\Enable write caching on
the disk>. Also on Windows, fsync> and
- fsync_writethrough> never do write caching.
+ fsync_writethrough> never do write caching. The
+ fsync_writethrough> option can also be used to disable
+ write caching on MacOS X>.
@@ -481,8 +483,10 @@
The parameter determines how
PostgreSQL will ask the kernel to force
WAL updates out to disk.
- All the options should be the same as far as reliability goes,
- but it's quite platform-specific which one will be the fastest.
+ With the exception of fsync_writethrough>, which can sometimes
+ force a flush of the disk cache even when other options do not do so,
+ all the options should be the same in terms of reliability.
+ However, it's quite platform-specific which one will be the fastest.
Note that this parameter is irrelevant if fsync
has been turned off.
@@ -542,6 +546,7 @@
irrecoverable data corruption. Administrators should try to ensure
that disks holding PostgreSQL's
WAL log files do not make such false reports.
+ (See .)