From 3e579cf3c09d98e7d78d8621520592a6c201b582 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Fri, 16 Sep 2005 03:12:32 +0000 Subject: [PATCH] Add note about pg_autovacuum settings not being saved on a dump, per Robert Treat. --- doc/src/sgml/maintenance.sgml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/maintenance.sgml b/doc/src/sgml/maintenance.sgml index d4b3f51d55..4f7c4d7824 100644 --- a/doc/src/sgml/maintenance.sgml +++ b/doc/src/sgml/maintenance.sgml @@ -1,5 +1,5 @@ @@ -542,10 +542,20 @@ vacuum threshold = vacuum base threshold + vacuum scale factor * number of tuple values, the vacuum_cost_limit and vacuum_cost_delay values will be used instead. The other parameter, pg_autovacuum.enabled, - can be used to instruct the autovacuum daemon to skip any particular table - by setting it to false. + can be used to instruct the autovacuum daemon to skip any particular table + by setting it to false. + + + The contents of the pg_autovacuum system + catalog are currently not saved in database dumps created by + the tools pg_dump and pg_dumpall. + If you need to preserve them across a dump/reload cycle, make sure you + dump the catalog manually. + + +