Re: Orphan files - Mailing list pgsql-admin

From Robin Iddon
Subject Re: Orphan files
Date
Msg-id 4451BA98.30005@edesix.com
Whole thread Raw
In response to Orphan files  (dzung nguyen the <dzungthenguyen@yahoo.com>)
List pgsql-admin
> Can I delete these files ? Or give me an advice, please.
>

When I had a similar problem it turned out that I had exceeded the
limits of my FSM and thus the stats table in particular was growing as
it was unable to reuse rows.

Check your FSM size in postgresql.conf and see what:

max_fsm_pages
max_fsm_relations

are set to.  Note that these are set for the whole cluster not per database.

To recover the lost space you will need to do a vacuum full at some
point, I think.  This is going to take a while and it's going to affect
people's access to the database, so do it when the database would
otherwise be idle if at all possible.  In any case if you run

vacuumdb -avf

it will compact your tables and at the end, it prints out the FSM
settings you should have had for the expired data space that was in your
database.  If those numbers are larger than the settings you have, then
you have blown the FSM and need to increase them or increase the
frequency at which you vacuum.  Remember FSM is cluster-wide so you must
use "-a" above otherswise the FSM output at the end won't be meaningful.

The problem I had was that (a) my FSM was too small anyway but (b) I had
left the default settings for pg_autovacuum (I use 8.0 at present) and
these weren't right - some tables were never vacuumed.

Note also that indexes sometimes need to be reindexed to recover free
space.  Exactly how you do that depends on which version of postgres you
are running.

Finally, to see how big PG thinks your tables are try querying pg_class
and check out relpages/reltuples (but you also need to understand how
toast works to get the full picture - hence read the storage documentation).



pgsql-admin by date:

Previous
From: "Wang, Marcus"
Date:
Subject: Re: Regarding start postgresql startservice
Next
From: "David Garamond"
Date:
Subject: Restoring a database as another user