Re: Autovacuum ideas

From: Robin Iddon <robin(at)edesix(dot)com>
To: "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Autovacuum ideas
Date: 2006-04-13 07:36:43
Message-ID: 443DFF8B.1010103@edesix.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Brendan Duddridge wrote:
> What I'd like to see is a table exclusion list. I have a few very
> large history tables that are never updated or deleted, only inserts
> and selects.

Such a table will never trigger the vacuum rules as I understand them
(vacuum only happens on table that have obsolete tuples, which means
update or delete).

It will correctly trigger the analyze rules now and then, but analyze is
cheap compared to vacuum and is desirable because it will help the
planner do it's job (assuming that querying the table is important to
you). Remember analyze only requires a read-lock on the table so it can
run in parallel with other queries quite happily.

If you really need to disable autovac on a table you can disable
pg_autovacuum from running on a specific table by creating a row for
your table in pg_autovacuum table and setting the pg_autovacuum.enabled
to false.

Robin

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message sandhya 2006-04-13 07:51:32 Re: pls help me(How to start Postgres)
Previous Message Guido Neitzer 2006-04-13 06:55:55 Re: Autovacuum ideas