From: | Bob Lunney <bob_lunney(at)yahoo(dot)com> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org, Kamcheung Sham <csham(at)computer(dot)org> |
Subject: | Re: Runaway Locks |
Date: | 2010-05-04 16:09:22 |
Message-ID: | 612199.37100.qm@web39702.mail.mud.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
If you're using Tomcat or some other Java container that does connection management restart it and the lock should go away.
Bob Lunney
--- On Fri, 4/30/10, Kamcheung Sham <csham(at)computer(dot)org> wrote:
> From: Kamcheung Sham <csham(at)computer(dot)org>
> Subject: [ADMIN] Runaway Locks
> To: pgsql-admin(at)postgresql(dot)org
> Date: Friday, April 30, 2010, 9:03 AM
>
> I was connecting to Postgres 8.3 through JDBC. During my
> unit tests, something when wrong and now leaving with the
> following locks in the db:
>
> arc_dev=# select locktype, mode, relname,
> virtualtransaction, pid from pg_locks l join pg_class c on
> l.relation = c.oid;
>
>
> locktype | mode
> |
> relname |
> virtualtransaction | pid
> ----------+------------------+----------------------------+--------------------+------
>
> relation | AccessShareLock | pg_locks
>
> | 1/38
> | 1816
> relation | RowShareLock |
> hibernate_sequences |
> -1/2091555 |
>
> relation | RowExclusiveLock | hibernate_sequences
> | -1/2091555
> |
> relation | AccessShareLock | pg_class_oid_index
> | 1/38
> | 1816
> relation | AccessShareLock |
> pg_class_relname_nsp_index | 1/38
> | 1816
> relation | AccessShareLock | pg_class
>
> | 1/38
> | 1816
> (6 rows)arc_dev=#
>
> The locks on 'hibernate_sequences' is causing any update to
> the locked row to hang. There is currently no running
> database client process anymore (as I've restarted by server
> a few times).
>
> My question is how do i kill the virtual transaction and
> have the locks released?
>
> Thanks,
> kam
> --
> Sent via pgsql-admin mailing list (pgsql-admin(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-admin
>
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Sabaini | 2010-05-04 19:41:21 | Re: Statistics collector port / unix dom. socket? |
Previous Message | Tom Lane | 2010-05-04 15:39:40 | Re: Statistics collector port / unix dom. socket? |