Re: fighting ' in transaction' - Mailing list pgsql-admin

From Scott Marlowe
Subject Re: fighting ' in transaction'
Date
Msg-id dcc563d10911050953l243a4f6dwd0cab5f046bd8ab0@mail.gmail.com
Whole thread Raw
In response to Re: fighting ' in transaction'  (Vladimir Rusinov <vladimir@greenmice.info>)
Responses Re: fighting ' in transaction'  (Alvaro Herrera <alvherre@commandprompt.com>)
List pgsql-admin
On Thu, Nov 5, 2009 at 7:16 AM, Vladimir Rusinov
<vladimir@greenmice.info> wrote:
>
>
> On Tue, Nov 3, 2009 at 5:54 PM, Lewis Kapell <lkapell@setonhome.org> wrote:
>>
>> Please see these earlier threads:
>>
>> Is IDLE session really idle?
>> http://archives.postgresql.org/pgsql-admin/2009-06/msg00096.php
>>
>> Idle connections
>> http://archives.postgresql.org/pgsql-admin/2009-10/msg00017.php
>
> Thanks - that was useful reading, but not related to my issue. There are not
> a lot of IDLE sessions: connection pools are configured accurate. There are
> problems with 'IDLE in transaction' sessions, which I believe may cause
> strong lock problems.

The real issue with idle in transaction isn't locking so much.  A
simple idle in transaction that just ran a select * from table limit
1; will have made it so that vacuum cannot reclaim space that it
normally could until that transaction is committed or rolled back.  So
it's much worse than simple locking of a few records, it's causing
your data store to bloat with all the otherwise reclaimable space
since that transaction began.  Let it run for a day or a week and a
busy database will be expanding until it's slow and possibly running
out of space.

pgsql-admin by date:

Previous
From: "Kevin Grittner"
Date:
Subject: Re: pg_stat_activity howto
Next
From: Alvaro Herrera
Date:
Subject: Re: fighting ' in transaction'