postgres-operator-examples
postgres-operator-examples copied to clipboard
PGBouncer config
Can we atm customize the pgbouncer settings like max_conn etc ? the config file is managed by the operator and I see nothing helpful in the CRDs.
Hi @rgherta I believe you can customize pgbouncer by editing the postgrescluster definition and adding something like the following:
spec:
proxy:
pgBouncer:
config:
global:
pool_mode: transaction
max_client_connection: 200
Hello, just to double-check, I tried out the suggestion, which does work. (Though max_client_connection => max_client_conn I think.)
Please reopen if this is still an issue.