@Polina
the KB article says:
The PostgreSQL option max_connections should be configured based on the following formula:
max_connections = (max_user_connections + pool_size) * 1.10
In the .ini file followed by the instructions it says:
;;; Connection limits
;;;
; total number of clients that can connect
max_client_conn = 10000
max_user_connections = 800
default_pool_size = 20
I assume "max_connections" from the instructions refer to "max_client_conn" in the ini file (as there is no max_connections in the ini file).
If I now use the formula: (800+20)*1.1=902
Why is the number of max_client_conn = 10000 and not 902?
default_pool_size = 20 means number of proxy in my proxy pool?
So, what exactly do I need to adjust here?
the KB article says:
The PostgreSQL option max_connections should be configured based on the following formula:
max_connections = (max_user_connections + pool_size) * 1.10
In the .ini file followed by the instructions it says:
;;; Connection limits
;;;
; total number of clients that can connect
max_client_conn = 10000
max_user_connections = 800
default_pool_size = 20
I assume "max_connections" from the instructions refer to "max_client_conn" in the ini file (as there is no max_connections in the ini file).
If I now use the formula: (800+20)*1.1=902
Why is the number of max_client_conn = 10000 and not 902?
default_pool_size = 20 means number of proxy in my proxy pool?
So, what exactly do I need to adjust here?
Statistics: Posted by Bjoern_ch — Jul 28, 2025 1:54 pm







