maposmatic-dev
[Top][All Lists]
Advanced

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

Re: [OSM-dev] [Maposmatic-dev] Re: Growth of on-disk size of OSM databa


From: Ævar Arnfjörð Bjarmason
Subject: Re: [OSM-dev] [Maposmatic-dev] Re: Growth of on-disk size of OSM database
Date: Wed, 14 Jul 2010 14:00:18 +0000

On Wed, Jul 14, 2010 at 10:56, Thomas Petazzoni
<address@hidden> wrote:

> Unfortunately, as far as I understand, doing a "vacuum full" is going
> to block accesses to the database for a fairly long amount of time
> (days ?). So the best solution is probably to regularly (every few
> months) do a new full import in a separate database, and switch to this
> new database when the full import is completed.

This is why PostgreSQL administrators usually put VACUUM FULL; in
their cron.daily, but that doesn't help you at this point.

You could also, as you say, import a new DB and swap the old one
out. That's what I do with my own (not full Planet) import.

Or you could use MySQL instead of PostgreSQL (if that even works
anymore). It doesn't use the same model for deletion as PostgreSQL, so
you'll reclaim your space without expensive VACUUM operations.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]