Re: How to track down locks held by recovery process on a slave?

From: reiner peterke <zedaardv(at)drizzle(dot)com>
To: Amador Alvarez <apradopg(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: How to track down locks held by recovery process on a slave?
Date: 2013-10-05 07:08:37
Message-ID: FBEFAD41-BFC2-463F-8836-074DB85E1E6A@drizzle.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

First thought is make sure you are looking in the right database.

pg_locks shows data over the entire server, not just the connected database.
pg_class exists for each database so if you are connected to 'my_database' but the object is in 'your_database', it won't show up in pg_class on 'my_database'.

check the database value in pg_locks to verify where you should be looking for the object.

reiner

On 5 okt 2013, at 00:48, Amador Alvarez <apradopg(at)gmail(dot)com> wrote:

> Hi there,
>
> I am using a postgres 9.2 slave for some reports and I noticed that sometimes they are held up because certain activity on the master like vacuums can affect long queries on a slave .
>
> Looking at pg_locks view , I can see that the recovering process on the slave is holding some AccessExclusiveLock locks on relations which numbers that do not mach any pg_class.oid.
>
> Any idea How could I find out which relations are locked by the recovering process?
>
>
> Thanks in advance,
> A.A.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Rajagopalan, Jayashree 2013-10-07 02:38:09 pg_stat_activity - proc id
Previous Message Amador Alvarez 2013-10-04 22:48:37 How to track down locks held by recovery process on a slave?