Search Postgresql Archives

how much disk space does a VACUUM FULL take?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Due to running low on disk space, we have recently removed a majority of rows from a table to an archival DB.

Although VACUUM allows disk space to be re-used, VACUUM FULL is the only one that actively reclaims disk space for use by the OS.  http://www.postgresql.org/docs/9.0/static/routine-vacuuming.html

For a variety of reasons I would prefer disk usage to be as low as possible, thus I would like to run a VACUUM FULL during some maintenance cycle (since it exclusively locks the table).  However, given the details of VACUUM FULL:

> VACUUM FULL actively compacts tables by writing a complete new version of the table file with no dead space. This minimizes the size of the table, but can take a long time. It also requires extra disk space for the new copy of the table, until the operation completes.

Does this suggest that VACUUM FULL needs free disk space on the order of the full size of the table that it's vacuuming to be able to complete?  Or does it / can it write the filesystem files in the 1GB chunks stored in /base while removing the new "unused" files at the same time, thus requiring only a few GB of free space?

thanks,

	~ john


-- 
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux