File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
- <!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/checkpoint.sgml,v 1.1 2001/01/13 03:11:12 petere Exp $ -->
1
+ <!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/checkpoint.sgml,v 1.2 2001/01/24 21:56:23 petere Exp $ -->
2
2
3
3
<refentry id="sql-checkpoint">
4
4
<docinfo>
5
- <date>2001-01-13 </date>
5
+ <date>2001-01-24 </date>
6
6
</docinfo>
7
7
8
8
<refmeta>
12
12
13
13
<refnamediv>
14
14
<refname>CHECKPOINT</refname>
15
- <refpurpose>Force transaction log to disk </refpurpose>
15
+ <refpurpose>Force transaction log checkpoint </refpurpose>
16
16
</refnamediv>
17
17
18
18
<refsynopsisdiv>
@@ -25,7 +25,20 @@ CHECKPOINT
25
25
<title>Description</title>
26
26
27
27
<para>
28
- This documentation needs to be written.
28
+ Write-Ahead Logging (WAL) puts a checkpoint in the transaction log
29
+ every 300 seconds by default. (This may be changed by the run-time
30
+ configuration option <parameter>CHECKPOINT_TIMEOUT</parameter>.)
31
+ The <command>CHECKPOINT</command> command forces a checkpoint at
32
+ the point at which the command is issued. The next automatic
33
+ checkpoint will still happen after the original cycle expires.
34
+ </para>
35
+
36
+ <para>
37
+ A checkpoint is a point in the transaction log sequence at which
38
+ all data files have been updated to reflect the information in the
39
+ log. All data files will be flushed to disk. Refer to the
40
+ <citetitle>PostgreSQL Administrator's Guide</citetitle> for more
41
+ information about the WAL system.
29
42
</para>
30
43
</refsect1>
31
44
You can’t perform that action at this time.
0 commit comments