Skip to content

Commit

Permalink
Auto se the number of max_worker_processes and max_parallel_workers b…
Browse files Browse the repository at this point in the history
…ased on system resources (#853)
  • Loading branch information
klention authored Dec 19, 2024
1 parent ee6454b commit 991608f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions automation/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "24" }
- { option: "max_parallel_workers", value: "8" }
- { 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_parallel_workers_per_gather", value: "2" }
- { option: "max_parallel_maintenance_workers", value: "2" }
- { option: "tcp_keepalives_count", value: "10" }
Expand Down

0 comments on commit 991608f

Please sign in to comment.