store-db: disable autovacuum by default

The bigger table, messages, is a partitioned one where only INSERTS
happens. Furthermore, there are no dead tuples there because we
directly drop old partitions

We may need to manually perform vacuum on other tables
This commit is contained in:
Ivan Folgueira Bande 2024-08-14 19:33:09 +02:00 committed by Alexis Pentori
parent fb62c2e7cf
commit 87d2fc1605
No known key found for this signature in database
GPG Key ID: 65250D2801E47A10
1 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,8 @@ postgres_system_setting_stage:
max_parallel_workers_per_gather: '2'
max_parallel_workers: '4'
max_parallel_maintenance_workers: '2'
## Autovacuum
autovacuum: 'off'
# Consul
postgres_ha_consul_check_interval: '60s'