Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pool_client_idle_timeout and pool_idle_in_transaction_timeout to configuration.md #754

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions documentation/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,26 @@ Forward PostgreSQL errors during remote server connection.

`client_fwd_error no`

#### pool\_client\_idle\_timeout *integer*

Client pool idle timeout.

Drop stale client connection after this much seconds of idleness, which is not in transaction.

Set to zero to disable.

`pool_client_idle_timeout 0`

#### pool\_idle\_in\_transaction\_timeout *integer*

Client pool idle in transaction timeout.

Drop client connection in transaction after this much seconds of idleness.

Set to zero to disable.

`pool_idle_in_transaction_timeout 0`

#### log\_debug *yes|no*

Enable verbose mode for a specific route only.
Expand Down
Loading