]> granicus.if.org Git - postgresql/commitdiff
Update autovacuum_freeze_max_age documentation to mention that the
authorBruce Momjian <bruce@momjian.us>
Tue, 24 Aug 2010 13:32:32 +0000 (13:32 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 24 Aug 2010 13:32:32 +0000 (13:32 +0000)
default is low because of pg_clog file removal.

Backpatch to 9.0.X.

doc/src/sgml/config.sgml

index 0d1361a7f85010f21978769fdb096038d6728ca5..e4783013ca91a31933361088ecccdf4c245e6c76 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.294.2.7 2010/08/23 02:43:35 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.294.2.8 2010/08/24 13:32:32 momjian Exp $ -->
 
 <chapter Id="runtime-config">
   <title>Server Configuration</title>
@@ -4117,12 +4117,16 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
        <para>
         Specifies the maximum age (in transactions) that a table's
         <structname>pg_class</>.<structfield>relfrozenxid</> field can
-        attain before a <command>VACUUM</> operation is forced to allow removal
-        of old files from the <filename>pg_clog</> subdirectory and prevent
-        transaction ID wraparound within the table.  Note that the system
-        will launch autovacuum processes to prevent wraparound even when
-        autovacuum is otherwise disabled.
-        The default is 200 million transactions.
+        attain before a <command>VACUUM</> operation is forced
+        to prevent transaction ID wraparound within the table.
+        Note that the system will launch autovacuum processes to
+        prevent wraparound even when autovacuum is otherwise disabled.
+       </para>
+
+       <para>
+        Vacuum also allows removal of old files from the
+        <filename>pg_clog</> subdirectory, which is why the default
+        is a relatively low 200 million transactions.
         This parameter can only be set at server start, but the setting
         can be reduced for individual tables by
         changing storage parameters.