set max_locks_per_transaction to 2160
We are using partitions in our postgres DBs. And we have one partition per hour (24 partitions per day.) The default max_locks_per_transaction value (64) can cause "our of memory" and block issues in the DB because we use to have more than 64 partitions. With 2160 we aim to avoid that issue for 90 days (2160 == 90*24.) if we consider a time retention policy of 90 days. Nevertheless, we usually have time retention policy of 30 days in our Status fleets, but we are just adding some extra margin.
This commit is contained in:
parent
46c7a759b9
commit
062cb6d51a
|
@ -27,6 +27,7 @@ postgres_alter_system_settings:
|
|||
checkpoint_timeout: '5min'
|
||||
max_wal_size: '1GB'
|
||||
min_wal_size: '80MB'
|
||||
max_locks_per_transaction: '2160'
|
||||
|
||||
# Open PostgreSQL Port
|
||||
open_ports_default_comment: '{{ postgres_ha_service_name }}'
|
||||
|
|
Loading…
Reference in New Issue