Re: When to vacuum a table? - Mailing list pgsql-performance

From Kevin Grittner
Subject Re: When to vacuum a table?
Date
Msg-id 456AE144.EE98.0025.0@wicourts.gov
Whole thread Raw
In response to When to vacuum a table?  (Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl>)
List pgsql-performance
>>> On Sun, Nov 26, 2006 at  5:24 AM, in message
<1164540257.7902.0.camel@panoramix>, Joost Kraaijeveld
<J.Kraaijeveld@Askesis.nl> wrote:
>
> Are there guidelines (or any empirical data) available how to
determine
> how often a table should be vacuumed for optimum performance or is
this
> an experience / trial- and- error thing?

For most of our databases we use a daily "VACUUM ANALYZE VERBOSE;".  We
grep the results to show large numbers of removable  or dead rows and to
show the fsm numbers at the end.  There are a few small tables with high
update rates which this doesn't cover.  To handle that we set the
autovacuum to 0.2/0.1 and 1/1 on a ten second interval and do a daily
CLUSTER of these tables.  We really don't have many tables which can hit
these autovacuum thresholds in one day.

We have databases which are 400 GB with the vast majority of that being
in tables which are insert-only except for a weekly purge of data over a
year old.  We do nightly vacuums on the few tables with update/delete
activity, and a weekly vacuum of the whole database -- right after the
delete of old rows from the big tables.

-Kevin



pgsql-performance by date:

Previous
From: Florian Weimer
Date:
Subject: Re: Postgres server crash
Next
From: Bruno Wolff III
Date:
Subject: Re: BUG #2784: Performance serious degrades over a period of a month