From: Neil Conway Date: Tue, 15 May 2007 15:35:58 +0000 (+0000) Subject: Add a note to the documentation to clarify that even when X-Git-Tag: REL8_2_5~93 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=10d1f31253010a3ca339b01f4edbcf567ce3d53d;p=users%2Fhanada%2Fpostgres.git Add a note to the documentation to clarify that even when "autovacuum = off", the system may still periodically start autovacuum processes to prevent XID wraparound. Patch from David Fetter, with editorializing. --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index d40b609e39..f6d446553c 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ - + Server Configuration @@ -3148,6 +3148,12 @@ SELECT * FROM parent WHERE key = 2400; This parameter can only be set in the postgresql.conf file or on the server command line. + + Note that even when this parameter is disabled, the system + will periodically launch autovacuum processes in order to + prevent transaction ID wraparound. See for more information. +