diff options
| author | David Rowley | 2021-07-04 10:31:06 +0000 |
|---|---|---|
| committer | David Rowley | 2021-07-04 10:31:06 +0000 |
| commit | da08ac5c46ee777d5dfc50469096ca03e53e22de (patch) | |
| tree | 3242903b9ace6a917456c14f7993bb9f78673ce1 | |
| parent | 27f6970dcd6ca0bc9a8c688a5e3ba63358175d92 (diff) | |
Doc: mention that VACUUM can't utilize over 1GB of RAM
Document that setting maintenance_work_mem to values over 1GB has no
effect on VACUUM.
Reported-by: Martín Marqués
Author: Laurenz Albe
Discussion: https://postgr.es/m/CABeG9LsZ2ozUMcqtqWu_-GiFKB17ih3p8wBHXcpfnHqhCnsc7A%40mail.gmail.com
Backpatch-through: 9.6, oldest supported release
| -rw-r--r-- | doc/src/sgml/config.sgml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 387db97a093..7ead0b68b4a 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1617,6 +1617,12 @@ include_dir 'conf.d' too high. It may be useful to control for this by separately setting <xref linkend="guc-autovacuum-work-mem"/>. </para> + <para> + Additionally, <command>VACUUM</command> is only able to utilize up to + a maximum of <literal>1GB</literal> of memory, so + <varname>maintenance_work_mem</varname> values higher than this have + no effect on <command>VACUUM</command>. + </para> </listitem> </varlistentry> |
