Re: Very long " in transaction" query - Mailing list pgsql-admin

From Albe Laurenz
Subject Re: Very long " in transaction" query
Date
Msg-id D960CB61B694CF459DCFB4B0128514C207D4FFA7@exadv11.host.magwien.gv.at
Whole thread Raw
In response to Very long " in transaction" query  ("Gnanakumar" <gnanam@zoniac.com>)
Responses Re: Very long " in transaction" query
List 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 by date:

Previous
From: Jan Lentfer
Date:
Subject: Re: Very long " in transaction" query
Next
From: "Plugge, Joe R."
Date:
Subject: DELETE and UPDATE triggers on parent table of partioned table not firing.