From cc44ada1bcfe180cb95cfc888d78c6c86e66268d Mon Sep 17 00:00:00 2001 From: Yaroslav Chirkov Date: Mon, 27 Jan 2025 14:56:30 +0300 Subject: [PATCH] add pool_client_idle_timeout and pool_idle_in_transaction_timeout to configuration.md --- documentation/configuration.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/documentation/configuration.md b/documentation/configuration.md index 77b49150..46762824 100644 --- a/documentation/configuration.md +++ b/documentation/configuration.md @@ -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.