Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
31076c8b
Commit
31076c8b
authored
16 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Document that non-data journaling is a recommended mount option.
parent
7a567d94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/wal.sgml
+16
-1
16 additions, 1 deletion
doc/src/sgml/wal.sgml
with
16 additions
and
1 deletion
doc/src/sgml/wal.sgml
+
16
−
1
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment