Re: archive logs recovery

From: "Sriram Dandapani" <sdandapani(at)counterpane(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-admin(at)postgresql(dot)org>
Subject: Re: archive logs recovery
Date: 2006-08-31 20:38:48
Message-ID: 6992E470F12A444BB787B5C937B9D4DF05ABC4CD@ca-mail1.cis.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

The issue is that the drop table immediately puts the jdbc insert into a
wait state and goes into a wait state itself.

-----Original Message-----
From: Tom Lane [mailto:tgl(at)sss(dot)pgh(dot)pa(dot)us]
Sent: Thursday, August 31, 2006 1:37 PM
To: Sriram Dandapani
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN] archive logs recovery

"Sriram Dandapani" <sdandapani(at)counterpane(dot)com> writes:
> I have a very high traffic db with lots of table partitions. The only
> reliable way to drop the partitioned tables is to prevent any
> insert/select on the parent table , otherwise, the drop table locks
out
> the inserts, and strangely enough, the drop table command goes into a
> wait state. During shutdown and restart, I switch the pg_hba.conf to
> disallow client access for a brief period when the tables are dropped.

You do know you can change pg_hba.conf without a restart?

As for the drop going into a wait state, you might want to look around
for client code that's sitting idle with an open transaction. The drop
should not block for longer than whatever is your longest transaction
touching that table.

regards, tom lane

Browse pgsql-admin by date

  From Date Subject
Next Message Sriram Dandapani 2006-08-31 20:39:50 Re: archive logs recovery
Previous Message Tom Lane 2006-08-31 20:36:39 Re: archive logs recovery