frontend: double the connection limit on PostgreSQL server
This needs better debugging, but our connection pooling is probably pretty complicated (each WSGI daemon process can have 15 connections to DB, 5+10 overflow). And we have _many_ processes nowadays, while the default connection limit is 100 in PostgreSQL.
This commit is contained in:
parent
618f0501d5
commit
9aa7120fee
1 changed files with 9 additions and 0 deletions
|
@ -109,6 +109,15 @@
|
||||||
tags:
|
tags:
|
||||||
- config
|
- config
|
||||||
|
|
||||||
|
- name: set max_connections for PostgreSQL
|
||||||
|
lineinfile:
|
||||||
|
path: /var/lib/pgsql/data/postgresql.conf
|
||||||
|
regexp: '^max_connections ='
|
||||||
|
line: 'max_connections = 200'
|
||||||
|
notify: restart postgresql
|
||||||
|
tags:
|
||||||
|
- config
|
||||||
|
|
||||||
- name: install psqlrc file
|
- name: install psqlrc file
|
||||||
copy:
|
copy:
|
||||||
content: |
|
content: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue