Re: Vacuum to prevent wraparound data loss - Mailing list pgsql-admin

From Tom Lane
Subject Re: Vacuum to prevent wraparound data loss
Date
Msg-id 20453.1331270374@sss.pgh.pa.us
Whole thread Raw
In response to Vacuum to prevent wraparound data loss  (Natalie Wenz <nataliewenz@ebureau.com>)
List pgsql-admin
Natalie Wenz <nataliewenz@ebureau.com> writes:
> [ waiting for autovacuum to deal with an impending XID wraparound ]

> My first question is: Is it even possible for this vacuum to finish? It began before the database stopped accepting
connections,but now that it's in this state, will the database allow the vacuum to complete? Can the vacuum
successfullyfreeze old xids and advance the datfrozenxid?  I suspect no, based on 

Yes. yes, and yes.  But ... the problem with letting autovacuum do this
is that it's intentionally rate-limited so that it doesn't interfere
with foreground query processing.  Since you are waiting around for it
to finish before you can use the DB at all, this is a bad thing.

I think it might be possible to disable the autovacuum cost limit
settings in postgresql.conf and SIGHUP the postmaster to make that
update take effect ... but I'm not at all sure that the autovac worker
would notice the changes until it finished the table it's working on.
Try it, but if you don't see either CPU or I/O usage maxed out within a
minute or so, the best bet is likely to kill the autovac worker (with
SIGINT) and let a new one start.  Doing that will lose some fraction of
the work done so far, so don't do it unnecessarily --- but if the
machine is just sitting there 90% idle, you need to do something.

            regards, tom lane

pgsql-admin by date:

Previous
From: Natalie Wenz
Date:
Subject: Vacuum to prevent wraparound data loss
Next
From: "umashankar narayanan"
Date:
Subject: Re: Postgres server crashing unexpectedly.