From 6aaf243a1a62590a1adc49c54d492d87dbf73e32 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 24 Jan 2001 21:56:23 +0000 Subject: [PATCH] Update based on documentation written by Vadim Mikheev and Oliver Elphick. --- doc/src/sgml/ref/checkpoint.sgml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/checkpoint.sgml b/doc/src/sgml/ref/checkpoint.sgml index 9192b9ec09..9752ce3ceb 100644 --- a/doc/src/sgml/ref/checkpoint.sgml +++ b/doc/src/sgml/ref/checkpoint.sgml @@ -2,7 +2,7 @@ - 2001-01-13 + 2001-01-24 @@ -12,7 +12,7 @@ CHECKPOINT - Force transaction log to disk + Force transaction log checkpoint @@ -25,7 +25,20 @@ CHECKPOINT Description - This documentation needs to be written. + Write-Ahead Logging (WAL) puts a checkpoint in the transaction log + every 300 seconds by default. (This may be changed by the run-time + configuration option CHECKPOINT_TIMEOUT.) + The CHECKPOINT command forces a checkpoint at + the point at which the command is issued. The next automatic + checkpoint will still happen after the original cycle expires. + + + + A checkpoint is a point in the transaction log sequence at which + all data files have been updated to reflect the information in the + log. All data files will be flushed to disk. Refer to the + PostgreSQL Administrator's Guide for more + information about the WAL system. -- 2.39.5