PostgreSQL: VACUUM FULL or CLUSTER? -
i'm out of disk space because of query tried update every row in huge table. don't have enough space cluster
(though barely fit if dropped indexes first , recreated them afterwards).
how can estimate how long vacuum
take? how vacuum full
? how 3 (with cluster
) compare in terms of running time , disk usage?
it's postgresql 8.3.
use cluster, until 8.4 vacuum full broke. if takes long might dump , reload table.
Comments
Post a Comment