Re: PostgreSQL 8.2.3 VACUUM Timings/Performance - Mailing list pgsql-performance

From Tom Lane
Subject Re: PostgreSQL 8.2.3 VACUUM Timings/Performance
Date
Msg-id 19106.1173111068@sss.pgh.pa.us
Whole thread Raw
In response to PostgreSQL 8.2.3 VACUUM Timings/Performance  ("Bruce McAlister" <bruce.mcalister@blueface.ie>)
List pgsql-performance
"Bruce McAlister" <bruce.mcalister@blueface.ie> writes:
> [1] AutoVacuum runs during the day over the entire PostgreSQL cluster,

Good, but evidently you need to make it more aggressive.

> [2] A Vacuum Full Verbose is run during our least busy period (generally
> 03:30) against the Database,

> [3] A Re-Index on the table is performed,

> [4] A Cluster on the table is performed against the most used index,

> [5] A Vacuum Analyze Verbose is run against the database.

That is enormous overkill.  Steps 2 and 3 are a 100% waste of time if
you are going to cluster in step 4.  Just do the CLUSTER and then
ANALYZE (or VACUUM ANALYZE if you really must, but the value is marginal).

            regards, tom lane

pgsql-performance by date:

Previous
From: "Steven Flatt"
Date:
Subject: Turning off Autovacuum
Next
From: Heikki Linnakangas
Date:
Subject: Re: PostgreSQL 8.2.3 VACUUM Timings/Performance