From: | Curt Sampson <cjs(at)cynic(dot)net> |
---|---|
To: | "Vikram D(dot) Gaitonde" <vdgaitonde(at)yahoo(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: Disk Utilization Increases And Time for Vacuum Increases. |
Date: | 2003-08-25 01:28:53 |
Message-ID: | Pine.NEB.4.51.0308251023010.1138@angelic-vtfw.cvpn.cynic.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
On Fri, 22 Aug 2003, Vikram D. Gaitonde wrote:
> One action we have consiously not done is "REINDEX" on the
> table. We want to avoid that as far as possible.
Why do you want to avoid this? It may be the only option you have, other
than a database dump and reload.
> 3: relpages for the indices increases with the first few
> iterations and then stays constant.
>
> This is determined by running:
> "SELECT RELNAME, RELPAGES, RELTUPLES FROM PG_CLASS"
This seems odd. I would have thought for sure that it was your indexes
growing. Maybe you should try looking at the individual files in the
data directory to see which ones are growing, and then use the filename
to look up the item in pg_class via the relfilenode column to find out
what your problem objects are.
> NOTE: Also the reltuples always stay at 0 (zero).
> I dont know how to interpret that. What does
> it mean.
It means you haven't done an ANALYZE after changing the size of the
database.
cjs
--
Curt Sampson <cjs(at)cynic(dot)net> +81 90 7737 2974 http://www.NetBSD.org
Don't you know, in this new Dark Age, we're all light. --XTC
From | Date | Subject | |
---|---|---|---|
Next Message | Jeff Boes | 2003-08-25 02:16:32 | Re: Disk Utilization Increases And Time for Vacuum Increases. |
Previous Message | Jesse Burkhardt | 2003-08-24 22:46:38 | Automated backup problems - pg_dump |