From: | "Gaetano Mendola" <mendola(at)bigfoot(dot)com> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: Vacuuming and re-indexing (was Re: Vacuum meaning) |
Date: | 2003-01-03 17:22:00 |
Message-ID: | av4gre$2pnv$1@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
""David F. Skoll"" <dfs(at)roaringpenguin(dot)com> wrote in message
news:Pine(dot)LNX(dot)4(dot)50(dot)0301031015260(dot)2549-100000(at)shishi(dot)roaringpenguin(dot)com(dot)(dot)(dot)
> > It's possible your suffering index bloat as well and you might need to
> > do some regular reindexing,
>
> Again, this sounds ugly. How do you determine this? How do you get your
> database to be reindexed as often as needed, but not too often?
Sound more ugly considering that some times the reindex is not possible
if the server is stressed ( the reindex hang ) for my experience
instead of do a reindex is better delete the indexes and recreate them.
With the following query you can obtain the size of each table or index:
SELECT relname, relpages * 8 AS Mb, reltuples
FROM pg_class
ORDER BY relpages DESC
LIMIT 10;
If you use the 7.3 I think you should multiply for 11.
Ciao
Gaetano.
From | Date | Subject | |
---|---|---|---|
Next Message | Steve Wolfe | 2003-01-03 17:22:13 | Re: Upgrade Procedures |
Previous Message | Joost Kraaijeveld | 2003-01-03 16:30:16 | Re: Pgadmin II |