Re: VACUUM FULL versus CLUSTER ON - Mailing list pgsql-general

From Joshua D. Drake
Subject Re: VACUUM FULL versus CLUSTER ON
Date
Msg-id 200607100936.26754.jd@commandprompt.com
Whole thread Raw
In response to Re: VACUUM FULL versus CLUSTER ON  (Sven Willenberger <sven@dmv.com>)
List pgsql-general
> The box has 8G of RAM and 10G swap space available to it (almost none of
> which touched). The problem was that the VACUUM FULL process never
> released any memory. With maintenance work mem set to 512MB, I would
> think that it would be enforced such that any given connection would
> only be allowed 512MB for maintenance. Why it it growing beyond the 1.5G
> I allow system-wide for any given process eludes me right now (and why I
> suspect a bad memory leak).

My understanding is that the maintenance_work_mem is the amount of RAM
that can be used before PostgreSQL swaps out to disk. This is not the amount
of memory that vacuum full will use. Vacuum full is going to use whatever it
needs to get the job done, and on the table your dealing with, its going to
be alot.

> As per the other suggestions, I will end up doing a pg_dump/restore to
> reclaim the lost space.

You already know my opinion on that ;)

Sincerely,

Joshua D. Drake



>
> Sven

--
   === The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
   Providing the most comprehensive  PostgreSQL solutions since 1997
             http://www.commandprompt.com/



pgsql-general by date:

Previous
From: Sven Willenberger
Date:
Subject: Re: VACUUM FULL versus CLUSTER ON
Next
From: Lincoln Yeoh
Date:
Subject: Re: VACUUM FULL versus CLUSTER ON