From 4412bd1e285b433339947eafc5bdcb867723609b Mon Sep 17 00:00:00 2001 From: klention Date: Wed, 18 Dec 2024 13:48:42 +0100 Subject: [PATCH] Reverted max_worker_processes and max_parallel_workers to their original values --- automation/vars/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/vars/main.yml b/automation/vars/main.yml index 4eb600936..22e6f5b41 100644 --- a/automation/vars/main.yml +++ b/automation/vars/main.yml @@ -315,8 +315,8 @@ postgresql_parameters: - { option: "wal_receiver_status_interval", value: "10s" } - { option: "idle_in_transaction_session_timeout", value: "10min" } # reduce this timeout if possible - { option: "jit", value: "off" } - - { option: "max_worker_processes", value: "{{ [ansible_processor_vcpus | int, 16] | max }}" } - - { option: "max_parallel_workers", value: "{{ [(ansible_processor_vcpus | int // 2), 8] | max }}" } + - { option: "max_worker_processes", value: "24" } + - { option: "max_parallel_workers", value: "8" } - { option: "max_parallel_workers_per_gather", value: "2" } - { option: "max_parallel_maintenance_workers", value: "2" } - { option: "tcp_keepalives_count", value: "10" }