Re: Finding if old transactions are running...

Поиск
Список
Период
Сортировка
От jtv@xs4all.nl
Тема Re: Finding if old transactions are running...
Дата
Msg-id 25376.202.47.227.16.1109312543.squirrel@202.47.227.16
обсуждение исходный текст
Ответ на Re: Finding if old transactions are running...  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: Finding if old transactions are running...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: 8.0.X and the ARC patent
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Finding if old transactions are running...