Re: Finding if old transactions are running... - Mailing list pgsql-hackers

From jtv@xs4all.nl
Subject Re: Finding if old transactions are running...
Date
Msg-id 25376.202.47.227.16.1109312543.squirrel@202.47.227.16
Whole thread Raw
In response to Re: Finding if old transactions are running...  (Bruce Momjian <pgman@candle.pha.pa.us>)
Responses Re: Finding if old transactions are running...  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Bruce Momjian wrote:

>> > You can get that from pg_stat_activity, if you have the relevant stats
>> > turned on.
>>
>> pg_stat_activity will tell you about the oldest active query, but not
>> about oldest open transaction.
>
> And pg_stat_activity can lose information when the network is under
> heavy load too.

On a side note, a similar issue came up with libpqxx, in the part that
deals with connections being lost while committing a transaction.  The
library tries to reconnect and figure out whether the commit completed or
not, but it was pointed out that the commit might actually still be in
progress by that time.

Tom, I believe you said at the time that I should check pg_stat_activity. 
My current code polls it for the old backend pid.  But if that is neither
100% reliable nor unconditionally available, wouldn't it be better if I
just queried pg_locks for the transaction's ID?  Would that work for all
backend versions I can expect to see?


Jeroen




pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: 8.0.X and the ARC patent
Next
From: Tom Lane
Date:
Subject: Re: Finding if old transactions are running...