X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/fd561c51f91e0ab94df124556acc7c9418b4f801..5a1a80f34089acdc46f1f288225d199cf7fe015b:/cookbooks/planet/templates/default/planetdump.erb diff --git a/cookbooks/planet/templates/default/planetdump.erb b/cookbooks/planet/templates/default/planetdump.erb index bea56372c..22214b8ac 100644 --- a/cookbooks/planet/templates/default/planetdump.erb +++ b/cookbooks/planet/templates/default/planetdump.erb @@ -60,13 +60,14 @@ cd /store/planetdump # Cleanup rm -rf users -rm -rf changesets changeset_tags +rm -rf changesets changeset_tags changeset_comments rm -rf nodes node_tags rm -rf ways way_tags way_nodes rm -rf relations relation_tags relation_members # Run the dump time nice -n 19 /opt/planet-dump-ng/planet-dump-ng \ + --max-concurrency=4 \ -c "pbzip2 -c" -f "/store/backup/${file}" --dense-nodes=1 \ -C "changesets-${date}.osm.bz2" \ -D "discussions-${date}.osm.bz2" \ @@ -97,3 +98,6 @@ install_dump "planet" "bz2" "<%= node[:planet][:dump][:xml_directory] %>" "${yea install_dump "history" "bz2" "<%= node[:planet][:dump][:xml_history_directory] %>" "${year}" install_dump "planet" "pbf" "<%= node[:planet][:dump][:pbf_directory] %>" install_dump "history" "pbf" "<%= node[:planet][:dump][:pbf_history_directory] %>" + +# Remove pbf dumps older than 90 days +find "<%= node[:planet][:dump][:pbf_directory] %>" "<%= node[:planet][:dump][:pbf_history_directory] %>" -maxdepth 1 -mindepth 1 -type f -mtime +90 \( -iname 'planet-*.pbf' -o -iname 'history-*.pbf' -o -iname 'planet-*.pbf.md5' -o -iname 'history-*.pbf.md5' \) -delete