Re: Orphan files

From: Robin Iddon <robin(at)edesix(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: Orphan files
Date: 2006-04-28 06:47:52
Message-ID: 4451BA98.30005@edesix.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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).

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message David Garamond 2006-04-28 07:17:30 Restoring a database as another user
Previous Message Wang, Marcus 2006-04-28 06:36:19 Re: Regarding start postgresql startservice