Skip to content

Commit d41a056

Browse files
authored
Merge pull request #106983 from trewallier/patch-1
Update concepts-pgbouncer.md
2 parents db96756 + c15bdde commit d41a056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/postgresql/flexible-server/concepts-pgbouncer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can configure PgBouncer, settings with these parameters:
3434
| pgBouncer.max_client_conn | Set this parameter value to the highest number of client connections to PgBouncer that you want to support . | 5000 |
3535
| pgBouncer.pool_mode | Set this parameter value to TRANSACTION for transaction pooling (which is the recommended setting for most workloads). | TRANSACTION |
3636
| pgBouncer.min_pool_size | Add more server connections to pool if below this number. | 0 (Disabled) |
37-
| pgbouncer.ignore_startup_parameters | Comma-separated list of parameters that PgBouncer can ignore. For example, you can let PgBouncer ignore `extra_float_digits` parameter.| |
37+
| pgbouncer.ignore_startup_parameters | Comma-separated list of parameters that PgBouncer can ignore. For example, you can let PgBouncer ignore `extra_float_digits` parameter. Some parameters are allowed, all others raise error. This is needed to tolerate overenthusiastic JDBC wanting to unconditionally set 'extra_float_digits=2' in startup packet. Use this if the library you use report errors such as `pq: unsupported startup parameter: extra_float_digits`. | |
3838
| pgbouncer.query_wait_timeout | Maximum time (in seconds) queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. | 120s |
3939
| pgBouncer.stats_users | Optional. Set this parameter value to the name of an existing user, to be able to log in to the special PgBouncer statistics database (named “PgBouncer”). | |
4040

0 commit comments

Comments
 (0)