Re: Unexplained growth of tables - Mailing list pgsql-admin

From Christopher Browne
Subject Re: Unexplained growth of tables
Date
Msg-id 873bcstl1z.fsf@wolfe.cbbrowne.com
Whole thread Raw
In response to Unexplained growth of tables  ("Benjamin Krajmalnik" <kraj@illumen.com>)
List pgsql-admin
After a long battle with technology, kraj@illumen.com ("Benjamin Krajmalnik"), an earthling, wrote:
> Any assistance or guidance will be deeply appreciated.  I am pulling
> hairs on this one.

It needs to be vacuumed a lot more aggressively.  If you're using
pg_autovacuum, the defaults seem to be not quite aggressive enough.

Mind you, now that the table has grown to huge size, it won't be cut
down to size by a mere VACUUM ANALYZE.

To draw it back down to size, you need to run VACUUM FULL, which will
cut the number of tuples down to size, and then reindex the table,
which will "do a number" on the indices.

Alternatively, "CLUSTER [some index] on [table];" will reorganize the
whole thing at once, reshaping the table to conform with the specified
index, and regenerating all indices, at the cost that it (at present,
up to 8.1; I'm not sure about 8.2) doesn't follow MVCC and keep old,
but still-visible obsolete copies of tuples.

CLUSTER is the fast answer, assuming you haven't any old transactions
you need to keep in flight...
--
(format nil "~S@~S" "cbbrowne" "gmail.com")
http://linuxfinances.info/info/slony.html
The difference between a  child and a hacker  is the amount he  flames
about his toys.  -- Ed Schwalenberg

pgsql-admin by date:

Previous
From: Christian Kratzer
Date:
Subject: Re: Unexplained growth of tables
Next
From: Tom Lane
Date:
Subject: Re: Unexplained growth of tables