mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
work
This commit is contained in:
7
docs/fs_stats/btrfs_not_used.txt
Normal file
7
docs/fs_stats/btrfs_not_used.txt
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# takes a lot of time, should only be used when debugging
|
||||||
|
|
||||||
|
echo -e "\n\nbtrfs filesystem du -s"
|
||||||
|
sudo btrfs filesystem du -s mnt_rw
|
||||||
|
|
||||||
|
echo -e "\n\ncompsize -x"
|
||||||
|
sudo compsize -x mnt_rw 2> /dev/null || true
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
## native mapbox/mbutil
|
## native mapbox/mbutil
|
||||||
|
|
||||||
|
// pip install git+https://github.com/mapbox/mbutil.git@544c76e
|
||||||
|
|
||||||
```
|
```
|
||||||
Filesystem 1K-blocks Used Available Use% Mounted on
|
Filesystem 1K-blocks Used Available Use% Mounted on
|
||||||
/dev/loop0 1,474,386,100 1,119,622,516 354,763,584 76%
|
/dev/loop0 1,474,386,100 1,119,622,516 354,763,584 76%
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Comparing filesystem stats after extraction
|
# Comparing filesystem stats after extraction
|
||||||
|
|
||||||
Run: *planet_20231208*
|
Run: planet/20231208_091355_pt
|
||||||
|
|
||||||
dedupl-fix.log contains the files which were created for the btrfs 64k limit workaround.
|
dedupl-fix.log contains the files which were created for the btrfs 64k limit workaround.
|
||||||
|
|||||||
@@ -32,12 +32,13 @@ def prepare_tile_gen(c):
|
|||||||
install_planetiler(c)
|
install_planetiler(c)
|
||||||
|
|
||||||
for file in [
|
for file in [
|
||||||
'prepare-virtualenv.sh',
|
'extract_btrfs.sh',
|
||||||
'planetiler_planet.sh',
|
|
||||||
'planetiler_monaco.sh',
|
'planetiler_monaco.sh',
|
||||||
'gen_planet.sh',
|
'planetiler_planet.sh',
|
||||||
'gen_monaco.sh',
|
'prepare-virtualenv.sh',
|
||||||
'extract.sh',
|
'upload_cloudflare.sh',
|
||||||
|
'extract_mbtiles/extract_mbtiles.py',
|
||||||
|
'shrink_btrfs/shrink_btrfs.py',
|
||||||
]:
|
]:
|
||||||
put(
|
put(
|
||||||
c,
|
c,
|
||||||
@@ -57,23 +58,6 @@ def prepare_http_host(c):
|
|||||||
|
|
||||||
|
|
||||||
def debug_tmp(c):
|
def debug_tmp(c):
|
||||||
put(c, scripts / 'tile_gen' / 'extract_btrfs.sh', TILE_GEN_BIN, permissions='755', owner='ofm')
|
|
||||||
put(
|
|
||||||
c,
|
|
||||||
scripts / 'extract_mbtiles' / 'extract_mbtiles.py',
|
|
||||||
TILE_GEN_BIN,
|
|
||||||
permissions='755',
|
|
||||||
owner='ofm',
|
|
||||||
)
|
|
||||||
put(
|
|
||||||
c,
|
|
||||||
scripts / 'shrink_btrfs' / 'shrink_btrfs.py',
|
|
||||||
TILE_GEN_BIN,
|
|
||||||
permissions='755',
|
|
||||||
owner='ofm',
|
|
||||||
)
|
|
||||||
|
|
||||||
return
|
|
||||||
c.sudo('rm -rf /data/ofm/logs')
|
c.sudo('rm -rf /data/ofm/logs')
|
||||||
c.sudo('mkdir -p /data/ofm/logs')
|
c.sudo('mkdir -p /data/ofm/logs')
|
||||||
c.sudo('rm -f /data/nginx/logs/*')
|
c.sudo('rm -f /data/nginx/logs/*')
|
||||||
|
|||||||
@@ -1,11 +1,14 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
export TILE_GEN_BIN=/data/ofm/tile_gen/bin
|
||||||
|
export VENV_PYTHON=$TILE_GEN_BIN/venv/python
|
||||||
|
|
||||||
sudo umount mnt_rw 2> /dev/null || true
|
sudo umount mnt_rw 2> /dev/null || true
|
||||||
sudo umount mnt_rw2 2> /dev/null || true
|
sudo umount mnt_rw2 2> /dev/null || true
|
||||||
rm -rf mnt_rw* tmp_*
|
rm -rf mnt_rw* tmp_*
|
||||||
rm -f *.btrfs *.gz
|
rm -f "*.btrfs" "*.gz"
|
||||||
rm -f *.log *.txt
|
rm -f "*.log" "*.txt"
|
||||||
|
|
||||||
# make an empty file that's definitely bigger then the current OSM output
|
# make an empty file that's definitely bigger then the current OSM output
|
||||||
fallocate -l 200G image.btrfs
|
fallocate -l 200G image.btrfs
|
||||||
@@ -37,7 +40,8 @@ sudo mount \
|
|||||||
|
|
||||||
sudo chown ofm:ofm -R mnt_rw mnt_rw2
|
sudo chown ofm:ofm -R mnt_rw mnt_rw2
|
||||||
|
|
||||||
../../tile_gen/venv/bin/python ../../tile_gen/extract_mbtiles.py output.mbtiles mnt_rw/extract \
|
$VENV_PYTHON $TILE_GEN_BIN/extract_mbtiles/extract_mbtiles.py \
|
||||||
|
tiles.mbtiles mnt_rw/extract \
|
||||||
> extract_out.log 2> extract_err.log
|
> extract_out.log 2> extract_err.log
|
||||||
|
|
||||||
grep fixed extract_out.log > dedupl_fixed.log || true
|
grep fixed extract_out.log > dedupl_fixed.log || true
|
||||||
@@ -55,41 +59,23 @@ rsync -avH \
|
|||||||
{
|
{
|
||||||
echo -e "df -h"
|
echo -e "df -h"
|
||||||
sudo df -h mnt_rw
|
sudo df -h mnt_rw
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem df"
|
echo -e "\n\nbtrfs filesystem df"
|
||||||
sudo btrfs filesystem df mnt_rw
|
sudo btrfs filesystem df mnt_rw
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem show"
|
echo -e "\n\nbtrfs filesystem show"
|
||||||
sudo btrfs filesystem show mnt_rw
|
sudo btrfs filesystem show mnt_rw
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem usage"
|
echo -e "\n\nbtrfs filesystem usage"
|
||||||
sudo btrfs filesystem usage mnt_rw
|
sudo btrfs filesystem usage mnt_rw
|
||||||
|
|
||||||
# takes a lot of time, should only be used when debugging
|
|
||||||
#echo -e "\n\nbtrfs filesystem du -s"
|
|
||||||
#sudo btrfs filesystem du -s mnt_rw
|
|
||||||
#echo -e "\n\ncompsize -x"
|
|
||||||
#sudo compsize -x mnt_rw 2> /dev/null || true
|
|
||||||
} > stats1.txt
|
} > stats1.txt
|
||||||
|
|
||||||
{
|
{
|
||||||
echo -e "df -h"
|
echo -e "df -h"
|
||||||
sudo df -h mnt_rw2
|
sudo df -h mnt_rw2
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem df"
|
echo -e "\n\nbtrfs filesystem df"
|
||||||
sudo btrfs filesystem df mnt_rw2
|
sudo btrfs filesystem df mnt_rw2
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem show"
|
echo -e "\n\nbtrfs filesystem show"
|
||||||
sudo btrfs filesystem show mnt_rw2
|
sudo btrfs filesystem show mnt_rw2
|
||||||
|
|
||||||
echo -e "\n\nbtrfs filesystem usage"
|
echo -e "\n\nbtrfs filesystem usage"
|
||||||
sudo btrfs filesystem usage mnt_rw2
|
sudo btrfs filesystem usage mnt_rw2
|
||||||
|
|
||||||
# takes a lot of time, should only be used when debugging
|
|
||||||
#echo -e "\n\nbtrfs filesystem du -s"
|
|
||||||
#sudo btrfs filesystem du -s mnt_rw2
|
|
||||||
#echo -e "\n\ncompsize -x"
|
|
||||||
#sudo compsize -x mnt_rw2 2> /dev/null || true
|
|
||||||
} > stats2.txt
|
} > stats2.txt
|
||||||
|
|
||||||
|
|
||||||
@@ -97,7 +83,7 @@ sudo umount mnt_rw
|
|||||||
sudo umount mnt_rw2
|
sudo umount mnt_rw2
|
||||||
rm -r mnt_rw*
|
rm -r mnt_rw*
|
||||||
|
|
||||||
sudo ../../tile_gen/venv/bin/python ../../tile_gen/shrink_btrfs.py image2.btrfs \
|
sudo $VENV_PYTHON $TILE_GEN_BIN/shrink_btrfs/shrink_btrfs.py image2.btrfs \
|
||||||
> shrink_out.log 2> shrink_err.log
|
> shrink_out.log 2> shrink_err.log
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
DATE=$(date +"%Y%m%d_%H%M%S")
|
|
||||||
|
|
||||||
RUN_FOLDER="/data/ofm/runs/monaco_$DATE"
|
|
||||||
|
|
||||||
mkdir -p "$RUN_FOLDER"
|
|
||||||
cd "$RUN_FOLDER" || exit
|
|
||||||
|
|
||||||
bash /data/ofm/tile_gen/planetiler_monaco.sh "$DATE"
|
|
||||||
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
DATE=$(date +"%Y%m%d_%H%M%S")
|
|
||||||
|
|
||||||
RUN_FOLDER="/data/ofm/runs/planet_$DATE"
|
|
||||||
|
|
||||||
mkdir -p "$RUN_FOLDER"
|
|
||||||
cd "$RUN_FOLDER" || exit
|
|
||||||
|
|
||||||
bash /data/ofm/tile_gen/planetiler_planet.sh "$DATE"
|
|
||||||
|
|
||||||
@@ -1,22 +1,24 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# the Xmx value below the most important parameter here
|
DATE=$(date +"%Y%m%d_%H%M%S")
|
||||||
# setting is less then 25g means there is too little memory
|
TILE_GEN_BIN=/data/ofm/tile_gen/bin
|
||||||
# setting it to too much means there is too much memory used
|
|
||||||
|
RUN_FOLDER="/data/ofm/tile_gen/runs/monaco/${DATE}_pt"
|
||||||
|
|
||||||
|
mkdir -p "$RUN_FOLDER"
|
||||||
|
cd "$RUN_FOLDER" || exit
|
||||||
|
|
||||||
java -Xmx1g \
|
java -Xmx1g \
|
||||||
-jar /data/ofm/tile_gen/planetiler.jar \
|
-jar $TILE_GEN_BIN/planetiler.jar \
|
||||||
`# Download the latest osm.pbf from s3://osm-pds bucket` \
|
`# Download the latest osm.pbf from s3://osm-pds bucket` \
|
||||||
--area=monaco --download \
|
--area=monaco --download \
|
||||||
`# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
|
`# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
|
||||||
--download-threads=10 --download-chunk-size-mb=1000 \
|
--download-threads=10 --download-chunk-size-mb=1000 \
|
||||||
`# Also download name translations from wikidata` \
|
`# Also download name translations from wikidata` \
|
||||||
--fetch-wikidata \
|
--fetch-wikidata \
|
||||||
--output=output.mbtiles \
|
--output=tiles.mbtiles \
|
||||||
`# Store temporary node locations at fixed positions in a memory-mapped file` \
|
`# Store temporary node locations at fixed positions in a memory-mapped file` \
|
||||||
--nodemap-type=array --storage=mmap \
|
--nodemap-type=array --storage=mmap \
|
||||||
--force \
|
--force \
|
||||||
> "planetiler_out.log" 2> "planetiler_err.log"
|
> "planetiler_out.log" 2> "planetiler_err.log"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,26 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# the Xmx value below the most important parameter here
|
DATE=$(date +"%Y%m%d_%H%M%S")
|
||||||
# setting is less then 25g means there is too little memory
|
TILE_GEN_BIN=/data/ofm/tile_gen/bin
|
||||||
# setting it to too much means there is too much memory used
|
|
||||||
|
|
||||||
|
RUN_FOLDER="/data/ofm/tile_gen/runs/planet/${DATE}_pt"
|
||||||
|
|
||||||
|
mkdir -p "$RUN_FOLDER"
|
||||||
|
cd "$RUN_FOLDER" || exit
|
||||||
|
|
||||||
|
# the Xmx value below the most important parameter here
|
||||||
|
# 30 GB works well
|
||||||
java -Xmx30g \
|
java -Xmx30g \
|
||||||
-jar /data/ofm/tile_gen/planetiler.jar \
|
-jar $TILE_GEN_BIN/planetiler.jar \
|
||||||
`# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
|
`# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
|
||||||
--area=planet --bounds=planet --download \
|
--area=planet --bounds=planet --download \
|
||||||
`# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
|
`# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
|
||||||
--download-threads=10 --download-chunk-size-mb=1000 \
|
--download-threads=10 --download-chunk-size-mb=1000 \
|
||||||
`# Also download name translations from wikidata` \
|
`# Also download name translations from wikidata` \
|
||||||
--fetch-wikidata \
|
--fetch-wikidata \
|
||||||
--output=output.mbtiles \
|
--output=tiles.mbtiles \
|
||||||
`# Store temporary node locations at fixed positions in a memory-mapped file` \
|
`# Store temporary node locations at fixed positions in a memory-mapped file` \
|
||||||
--nodemap-type=array --storage=mmap \
|
--nodemap-type=array --storage=mmap \
|
||||||
--force \
|
--force \
|
||||||
> "planetiler_out.log" 2> "planetiler_err.log"
|
> "planetiler_out.log" 2> "planetiler_err.log"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,6 @@ python3 -m venv venv
|
|||||||
venv/bin/pip -V
|
venv/bin/pip -V
|
||||||
|
|
||||||
venv/bin/pip install -U pip wheel setuptools
|
venv/bin/pip install -U pip wheel setuptools
|
||||||
venv/bin/pip install git+https://github.com/mapbox/mbutil.git@544c76e
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from ssh_lib.utils import apt_get_install, apt_get_update
|
|||||||
|
|
||||||
PLANETILER_VERSION = '0.7.0'
|
PLANETILER_VERSION = '0.7.0'
|
||||||
|
|
||||||
TILE_GEN_BIN = '/data/ofm/tile_gen'
|
TILE_GEN_BIN = '/data/ofm/tile_gen/bin'
|
||||||
PLANETILER_PATH = f'{TILE_GEN_BIN}/planetiler.jar'
|
PLANETILER_PATH = f'{TILE_GEN_BIN}/planetiler.jar'
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user