Обсуждение: Stuck "idle in transaction (aborted)"

Поиск
Список
Период
Сортировка

Stuck "idle in transaction (aborted)"

От
Nimesh Satam
Дата:
Hi,

We have a stale connection on one of our machine. The connection is shown as follows:

26286 ?        Ss     1:31 postgres: postgres reporting localhost (37118) idle in transaction (aborted)


Can anybody let me know how we can get rid of such connection, is there are any command which will kill such a aborted transaction in a safe manner?

Regards,
Nimesh.

Re: Stuck "idle in transaction (aborted)"

От
Craig Ringer
Дата:
On 01/14/2011 12:01 PM, Nimesh Satam wrote:
> Hi,
>
> We have a stale connection on one of our machine. The connection is
> shown as follows:
>
> 26286 ?        Ss     1:31 postgres: postgres reporting localhost
> (37118) idle in transaction (aborted)
>
>
> Can anybody let me know how we can get rid of such connection, is there
> are any command which will kill such a aborted transaction in a safe manner?

psql> select pg_terminate_backend(26286);

or

shell$> kill 26286


Do ***NOT*** use "kill -9" or "kill -KILL".

--
Craig Ringer