Re: Clearing locks

Поиск
Список
Период
Сортировка
От Neil Conway
Тема Re: Clearing locks
Дата
Msg-id 423FAACA.8000601@samurai.com
обсуждение исходный текст
Ответ на Clearing locks  (Edwin New <edwin_new@toll.com.au>)
Ответы Re: Clearing locks  (Andrew Sullivan <ajs@crankycanuck.ca>)
Список pgsql-general
Edwin New wrote:
> I have encountered a situation where a java process is dying but leaving
> locks active.

If the connection to PostgreSQL is severed (e.g. the client actually
disconnects), the current transaction will be rolled back and any held
locks will be released.

So it seems that the problem is that when the client dies, it is not
actually disconnecting from PostgreSQL, and is in the midst of a
transaction that has acquired some locks. Perhaps this is due to buggy
connection pooling software that does not rollback a connection's
transaction before putting it back into the connection pool? Without
more information it's tough to be sure.

FYI, you can examine the status of the lock manager via the pg_locks
system view:

http://www.postgresql.org/docs/8.0/static/monitoring-locks.html

> How can I, as DBA, clear a lock / roll back an incomplete transaction
> without access to the connection that created the lock?

Well, you can always kill the backend process -- that will abort its
transaction and release any locks it holds.

-Neil

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

Предыдущее
От: Edwin New
Дата:
Сообщение: Clearing locks
Следующее
От: "Sim Zacks"
Дата:
Сообщение: multi line text data/query ?bug?