Re: pg_clogs hanging around

From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To:
Cc: "Scott Whitney" <swhitney(at)journyx(dot)com>, <pgsql-admin(at)postgresql(dot)org>, "Kenneth Marshall" <ktm(at)rice(dot)edu>
Subject: Re: pg_clogs hanging around
Date: 2011-03-10 15:56:50
Message-ID: 4D78A063020000250003B756@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Scott Whitney <scott(at)journyx(dot)com> wrote:

> vacuumdb -f -v -z -F template0

VACUUM FULL (the -f option) is almost always a bad idea, for many
reasons. I wouldn't be surprised if it somehow messed you up.

I would schedule a database REINDEX on any databases where you used
the -f option, and then re-evaluate, if you feel compelled to push
this issue. I still doubt that this effort will buy you anything in
recoverability. Between the hint bits and the frozen xmin in all
the tuples, the clog won't be consulted anyway.

If the pursuit of this is causing you to do direct updates of system
tables and to resort to VACUUM FULL, you're putting your data at
risk for no apparent benefit.

-Kevin

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Bruce Momjian 2011-03-10 16:40:12 Re: Fwd: Re: PG_update to 9.0.4 in ubuntu lucid 64
Previous Message Scott Whitney 2011-03-10 15:47:24 Re: pg_clogs hanging around