From 253fa736b978f298746763ef3113282f32b9f475 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 10 Dec 2008 11:05:49 +0000 Subject: [PATCH] Update journaling performance docs based on comments by Michael Renner. --- doc/src/sgml/wal.sgml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml index 3b013746a3..e69463a9e2 100644 --- a/doc/src/sgml/wal.sgml +++ b/doc/src/sgml/wal.sgml @@ -1,4 +1,4 @@ - + Reliability and the Write-Ahead Log @@ -139,13 +139,13 @@ Because WAL restores database file contents after a crash, it is not necessary to use a - journaled filesystem; in fact, journaling overhead can - reduce performance. For best performance, turn off - data journaling as a filesystem mount - option, e.g. use data=writeback on Linux. - Meta-data journaling (e.g. file creation and directory - modification) is still desirable for faster rebooting after - a crash. + journaled filesystem for reliability. In fact, journaling + overhead can reduce performance, especially if journaling + causes file system data to be flushed + to disk. Fortunately, data flushing during journaling can + often be disabled with a filesystem mount option, e.g. + data=writeback on a Linux ext3 file system. + Journaled file systems do improve boot speed after a crash. -- 2.11.0