You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i have some trouble recently.
In our project, i set the ngx_postgresql below: upstream database { postgres_server 127.0.0.1 dbname=oms user=postgres password=password; postgres_keepalive max=10 mode=single overflow=ignore; }
but, when the number of connections is greater than the max value 10, the overflow connections are still alive all time, they may not disconnect automatically, why?
The text was updated successfully, but these errors were encountered:
@fengzhimengna It cannot be the case. This module uses the standard nginx upstream keep alive module. If that module has such bugs, the standard http proxy, http fastcgi, and etc will all fail to handle keep alive connections properly.
Hi, i have some trouble recently.
In our project, i set the ngx_postgresql below:
upstream database { postgres_server 127.0.0.1 dbname=oms user=postgres password=password; postgres_keepalive max=10 mode=single overflow=ignore; }
but, when the number of connections is greater than the max value 10, the overflow connections are still alive all time, they may not disconnect automatically, why?
The text was updated successfully, but these errors were encountered: