Re: IDLE queries taking up space - Mailing list pgsql-general

From Craig Ringer
Subject Re: IDLE queries taking up space
Date
Msg-id 4E5D8B66.7060608@ringerc.id.au
Whole thread Raw
In response to IDLE queries taking up space  (JD Wong <jdmswong@gmail.com>)
List pgsql-general
On 31/08/2011 12:03 AM, JD Wong wrote:
> Hi,
>
> When I run select datname, procpid, current_query from
> pg_stat_activity; I get 26 rows of <IDLE> queries.  How can I set
> postgres to qutomatically close connections that have finished their
> queries and now sit idle?

If they're not idle in transaction, they don't matter much.

Try filtering the list based on last activity, so you only see those
connections that have been idle for a while. Short periods of idle are
normal for many applications because they perform a query then process
its results and issue other queries based on the results, or because
they keep a connection around between requests from users.

If the idle connections are actually causing an issue - for example, if
they're preventing the release of non-trivial amounts of backend private
memory back to the OS - you can tweak the client to disconnect after a
certain idle time, or you can use a connection pool. Connection pools
may be inside the client (for example, in Java EE application servers)
or between the client and the server using tools like pgbouncer and
PgPool-II.

--
Craig Ringer

pgsql-general by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: regression between 8.4.8 and 8.4.2?
Next
From: Craig Ringer
Date:
Subject: Parameterized prepared statements