Re: Very long " in transaction" query

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: Very long " in transaction" query
Дата
Msg-id D960CB61B694CF459DCFB4B0128514C207D4FFA7@exadv11.host.magwien.gv.at
обсуждение исходный текст
Ответ на Very long " in transaction" query  ("Gnanakumar" <gnanam@zoniac.com>)
Ответы Re: Very long " in transaction" query  ("Gnanakumar" <gnanam@zoniac.com>)
Список pgsql-admin
Gnanakumar wrote:
> Recently, in our Production server, we found a "single query" being
held up
> in "<IDLE> in transaction" for more than 19 hours using the following
query:
> select date_trunc('second', current_timestamp - query_start) as
runtime,
> datname as database_name, current_query from pg_stat_activity where
> current_query != '<IDLE>' order by 1 desc
>
> but we're clueless which was the root cause of this issue and still
hunting.
> As we know, query output doesn't show up the actual query/statement.

You won't be able to find the cause in PostgreSQL.

The cause is a database session that started a transaction, did some
work and never closed the transaction.

PostgreSQL can help you find out who the offending client is:

SELECT application_name, client_addr, client_hostname, client_port
FROM pg_stat_activity
WHERE procpid = 14740;

(Replace 14740 of the process ID of the "idle in transaction" backend).

Look on the client machine and find the process that holds TCP port
"client_port" open (on Linux you can use "lsof" for that).

Then you have found the culprit!

Yours,
Laurenz Albe

В списке pgsql-admin по дате отправления:

Предыдущее
От: Jan Lentfer
Дата:
Сообщение: Re: Very long " in transaction" query
Следующее
От: "Plugge, Joe R."
Дата:
Сообщение: DELETE and UPDATE triggers on parent table of partioned table not firing.