diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2013-12-12 11:42:39 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2013-12-12 11:42:39 +0000 |
commit | 8693559cacf1765697c32fc38574af3c19ce61c1 (patch) | |
tree | 98f76e989b7539a0080d974f448f453ed3ec1b4d /src/backend/utils/misc/postgresql.conf.sample | |
parent | 36da3cfb457b77a55582f68208d815f11ac1399e (diff) | |
download | postgresql-8693559cacf1765697c32fc38574af3c19ce61c1.tar.gz postgresql-8693559cacf1765697c32fc38574af3c19ce61c1.zip |
New autovacuum_work_mem parameter
If autovacuum_work_mem is set, autovacuum workers now use
this parameter in preference to maintenance_work_mem.
Peter Geoghegan
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 6096fe44457..f8bdce34d33 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -124,6 +124,7 @@ # actively intend to use prepared transactions. #work_mem = 1MB # min 64kB #maintenance_work_mem = 16MB # min 1MB +#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem #max_stack_depth = 2MB # min 100kB #dynamic_shared_memory_type = posix # the default is the first option # supported by the operating system: |