Skip to content

Commit bb55126

Browse files
authored
Update concepts-pgbouncer.md
Add more explanation to `ignore_startup_parameters` from the doumentation of pgbouncer regarding the suggested value.
1 parent eb63c34 commit bb55126

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. New config var 'ignore_startup_parameters' to allow and ignore extra parameters in startup packet. By default only 'database' and 'user' are allowed, all others raise error. This is needed to tolerate overenthusiastic JDBC wanting to unconditionally set 'extra_float_digits=2' in startup packet. | |
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)