-
Hello! I am trying to generate planet mbtiles on 64Gb RAM machine with config according to #!/usr/bin/env bash
set -e
java -Xmx60g \
-jar planetiler-openmaptiles-3.14.0-with-deps.jar \
`# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
--area=planet --bounds=planet --download \
`# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
--download-threads=10 --download-chunk-size-mb=1000 \
`# Also download name translations from wikidata` \
--fetch-wikidata \
--output=output.mbtiles \
`# Store temporary node locations at fixed positions in a memory-mapped file` \
--nodemap-type=array --storage=mmap 2>&1 | tee logs.txt But it just stops to run at some point when all the memory are wasted.
Please help find me where I might be wrong with the config? |
Beta Was this translation helpful? Give feedback.
Answered by
wipfli
May 18, 2023
Replies: 1 comment 6 replies
-
I think you are using too much memory. Try it with less. Here is some explanation: #468 (comment) |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
tmshv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you are using too much memory. Try it with less. Here is some explanation: #468 (comment)