Re: Problem with autovacuum and pg_autovacuum - Mailing list pgsql-general

From Alvaro Herrera
Subject Re: Problem with autovacuum and pg_autovacuum
Date
Msg-id 20070704224015.GM5035@alvh.no-ip.org
Whole thread Raw
In response to Re: Problem with autovacuum and pg_autovacuum  (Andreas 'ads' Scherbaum <adsmail@wars-nicht.de>)
Responses Re: Problem with autovacuum and pg_autovacuum  (Andreas 'ads' Scherbaum <adsmail@wars-nicht.de>)
List pgsql-general
Andreas 'ads' Scherbaum wrote:
>
> Hello,
>
> On Wed, 4 Jul 2007 18:04:35 -0400 Alvaro Herrera wrote:
>
> > Most likely it is worried about XID wraparound, and those are precisely
> > the tables that need urgent vacuumed because they haven't been vacuumed
> > in a long time.
>
> No, autovacuum is doing this with every run. Beside this, the database has
> only some 10k changes per day. The wraparound was my first idea, but i
> don't see a reason, why this should be happen with every autovacuum run.

Ok a new weird scenario.  Could you please let us look at

select relname, relfrozenxid, age(relfrozenxid) from pg_class where
relkind in ('r', 't') order by 3 desc;

and

select datfrozenxid, age(datfrozenxid) from pg_database where
datname = 'your database';

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

pgsql-general by date:

Previous
From: Andreas 'ads' Scherbaum
Date:
Subject: Re: Problem with autovacuum and pg_autovacuum
Next
From: Andreas 'ads' Scherbaum
Date:
Subject: Re: Problem with autovacuum and pg_autovacuum