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
In my psql's pg_stat_activity table connection details are (select * from pg_stat_activity;):
ckandb connections : total 80 connections where active - 51, idle - 20, idle_in_transaction - 09.
ckan_datastore con : total 24 connections where active - 04, idle - 19, idle_in_transaction - 01.
We can see many connections are in Idle state.
Does these Idle connections are reusable (waiting to serve new request) or these connections are about to release(waiting for release)?
Does postgreSQL takes some time to release the idle connections?(I mean, If there are some idle connections present then, does postgreSQL waits for some time before releasing those idle connection? )
The text was updated successfully, but these errors were encountered:
I'm using CKAN 2.7.2 (docker) application.
In my psql's pg_stat_activity table connection details are (
select * from pg_stat_activity;
):We can see many connections are in
Idle
state.Does these
Idle
connections are reusable (waiting to serve new request) or these connections are about to release(waiting for release)?Does postgreSQL takes some time to release the idle connections?(I mean, If there are some idle connections present then, does postgreSQL waits for some time before releasing those idle connection? )
The text was updated successfully, but these errors were encountered: