Re: autovacuum ignore tables

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Sriram Dandapani" <sdandapani(at)counterpane(dot)com>
Cc: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>, pgsql-admin(at)postgresql(dot)org
Subject: Re: autovacuum ignore tables
Date: 2006-09-29 14:45:07
Message-ID: 15996.1159541107@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

"Sriram Dandapani" <sdandapani(at)counterpane(dot)com> writes:
> The only issue I have with autovacuum is the fact that I have to briefly
> stop/restart postgres every couple of days, which kills autovacuum and
> it has no memory of previous work done.

As already stated, this isn't true as of 8.1.

> I work with several databases
> with partitioned tables having high daily volume. Dropping partitioned
> tables locks out jdbc inserts and the drop command itself goes into a
> WAIT state. Hence, I have to stop postgres,update pg_hba.conf to prevent
> access,restart postgres,drop tables and update pg_hba to allow
> access(Crazy, but I have no choice because Postgres deadlocks on drop
> child tables while inserts happen on the parent)

It sounds to me like you have a problem with failing to commit
transactions promptly. The DROP will wait for existing transactions to
release their locks on the doomed table, but its lock request will block
any incoming transactions that try to acquire new locks on the table.
So basically you should see a hiccup of length equal to the longest
normal transaction using that table. In a well-designed concurrent
system that should not be a problem.

It might be worth doing the DROP as

begin;
lock table parent_table;
drop table child_table;
commit;

so that SELECTs on the parent do simply block and don't risk getting
errors from trying to access a just-dropped child table.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Paul B. Anderson 2006-09-29 15:00:13 Re: Stored procedure array limits
Previous Message Andrew Sullivan 2006-09-29 13:44:29 Re: ?^???G Re: How can I restore from WAL log? [PG 7.3]