doc: Improve description of index vacuuming with GUCs
authorMichael Paquier <[email protected]>
Sat, 25 Sep 2021 06:12:15 +0000 (15:12 +0900)
committerMichael Paquier <[email protected]>
Sat, 25 Sep 2021 06:12:15 +0000 (15:12 +0900)
Index vacuums may happen multiple times depending on the number of dead
tuples stored, as of maintenance_work_mem for a manual VACUUM.  For
autovacuum, this is controlled by autovacuum_work_mem instead, if set.
The documentation mentioned the former, but not the latter in the
context of autovacuum.

Reported-by: Nikolai Berkoff
Author: Laurenz Albe, Euler Taveira
Discussion: https://postgr.es/m/161545365522.10134.12195402324485546870@wrigleys.postgresql.org
Backpatch-through: 9.6

doc/src/sgml/monitoring.sgml

index 4744f2206478a5c360940b536b2f60e278e0b616..ae9712e618f1974c87ed01a2325f32427198bd5c 100644 (file)
@@ -2684,8 +2684,9 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
        <command>VACUUM</> is currently vacuuming the indexes.  If a table has
        any indexes, this will happen at least once per vacuum, after the heap
        has been completely scanned.  It may happen multiple times per vacuum
-       if <xref linkend="guc-maintenance-work-mem"> is insufficient to
-       store the number of dead tuples found.
+       if <xref linkend="guc-maintenance-work-mem"> (or, in the case of autovacuum,
+       <xref linkend="guc-autovacuum-work-mem"> if set) is insufficient to store
+       the number of dead tuples found.
      </entry>
     </row>
     <row>