Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
31076c8b
Commit
31076c8b
authored
Dec 06, 2008
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document that non-data journaling is a recommended mount option.
parent
7a567d94
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
doc/src/sgml/wal.sgml
doc/src/sgml/wal.sgml
+16
-1
No files found.
doc/src/sgml/wal.sgml
View file @
31076c8b
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.5
3 2008/05/02 19:52:37 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.5
4 2008/12/06 21:34:27 momjian
Exp $ -->
<chapter id="wal">
<chapter id="wal">
<title>Reliability and the Write-Ahead Log</title>
<title>Reliability and the Write-Ahead Log</title>
...
@@ -135,6 +135,21 @@
...
@@ -135,6 +135,21 @@
roll-forward recovery, also known as REDO.)
roll-forward recovery, also known as REDO.)
</para>
</para>
<tip>
<para>
Because <acronym>WAL</acronym> 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
<emphasis>data</emphasis> journaling as a filesystem mount
option, e.g. use <literal>data=writeback</> on Linux.
Meta-data journaling (e.g. file creation and directory
modification) is still desirable for faster rebooting after
a crash.
</para>
</tip>
<para>
<para>
Using <acronym>WAL</acronym> results in a
Using <acronym>WAL</acronym> results in a
significantly reduced number of disk writes, because only the log
significantly reduced number of disk writes, because only the log
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment