diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-08-30 16:53:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-08-30 16:53:34 +0000 |
commit | 2c65658c049256519cc07ff82afa9ede68c024f5 (patch) | |
tree | 0d0ccf86543e751f1e8e42d393bf2b77f0266962 | |
parent | 63653f7ffabac21007b9551705a063b9c51d7be5 (diff) | |
download | postgresql-2c65658c049256519cc07ff82afa9ede68c024f5.tar.gz postgresql-2c65658c049256519cc07ff82afa9ede68c024f5.zip |
Improve wording after wal_files removal.
-rw-r--r-- | doc/src/sgml/wal.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml index 0baebb3c093..5a566b25c3d 100644 --- a/doc/src/sgml/wal.sgml +++ b/doc/src/sgml/wal.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/wal.sgml,v 1.17 2002/08/30 16:50:50 momjian Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/wal.sgml,v 1.18 2002/08/30 16:53:34 momjian Exp $ --> <chapter id="wal"> <title>Write-Ahead Logging (<acronym>WAL</acronym>)</title> @@ -302,10 +302,10 @@ </para> <para> - The number of 16MB segment files will always be at least - 1, and will normally not exceed <varname>CHECKPOINT_SEGMENTS</varname>) - + 1. This may be used to estimate space requirements for WAL. - Ordinarily, when old log segment files are no longer needed, + There will be at least one 16MB segment file, and will normally + not be more than <varname>CHECKPOINT_SEGMENTS</varname>) + + 1 files. You can use this to estimate space requirements for + WAL. Ordinarily, when old log segment files are no longer needed, they are recycled (renamed to become the next sequential future segments). If, due to a short-term peak of log output rate, there are more than <varname>CHECKPOINT_SEGMENTS</varname>) + 1 segment files, |