Skip to content

Commit 8fbad3f

Browse files
authored
Merge pull request #4672 from nachoalonsoportillo/patch-x04l6dktu3fm-pgbouncer
Automatically update pgBouncer
2 parents 0af3736 + 217791e commit 8fbad3f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/postgresql/connectivity/includes/pgbouncer-parameters-table.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
author: varun-dhawan
33
ms.author: varundhawan
44
ms.reviewer: maghan
5-
ms.date: 02/03/2026
5+
ms.date: 04/01/2026
66
ms.service: azure-database-postgresql
77
ms.topic: include
8+
ms.custom: automatically generated
89
---
9-
1010
| Parameter name | Description | Default |
1111
| --- | --- | --- |
12-
| `pgbouncer.default_pool_size` | Set this parameter value to the number of connections per user and database pair. | 50 |
12+
| `pgbouncer.default_pool_size` | Set this parameter value to the number of connections per user/database pair. | 50 |
1313
| `pgbouncer.ignore_startup_parameters` | Enter a comma-separated list of parameters that PgBouncer can ignore. For example, you can let PgBouncer ignore the `extra_float_digits` parameter. Some parameters are allowed; all others raise an error. This ability is needed to tolerate overenthusiastic Java Database Connectivity (JDBC) wanting to unconditionally set `extra_float_digits=2` in startup packets. Use this option if the library that you use reports errors such as `pq: unsupported startup parameter: extra_float_digits`. | |
14-
| `pgbouncer.max_client_conn` | Set this parameter value to the maximum number of client connections to PgBouncer that you want to support. The default is 5,000, with an allowable range from 1 to 50,000. | 5000 |
15-
| `pgbouncer.max_prepared_statements` | When this value is nonzero, PgBouncer tracks protocol-level named prepared statements related commands that the client sends in transaction and statement pooling mode. | 0 |
16-
| `pgbouncer.min_pool_size` | Add more server connections to the pool if the number of connections falls below this value. | 0 |
14+
| `pgbouncer.max_client_conn` | Set this parameter value to the highest number of client connections to PgBouncer that you want to support. | 5000 |
15+
| `pgbouncer.max_prepared_statements` | When this is set to a non-zero value, PgBouncer tracks protocol-level named prepared statements related commands sent by the client in transaction and statement pooling mode. | 0 |
16+
| `pgbouncer.min_pool_size` | Add more server connections to pool if below this number. | 0 |
1717
| `pgbouncer.pool_mode` | Set this parameter value to TRANSACTION for transaction pooling (which is the recommended setting for most workloads). | transaction |
18-
| `pgbouncer.query_wait_timeout` | Maximum time in seconds that queries are allowed to spend waiting for execution. If the query isn't assigned to a server during that time, the client is disconnected. | 120 |
19-
| `pgbouncer.server_idle_timeout` | If a server connection is idle for more than this many seconds, PgBouncer drops the connection. If 0, the timeout is disabled. | 600 |
18+
| `pgbouncer.query_wait_timeout` | Maximum time (in seconds) queries are allowed to spend waiting for execution. If the query isn't assigned to a server during that time, the client is disconnected. | 120 |
19+
| `pgbouncer.server_idle_timeout` | If a server connection has been idle more than this many seconds it will be dropped. If 0 then timeout is disabled. | 600 |
2020
| `pgbouncer.stats_users` | Comma-separated list of database users that are allowed to connect and run read-only queries on the pgBouncer console. | |

0 commit comments

Comments
 (0)