Skip to content

Instantly share code, notes, and snippets.

@wipfli
Last active March 21, 2023 16:24
Show Gist options
  • Save wipfli/17bb8ad8d123f7d93313417dc7d4fac5 to your computer and use it in GitHub Desktop.
Save wipfli/17bb8ad8d123f7d93313417dc7d4fac5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -e
rm -rf comparison.txt
echo "start pmtiles ############################" 2>&1 | tee -a comparison.txt
start=$(date +%s)
java -cp target/*-with-deps.jar com.onthegomap.planetiler.examples.SwissMap \
--download --area=planet --bounds=world \
--download-threads=10 --download-chunk-size-mb=1000 \
--fetch-wikidata \
--output=data/swissmap.pmtiles \
--nodemap-type=array --storage=mmap -Xmx32g 2>&1 | tee -a comparison.txt
end=$(date +%s)
echo "Elapsed Time: $(($end-$start)) seconds" 2>&1 | tee -a comparison.txt
echo "end pmtiles ##############################3" 2>&1 | tee -a comparison.txt
echo "start mbtiles ###############################" 2>&1 | tee -a comparison.txt
start=$(date +%s)
java -cp target/*-with-deps.jar com.onthegomap.planetiler.examples.SwissMap \
--download --area=planet --bounds=world \
--download-threads=10 --download-chunk-size-mb=1000 \
--fetch-wikidata \
--output=data/swissmap.mbtiles \
--nodemap-type=array --storage=mmap -Xmx32g 2>&1 | tee -a comparison.txt
pmtiles convert data/output.mbtiles data/output.pmtiles
date
end=$(date +%s)
echo "Elapsed Time: $(($end-$start)) seconds" 2>&1 | tee -a comparison.txt
echo "end mbtiles ##################" 2>&1 | tee -a comparison.txt
start pmtiles ############################
0:00:00 DEB - argument: config=null (path to config file)
0:00:00 DEB - argument: area=planet (geofabrik area to download)
0:00:00 INF - argument: stats=use in-memory stats
0:00:00 DEB - argument: madvise=true (default value for whether to use linux madvise(random) to improve memory-mapped read performance for temporary storage)
0:00:00 DEB - argument: storage=mmap (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=12 (num threads)
0:00:00 DEB - argument: write_threads=1 (number of threads to use when writing temp features)
0:00:00 DEB - argument: process_threads=11 (number of threads to use when processing input features)
0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
0:00:00 DEB - argument: polygon=null (a .poly file that limits output to tiles intersecting the shape)
0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level up to 15)
0:00:00 DEB - argument: render_maxzoom=14 (maximum rendering zoom level up to 15)
0:00:00 DEB - argument: feature_read_threads=1 (number of threads to use when reading features at tile write time)
0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
0:00:00 DEB - argument: force=false (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: gzip_temp=false (gzip temporary feature storage (uses more CPU, but less disk space))
0:00:00 DEB - argument: mmap_temp=true (use memory-mapped IO for temp feature files)
0:00:00 DEB - argument: sort_max_readers=6 (maximum number of concurrent read threads to use when sorting chunks)
0:00:00 DEB - argument: sort_max_writers=6 (maximum number of concurrent write threads to use when sorting chunks)
0:00:00 DEB - argument: nodemap_type=array (type of node location map, one of [noop, sortedtable, sparsearray, array])
0:00:00 DEB - argument: nodemap_storage=mmap (storage for node location map, one of [ram, mmap, direct])
0:00:00 DEB - argument: nodemap_madvise=true (use linux madvise(random) for node locations)
0:00:00 DEB - argument: multipolygon_geometry_storage=mmap (storage for multipolygon geometries, one of [ram, mmap, direct])
0:00:00 DEB - argument: multipolygon_geometry_madvise=true (use linux madvise(random) for temporary multipolygon geometry storage)
0:00:00 DEB - argument: http_user_agent=Planetiler downloader (https://github.com/onthegomap/planetiler) (User-Agent header to set when downloading files over HTTP)
0:00:00 DEB - argument: http_timeout=30 seconds (Timeout to use when downloading files over HTTP)
0:00:00 DEB - argument: http_retries=1 (Retries to use when downloading files over HTTP)
0:00:00 DEB - argument: download_chunk_size_mb=1000 (Size of file chunks to download in parallel in megabytes)
0:00:00 DEB - argument: download_threads=10 (Number of parallel threads to use when downloading each file)
0:00:00 DEB - argument: download_max_bandwidth= (Maximum bandwidth to consume when downloading files in units mb/s, mbps, kbps, etc.)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=true (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tile_warning_size_mb=1.0 (Maximum size in megabytes of a tile to emit a warning about)
0:00:00 DEB - argument: color=null (Color the terminal output)
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
0:00:00 DEB - argument: only_download=false (download source data then exit)
0:00:00 DEB - argument: download=true (download sources)
0:00:00 DEB - argument: temp_nodes=data/tmp/node.db (temp node db location)
0:00:00 DEB - argument: temp_multipolygons=data/tmp/multipolygon.db (temp multipolygon db location)
0:00:00 DEB - argument: temp_features=data/tmp/feature.db (temp feature db location)
0:00:00 DEB - argument: osm_parse_node_bounds=false (parse bounds from OSM nodes instead of header)
0:00:00 DEB - argument: osm_path=data/sources/planet.osm.pbf (osm OSM input file path)
0:00:00 DEB - argument: free_osm_after_read=false (delete osm input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: osm_url=aws:latest (osm OSM input file url)
0:00:00 DEB - argument: ocean_path=data/sources/water-polygons-split-3857.zip (ocean shapefile path)
0:00:00 DEB - argument: free_ocean_after_read=false (delete ocean input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: ocean_url=https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip (ocean shapefile url)
0:00:00 DEB - argument: output=data/swissmap.pmtiles (output tile archive path)
0:00:00 DEB - argument: version=false (show version then exit)
0:00:00 INF - Planetiler build git hash: 74db638dbc69f10ab6de2f7a6447327d062fc86f
0:00:00 INF - Planetiler build version: 0.6-SNAPSHOT
0:00:00 INF - Planetiler build timestamp: 2023-03-18T18:47:42.003Z
0:00:00 DEB - argument: help=false (show arguments then exit)
0:00:00 INF - Building SwissMap profile into file:///root/swiss-map/planetiler/data/swissmap.pmtiles in these phases:
0:00:00 INF - osm_pass1: Pre-process OpenStreetMap input (store node locations then relation members)
0:00:00 INF - osm_pass2: Process OpenStreetMap nodes, ways, then relations
0:00:00 INF - ocean: Process features in data/sources/water-polygons-split-3857.zip
0:00:00 INF - sort: Sort rendered features by tile ID
0:00:00 INF - archive: Encode each tile and write to TileArchiveConfig[format=PMTILES, scheme=FILE, uri=file:///root/swiss-map/planetiler/data/swissmap.pmtiles, options={}]
0:00:00 DEB - ? 94G storage on / (/dev/md2) requested for read phase disk, 448G available
0:00:00 DEB - - 83G used for temporary node location cache
0:00:00 DEB - - 11G used for temporary multipolygon geometry cache
0:00:00 DEB - ? 94G storage on / (/dev/md2) requested for read phase, 448G available
0:00:00 DEB - - 83G used for array node location cache (switch to sparsearray to reduce size)
0:00:00 DEB - - 11G used for multipolygon way geometries
0:00:00 DEB - ? 94G temporary files and 102G of free memory for OS to cache them
0:00:00 DEB - argument: archive_name=Streets ('name' attribute for tileset metadata)
0:00:00 DEB - argument: archive_description=Streets from OpenStreetMap ('description' attribute for tileset metadata)
0:00:00 DEB - argument: archive_attribution=<a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a> ('attribution' attribute for tileset metadata)
0:00:00 DEB - argument: archive_version=null ('version' attribute for tileset metadata)
0:00:00 DEB - argument: archive_type=baselayer ('type' attribute for tileset metadata)
0:00:00 DEB - argument: archive_format=pbf ('format' attribute for tileset metadata)
0:00:00 INF - Using merge sort feature map, chunk size=2000mb max workers=12
0:00:00 INF [osm_pass1] -
0:00:00 INF [osm_pass1] - Starting...
0:00:10 INF [osm_pass1] - nodes: [ 232M 23M/s ] 2.7G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1k 108/s ]
cpus: 10.4 gc: 2% heap: 2.5G/32G direct: 1.4G postGC: 693M hppc: 848
read( 2%) -> (22/34) -> process(89% 88% 90% 88% 90% 89% 89% 89% 90% 89% 88%)
0:00:20 INF [osm_pass1] - nodes: [ 500M 26M/s ] 6.3G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.1k 106/s ]
cpus: 10.4 gc: 2% heap: 2G/32G direct: 1.4G postGC: 685M hppc: 848
read( 2%) -> (22/34) -> process(94% 94% 93% 94% 95% 94% 93% 94% 94% 95% 94%)
0:00:30 INF [osm_pass1] - nodes: [ 773M 27M/s ] 9.3G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.4k 123/s ]
cpus: 10.9 gc: 1% heap: 3.9G/32G direct: 1.4G postGC: 688M hppc: 848
read( 2%) -> (23/34) -> process(98% 97% 98% 97% 98% 97% 97% 98% 97% 97% 97%)
0:00:40 INF [osm_pass1] - nodes: [ 1B 28M/s ] 12G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.5k 118/s ]
cpus: 10.9 gc: 2% heap: 2.3G/32G direct: 1.4G postGC: 842M hppc: 848
read( 2%) -> (23/34) -> process(98% 97% 97% 97% 97% 97% 98% 97% 97% 98% 97%)
0:00:50 INF [osm_pass1] - nodes: [ 1.2B 18M/s ] 14G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.3k 75/s ]
cpus: 6.9 gc: 1% heap: 5.5G/32G direct: 1.4G postGC: 834M hppc: 848
read( 1%) -> (23/34) -> process(62% 62% 61% 62% 60% 61% 61% 61% 61% 61% 62%)
0:01:00 INF [osm_pass1] - nodes: [ 1.5B 27M/s ] 16G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.3k 103/s ]
cpus: 9.7 gc: 1% heap: 2.3G/32G direct: 1.4G postGC: 840M hppc: 848
read( 1%) -> (23/34) -> process(87% 87% 87% 86% 86% 88% 87% 87% 87% 87% 88%)
0:01:10 INF [osm_pass1] - nodes: [ 1.8B 30M/s ] 19G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.5k 112/s ]
cpus: 10.9 gc: 2% heap: 1.8G/32G direct: 1.4G postGC: 683M hppc: 848
read( 2%) -> (23/34) -> process(98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:01:20 INF [osm_pass1] - nodes: [ 2.1B 30M/s ] 22G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.6k 110/s ]
cpus: 10.9 gc: 2% heap: 2.4G/32G direct: 1.4G postGC: 838M hppc: 848
read( 2%) -> (23/34) -> process(98% 97% 97% 97% 98% 97% 97% 98% 97% 97% 97%)
0:01:30 INF [osm_pass1] - nodes: [ 2.3B 24M/s ] 25G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.3k 76/s ]
cpus: 8.6 gc: 1% heap: 844M/32G direct: 1.4G postGC: 801M hppc: 848
read( 1%) -> (23/34) -> process(75% 78% 79% 77% 77% 76% 78% 76% 78% 77% 77%)
0:01:40 INF [osm_pass1] - nodes: [ 2.6B 26M/s ] 28G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 78/s ]
cpus: 9 gc: 1% heap: 2.5G/32G direct: 1.4G postGC: 835M hppc: 848
read( 1%) -> (23/34) -> process(80% 79% 81% 81% 80% 80% 80% 80% 80% 80% 82%)
0:01:50 INF [osm_pass1] - nodes: [ 2.9B 27M/s ] 31G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 81/s ]
cpus: 8.8 gc: 1% heap: 2.2G/32G direct: 1.4G postGC: 687M hppc: 848
read( 1%) -> (23/34) -> process(78% 78% 79% 78% 79% 78% 78% 79% 79% 79% 78%)
0:02:00 INF [osm_pass1] - nodes: [ 3.2B 32M/s ] 34G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 95/s ]
cpus: 10.6 gc: 2% heap: 4.7G/32G direct: 1.4G postGC: 687M hppc: 848
read( 1%) -> (23/34) -> process(95% 95% 95% 95% 94% 95% 95% 95% 94% 95% 95%)
0:02:10 INF [osm_pass1] - nodes: [ 3.5B 32M/s ] 37G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 95/s ]
cpus: 10.8 gc: 2% heap: 3.5G/32G direct: 1.4G postGC: 839M hppc: 848
read( 1%) -> (23/34) -> process(96% 96% 96% 96% 96% 96% 96% 96% 97% 97% 96%)
0:02:20 INF [osm_pass1] - nodes: [ 3.9B 33M/s ] 40G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 13k 94/s ]
cpus: 10.8 gc: 2% heap: 2.4G/32G direct: 1.4G postGC: 836M hppc: 848
read( 1%) -> (23/34) -> process(97% 96% 97% 97% 97% 96% 97% 97% 96% 97% 96%)
0:02:30 INF [osm_pass1] - nodes: [ 4.1B 24M/s ] 43G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 14k 71/s ]
cpus: 7.6 gc: 1% heap: 3.2G/32G direct: 1.4G postGC: 669M hppc: 848
read( 1%) -> (23/34) -> process(68% 67% 70% 67% 68% 67% 69% 67% 66% 69% 68%)
0:02:41 INF [osm_pass1] - nodes: [ 4.4B 27M/s ] 46G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 77/s ]
cpus: 8.8 gc: 1% heap: 3.4G/32G direct: 1.4G postGC: 799M hppc: 848
read( 1%) -> (23/34) -> process(78% 78% 80% 80% 79% 79% 79% 79% 78% 79% 77%)
0:02:51 INF [osm_pass1] - nodes: [ 4.7B 32M/s ] 49G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 16k 91/s ]
cpus: 10.4 gc: 2% heap: 5.2G/32G direct: 1.4G postGC: 687M hppc: 848
read( 1%) -> (23/34) -> process(94% 94% 93% 94% 94% 94% 94% 93% 94% 94% 95%)
0:03:01 INF [osm_pass1] - nodes: [ 5B 33M/s ] 52G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 17k 95/s ]
cpus: 10.9 gc: 2% heap: 929M/32G direct: 1.4G postGC: 838M hppc: 848
read( 1%) -> (21/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:03:11 INF [osm_pass1] - nodes: [ 5.4B 33M/s ] 55G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 94/s ]
cpus: 10.9 gc: 2% heap: 5.1G/32G direct: 1.4G postGC: 839M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 98% 97% 97% 97% 97% 97% 98% 98% 97%)
0:03:21 INF [osm_pass1] - nodes: [ 5.6B 27M/s ] 58G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 77/s ]
cpus: 8.5 gc: 2% heap: 4.9G/32G direct: 1.4G postGC: 827M hppc: 848
read( 1%) -> (23/34) -> process(77% 76% 76% 77% 75% 76% 74% 77% 76% 74% 77%)
0:03:31 INF [osm_pass1] - nodes: [ 5.9B 30M/s ] 61G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 83/s ]
cpus: 9.5 gc: 2% heap: 3G/32G direct: 1.4G postGC: 838M hppc: 848
read( 1%) -> (23/34) -> process(84% 85% 86% 85% 85% 84% 86% 86% 85% 85% 84%)
0:03:41 INF [osm_pass1] - nodes: [ 6.2B 27M/s ] 64G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 20k 77/s ]
cpus: 8.6 gc: 1% heap: 3.2G/32G direct: 1.4G postGC: 833M hppc: 848
read( 1%) -> (23/34) -> process(77% 76% 77% 76% 77% 77% 77% 78% 78% 77% 78%)
0:03:51 INF [osm_pass1] - nodes: [ 6.5B 31M/s ] 67G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 21k 86/s ]
cpus: 9.8 gc: 2% heap: 1.1G/32G direct: 1.4G postGC: 848M hppc: 848
read( 1%) -> (22/34) -> process(89% 87% 88% 87% 87% 87% 88% 88% 87% 87% 86%)
0:04:01 INF [osm_pass1] - nodes: [ 6.8B 28M/s ] 70G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 80/s ]
cpus: 9 gc: 1% heap: 5.6G/32G direct: 1.4G postGC: 869M hppc: 848
read( 1%) -> (23/34) -> process(80% 80% 81% 80% 80% 79% 81% 80% 80% 80% 78%)
0:04:11 INF [osm_pass1] - nodes: [ 7.1B 33M/s ] 73G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 23k 91/s ]
cpus: 10.6 gc: 2% heap: 4.7G/32G direct: 1.4G postGC: 837M hppc: 848
read( 1%) -> (23/34) -> process(96% 95% 96% 96% 96% 95% 96% 95% 96% 95% 95%)
0:04:21 INF [osm_pass1] - nodes: [ 7.5B 33M/s ] 76G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 92/s ]
cpus: 10.8 gc: 2% heap: 4.9G/32G direct: 1.4G postGC: 681M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 96% 96% 97% 96% 96% 96% 97% 97%)
0:04:31 INF [osm_pass1] - nodes: [ 7.8B 32M/s ] 79G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 90/s ]
cpus: 10.6 gc: 2% heap: 719M/32G direct: 1.4G postGC: 678M hppc: 848
read( 1%) -> (23/34) -> process(95% 95% 94% 95% 94% 95% 94% 95% 95% 94% 95%)
0:04:41 INF [osm_pass1] - nodes: [ 8.1B 25M/s ] 82G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 71/s ]
cpus: 7.6 gc: 1% heap: 7G/32G direct: 1.4G postGC: 832M hppc: 848
read( 1%) -> (23/34) -> process(68% 69% 67% 67% 68% 66% 68% 68% 67% 67% 68%)
0:04:46 INF [osm_pass1:process] - Finished nodes: 8,274,330,803 (28M/s) in 4m46s cpu:46m27s gc:4s avg:9.8
0:04:51 INF [osm_pass1] - nodes: [ 8.2B 14M/s ] 85G ways: [ 16M 1.6M/s ] rels: [ 0 0/s ] blocks: [ 26k 75/s ]
cpus: 8.7 gc: 3% heap: 4.7G/32G direct: 1.4G postGC: 895M hppc: 848
read( 1%) -> (23/34) -> process(75% 76% 73% 75% 75% 74% 74% 76% 76% 74% 78%)
0:05:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 68M 5.1M/s ] rels: [ 0 0/s ] blocks: [ 27k 101/s ]
cpus: 10 gc: 3% heap: 2.7G/32G direct: 1.4G postGC: 887M hppc: 848
read( 1%) -> (23/34) -> process(89% 89% 89% 89% 89% 89% 90% 90% 90% 89% 89%)
0:05:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 130M 6.2M/s ] rels: [ 0 0/s ] blocks: [ 28k 103/s ]
cpus: 10.9 gc: 3% heap: 3.3G/32G direct: 1.4G postGC: 895M hppc: 848
read( 1%) -> (23/34) -> process(96% 96% 97% 96% 96% 96% 96% 96% 96% 97% 97%)
0:05:21 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 195M 6.4M/s ] rels: [ 0 0/s ] blocks: [ 29k 100/s ]
cpus: 10.9 gc: 2% heap: 4.4G/32G direct: 1.4G postGC: 897M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 96% 97% 96% 96% 96% 97%)
0:05:31 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 259M 6.4M/s ] rels: [ 0 0/s ] blocks: [ 30k 103/s ]
cpus: 10.9 gc: 3% heap: 1.1G/32G direct: 1.4G postGC: 904M hppc: 848
read( 1%) -> (23/34) -> process(96% 96% 96% 96% 96% 96% 96% 96% 96% 97% 96%)
0:05:41 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 329M 6.9M/s ] rels: [ 0 0/s ] blocks: [ 31k 101/s ]
cpus: 10.9 gc: 2% heap: 4.6G/32G direct: 1.4G postGC: 861M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 96% 97% 96% 97% 97% 97% 97%)
0:05:51 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 399M 7M/s ] rels: [ 0 0/s ] blocks: [ 32k 102/s ]
cpus: 10.9 gc: 3% heap: 3.9G/32G direct: 1.4G postGC: 860M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 96% 97% 97% 96% 97% 97% 97% 97%)
0:06:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 473M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 33k 101/s ]
cpus: 10.9 gc: 2% heap: 2.2G/32G direct: 1.4G postGC: 878M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 96% 97% 96% 96% 97% 96% 96%)
0:06:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 547M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 34k 100/s ]
cpus: 10.9 gc: 3% heap: 914M/32G direct: 1.4G postGC: 866M hppc: 848
read( 1%) -> (23/34) -> process(97% 96% 96% 97% 95% 96% 97% 97% 97% 96% 97%)
0:06:21 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 619M 7.1M/s ] rels: [ 0 0/s ] blocks: [ 35k 101/s ]
cpus: 10.9 gc: 2% heap: 5.2G/32G direct: 1.4G postGC: 888M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 96% 97% 97% 97% 96% 96% 97% 97%)
0:06:31 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 691M 7.2M/s ] rels: [ 0 0/s ] blocks: [ 36k 101/s ]
cpus: 10.9 gc: 2% heap: 4.2G/32G direct: 1.4G postGC: 882M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 96% 95% 97% 97%)
0:06:41 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 766M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 37k 103/s ]
cpus: 10.9 gc: 2% heap: 4.4G/32G direct: 1.4G postGC: 875M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:06:51 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 841M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 38k 103/s ]
cpus: 10.9 gc: 2% heap: 5.4G/32G direct: 1.4G postGC: 880M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:07:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 915M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 39k 102/s ]
cpus: 10.9 gc: 2% heap: 872M/32G direct: 1.4G postGC: 857M hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 96% 97% 97% 97% 97% 96% 97% 97% 97%)
0:07:03 INF [osm_pass1:process] - Finished ways: 927,681,304 (6.7M/s) in 2m17s cpu:24m22s gc:3s avg:10.7
0:07:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 927M 1.1M/s ] rels: [ 8.8M 887k/s ] blocks: [ 40k 44/s ]
cpus: 5.8 gc: 1% heap: 3.2G/32G direct: 1.4G postGC: 915M hppc: 45M
read( 0%) -> (23/34) -> process(50% 49% 51% 49% 51% 51% 52% 51% 51% 54% 51%)
0:07:13 INF [osm_pass1:process] - Finished relations: 10,752,655 (1M/s) in 10s cpu:49s avg:4.9
0:07:13 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 927M 0/s ] rels: [ 10M 1.2M/s ] blocks: [ 40k 39/s ]
cpus: 4.7 gc: 1% heap: 3.1G/32G direct: 268M postGC: 931M hppc: 53M
read( -%) -> (0/34) -> process( -% -% -% -% -% -% -% -% -% -% -%)
0:07:13 DEB [osm_pass1] - Processed 40,252 blocks:
0:07:13 DEB [osm_pass1] - nodes: 8,274,330,803 (28M/s) in 4m46s cpu:46m27s gc:4s avg:9.8
0:07:13 DEB [osm_pass1] - ways: 927,681,304 (6.7M/s) in 2m17s cpu:24m22s gc:3s avg:10.7
0:07:13 DEB [osm_pass1] - relations: 10,752,655 (1M/s) in 10s cpu:49s avg:4.9
0:07:13 INF [osm_pass1] - Finished in 7m13s cpu:1h11m38s gc:8s avg:9.9
0:07:13 INF [osm_pass1] - read 1x(1% 5s sys:3s wait:6m36s)
0:07:13 INF [osm_pass1] - process 11x(88% 6m23s sys:11s block:6s)
0:07:13 INF [osm_pass2] -
0:07:13 INF [osm_pass2] - Starting...
0:07:23 INF [osm_pass2] - nodes: [ 224M 3% 22M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 1k 3% 104/s ]
cpus: 10.9 gc: 2% heap: 4.1G/32G direct: 16k postGC: 918M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(96% 96% 96% 96% 96% 95% 96% 97% 96% 96% 96%) -> (0/62k) -> write( 0%)
0:07:33 INF [osm_pass2] - nodes: [ 461M 6% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 2k 5% 95/s ]
cpus: 10.9 gc: 2% heap: 4.5G/32G direct: 16k postGC: 906M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (0/62k) -> write( 0%)
0:07:43 INF [osm_pass2] - nodes: [ 695M 8% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 3k 8% 104/s ]
cpus: 10.9 gc: 2% heap: 2.5G/32G direct: 16k postGC: 909M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97%) -> (0/62k) -> write( 0%)
0:07:53 INF [osm_pass2] - nodes: [ 929M 11% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 4k 10% 103/s ]
cpus: 10.9 gc: 2% heap: 5.6G/32G direct: 16k postGC: 898M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 98% 97% 98% 98% 97% 97% 97% 97% 97%) -> (0/62k) -> write( 0%)
0:08:03 INF [osm_pass2] - nodes: [ 1.1B 14% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 5k 13% 98/s ]
cpus: 10.9 gc: 2% heap: 6G/32G direct: 16k postGC: 901M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 98% 98% 97% 97% 98% 97% 97% 98% 98%) -> (0/62k) -> write( 0%)
0:08:13 INF [osm_pass2] - nodes: [ 1.4B 17% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 6k 15% 95/s ]
cpus: 10.9 gc: 2% heap: 2.2G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 97% 98% 97% 97% 98% 98% 97% 97% 97%) -> (0/62k) -> write( 0%)
0:08:23 INF [osm_pass2] - nodes: [ 1.6B 20% 25M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 6.9k 17% 92/s ]
cpus: 10.9 gc: 2% heap: 5.8G/32G direct: 16k postGC: 900M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 97% 97% 98% 98% 97% 98% 97% 98%) -> (0/62k) -> write( 0%)
0:08:33 INF [osm_pass2] - nodes: [ 1.9B 23% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 7.8k 20% 91/s ]
cpus: 10.9 gc: 2% heap: 3.7G/32G direct: 16k postGC: 910M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 97% 98% 97% 97% 98% 97% 97% 97% 97%) -> (0/62k) -> write( 0%)
0:08:43 INF [osm_pass2] - nodes: [ 2.1B 26% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 8.7k 22% 87/s ]
cpus: 10.9 gc: 2% heap: 3.7G/32G direct: 16k postGC: 910M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 97% 98% 97% 98% 97% 97% 97% 98% 97% 97%) -> (0/62k) -> write( 0%)
0:08:53 INF [osm_pass2] - nodes: [ 2.4B 29% 25M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 9.5k 24% 79/s ]
cpus: 10.9 gc: 2% heap: 5.8G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 97% 97% 98% 98% 97% 97% 98% 97% 98%) -> (0/62k) -> write( 0%)
0:09:03 INF [osm_pass2] - nodes: [ 2.6B 33% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 10k 26% 78/s ]
cpus: 10.9 gc: 2% heap: 1.6G/32G direct: 16k postGC: 903M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 97% 97% 98% 97% 98% 97% 98% 97% 97%) -> (0/62k) -> write( 0%)
0:09:13 INF [osm_pass2] - nodes: [ 2.9B 36% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 11k 28% 78/s ]
cpus: 10.9 gc: 2% heap: 3.5G/32G direct: 16k postGC: 907M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98%) -> (0/62k) -> write( 0%)
0:09:23 INF [osm_pass2] - nodes: [ 3.2B 39% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 11k 30% 77/s ]
cpus: 10.9 gc: 2% heap: 6G/32G direct: 16k postGC: 900M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:33 INF [osm_pass2] - nodes: [ 3.4B 42% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 12k 31% 76/s ]
cpus: 10.9 gc: 2% heap: 2.6G/32G direct: 16k postGC: 906M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 97% 98% 98% 97% 97% 98% 97%) -> (0/62k) -> write( 0%)
0:09:43 INF [osm_pass2] - nodes: [ 3.7B 45% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 13k 33% 75/s ]
cpus: 10.9 gc: 2% heap: 5.9G/32G direct: 16k postGC: 906M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:53 INF [osm_pass2] - nodes: [ 4B 49% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 14k 35% 76/s ]
cpus: 11 gc: 2% heap: 4G/32G direct: 16k postGC: 908M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:03 INF [osm_pass2] - nodes: [ 4.2B 52% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 14k 37% 76/s ]
cpus: 10.9 gc: 2% heap: 2.7G/32G direct: 16k postGC: 908M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:13 INF [osm_pass2] - nodes: [ 4.5B 55% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 15k 39% 76/s ]
cpus: 10.9 gc: 2% heap: 1G/32G direct: 16k postGC: 903M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:23 INF [osm_pass2] - nodes: [ 4.8B 58% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 16k 41% 76/s ]
cpus: 11 gc: 2% heap: 5.7G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:33 INF [osm_pass2] - nodes: [ 5B 62% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 17k 43% 76/s ]
cpus: 10.9 gc: 2% heap: 4.9G/32G direct: 16k postGC: 906M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:43 INF [osm_pass2] - nodes: [ 5.3B 65% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 18k 45% 76/s ]
cpus: 10.9 gc: 2% heap: 3.9G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:53 INF [osm_pass2] - nodes: [ 5.6B 68% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 18k 47% 76/s ]
cpus: 10.9 gc: 2% heap: 3.1G/32G direct: 16k postGC: 902M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:03 INF [osm_pass2] - nodes: [ 5.8B 71% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 19k 49% 75/s ]
cpus: 10.9 gc: 2% heap: 2.6G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:13 INF [osm_pass2] - nodes: [ 6.1B 75% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 20k 50% 75/s ]
cpus: 10.9 gc: 2% heap: 1.9G/32G direct: 16k postGC: 907M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:23 INF [osm_pass2] - nodes: [ 6.4B 78% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 21k 52% 74/s ]
cpus: 10.9 gc: 2% heap: 1G/32G direct: 16k postGC: 903M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:33 INF [osm_pass2] - nodes: [ 6.7B 81% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 21k 54% 74/s ]
cpus: 10.9 gc: 2% heap: 1G/32G direct: 16k postGC: 906M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:43 INF [osm_pass2] - nodes: [ 6.9B 84% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 22k 56% 75/s ]
cpus: 11 gc: 2% heap: 5.4G/32G direct: 16k postGC: 904M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:53 INF [osm_pass2] - nodes: [ 7.2B 88% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 23k 58% 74/s ]
cpus: 10.9 gc: 2% heap: 4.9G/32G direct: 16k postGC: 902M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:03 INF [osm_pass2] - nodes: [ 7.5B 91% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 24k 60% 74/s ]
cpus: 11 gc: 2% heap: 4.9G/32G direct: 16k postGC: 903M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:13 INF [osm_pass2] - nodes: [ 7.7B 94% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 24k 62% 74/s ]
cpus: 10.9 gc: 2% heap: 4.1G/32G direct: 16k postGC: 905M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:23 INF [osm_pass2] - nodes: [ 8B 97% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 25k 63% 74/s ]
cpus: 10.9 gc: 2% heap: 4G/32G direct: 16k postGC: 905M relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:31 DEB [osm_pass2:process] - Sorting long long multimap...
0:12:31 DEB [osm_pass2:process] - Sorted long long multimap 0s cpu:0s avg:0
0:12:31 INF [osm_pass2:process] - Finished nodes: 8,274,330,803 (25M/s) in 5m19s cpu:57m58s gc:6s avg:10.9
0:12:33 INF [osm_pass2] - nodes: [ 8.2B 100% 21M/s ] 85G ways: [ 86k 0% 8.6k/s ] rels: [ 0 0% 0/s ] features: [ 457k 45k/s ] 2G blocks: [ 26k 65% 60/s ]
cpus: 10.6 gc: 2% heap: 3.2G/32G direct: 466k postGC: 990M relInfo: 53M mpGeoms: 4M
read( 0%) -> (11/22) -> process(91% 89% 90% 90% 87% 91% 89% 89% 89% 90% 89%) -> (5.7k/62k) -> write( 2%)
0:12:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 1M 0% 100k/s ] rels: [ 0 0% 0/s ] features: [ 6.3M 588k/s ] 2G blocks: [ 26k 65% 2/s ]
cpus: 6.4 gc: 2% heap: 3G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 29M
read( 0%) -> (11/22) -> process(48% 47% 45% 47% 44% 44% 42% 43% 44% 46% 45%) -> (6.4k/62k) -> write(16%)
0:12:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 3M 0% 192k/s ] rels: [ 0 0% 0/s ] features: [ 17M 1M/s ] 3.1G blocks: [ 26k 65% 4/s ]
cpus: 6.9 gc: 2% heap: 5.7G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 38M
read( 0%) -> (11/22) -> process(50% 60% 60% 58% 52% 64% 63% 56% 55% 56% 58%) -> (4.8k/62k) -> write(28%)
0:13:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 5.2M 1% 217k/s ] rels: [ 0 0% 0/s ] features: [ 28M 1.1M/s ] 3.1G blocks: [ 26k 65% 4/s ]
cpus: 7.7 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 53M
read( 0%) -> (11/22) -> process(64% 64% 65% 62% 61% 66% 63% 64% 66% 64% 66%) -> (5.5k/62k) -> write(30%)
0:13:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 7.5M 1% 238k/s ] rels: [ 0 0% 0/s ] features: [ 40M 1.2M/s ] 4.3G blocks: [ 26k 65% 5/s ]
cpus: 8.1 gc: 3% heap: 6.1G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 82M
read( 0%) -> (11/22) -> process(67% 67% 70% 70% 65% 67% 68% 67% 67% 66% 65%) -> (6.1k/62k) -> write(35%)
0:13:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 10M 1% 251k/s ] rels: [ 0 0% 0/s ] features: [ 53M 1.2M/s ] 5.5G blocks: [ 26k 65% 5/s ]
cpus: 8.3 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 90M
read( 0%) -> (11/22) -> process(70% 69% 68% 72% 70% 72% 70% 66% 69% 72% 68%) -> (4.1k/62k) -> write(36%)
0:13:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 12M 1% 247k/s ] rels: [ 0 0% 0/s ] features: [ 65M 1.2M/s ] 6.7G blocks: [ 26k 66% 5/s ]
cpus: 8.3 gc: 3% heap: 5.1G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 102M
read( 0%) -> (11/22) -> process(69% 69% 70% 69% 71% 69% 70% 68% 67% 70% 68%) -> (7.2k/62k) -> write(35%)
0:13:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 13M 2% 141k/s ] rels: [ 0 0% 0/s ] features: [ 73M 753k/s ] 6.7G blocks: [ 26k 66% 3/s ]
cpus: 6.8 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 161M
read( 0%) -> (11/22) -> process(58% 57% 59% 57% 56% 56% 55% 56% 56% 55% 54%) -> (6.6k/62k) -> write(20%)
0:13:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 15M 2% 118k/s ] rels: [ 0 0% 0/s ] features: [ 79M 630k/s ] 7.9G blocks: [ 26k 66% 2/s ]
cpus: 6.5 gc: 2% heap: 3G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 189M
read( 0%) -> (11/22) -> process(53% 52% 56% 52% 54% 55% 57% 63% 54% 52% 55%) -> (6.2k/62k) -> write(17%)
0:14:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 16M 2% 131k/s ] rels: [ 0 0% 0/s ] features: [ 86M 667k/s ] 7.9G blocks: [ 26k 66% 2/s ]
cpus: 6.8 gc: 2% heap: 5.2G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 218M
read( 0%) -> (11/22) -> process(58% 59% 59% 58% 56% 56% 57% 57% 64% 56% 58%) -> (4.7k/62k) -> write(18%)
0:14:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 18M 2% 170k/s ] rels: [ 0 0% 0/s ] features: [ 93M 713k/s ] 9.1G blocks: [ 26k 66% 3/s ]
cpus: 8 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 254M
read( 0%) -> (11/22) -> process(69% 67% 70% 73% 66% 70% 65% 71% 67% 67% 71%) -> (5.3k/62k) -> write(20%)
0:14:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 19M 2% 145k/s ] rels: [ 0 0% 0/s ] features: [ 100M 733k/s ] 9.1G blocks: [ 26k 66% 3/s ]
cpus: 7.8 gc: 2% heap: 5.9G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 281M
read( 0%) -> (11/22) -> process(66% 62% 67% 65% 64% 67% 70% 66% 68% 68% 66%) -> (7k/62k) -> write(20%)
0:14:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 21M 2% 183k/s ] rels: [ 0 0% 0/s ] features: [ 108M 779k/s ] 9.1G blocks: [ 26k 66% 3/s ]
cpus: 8.5 gc: 3% heap: 3.8G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 354M
read( 0%) -> (11/22) -> process(76% 78% 73% 71% 72% 72% 73% 69% 73% 69% 74%) -> (5.8k/62k) -> write(22%)
0:14:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 23M 3% 221k/s ] rels: [ 0 0% 0/s ] features: [ 116M 769k/s ] 10G blocks: [ 26k 66% 4/s ]
cpus: 8.7 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 390M
read( 0%) -> (11/22) -> process(74% 75% 77% 74% 77% 71% 76% 75% 74% 76% 73%) -> (6.8k/62k) -> write(22%)
0:14:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 25M 3% 179k/s ] rels: [ 0 0% 0/s ] features: [ 122M 652k/s ] 10G blocks: [ 26k 66% 4/s ]
cpus: 8.1 gc: 3% heap: 5G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 441M
read( 0%) -> (11/22) -> process(69% 69% 70% 69% 72% 69% 67% 71% 70% 69% 68%) -> (6k/62k) -> write(19%)
0:15:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 26M 3% 107k/s ] rels: [ 0 0% 0/s ] features: [ 126M 381k/s ] 11G blocks: [ 26k 66% 2/s ]
cpus: 9.7 gc: 3% heap: 4.2G/32G direct: 566k postGC: 1G relInfo: 53M mpGeoms: 488M
read( 0%) -> (11/22) -> process(80% 87% 88% 82% 87% 82% 81% 81% 87% 88% 85%) -> (4.7k/62k) -> write(13%)
0:15:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 27M 3% 129k/s ] rels: [ 0 0% 0/s ] features: [ 131M 469k/s ] 11G blocks: [ 26k 66% 2/s ]
cpus: 8.8 gc: 3% heap: 1.9G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 542M
read( 0%) -> (11/22) -> process(71% 81% 78% 72% 73% 74% 69% 72% 84% 83% 74%) -> (7.4k/62k) -> write(14%)
0:15:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 29M 3% 207k/s ] rels: [ 0 0% 0/s ] features: [ 137M 653k/s ] 11G blocks: [ 26k 67% 4/s ]
cpus: 9.5 gc: 3% heap: 5.8G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 596M
read( 0%) -> (11/22) -> process(82% 80% 91% 79% 80% 79% 88% 81% 79% 82% 79%) -> (6.7k/62k) -> write(19%)
0:15:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 31M 3% 191k/s ] rels: [ 0 0% 0/s ] features: [ 144M 617k/s ] 12G blocks: [ 26k 67% 3/s ]
cpus: 8.7 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 639M
read( 0%) -> (11/22) -> process(73% 73% 77% 74% 78% 75% 73% 75% 73% 75% 76%) -> (7.3k/62k) -> write(18%)
0:15:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 34M 4% 229k/s ] rels: [ 0 0% 0/s ] features: [ 150M 674k/s ] 12G blocks: [ 26k 67% 4/s ]
cpus: 9.8 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 676M
read( 0%) -> (11/22) -> process(83% 85% 84% 82% 83% 84% 84% 86% 85% 86% 87%) -> (6k/62k) -> write(20%)
0:15:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 36M 4% 220k/s ] rels: [ 0 0% 0/s ] features: [ 156M 604k/s ] 12G blocks: [ 26k 67% 5/s ]
cpus: 9.9 gc: 3% heap: 1.4G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 717M
read( 0%) -> (11/22) -> process(87% 84% 87% 85% 86% 83% 86% 84% 86% 87% 87%) -> (6.4k/62k) -> write(18%)
0:16:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 39M 4% 283k/s ] rels: [ 0 0% 0/s ] features: [ 162M 537k/s ] 13G blocks: [ 26k 67% 4/s ]
cpus: 9.7 gc: 2% heap: 6.1G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 746M
read( 0%) -> (11/22) -> process(85% 84% 86% 85% 82% 84% 85% 83% 86% 82% 85%) -> (7k/62k) -> write(16%)
0:16:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 42M 5% 338k/s ] rels: [ 0 0% 0/s ] features: [ 167M 564k/s ] 13G blocks: [ 27k 67% 5/s ]
cpus: 10.1 gc: 3% heap: 1.7G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 769M
read( 0%) -> (11/22) -> process(88% 87% 88% 89% 89% 89% 88% 87% 88% 89% 89%) -> (7.1k/62k) -> write(16%)
0:16:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 45M 5% 299k/s ] rels: [ 0 0% 0/s ] features: [ 173M 575k/s ] 13G blocks: [ 27k 67% 4/s ]
cpus: 10.2 gc: 3% heap: 2.2G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 801M
read( 0%) -> (11/22) -> process(90% 89% 88% 89% 89% 89% 89% 88% 89% 89% 90%) -> (5.3k/62k) -> write(16%)
0:16:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 48M 5% 291k/s ] rels: [ 0 0% 0/s ] features: [ 178M 530k/s ] 14G blocks: [ 27k 67% 5/s ]
cpus: 9.5 gc: 2% heap: 3G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 834M
read( 0%) -> (11/22) -> process(83% 84% 81% 83% 82% 85% 84% 80% 81% 83% 85%) -> (4.8k/62k) -> write(15%)
0:16:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 51M 6% 288k/s ] rels: [ 0 0% 0/s ] features: [ 184M 577k/s ] 14G blocks: [ 27k 67% 5/s ]
cpus: 10.4 gc: 3% heap: 4.4G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 873M
read( 0%) -> (11/22) -> process(91% 92% 91% 89% 89% 91% 90% 91% 91% 89% 90%) -> (6k/62k) -> write(17%)
0:16:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 54M 6% 298k/s ] rels: [ 0 0% 0/s ] features: [ 190M 600k/s ] 14G blocks: [ 27k 68% 5/s ]
cpus: 10.3 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 903M
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 90% 89% 89% 88% 90% 89% 91%) -> (5.3k/62k) -> write(17%)
0:17:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 56M 6% 200k/s ] rels: [ 0 0% 0/s ] features: [ 195M 429k/s ] 15G blocks: [ 27k 68% 3/s ]
cpus: 9.6 gc: 3% heap: 1.8G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 965M
read( 0%) -> (11/22) -> process(83% 83% 84% 82% 85% 85% 83% 82% 82% 83% 84%) -> (7.4k/62k) -> write(13%)
0:17:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 59M 6% 264k/s ] rels: [ 0 0% 0/s ] features: [ 200M 553k/s ] 15G blocks: [ 27k 68% 5/s ]
cpus: 10.4 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(91% 90% 90% 90% 92% 91% 89% 93% 90% 89% 90%) -> (5.4k/62k) -> write(16%)
0:17:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 61M 7% 251k/s ] rels: [ 0 0% 0/s ] features: [ 205M 534k/s ] 15G blocks: [ 27k 68% 4/s ]
cpus: 10.4 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(90% 90% 89% 91% 91% 91% 90% 91% 91% 89% 91%) -> (6.6k/62k) -> write(16%)
0:17:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 63M 7% 192k/s ] rels: [ 0 0% 0/s ] features: [ 210M 454k/s ] 17G blocks: [ 27k 68% 3/s ]
cpus: 9.6 gc: 2% heap: 5.7G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(82% 88% 84% 85% 85% 83% 84% 81% 83% 83% 84%) -> (5.7k/62k) -> write(14%)
0:17:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 66M 7% 265k/s ] rels: [ 0 0% 0/s ] features: [ 216M 626k/s ] 17G blocks: [ 27k 68% 5/s ]
cpus: 10.4 gc: 3% heap: 4.2G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(91% 91% 90% 92% 90% 91% 90% 91% 90% 91% 90%) -> (6.6k/62k) -> write(18%)
0:17:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 68M 7% 266k/s ] rels: [ 0 0% 0/s ] features: [ 222M 595k/s ] 17G blocks: [ 27k 68% 4/s ]
cpus: 10.4 gc: 3% heap: 1.9G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(90% 90% 91% 91% 91% 91% 91% 90% 91% 92% 92%) -> (6.7k/62k) -> write(17%)
0:18:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 71M 8% 230k/s ] rels: [ 0 0% 0/s ] features: [ 228M 557k/s ] 18G blocks: [ 27k 68% 4/s ]
cpus: 10 gc: 2% heap: 5.6G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(87% 86% 86% 87% 89% 86% 87% 86% 89% 86% 87%) -> (7.7k/62k) -> write(17%)
0:18:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 73M 8% 271k/s ] rels: [ 0 0% 0/s ] features: [ 235M 729k/s ] 18G blocks: [ 27k 69% 4/s ]
cpus: 10.2 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 88% 88% 89% 89% 86% 89% 89%) -> (6.7k/62k) -> write(21%)
0:18:23 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 76M 8% 304k/s ] rels: [ 0 0% 0/s ] features: [ 243M 804k/s ] 19G blocks: [ 27k 69% 5/s ]
cpus: 10.6 gc: 3% heap: 1.8G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(92% 91% 91% 92% 92% 91% 92% 92% 92% 92% 91%) -> (5.4k/62k) -> write(24%)
0:18:33 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 79M 9% 295k/s ] rels: [ 0 0% 0/s ] features: [ 252M 863k/s ] 19G blocks: [ 27k 69% 5/s ]
cpus: 10.5 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(91% 91% 91% 89% 91% 91% 91% 92% 91% 90% 91%) -> (5.6k/62k) -> write(25%)
0:18:43 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 82M 9% 267k/s ] rels: [ 0 0% 0/s ] features: [ 259M 750k/s ] 19G blocks: [ 27k 69% 4/s ]
cpus: 9.7 gc: 3% heap: 2.8G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(85% 84% 84% 83% 83% 85% 83% 82% 84% 81% 83%) -> (5.4k/62k) -> write(22%)
0:18:53 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 85M 9% 303k/s ] rels: [ 0 0% 0/s ] features: [ 268M 823k/s ] 20G blocks: [ 27k 69% 4/s ]
cpus: 10.6 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(92% 92% 91% 92% 91% 92% 92% 92% 92% 92% 92%) -> (6.5k/62k) -> write(24%)
0:19:03 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 88M 10% 281k/s ] rels: [ 0 0% 0/s ] features: [ 275M 763k/s ] 20G blocks: [ 27k 69% 4/s ]
cpus: 9.6 gc: 2% heap: 5.6G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(84% 83% 83% 83% 83% 84% 84% 85% 83% 83% 82%) -> (5.3k/62k) -> write(22%)
0:19:13 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 91M 10% 306k/s ] rels: [ 0 0% 0/s ] features: [ 283M 749k/s ] 21G blocks: [ 27k 69% 5/s ]
cpus: 10.6 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(92% 92% 91% 91% 91% 92% 92% 92% 92% 92% 91%) -> (5.7k/62k) -> write(22%)
0:19:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 93M 10% 247k/s ] rels: [ 0 0% 0/s ] features: [ 289M 631k/s ] 21G blocks: [ 27k 69% 3/s ]
cpus: 9.6 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(85% 82% 83% 85% 84% 83% 84% 83% 83% 86% 83%) -> (4.3k/62k) -> write(18%)
0:19:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 96M 10% 246k/s ] rels: [ 0 0% 0/s ] features: [ 295M 619k/s ] 22G blocks: [ 27k 69% 4/s ]
cpus: 10.6 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(93% 92% 91% 92% 92% 91% 92% 92% 92% 92% 93%) -> (5.7k/62k) -> write(19%)
0:19:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 98M 11% 255k/s ] rels: [ 0 0% 0/s ] features: [ 301M 589k/s ] 22G blocks: [ 28k 70% 4/s ]
cpus: 9.9 gc: 3% heap: 4.5G/32G direct: 566k postGC: 1.1G relInfo: 53M mpGeoms: 1.5G
read( 0%) -> (11/22) -> process(86% 87% 85% 84% 87% 84% 87% 85% 87% 87% 86%) -> (3.3k/62k) -> write(17%)
0:19:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 101M 11% 277k/s ] rels: [ 0 0% 0/s ] features: [ 308M 671k/s ] 22G blocks: [ 28k 70% 4/s ]
cpus: 10.7 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.5G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 93% 92% 92% 93% 93% 93%) -> (6.6k/62k) -> write(20%)
0:20:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 104M 11% 280k/s ] rels: [ 0 0% 0/s ] features: [ 315M 663k/s ] 23G blocks: [ 28k 70% 4/s ]
cpus: 10.4 gc: 3% heap: 2.9G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(89% 89% 89% 91% 89% 90% 90% 90% 90% 91% 90%) -> (6k/62k) -> write(20%)
0:20:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 107M 12% 287k/s ] rels: [ 0 0% 0/s ] features: [ 321M 675k/s ] 23G blocks: [ 28k 70% 4/s ]
cpus: 10 gc: 3% heap: 3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(86% 87% 87% 86% 88% 86% 89% 86% 86% 88% 87%) -> (6.6k/62k) -> write(20%)
0:20:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 110M 12% 320k/s ] rels: [ 0 0% 0/s ] features: [ 329M 784k/s ] 24G blocks: [ 28k 70% 5/s ]
cpus: 10.7 gc: 3% heap: 1.9G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(92% 93% 93% 93% 93% 93% 92% 92% 91% 93% 92%) -> (4.8k/62k) -> write(23%)
0:20:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 113M 12% 270k/s ] rels: [ 0 0% 0/s ] features: [ 336M 681k/s ] 24G blocks: [ 28k 70% 4/s ]
cpus: 9.7 gc: 3% heap: 4.5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(83% 84% 84% 87% 84% 83% 83% 84% 83% 84% 86%) -> (8.8k/62k) -> write(20%)
0:20:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 116M 13% 317k/s ] rels: [ 0 0% 0/s ] features: [ 343M 749k/s ] 24G blocks: [ 28k 70% 5/s ]
cpus: 10.7 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(93% 93% 92% 92% 93% 93% 93% 93% 92% 92% 93%) -> (4.6k/62k) -> write(22%)
0:20:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 119M 13% 320k/s ] rels: [ 0 0% 0/s ] features: [ 351M 768k/s ] 26G blocks: [ 28k 70% 5/s ]
cpus: 10.7 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(93% 93% 92% 94% 93% 92% 93% 93% 93% 91% 93%) -> (4.7k/62k) -> write(23%)
0:21:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 122M 13% 284k/s ] rels: [ 0 0% 0/s ] features: [ 358M 731k/s ] 26G blocks: [ 28k 71% 4/s ]
cpus: 9.3 gc: 3% heap: 1.2G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(79% 82% 80% 82% 79% 79% 79% 82% 82% 82% 80%) -> (5.8k/62k) -> write(21%)
0:21:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 125M 14% 297k/s ] rels: [ 0 0% 0/s ] features: [ 367M 835k/s ] 27G blocks: [ 28k 71% 4/s ]
cpus: 10.7 gc: 3% heap: 1.6G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(93% 93% 92% 92% 91% 93% 92% 93% 93% 91% 93%) -> (7.1k/62k) -> write(25%)
0:21:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 128M 14% 265k/s ] rels: [ 0 0% 0/s ] features: [ 374M 670k/s ] 27G blocks: [ 28k 71% 4/s ]
cpus: 9.7 gc: 3% heap: 5.8G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(85% 84% 84% 83% 85% 84% 84% 84% 84% 84% 85%) -> (5.6k/62k) -> write(20%)
0:21:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 131M 14% 289k/s ] rels: [ 0 0% 0/s ] features: [ 381M 728k/s ] 28G blocks: [ 28k 71% 4/s ]
cpus: 10.7 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(92% 93% 93% 93% 92% 92% 93% 92% 93% 92% 92%) -> (4.8k/62k) -> write(22%)
0:21:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 133M 14% 254k/s ] rels: [ 0 0% 0/s ] features: [ 387M 649k/s ] 28G blocks: [ 28k 71% 3/s ]
cpus: 9.8 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(86% 83% 86% 85% 84% 88% 86% 84% 85% 86% 86%) -> (3.4k/62k) -> write(19%)
0:21:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 136M 15% 260k/s ] rels: [ 0 0% 0/s ] features: [ 394M 640k/s ] 28G blocks: [ 28k 71% 4/s ]
cpus: 10.8 gc: 3% heap: 5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 94% 94% 93% 94% 94% 94% 94%) -> (5.8k/62k) -> write(19%)
0:22:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 139M 15% 288k/s ] rels: [ 0 0% 0/s ] features: [ 401M 697k/s ] 29G blocks: [ 28k 71% 4/s ]
cpus: 10.8 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(94% 93% 93% 92% 93% 93% 94% 94% 94% 93% 93%) -> (13k/62k) -> write(21%)
0:22:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 141M 15% 259k/s ] rels: [ 0 0% 0/s ] features: [ 407M 611k/s ] 29G blocks: [ 28k 71% 4/s ]
cpus: 9.7 gc: 3% heap: 1.5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(84% 84% 84% 85% 84% 85% 85% 83% 85% 84% 83%) -> (5.6k/62k) -> write(18%)
0:22:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 144M 16% 301k/s ] rels: [ 0 0% 0/s ] features: [ 414M 758k/s ] 30G blocks: [ 28k 71% 4/s ]
cpus: 10.8 gc: 3% heap: 3.1G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(94% 93% 90% 94% 94% 93% 93% 93% 94% 94% 93%) -> (8.9k/62k) -> write(23%)
0:22:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 147M 16% 276k/s ] rels: [ 0 0% 0/s ] features: [ 421M 667k/s ] 30G blocks: [ 28k 72% 4/s ]
cpus: 10 gc: 3% heap: 5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(88% 88% 86% 87% 87% 86% 84% 86% 86% 88% 85%) -> (7.6k/62k) -> write(20%)
0:22:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 150M 16% 285k/s ] rels: [ 0 0% 0/s ] features: [ 428M 679k/s ] 30G blocks: [ 28k 72% 4/s ]
cpus: 10.6 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(92% 92% 92% 92% 92% 92% 91% 92% 90% 92% 92%) -> (8.3k/62k) -> write(20%)
0:22:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 153M 17% 278k/s ] rels: [ 0 0% 0/s ] features: [ 434M 643k/s ] 31G blocks: [ 28k 72% 3/s ]
cpus: 10.1 gc: 3% heap: 6.2G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(86% 87% 86% 87% 85% 87% 86% 88% 86% 87% 86%) -> (5k/62k) -> write(19%)
0:23:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 156M 17% 321k/s ] rels: [ 0 0% 0/s ] features: [ 441M 617k/s ] 31G blocks: [ 28k 72% 4/s ]
cpus: 10.5 gc: 3% heap: 2.2G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(91% 91% 92% 92% 92% 92% 90% 93% 91% 92% 92%) -> (7.7k/62k) -> write(18%)
0:23:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 159M 17% 320k/s ] rels: [ 0 0% 0/s ] features: [ 447M 607k/s ] 31G blocks: [ 28k 72% 4/s ]
cpus: 10.7 gc: 3% heap: 3.1G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 94% 93% 93% 93% 93% 93% 93%) -> (6.4k/62k) -> write(17%)
0:23:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 162M 18% 288k/s ] rels: [ 0 0% 0/s ] features: [ 453M 650k/s ] 32G blocks: [ 29k 72% 4/s ]
cpus: 9.9 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(87% 86% 85% 85% 86% 86% 85% 86% 86% 87% 84%) -> (7.1k/62k) -> write(20%)
0:23:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 165M 18% 294k/s ] rels: [ 0 0% 0/s ] features: [ 460M 679k/s ] 32G blocks: [ 29k 72% 4/s ]
cpus: 10.8 gc: 3% heap: 4G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(93% 93% 94% 94% 94% 94% 93% 93% 93% 93% 92%) -> (7.2k/62k) -> write(20%)
0:23:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 168M 18% 307k/s ] rels: [ 0 0% 0/s ] features: [ 468M 748k/s ] 33G blocks: [ 29k 72% 4/s ]
cpus: 10.5 gc: 3% heap: 3.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(91% 91% 90% 91% 92% 92% 91% 91% 91% 91% 92%) -> (5.7k/62k) -> write(23%)
0:23:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 171M 18% 286k/s ] rels: [ 0 0% 0/s ] features: [ 474M 661k/s ] 33G blocks: [ 29k 72% 4/s ]
cpus: 10 gc: 3% heap: 4.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(85% 86% 85% 87% 86% 86% 86% 86% 86% 89% 87%) -> (6.5k/62k) -> write(19%)
0:24:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 174M 19% 317k/s ] rels: [ 0 0% 0/s ] features: [ 481M 703k/s ] 34G blocks: [ 29k 73% 4/s ]
cpus: 10.7 gc: 3% heap: 4.8G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.4G
read( 0%) -> (11/22) -> process(93% 94% 93% 93% 94% 94% 93% 93% 94% 92% 93%) -> (6.7k/62k) -> write(22%)
0:24:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 177M 19% 286k/s ] rels: [ 0 0% 0/s ] features: [ 487M 606k/s ] 34G blocks: [ 29k 73% 4/s ]
cpus: 10 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.4G
read( 0%) -> (11/22) -> process(87% 86% 85% 86% 87% 87% 86% 86% 86% 87% 87%) -> (5.7k/62k) -> write(18%)
0:24:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 180M 19% 331k/s ] rels: [ 0 0% 0/s ] features: [ 494M 712k/s ] 34G blocks: [ 29k 73% 5/s ]
cpus: 10.8 gc: 3% heap: 5.2G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.4G
read( 0%) -> (11/22) -> process(93% 93% 92% 93% 93% 94% 94% 94% 94% 94% 93%) -> (5.3k/62k) -> write(21%)
0:24:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 183M 20% 317k/s ] rels: [ 0 0% 0/s ] features: [ 501M 661k/s ] 36G blocks: [ 29k 73% 4/s ]
cpus: 10.3 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(88% 90% 89% 89% 90% 89% 89% 90% 88% 90% 90%) -> (5.6k/62k) -> write(20%)
0:24:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 187M 20% 332k/s ] rels: [ 0 0% 0/s ] features: [ 507M 613k/s ] 36G blocks: [ 29k 73% 5/s ]
cpus: 10.4 gc: 3% heap: 2.8G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(90% 91% 90% 91% 90% 90% 90% 90% 89% 89% 90%) -> (7.6k/62k) -> write(18%)
0:24:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 190M 21% 322k/s ] rels: [ 0 0% 0/s ] features: [ 514M 659k/s ] 36G blocks: [ 29k 73% 4/s ]
cpus: 10.6 gc: 3% heap: 3.1G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(92% 91% 92% 92% 92% 93% 91% 92% 92% 91% 93%) -> (6.7k/62k) -> write(19%)
0:25:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 193M 21% 308k/s ] rels: [ 0 0% 0/s ] features: [ 521M 701k/s ] 37G blocks: [ 29k 73% 4/s ]
cpus: 10 gc: 3% heap: 4.5G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(86% 86% 87% 87% 86% 86% 87% 86% 87% 87% 88%) -> (6.5k/62k) -> write(21%)
0:25:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 196M 21% 285k/s ] rels: [ 0 0% 0/s ] features: [ 527M 607k/s ] 37G blocks: [ 29k 73% 4/s ]
cpus: 10.7 gc: 3% heap: 1.4G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.6G
read( 0%) -> (11/22) -> process(94% 93% 94% 93% 92% 92% 92% 94% 93% 94% 94%) -> (6.6k/62k) -> write(18%)
0:25:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 199M 21% 299k/s ] rels: [ 0 0% 0/s ] features: [ 533M 615k/s ] 38G blocks: [ 29k 74% 4/s ]
cpus: 10.5 gc: 3% heap: 2.8G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 2.6G
read( 0%) -> (11/22) -> process(92% 91% 91% 91% 92% 91% 92% 92% 92% 91% 92%) -> (6.2k/62k) -> write(19%)
0:25:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 202M 22% 308k/s ] rels: [ 0 0% 0/s ] features: [ 538M 542k/s ] 38G blocks: [ 29k 74% 5/s ]
cpus: 9.8 gc: 3% heap: 4G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(86% 86% 86% 85% 85% 85% 84% 84% 86% 85% 85%) -> (6.8k/62k) -> write(15%)
0:25:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 206M 22% 349k/s ] rels: [ 0 0% 0/s ] features: [ 544M 560k/s ] 38G blocks: [ 29k 74% 5/s ]
cpus: 10.4 gc: 3% heap: 4G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(92% 90% 90% 90% 91% 91% 90% 91% 90% 89% 89%) -> (3.8k/62k) -> write(16%)
0:25:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 209M 23% 333k/s ] rels: [ 0 0% 0/s ] features: [ 550M 546k/s ] 38G blocks: [ 29k 74% 5/s ]
cpus: 9.9 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(87% 86% 86% 87% 85% 86% 87% 86% 85% 86% 85%) -> (5.4k/62k) -> write(16%)
0:26:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 213M 23% 365k/s ] rels: [ 0 0% 0/s ] features: [ 556M 608k/s ] 39G blocks: [ 29k 74% 6/s ]
cpus: 10.8 gc: 3% heap: 4.4G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(94% 93% 94% 92% 94% 94% 93% 92% 94% 91% 94%) -> (6.7k/62k) -> write(17%)
0:26:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 216M 23% 353k/s ] rels: [ 0 0% 0/s ] features: [ 562M 597k/s ] 39G blocks: [ 29k 74% 5/s ]
cpus: 10.8 gc: 3% heap: 6.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(92% 94% 93% 94% 93% 94% 94% 93% 93% 93% 94%) -> (5.2k/62k) -> write(17%)
0:26:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 219M 24% 341k/s ] rels: [ 0 0% 0/s ] features: [ 568M 599k/s ] 39G blocks: [ 29k 74% 5/s ]
cpus: 10.7 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 93% 92% 92% 93% 94% 94%) -> (6.2k/62k) -> write(17%)
0:26:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 223M 24% 314k/s ] rels: [ 0 0% 0/s ] features: [ 574M 613k/s ] 40G blocks: [ 29k 75% 5/s ]
cpus: 9.9 gc: 3% heap: 3.6G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(86% 86% 86% 86% 85% 87% 87% 86% 86% 86% 86%) -> (5.3k/62k) -> write(18%)
0:26:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 226M 24% 327k/s ] rels: [ 0 0% 0/s ] features: [ 580M 668k/s ] 40G blocks: [ 30k 75% 5/s ]
cpus: 10.8 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(94% 94% 93% 94% 93% 94% 94% 94% 94% 93% 93%) -> (6.5k/62k) -> write(19%)
0:26:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 229M 25% 339k/s ] rels: [ 0 0% 0/s ] features: [ 587M 629k/s ] 41G blocks: [ 30k 75% 5/s ]
cpus: 10.7 gc: 3% heap: 5.8G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 92%) -> (6.4k/62k) -> write(19%)
0:27:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 233M 25% 321k/s ] rels: [ 0 0% 0/s ] features: [ 593M 619k/s ] 41G blocks: [ 30k 75% 5/s ]
cpus: 10 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(87% 87% 86% 87% 88% 86% 89% 87% 86% 87% 85%) -> (8.1k/62k) -> write(18%)
0:27:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 236M 25% 331k/s ] rels: [ 0 0% 0/s ] features: [ 600M 695k/s ] 41G blocks: [ 30k 75% 5/s ]
cpus: 10.7 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.1G
read( 0%) -> (11/22) -> process(93% 92% 93% 93% 93% 93% 94% 94% 94% 94% 94%) -> (5.7k/62k) -> write(20%)
0:27:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 239M 26% 328k/s ] rels: [ 0 0% 0/s ] features: [ 607M 665k/s ] 42G blocks: [ 30k 75% 4/s ]
cpus: 10.7 gc: 3% heap: 5.1G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.1G
read( 0%) -> (11/22) -> process(93% 94% 93% 93% 93% 93% 94% 93% 93% 94% 93%) -> (2.8k/62k) -> write(20%)
0:27:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 242M 26% 307k/s ] rels: [ 0 0% 0/s ] features: [ 613M 643k/s ] 42G blocks: [ 30k 75% 4/s ]
cpus: 10 gc: 3% heap: 1.4G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.2G
read( 0%) -> (11/22) -> process(87% 86% 88% 84% 86% 88% 86% 87% 87% 87% 87%) -> (5.5k/62k) -> write(19%)
0:27:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 246M 27% 337k/s ] rels: [ 0 0% 0/s ] features: [ 620M 721k/s ] 43G blocks: [ 30k 75% 5/s ]
cpus: 10.9 gc: 3% heap: 3.8G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.2G
read( 0%) -> (11/22) -> process(95% 94% 94% 94% 94% 95% 94% 94% 94% 94% 94%) -> (5.7k/62k) -> write(22%)
0:27:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 249M 27% 300k/s ] rels: [ 0 0% 0/s ] features: [ 627M 646k/s ] 43G blocks: [ 30k 76% 4/s ]
cpus: 9.9 gc: 3% heap: 5.7G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.2G
read( 0%) -> (11/22) -> process(84% 85% 85% 85% 85% 84% 84% 86% 84% 85% 85%) -> (6.6k/62k) -> write(18%)
0:28:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 252M 27% 346k/s ] rels: [ 0 0% 0/s ] features: [ 633M 666k/s ] 43G blocks: [ 30k 76% 5/s ]
cpus: 10.3 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 3.3G
read( 0%) -> (11/22) -> process(90% 90% 91% 91% 90% 91% 91% 91% 92% 92% 92%) -> (4.7k/62k) -> write(19%)
0:28:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 255M 28% 332k/s ] rels: [ 0 0% 0/s ] features: [ 640M 631k/s ] 44G blocks: [ 30k 76% 5/s ]
cpus: 10.5 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.3G
read( 0%) -> (11/22) -> process(92% 91% 90% 92% 90% 91% 90% 91% 91% 90% 91%) -> (6.2k/62k) -> write(19%)
0:28:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 259M 28% 323k/s ] rels: [ 0 0% 0/s ] features: [ 646M 624k/s ] 44G blocks: [ 30k 76% 5/s ]
cpus: 10.1 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.4G
read( 0%) -> (11/22) -> process(87% 86% 88% 88% 87% 87% 88% 88% 87% 88% 88%) -> (5.5k/62k) -> write(18%)
0:28:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 262M 28% 346k/s ] rels: [ 0 0% 0/s ] features: [ 652M 636k/s ] 44G blocks: [ 30k 76% 5/s ]
cpus: 10.7 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.4G
read( 0%) -> (11/22) -> process(93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93%) -> (5k/62k) -> write(18%)
0:28:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 266M 29% 341k/s ] rels: [ 0 0% 0/s ] features: [ 658M 605k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.2 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 3.5G
read( 0%) -> (11/22) -> process(89% 88% 89% 88% 88% 87% 89% 89% 89% 88% 88%) -> (6.4k/62k) -> write(18%)
0:28:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 269M 29% 377k/s ] rels: [ 0 0% 0/s ] features: [ 665M 651k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.8 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 3.5G
read( 0%) -> (11/22) -> process(95% 94% 95% 93% 94% 94% 94% 95% 95% 94% 93%) -> (4.2k/62k) -> write(19%)
0:29:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 273M 29% 382k/s ] rels: [ 0 0% 0/s ] features: [ 671M 611k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.6 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.6G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 92% 93% 93% 91% 92% 93% 92%) -> (5.3k/62k) -> write(17%)
0:29:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 277M 30% 353k/s ] rels: [ 0 0% 0/s ] features: [ 677M 599k/s ] 47G blocks: [ 30k 77% 5/s ]
cpus: 10.1 gc: 2% heap: 4.3G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 3.6G
read( 0%) -> (11/22) -> process(87% 87% 88% 88% 89% 89% 89% 88% 89% 88% 88%) -> (5.6k/62k) -> write(18%)
0:29:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 281M 30% 393k/s ] rels: [ 0 0% 0/s ] features: [ 684M 674k/s ] 47G blocks: [ 30k 77% 5/s ]
cpus: 10.8 gc: 3% heap: 4.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(94% 95% 94% 95% 94% 94% 94% 95% 94% 94% 95%) -> (6.2k/62k) -> write(19%)
0:29:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 284M 31% 360k/s ] rels: [ 0 0% 0/s ] features: [ 691M 673k/s ] 48G blocks: [ 30k 77% 5/s ]
cpus: 10.8 gc: 3% heap: 1.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(94% 94% 92% 94% 94% 94% 93% 93% 94% 93% 94%) -> (8.2k/62k) -> write(20%)
0:29:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 288M 31% 330k/s ] rels: [ 0 0% 0/s ] features: [ 697M 635k/s ] 48G blocks: [ 30k 77% 4/s ]
cpus: 10.2 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(89% 88% 89% 88% 88% 88% 88% 88% 89% 89% 92%) -> (5.9k/62k) -> write(18%)
0:29:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 291M 31% 343k/s ] rels: [ 0 0% 0/s ] features: [ 704M 696k/s ] 48G blocks: [ 31k 77% 5/s ]
cpus: 10.9 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.8G
read( 0%) -> (11/22) -> process(95% 94% 94% 94% 95% 94% 95% 94% 95% 95% 95%) -> (4.6k/62k) -> write(20%)
0:30:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 294M 32% 329k/s ] rels: [ 0 0% 0/s ] features: [ 711M 700k/s ] 49G blocks: [ 31k 77% 4/s ]
cpus: 10.8 gc: 3% heap: 5.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.8G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 94% 93% 94% 93% 93% 94% 93%) -> (5.4k/62k) -> write(21%)
0:30:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 298M 32% 331k/s ] rels: [ 0 0% 0/s ] features: [ 717M 634k/s ] 49G blocks: [ 31k 77% 5/s ]
cpus: 10.2 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.9G
read( 0%) -> (11/22) -> process(87% 89% 88% 88% 90% 87% 89% 88% 88% 88% 89%) -> (12k/62k) -> write(18%)
0:30:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 301M 32% 339k/s ] rels: [ 0 0% 0/s ] features: [ 724M 629k/s ] 49G blocks: [ 31k 77% 5/s ]
cpus: 10.8 gc: 3% heap: 6G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 3.9G
read( 0%) -> (11/22) -> process(95% 93% 91% 95% 95% 95% 95% 95% 95% 95% 94%) -> (5.3k/62k) -> write(18%)
0:30:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 304M 33% 325k/s ] rels: [ 0 0% 0/s ] features: [ 729M 591k/s ] 50G blocks: [ 31k 78% 4/s ]
cpus: 10.1 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 3.9G
read( 0%) -> (11/22) -> process(88% 88% 87% 89% 88% 88% 88% 87% 89% 89% 88%) -> (5.3k/62k) -> write(18%)
0:30:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 308M 33% 351k/s ] rels: [ 0 0% 0/s ] features: [ 736M 662k/s ] 50G blocks: [ 31k 78% 5/s ]
cpus: 10.8 gc: 3% heap: 6.1G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 95% 94% 94% 94% 94% 94% 95%) -> (7k/62k) -> write(19%)
0:30:54 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 311M 34% 356k/s ] rels: [ 0 0% 0/s ] features: [ 743M 673k/s ] 51G blocks: [ 31k 78% 5/s ]
cpus: 10.9 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 4G
read( 0%) -> (11/22) -> process(95% 95% 92% 95% 95% 95% 94% 94% 95% 95% 94%) -> (8.1k/62k) -> write(20%)
0:31:04 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 315M 34% 352k/s ] rels: [ 0 0% 0/s ] features: [ 749M 645k/s ] 51G blocks: [ 31k 78% 5/s ]
cpus: 10.2 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(89% 86% 89% 89% 88% 88% 88% 88% 88% 89% 88%) -> (9.6k/62k) -> write(18%)
0:31:14 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 318M 34% 362k/s ] rels: [ 0 0% 0/s ] features: [ 756M 678k/s ] 51G blocks: [ 31k 78% 5/s ]
cpus: 10.9 gc: 3% heap: 2.6G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(93% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95%) -> (5k/62k) -> write(19%)
0:31:24 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 322M 35% 332k/s ] rels: [ 0 0% 0/s ] features: [ 762M 580k/s ] 52G blocks: [ 31k 78% 4/s ]
cpus: 10.8 gc: 3% heap: 2.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 94% 94% 94% 95% 94% 94% 96%) -> (5.2k/62k) -> write(17%)
0:31:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 325M 35% 356k/s ] rels: [ 0 0% 0/s ] features: [ 768M 597k/s ] 52G blocks: [ 31k 78% 4/s ]
cpus: 10.2 gc: 3% heap: 2.9G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(88% 89% 88% 89% 89% 89% 90% 89% 89% 89% 89%) -> (6.4k/62k) -> write(17%)
0:31:44 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 329M 36% 398k/s ] rels: [ 0 0% 0/s ] features: [ 775M 754k/s ] 52G blocks: [ 31k 78% 5/s ]
cpus: 10.9 gc: 3% heap: 2.9G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(94% 94% 95% 95% 95% 95% 95% 95% 95% 96% 95%) -> (7.1k/62k) -> write(21%)
0:31:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 333M 36% 389k/s ] rels: [ 0 0% 0/s ] features: [ 783M 708k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10.7 gc: 3% heap: 5.4G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(93% 91% 92% 93% 91% 92% 93% 92% 92% 93% 92%) -> (6.6k/62k) -> write(20%)
0:32:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 337M 36% 366k/s ] rels: [ 0 0% 0/s ] features: [ 789M 645k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10.4 gc: 3% heap: 1.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.3G
read( 0%) -> (11/22) -> process(89% 91% 91% 91% 91% 90% 91% 91% 90% 91% 91%) -> (14k/62k) -> write(19%)
0:32:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 340M 37% 347k/s ] rels: [ 0 0% 0/s ] features: [ 795M 605k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10.8 gc: 3% heap: 3.8G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.3G
read( 0%) -> (11/22) -> process(94% 92% 94% 94% 94% 93% 94% 93% 93% 94% 94%) -> (5.8k/62k) -> write(17%)
0:32:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 344M 37% 335k/s ] rels: [ 0 0% 0/s ] features: [ 803M 743k/s ] 54G blocks: [ 31k 79% 5/s ]
cpus: 10.4 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.4G
read( 0%) -> (11/22) -> process(90% 91% 89% 88% 89% 89% 89% 90% 91% 89% 91%) -> (6.3k/62k) -> write(22%)
0:32:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 347M 38% 364k/s ] rels: [ 0 0% 0/s ] features: [ 809M 647k/s ] 54G blocks: [ 31k 79% 5/s ]
cpus: 10.9 gc: 3% heap: 1.8G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.4G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 94% 95% 93% 94% 94% 94% 95%) -> (5.4k/62k) -> write(19%)
0:32:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 351M 38% 374k/s ] rels: [ 0 0% 0/s ] features: [ 816M 663k/s ] 55G blocks: [ 31k 79% 5/s ]
cpus: 10.8 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.2G relInfo: 53M mpGeoms: 4.4G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 93%) -> (6.4k/62k) -> write(20%)
0:32:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 355M 38% 358k/s ] rels: [ 0 0% 0/s ] features: [ 822M 640k/s ] 55G blocks: [ 31k 79% 5/s ]
cpus: 10.3 gc: 3% heap: 4.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(89% 90% 89% 89% 89% 90% 89% 90% 90% 90% 89%) -> (5.4k/62k) -> write(18%)
0:33:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 359M 39% 389k/s ] rels: [ 0 0% 0/s ] features: [ 829M 662k/s ] 55G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 3% heap: 3.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(95% 95% 94% 94% 95% 95% 95% 95% 95% 95% 95%) -> (5k/62k) -> write(19%)
0:33:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 363M 39% 380k/s ] rels: [ 0 0% 0/s ] features: [ 835M 668k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(94% 94% 94% 95% 95% 95% 94% 95% 94% 94% 95%) -> (6k/62k) -> write(20%)
0:33:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 366M 40% 359k/s ] rels: [ 0 0% 0/s ] features: [ 842M 626k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.3 gc: 3% heap: 2.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(89% 87% 89% 89% 90% 90% 90% 90% 89% 89% 89%) -> (5.3k/62k) -> write(18%)
0:33:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 370M 40% 371k/s ] rels: [ 0 0% 0/s ] features: [ 848M 623k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 3% heap: 6.2G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.6G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95%) -> (3.8k/62k) -> write(18%)
0:33:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 373M 40% 345k/s ] rels: [ 0 0% 0/s ] features: [ 853M 537k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.5 gc: 3% heap: 4.5G/32G direct: 566k postGC: 1.3G relInfo: 53M mpGeoms: 4.6G
read( 0%) -> (11/22) -> process(91% 90% 89% 91% 90% 90% 90% 91% 90% 89% 91%) -> (3.9k/62k) -> write(15%)
0:33:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 377M 41% 374k/s ] rels: [ 0 0% 0/s ] features: [ 860M 659k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.4 gc: 3% heap: 1.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 4.8G
read( 0%) -> (11/22) -> process(90% 91% 91% 91% 92% 92% 91% 91% 90% 91% 92%) -> (5.9k/62k) -> write(19%)
0:34:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 381M 41% 380k/s ] rels: [ 0 0% 0/s ] features: [ 867M 704k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 3% heap: 5.7G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 4.8G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95%) -> (6k/62k) -> write(20%)
0:34:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 384M 41% 358k/s ] rels: [ 0 0% 0/s ] features: [ 873M 620k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.2 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 4.9G
read( 0%) -> (11/22) -> process(90% 89% 85% 88% 89% 89% 90% 90% 91% 89% 89%) -> (6.6k/62k) -> write(18%)
0:34:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 388M 42% 391k/s ] rels: [ 0 0% 0/s ] features: [ 880M 647k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 3% heap: 3G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 4.9G
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 95% 96% 95% 96% 95% 95% 95%) -> (6.6k/62k) -> write(18%)
0:34:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 392M 42% 390k/s ] rels: [ 0 0% 0/s ] features: [ 886M 655k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 92%) -> (5.6k/62k) -> write(19%)
0:34:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 396M 43% 380k/s ] rels: [ 0 0% 0/s ] features: [ 893M 625k/s ] 59G blocks: [ 32k 81% 5/s ]
cpus: 10.2 gc: 2% heap: 6.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 89% 90% 88% 88% 91% 89% 89%) -> (7.8k/62k) -> write(18%)
0:34:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 400M 43% 410k/s ] rels: [ 0 0% 0/s ] features: [ 899M 687k/s ] 59G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 3% heap: 6.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 94% 95% 95% 95% 95% 93% 96%) -> (6.3k/62k) -> write(19%)
0:35:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 404M 44% 399k/s ] rels: [ 0 0% 0/s ] features: [ 906M 679k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 3% heap: 6.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 95% 95% 96% 95% 96% 95% 95%) -> (4.4k/62k) -> write(20%)
0:35:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 408M 44% 377k/s ] rels: [ 0 0% 0/s ] features: [ 913M 630k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.2 gc: 3% heap: 5.8G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(90% 89% 89% 90% 89% 89% 88% 89% 90% 89% 89%) -> (7.8k/62k) -> write(18%)
0:35:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 412M 44% 419k/s ] rels: [ 0 0% 0/s ] features: [ 919M 694k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 3% heap: 5.7G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(96% 94% 96% 95% 96% 96% 95% 95% 96% 94% 95%) -> (7.7k/62k) -> write(19%)
0:35:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 416M 45% 393k/s ] rels: [ 0 0% 0/s ] features: [ 926M 646k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.6 gc: 3% heap: 1.7G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(93% 94% 92% 92% 93% 92% 92% 92% 92% 93% 92%) -> (6.9k/62k) -> write(19%)
0:35:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 420M 45% 398k/s ] rels: [ 0 0% 0/s ] features: [ 932M 639k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.6 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(92% 92% 92% 93% 93% 92% 92% 93% 93% 93% 92%) -> (6.6k/62k) -> write(18%)
0:35:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 424M 46% 410k/s ] rels: [ 0 0% 0/s ] features: [ 939M 699k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.9 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(95% 95% 96% 95% 95% 95% 95% 94% 95% 95% 95%) -> (7.2k/62k) -> write(20%)
0:36:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 428M 46% 407k/s ] rels: [ 0 0% 0/s ] features: [ 946M 683k/s ] 62G blocks: [ 33k 82% 5/s ]
cpus: 10.9 gc: 3% heap: 4.9G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(94% 94% 95% 95% 95% 96% 96% 95% 95% 95% 95%) -> (7.5k/62k) -> write(20%)
0:36:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 432M 47% 392k/s ] rels: [ 0 0% 0/s ] features: [ 953M 703k/s ] 62G blocks: [ 33k 82% 5/s ]
cpus: 10.3 gc: 3% heap: 6G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(91% 89% 90% 88% 91% 90% 91% 90% 90% 91% 90%) -> (5.8k/62k) -> write(20%)
0:36:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 436M 47% 391k/s ] rels: [ 0 0% 0/s ] features: [ 961M 730k/s ] 62G blocks: [ 33k 82% 5/s ]
cpus: 10.9 gc: 3% heap: 5.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (7.8k/62k) -> write(21%)
0:36:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 440M 47% 373k/s ] rels: [ 0 0% 0/s ] features: [ 968M 702k/s ] 64G blocks: [ 33k 82% 5/s ]
cpus: 10.4 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.3G
read( 0%) -> (11/22) -> process(90% 91% 90% 90% 90% 91% 90% 90% 89% 90% 90%) -> (7.1k/62k) -> write(21%)
0:36:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 444M 48% 393k/s ] rels: [ 0 0% 0/s ] features: [ 975M 720k/s ] 64G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 3% heap: 5.2G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.3G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 95% 96% 95% 95% 96% 94% 95%) -> (6.3k/62k) -> write(21%)
0:36:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 448M 48% 394k/s ] rels: [ 0 0% 0/s ] features: [ 982M 703k/s ] 65G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(95% 94% 94% 94% 95% 95% 94% 94% 95% 94% 95%) -> (5.1k/62k) -> write(21%)
0:37:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 452M 49% 381k/s ] rels: [ 0 0% 0/s ] features: [ 989M 734k/s ] 65G blocks: [ 33k 83% 4/s ]
cpus: 10.2 gc: 3% heap: 4.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(90% 89% 89% 90% 88% 90% 87% 89% 89% 90% 88%) -> (7.7k/62k) -> write(21%)
0:37:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 456M 49% 418k/s ] rels: [ 0 0% 0/s ] features: [ 997M 746k/s ] 65G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 3% heap: 4.8G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(96% 95% 95% 95% 95% 96% 95% 95% 95% 95% 95%) -> (6.9k/62k) -> write(21%)
0:37:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 460M 50% 395k/s ] rels: [ 0 0% 0/s ] features: [ 1B 721k/s ] 66G blocks: [ 33k 83% 5/s ]
cpus: 10.4 gc: 2% heap: 6.2G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (5.4k/62k) -> write(21%)
0:37:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 464M 50% 436k/s ] rels: [ 0 0% 0/s ] features: [ 1B 717k/s ] 66G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 94% 95% 95% 95% 96% 95%) -> (5.5k/62k) -> write(20%)
0:37:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 468M 51% 430k/s ] rels: [ 0 0% 0/s ] features: [ 1B 709k/s ] 67G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 3% heap: 2.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 94% 95% 95% 95% 96% 95% 95%) -> (5.4k/62k) -> write(20%)
0:37:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 472M 51% 388k/s ] rels: [ 0 0% 0/s ] features: [ 1B 684k/s ] 67G blocks: [ 33k 83% 5/s ]
cpus: 10.3 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(90% 89% 89% 91% 90% 90% 89% 91% 89% 90% 89%) -> (6.1k/62k) -> write(19%)
0:38:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 476M 51% 385k/s ] rels: [ 0 0% 0/s ] features: [ 1B 678k/s ] 67G blocks: [ 33k 84% 5/s ]
cpus: 11 gc: 3% heap: 4.4G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(95% 96% 95% 96% 95% 95% 96% 96% 96% 96% 95%) -> (5.7k/62k) -> write(19%)
0:38:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 481M 52% 433k/s ] rels: [ 0 0% 0/s ] features: [ 1B 671k/s ] 68G blocks: [ 33k 84% 5/s ]
cpus: 10.4 gc: 2% heap: 6G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(90% 90% 91% 91% 90% 89% 89% 91% 91% 91% 90%) -> (7.8k/62k) -> write(19%)
0:38:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 485M 52% 446k/s ] rels: [ 0 0% 0/s ] features: [ 1B 690k/s ] 68G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 3% heap: 1.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(94% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (6k/62k) -> write(19%)
0:38:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 489M 53% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1B 731k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 3% heap: 3G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 96% 95% 95% 96% 95% 95%) -> (5.5k/62k) -> write(21%)
0:38:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 493M 53% 418k/s ] rels: [ 0 0% 0/s ] features: [ 1B 715k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 10.3 gc: 3% heap: 4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(91% 91% 89% 89% 90% 91% 91% 90% 87% 90% 88%) -> (6.2k/62k) -> write(20%)
0:38:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 498M 54% 421k/s ] rels: [ 0 0% 0/s ] features: [ 1B 716k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 3% heap: 3.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (5.2k/62k) -> write(20%)
0:39:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 502M 54% 399k/s ] rels: [ 0 0% 0/s ] features: [ 1B 695k/s ] 70G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 3% heap: 2.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95%) -> (6.9k/62k) -> write(20%)
0:39:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 505M 55% 374k/s ] rels: [ 0 0% 0/s ] features: [ 1B 695k/s ] 70G blocks: [ 34k 85% 5/s ]
cpus: 10.4 gc: 3% heap: 3.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.8G
read( 0%) -> (11/22) -> process(90% 89% 91% 91% 90% 90% 91% 91% 90% 90% 91%) -> (5.7k/62k) -> write(20%)
0:39:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 509M 55% 380k/s ] rels: [ 0 0% 0/s ] features: [ 1B 688k/s ] 70G blocks: [ 34k 85% 5/s ]
cpus: 10.8 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.8G
read( 0%) -> (11/22) -> process(93% 95% 94% 95% 94% 95% 94% 95% 95% 94% 95%) -> (7.5k/62k) -> write(20%)
0:39:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 513M 55% 381k/s ] rels: [ 0 0% 0/s ] features: [ 1B 640k/s ] 71G blocks: [ 34k 85% 4/s ]
cpus: 10.9 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 94% 94% 94% 94% 95% 94% 94%) -> (6.1k/62k) -> write(19%)
0:39:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 517M 56% 387k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 650k/s ] 71G blocks: [ 34k 85% 5/s ]
cpus: 10.4 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(94% 91% 91% 91% 90% 90% 90% 89% 92% 91% 92%) -> (7.2k/62k) -> write(18%)
0:39:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 521M 56% 432k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 703k/s ] 72G blocks: [ 34k 85% 5/s ]
cpus: 11 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(96% 95% 96% 96% 96% 96% 96% 95% 96% 96% 95%) -> (7k/62k) -> write(20%)
0:40:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 526M 57% 445k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 680k/s ] 72G blocks: [ 34k 85% 5/s ]
cpus: 10.3 gc: 3% heap: 4G/32G direct: 566k postGC: 1.4G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(90% 91% 91% 90% 89% 90% 90% 90% 91% 90% 88%) -> (5.9k/62k) -> write(19%)
0:40:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 530M 57% 394k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 713k/s ] 72G blocks: [ 34k 85% 5/s ]
cpus: 11 gc: 3% heap: 4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 95% 96% 96% 95% 96% 96%) -> (9.2k/62k) -> write(20%)
0:40:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 533M 58% 345k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 603k/s ] 73G blocks: [ 34k 86% 4/s ]
cpus: 10.9 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(95% 96% 94% 96% 96% 95% 96% 95% 96% 95% 95%) -> (5.8k/62k) -> write(18%)
0:40:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 537M 58% 355k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 629k/s ] 73G blocks: [ 34k 86% 4/s ]
cpus: 10.3 gc: 3% heap: 3.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(90% 89% 90% 89% 90% 89% 91% 90% 89% 89% 89%) -> (3.5k/62k) -> write(18%)
0:40:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 540M 58% 368k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 697k/s ] 73G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(95% 96% 95% 96% 95% 95% 95% 96% 95% 93% 96%) -> (5.2k/62k) -> write(20%)
0:40:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 544M 59% 360k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 703k/s ] 74G blocks: [ 34k 86% 4/s ]
cpus: 10.4 gc: 3% heap: 3.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(91% 91% 91% 92% 90% 89% 92% 90% 90% 90% 90%) -> (4k/62k) -> write(21%)
0:41:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 548M 59% 383k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 738k/s ] 74G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 3% heap: 1.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(94% 95% 94% 95% 94% 95% 95% 94% 94% 95% 94%) -> (7k/62k) -> write(21%)
0:41:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 552M 60% 397k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 795k/s ] 75G blocks: [ 34k 86% 5/s ]
cpus: 11 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(95% 96% 96% 95% 96% 96% 96% 95% 96% 96% 96%) -> (7.3k/62k) -> write(24%)
0:41:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 555M 60% 335k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 688k/s ] 75G blocks: [ 34k 86% 4/s ]
cpus: 10.3 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.2G
read( 0%) -> (11/22) -> process(90% 90% 91% 90% 90% 88% 90% 89% 90% 89% 89%) -> (5.6k/62k) -> write(20%)
0:41:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 559M 60% 376k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 741k/s ] 75G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 3% heap: 3.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 94% 94% 95% 95% 95% 95%) -> (7.7k/62k) -> write(21%)
0:41:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 562M 61% 357k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 719k/s ] 76G blocks: [ 34k 87% 5/s ]
cpus: 10.9 gc: 3% heap: 2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 94% 94% 94% 96% 96% 95% 95%) -> (7.6k/62k) -> write(22%)
0:41:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 566M 61% 341k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 692k/s ] 76G blocks: [ 34k 87% 4/s ]
cpus: 10.3 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(89% 89% 90% 90% 91% 90% 89% 89% 88% 87% 90%) -> (6.2k/62k) -> write(20%)
0:42:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 570M 61% 370k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 764k/s ] 77G blocks: [ 34k 87% 5/s ]
cpus: 10.8 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(94% 94% 93% 94% 95% 94% 94% 93% 94% 94% 93%) -> (7.3k/62k) -> write(23%)
0:42:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 573M 62% 358k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 695k/s ] 77G blocks: [ 35k 87% 5/s ]
cpus: 10.3 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(88% 91% 90% 90% 89% 89% 89% 90% 90% 90% 90%) -> (5.1k/62k) -> write(20%)
0:42:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 577M 62% 373k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 700k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.9 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 94% 95% 95% 95% 96% 95%) -> (30k/62k) -> write(21%)
0:42:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 581M 63% 378k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 643k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.2 gc: 3% heap: 3.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(89% 88% 87% 89% 88% 89% 88% 89% 91% 88% 90%) -> (7.1k/62k) -> write(18%)
0:42:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 585M 63% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 737k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.9 gc: 3% heap: 3.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.5G
read( 0%) -> (11/22) -> process(96% 93% 95% 95% 95% 95% 95% 95% 95% 95% 96%) -> (8.7k/62k) -> write(21%)
0:42:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 589M 64% 418k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 819k/s ] 79G blocks: [ 35k 88% 5/s ]
cpus: 10.9 gc: 3% heap: 1.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.5G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 95% 95% 95% 96% 96% 94% 96%) -> (5.7k/62k) -> write(24%)
0:43:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 593M 64% 372k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 714k/s ] 79G blocks: [ 35k 88% 5/s ]
cpus: 10.3 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.5G
read( 0%) -> (11/22) -> process(89% 89% 90% 92% 90% 88% 90% 89% 89% 89% 90%) -> (4.8k/62k) -> write(21%)
0:43:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 597M 64% 400k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 751k/s ] 80G blocks: [ 35k 88% 5/s ]
cpus: 10.8 gc: 3% heap: 3.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.6G
read( 0%) -> (11/22) -> process(94% 93% 93% 93% 93% 93% 94% 94% 94% 92% 94%) -> (7.2k/62k) -> write(22%)
0:43:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 601M 65% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 775k/s ] 80G blocks: [ 35k 88% 5/s ]
cpus: 10.9 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.6G
read( 0%) -> (11/22) -> process(94% 95% 96% 94% 96% 95% 96% 95% 93% 96% 95%) -> (6k/62k) -> write(22%)
0:43:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 605M 65% 403k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 746k/s ] 80G blocks: [ 35k 88% 5/s ]
cpus: 10.3 gc: 3% heap: 1.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.7G
read( 0%) -> (11/22) -> process(90% 89% 89% 90% 90% 88% 89% 89% 90% 89% 90%) -> (6.4k/62k) -> write(21%)
0:43:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 609M 66% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 811k/s ] 82G blocks: [ 35k 88% 5/s ]
cpus: 10.9 gc: 3% heap: 5.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.7G
read( 0%) -> (11/22) -> process(95% 95% 95% 94% 94% 95% 95% 95% 94% 94% 95%) -> (5.3k/62k) -> write(24%)
0:43:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 613M 66% 359k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 674k/s ] 82G blocks: [ 35k 88% 5/s ]
cpus: 10.2 gc: 3% heap: 4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.8G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 89% 88% 90% 89% 87% 87% 89%) -> (9.3k/62k) -> write(20%)
0:44:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 616M 66% 364k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 712k/s ] 83G blocks: [ 35k 88% 4/s ]
cpus: 11 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.8G
read( 0%) -> (11/22) -> process(95% 95% 96% 95% 95% 95% 95% 95% 94% 95% 96%) -> (5.9k/62k) -> write(21%)
0:44:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 620M 67% 360k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 723k/s ] 83G blocks: [ 35k 89% 5/s ]
cpus: 10.2 gc: 3% heap: 6.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.9G
read( 0%) -> (11/22) -> process(88% 87% 88% 89% 90% 90% 88% 86% 89% 89% 89%) -> (5.7k/62k) -> write(21%)
0:44:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 624M 67% 377k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 762k/s ] 83G blocks: [ 35k 89% 5/s ]
cpus: 10.9 gc: 3% heap: 4.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 6.9G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 95% 93% 95% 95% 95% 95%) -> (7.5k/62k) -> write(22%)
0:44:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 628M 68% 383k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 754k/s ] 84G blocks: [ 35k 89% 5/s ]
cpus: 10.4 gc: 3% heap: 4.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7G
read( 0%) -> (11/22) -> process(89% 90% 90% 90% 89% 90% 88% 90% 88% 90% 89%) -> (5.7k/62k) -> write(22%)
0:44:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 631M 68% 387k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 730k/s ] 84G blocks: [ 35k 89% 5/s ]
cpus: 10.7 gc: 3% heap: 2.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7G
read( 0%) -> (11/22) -> process(93% 92% 94% 94% 93% 94% 94% 93% 94% 93% 94%) -> (5.8k/62k) -> write(21%)
0:44:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 635M 68% 311k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 598k/s ] 85G blocks: [ 35k 89% 4/s ]
cpus: 10.9 gc: 3% heap: 1.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 94% 95% 95% 95% 95% 95% 93%) -> (5.6k/62k) -> write(18%)
0:45:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 638M 69% 345k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 647k/s ] 85G blocks: [ 35k 89% 4/s ]
cpus: 10.3 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 88% 89% 89% 89% 90% 89% 89%) -> (7.3k/62k) -> write(19%)
0:45:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 642M 69% 386k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 730k/s ] 85G blocks: [ 35k 89% 5/s ]
cpus: 10.8 gc: 3% heap: 2.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(94% 94% 94% 93% 94% 94% 94% 95% 94% 93% 94%) -> (7.4k/62k) -> write(22%)
0:45:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 646M 70% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 746k/s ] 86G blocks: [ 36k 89% 5/s ]
cpus: 10.3 gc: 3% heap: 1.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.2G
read( 0%) -> (11/22) -> process(90% 91% 90% 90% 89% 87% 87% 90% 88% 88% 89%) -> (5.6k/62k) -> write(22%)
0:45:35 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 650M 70% 428k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 774k/s ] 86G blocks: [ 36k 90% 6/s ]
cpus: 11 gc: 3% heap: 6.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 96% 96% 95% 95% 96% 95% 95% 95%) -> (7.7k/62k) -> write(22%)
0:45:45 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 654M 71% 418k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 776k/s ] 87G blocks: [ 36k 90% 5/s ]
cpus: 10.8 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(94% 94% 93% 94% 94% 94% 94% 93% 93% 94% 94%) -> (5.2k/62k) -> write(23%)
0:45:55 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 658M 71% 408k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 762k/s ] 87G blocks: [ 36k 90% 5/s ]
cpus: 10.4 gc: 3% heap: 5.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(90% 91% 91% 88% 90% 91% 90% 90% 90% 89% 91%) -> (5.4k/62k) -> write(22%)
0:46:05 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 663M 71% 416k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 766k/s ] 88G blocks: [ 36k 90% 5/s ]
cpus: 10.9 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(95% 92% 95% 96% 95% 95% 95% 95% 95% 95% 95%) -> (6k/62k) -> write(23%)
0:46:15 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 666M 72% 389k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 710k/s ] 88G blocks: [ 36k 90% 5/s ]
cpus: 10.3 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(90% 90% 89% 89% 89% 90% 90% 88% 87% 89% 90%) -> (5.4k/62k) -> write(20%)
0:46:25 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 670M 72% 311k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 659k/s ] 88G blocks: [ 36k 90% 4/s ]
cpus: 10.9 gc: 3% heap: 5.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(96% 93% 95% 95% 95% 95% 95% 95% 95% 94% 95%) -> (6.9k/62k) -> write(19%)
0:46:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 674M 73% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 750k/s ] 89G blocks: [ 36k 90% 5/s ]
cpus: 10.6 gc: 4% heap: 2.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(91% 88% 90% 91% 91% 91% 91% 92% 91% 91% 92%) -> (5.9k/62k) -> write(22%)
0:46:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 678M 73% 405k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 820k/s ] 89G blocks: [ 36k 91% 5/s ]
cpus: 10.5 gc: 2% heap: 4.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.5G
read( 0%) -> (11/22) -> process(92% 92% 93% 93% 92% 92% 93% 92% 92% 93% 92%) -> (10k/62k) -> write(24%)
0:46:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 682M 74% 403k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 755k/s ] 90G blocks: [ 36k 91% 5/s ]
cpus: 10.9 gc: 3% heap: 4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.5G
read( 0%) -> (11/22) -> process(94% 95% 94% 95% 94% 94% 95% 92% 94% 95% 94%) -> (4.9k/62k) -> write(22%)
0:47:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 686M 74% 414k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 736k/s ] 90G blocks: [ 36k 91% 5/s ]
cpus: 10.4 gc: 3% heap: 5.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.6G
read( 0%) -> (11/22) -> process(91% 91% 91% 91% 91% 91% 90% 91% 91% 90% 91%) -> (8.1k/62k) -> write(21%)
0:47:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 690M 74% 426k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 772k/s ] 91G blocks: [ 36k 91% 5/s ]
cpus: 11 gc: 3% heap: 6.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.6G
read( 0%) -> (11/22) -> process(95% 95% 96% 96% 95% 96% 96% 95% 96% 95% 95%) -> (6k/62k) -> write(22%)
0:47:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 694M 75% 383k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 702k/s ] 91G blocks: [ 36k 91% 5/s ]
cpus: 10.1 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.6G
read( 0%) -> (11/22) -> process(89% 88% 87% 88% 87% 89% 87% 88% 87% 89% 89%) -> (6.2k/62k) -> write(20%)
0:47:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 698M 75% 391k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 707k/s ] 91G blocks: [ 36k 91% 5/s ]
cpus: 10.7 gc: 3% heap: 3.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(93% 92% 93% 92% 93% 92% 93% 93% 92% 92% 93%) -> (5.4k/62k) -> write(20%)
0:47:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 702M 76% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 732k/s ] 92G blocks: [ 36k 91% 5/s ]
cpus: 10.7 gc: 3% heap: 1.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(94% 93% 92% 92% 91% 94% 94% 92% 91% 94% 93%) -> (6.1k/62k) -> write(21%)
0:47:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 706M 76% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 707k/s ] 92G blocks: [ 36k 92% 5/s ]
cpus: 10.2 gc: 2% heap: 1.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 89% 89% 88% 89% 90% 89% 88%) -> (4.8k/62k) -> write(20%)
0:48:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 710M 77% 425k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 741k/s ] 92G blocks: [ 36k 92% 5/s ]
cpus: 10.9 gc: 2% heap: 6.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.8G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 94% 95% 94% 95% 95% 95%) -> (6.9k/62k) -> write(21%)
0:48:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 714M 77% 400k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 721k/s ] 93G blocks: [ 36k 92% 5/s ]
cpus: 10.6 gc: 3% heap: 2.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.8G
read( 0%) -> (11/22) -> process(91% 93% 92% 91% 93% 92% 93% 93% 92% 91% 92%) -> (3.5k/62k) -> write(21%)
0:48:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 719M 78% 409k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 733k/s ] 93G blocks: [ 37k 92% 5/s ]
cpus: 10.4 gc: 3% heap: 3.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(91% 90% 92% 88% 92% 93% 91% 91% 91% 90% 89%) -> (4.3k/62k) -> write(21%)
0:48:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 723M 78% 446k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 746k/s ] 94G blocks: [ 37k 92% 5/s ]
cpus: 10.9 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(96% 95% 96% 94% 94% 95% 95% 95% 95% 95% 95%) -> (6.4k/62k) -> write(22%)
0:48:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 727M 78% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 719k/s ] 94G blocks: [ 37k 92% 5/s ]
cpus: 10 gc: 3% heap: 1.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(86% 85% 87% 88% 87% 87% 86% 86% 86% 86% 87%) -> (7.1k/62k) -> write(20%)
0:48:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 731M 79% 422k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 765k/s ] 95G blocks: [ 37k 92% 5/s ]
cpus: 10.6 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(93% 92% 92% 92% 93% 92% 92% 93% 93% 93% 92%) -> (9k/62k) -> write(23%)
0:49:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 736M 79% 429k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 740k/s ] 95G blocks: [ 37k 93% 6/s ]
cpus: 10.4 gc: 2% heap: 4.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(89% 90% 89% 90% 91% 91% 90% 90% 90% 91% 91%) -> (6.6k/62k) -> write(21%)
0:49:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 740M 80% 440k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 723k/s ] 95G blocks: [ 37k 93% 5/s ]
cpus: 10.9 gc: 3% heap: 3.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(95% 95% 94% 95% 94% 95% 95% 95% 93% 94% 93%) -> (5.2k/62k) -> write(20%)
0:49:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 744M 80% 434k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 754k/s ] 97G blocks: [ 37k 93% 5/s ]
cpus: 10.7 gc: 3% heap: 1.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(94% 93% 92% 92% 93% 94% 93% 93% 94% 94% 93%) -> (4k/62k) -> write(22%)
0:49:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 749M 81% 426k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 697k/s ] 97G blocks: [ 37k 93% 5/s ]
cpus: 10.3 gc: 2% heap: 3.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(90% 89% 91% 90% 91% 87% 89% 91% 89% 91% 90%) -> (7.7k/62k) -> write(19%)
0:49:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 753M 81% 449k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 756k/s ] 98G blocks: [ 37k 93% 6/s ]
cpus: 10.9 gc: 3% heap: 2.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(95% 96% 95% 96% 94% 96% 95% 95% 95% 95% 95%) -> (7.6k/62k) -> write(22%)
0:49:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 757M 82% 421k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 695k/s ] 98G blocks: [ 37k 93% 5/s ]
cpus: 10.3 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 89% 90% 88% 89% 90% 89% 90%) -> (4.7k/62k) -> write(20%)
0:50:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 762M 82% 436k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 733k/s ] 98G blocks: [ 37k 93% 6/s ]
cpus: 11 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 96% 95% 95% 95% 95% 95% 95% 95%) -> (4.6k/62k) -> write(21%)
0:50:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 766M 83% 431k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 730k/s ] 99G blocks: [ 37k 94% 5/s ]
cpus: 10.9 gc: 3% heap: 1.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 96% 95% 96% 95% 95% 95% 95%) -> (6.3k/62k) -> write(21%)
0:50:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 770M 83% 406k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 714k/s ] 99G blocks: [ 37k 94% 5/s ]
cpus: 10.3 gc: 3% heap: 1.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(89% 90% 90% 90% 88% 89% 89% 90% 89% 89% 90%) -> (6.5k/62k) -> write(20%)
0:50:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 774M 84% 417k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 735k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 10.8 gc: 3% heap: 5.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 92% 94% 94% 94% 94% 94% 94%) -> (6.5k/62k) -> write(21%)
0:50:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 778M 84% 393k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 734k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 10.3 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(90% 89% 88% 89% 90% 89% 89% 88% 91% 91% 90%) -> (7.1k/62k) -> write(21%)
0:50:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 782M 84% 411k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 727k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 11 gc: 3% heap: 5.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(95% 96% 95% 96% 95% 96% 96% 96% 96% 95% 96%) -> (5.5k/62k) -> write(21%)
0:51:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 787M 85% 424k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 728k/s ] 101G blocks: [ 37k 94% 5/s ]
cpus: 10.9 gc: 3% heap: 4.7G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(95% 95% 94% 95% 95% 94% 95% 95% 95% 94% 96%) -> (7.7k/62k) -> write(22%)
0:51:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 790M 85% 394k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 657k/s ] 101G blocks: [ 38k 94% 5/s ]
cpus: 10.3 gc: 3% heap: 4.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(89% 89% 90% 89% 87% 90% 90% 90% 88% 91% 90%) -> (5.8k/62k) -> write(19%)
0:51:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 795M 86% 433k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 702k/s ] 101G blocks: [ 38k 95% 6/s ]
cpus: 10.9 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(96% 95% 96% 95% 95% 95% 94% 95% 95% 94% 96%) -> (5.6k/62k) -> write(20%)
0:51:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 799M 86% 400k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 667k/s ] 102G blocks: [ 38k 95% 5/s ]
cpus: 10.2 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(90% 89% 87% 89% 89% 89% 89% 89% 86% 87% 91%) -> (5.1k/62k) -> write(19%)
0:51:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 803M 87% 426k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 703k/s ] 102G blocks: [ 38k 95% 5/s ]
cpus: 10.8 gc: 3% heap: 3.1G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(95% 95% 95% 94% 95% 93% 94% 94% 94% 95% 95%) -> (5.6k/62k) -> write(20%)
0:51:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 807M 87% 430k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 692k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.9 gc: 3% heap: 2.8G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(95% 95% 95% 94% 95% 95% 94% 95% 95% 95% 94%) -> (5.2k/62k) -> write(20%)
0:52:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 811M 88% 399k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 661k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.1 gc: 3% heap: 2.5G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(89% 89% 87% 89% 87% 88% 88% 87% 88% 88% 88%) -> (6.3k/62k) -> write(18%)
0:52:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 816M 88% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 693k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.6 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(91% 93% 93% 93% 93% 93% 93% 92% 91% 91% 92%) -> (5.6k/62k) -> write(19%)
0:52:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 820M 88% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 661k/s ] 104G blocks: [ 38k 95% 5/s ]
cpus: 10.4 gc: 3% heap: 2.4G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(91% 91% 91% 90% 90% 91% 90% 91% 90% 90% 92%) -> (5.9k/62k) -> write(19%)
0:52:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 824M 89% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 632k/s ] 104G blocks: [ 38k 96% 5/s ]
cpus: 10.2 gc: 3% heap: 2.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.7G
read( 0%) -> (11/22) -> process(90% 89% 89% 90% 89% 89% 89% 89% 90% 89% 89%) -> (6.3k/62k) -> write(18%)
0:52:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 828M 89% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 675k/s ] 104G blocks: [ 38k 96% 5/s ]
cpus: 10.9 gc: 3% heap: 2.2G/32G direct: 566k postGC: 1.5G relInfo: 53M mpGeoms: 8.7G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 95% 95% 96% 95% 95% 96% 95%) -> (6.7k/62k) -> write(19%)
0:52:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 831M 90% 344k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 554k/s ] 105G blocks: [ 38k 96% 4/s ]
cpus: 8.9 gc: 2% heap: 4.9G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.1G
read( 0%) -> (11/22) -> process(74% 77% 79% 83% 77% 77% 77% 77% 76% 77% 78%) -> (4.6k/62k) -> write(16%)
0:53:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 836M 90% 440k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 699k/s ] 105G blocks: [ 38k 96% 5/s ]
cpus: 10.8 gc: 3% heap: 2G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(93% 95% 94% 94% 93% 94% 95% 94% 93% 95% 94%) -> (5k/62k) -> write(19%)
0:53:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 840M 91% 434k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 686k/s ] 105G blocks: [ 38k 96% 6/s ]
cpus: 10.8 gc: 2% heap: 6.4G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 94% 95% 94% 94% 94% 94% 94%) -> (4.9k/62k) -> write(19%)
0:53:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 844M 91% 406k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 611k/s ] 106G blocks: [ 38k 96% 5/s ]
cpus: 10.1 gc: 3% heap: 5.5G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(89% 88% 88% 88% 88% 88% 87% 88% 88% 87% 90%) -> (5.1k/62k) -> write(17%)
0:53:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 848M 91% 407k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 674k/s ] 106G blocks: [ 38k 96% 5/s ]
cpus: 10.9 gc: 3% heap: 4.3G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 95% 95% 95% 95% 95% 94% 95%) -> (5.5k/62k) -> write(19%)
0:53:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 852M 92% 405k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 647k/s ] 106G blocks: [ 38k 97% 5/s ]
cpus: 10.4 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(91% 91% 91% 91% 90% 91% 90% 90% 90% 89% 91%) -> (6.6k/62k) -> write(18%)
0:53:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 857M 92% 437k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 700k/s ] 107G blocks: [ 38k 97% 5/s ]
cpus: 10.8 gc: 3% heap: 4.1G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(94% 94% 95% 94% 95% 94% 95% 94% 94% 95% 94%) -> (5.7k/62k) -> write(20%)
0:54:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 861M 93% 428k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 666k/s ] 107G blocks: [ 38k 97% 5/s ]
cpus: 10.5 gc: 2% heap: 6.2G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(91% 91% 90% 93% 93% 92% 92% 92% 88% 91% 93%) -> (6.4k/62k) -> write(18%)
0:54:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 865M 93% 445k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 686k/s ] 108G blocks: [ 39k 97% 5/s ]
cpus: 10.9 gc: 3% heap: 6.9G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (4.4k/62k) -> write(19%)
0:54:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 870M 94% 439k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 704k/s ] 108G blocks: [ 39k 97% 5/s ]
cpus: 11 gc: 3% heap: 2.1G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (11/22) -> process(95% 96% 94% 96% 96% 95% 95% 96% 96% 96% 95%) -> (6.3k/62k) -> write(20%)
0:54:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 874M 94% 415k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 683k/s ] 108G blocks: [ 39k 97% 5/s ]
cpus: 10.6 gc: 2% heap: 4.5G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (11/22) -> process(92% 92% 92% 91% 93% 92% 92% 92% 92% 92% 92%) -> (5.2k/62k) -> write(19%)
0:54:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 878M 95% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 655k/s ] 109G blocks: [ 39k 97% 5/s ]
cpus: 10.4 gc: 3% heap: 4.6G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.5G
read( 0%) -> (11/22) -> process(92% 87% 91% 91% 91% 92% 91% 91% 91% 91% 91%) -> (4.7k/62k) -> write(19%)
0:54:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 882M 95% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 673k/s ] 109G blocks: [ 39k 98% 5/s ]
cpus: 10.7 gc: 3% heap: 4G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.5G
read( 0%) -> (11/22) -> process(95% 94% 94% 93% 93% 94% 93% 92% 93% 94% 95%) -> (5.6k/62k) -> write(19%)
0:55:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 886M 96% 397k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 648k/s ] 109G blocks: [ 39k 98% 5/s ]
cpus: 10.7 gc: 3% heap: 2.6G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.6G
read( 0%) -> (11/22) -> process(93% 93% 94% 92% 94% 93% 92% 93% 93% 93% 92%) -> (7.6k/62k) -> write(18%)
0:55:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 890M 96% 385k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 629k/s ] 110G blocks: [ 39k 98% 5/s ]
cpus: 10.1 gc: 3% heap: 2G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.6G
read( 0%) -> (11/22) -> process(88% 88% 88% 88% 86% 89% 88% 88% 87% 89% 89%) -> (6.1k/62k) -> write(18%)
0:55:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 894M 96% 429k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 677k/s ] 110G blocks: [ 39k 98% 6/s ]
cpus: 10.9 gc: 2% heap: 7.1G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.6G
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 95% 95% 95% 95% 95% 95% 94%) -> (5.7k/62k) -> write(19%)
0:55:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 898M 97% 408k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 647k/s ] 110G blocks: [ 39k 98% 5/s ]
cpus: 10.8 gc: 3% heap: 5.9G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.7G
read( 0%) -> (11/22) -> process(95% 93% 95% 95% 94% 94% 94% 94% 94% 94% 95%) -> (6.6k/62k) -> write(18%)
0:55:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 902M 97% 398k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 636k/s ] 111G blocks: [ 39k 98% 5/s ]
cpus: 10.2 gc: 2% heap: 6.2G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.7G
read( 0%) -> (11/22) -> process(89% 89% 89% 90% 89% 87% 89% 87% 90% 88% 89%) -> (5.4k/62k) -> write(18%)
0:55:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 906M 98% 393k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 641k/s ] 111G blocks: [ 39k 98% 5/s ]
cpus: 10.8 gc: 3% heap: 5.3G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.8G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 95% 95% 94% 95% 95% 95% 95%) -> (6k/62k) -> write(18%)
0:56:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 910M 98% 398k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 667k/s ] 111G blocks: [ 39k 99% 5/s ]
cpus: 10.8 gc: 3% heap: 3.8G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.8G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 93% 94% 95% 94% 93% 93% 94%) -> (5.7k/62k) -> write(19%)
0:56:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 914M 99% 366k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 584k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 10.2 gc: 3% heap: 3.7G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.9G
read( 0%) -> (11/22) -> process(89% 90% 86% 86% 90% 90% 93% 89% 89% 91% 89%) -> (6k/62k) -> write(17%)
0:56:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 918M 99% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 651k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 10.9 gc: 3% heap: 3.6G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 9.9G
read( 0%) -> (11/22) -> process(95% 94% 96% 94% 96% 96% 95% 95% 95% 96% 95%) -> (6k/62k) -> write(18%)
0:56:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 922M 99% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 645k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 10.8 gc: 3% heap: 2.7G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 93% 95% 95% 94% 94% 94% 94%) -> (6.7k/62k) -> write(18%)
0:56:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 926M 100% 397k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 619k/s ] 113G blocks: [ 39k 99% 5/s ]
cpus: 10.4 gc: 2% heap: 3.8G/32G direct: 566k postGC: 1.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 91% 91% 91% 89% 89% 91% 90% 90% 91% 91%) -> (7.8k/62k) -> write(18%)
0:56:49 INF [osm_pass2:process] - Finished ways: 927,681,304 (349k/s) in 44m18s cpu:7h38m2s gc:1m12s avg:10.3
0:56:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 99k/s ] rels: [ 48k 0% 4.8k/s ] features: [ 1.8B 156k/s ] 113G blocks: [ 39k 99% 2/s ]
cpus: 10 gc: 2% heap: 4.7G/32G direct: 566k postGC: 2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(85% 83% 79% 86% 76% 87% 69% 78% 79% 79% 70%) -> (3.4k/62k) -> write( 5%)
0:56:57 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 11977, 3666 is not filled!
0:56:57 WAR [osm_pass2:process] - Error slicing feature at z13: Feature{layer='water', geom=Polygon, attrs={}}: 5991, 1836 is not filled!
0:57:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 136k 1% 8.7k/s ] features: [ 1.8B 25k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 2% heap: 3.8G/32G direct: 566k postGC: 2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 89% 86% 86% 87% 90% 88% 87% 87% 87% 88%) -> (6.2k/62k) -> write( 2%)
0:57:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 296k 3% 15k/s ] features: [ 1.8B 25k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 2% heap: 3.7G/32G direct: 566k postGC: 2.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 91% 89% 89% 90% 91% 90% 90% 89% 94% 91%) -> (6.1k/62k) -> write( 2%)
0:57:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 350k 3% 5.3k/s ] features: [ 1.8B 28k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 6.2G/32G direct: 566k postGC: 2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 94% 93% 94% 94% 96% 96% 95% 96% 95% 93%) -> (5.7k/62k) -> write( 2%)
0:57:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 406k 4% 5.6k/s ] features: [ 1.8B 24k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.7 gc: 1% heap: 4.5G/32G direct: 566k postGC: 2.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 93% 94% 94% 95% 96% 94% 94% 95% 93%) -> (5k/62k) -> write( 2%)
0:57:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 491k 5% 8.4k/s ] features: [ 1.8B 30k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.3 gc: 1% heap: 6.9G/32G direct: 566k postGC: 2.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 93% 92% 92% 93% 93% 95% 94% 89% 91% 92%) -> (5.4k/62k) -> write( 2%)
0:57:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 534k 5% 4.2k/s ] features: [ 1.8B 28k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.4 gc: 1% heap: 4.6G/32G direct: 566k postGC: 2.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 95% 92% 94% 94% 93% 93% 94% 93% 92% 94%) -> (5.1k/62k) -> write( 2%)
0:58:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 582k 5% 4.8k/s ] features: [ 1.8B 24k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 6.3G/32G direct: 566k postGC: 2.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 94% 93% 93% 94% 93% 92% 94% 95% 98% 93%) -> (6.1k/62k) -> write( 2%)
0:58:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 633k 6% 5.1k/s ] features: [ 1.8B 32k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.5 gc: 1% heap: 5.7G/32G direct: 566k postGC: 2.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 94% 94% 94% 95% 97% 94% 95% 94% 96% 94%) -> (6.1k/62k) -> write( 2%)
0:58:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 695k 6% 6.2k/s ] features: [ 1.8B 39k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.7 gc: 1% heap: 6.1G/32G direct: 566k postGC: 2.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 97% 96% 96% 97% 96% 97% 96% 95% 95%) -> (6.5k/62k) -> write( 2%)
0:58:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 749k 7% 5.3k/s ] features: [ 1.8B 47k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.8 gc: 1% heap: 4.8G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 95% 97% 96% 96% 97% 95% 96% 95% 96%) -> (3.8k/62k) -> write( 2%)
0:58:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 811k 8% 6.2k/s ] features: [ 1.8B 34k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 1% heap: 3G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 92% 95% 94% 96% 94% 96% 94% 95% 97%) -> (5.6k/62k) -> write( 2%)
0:58:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 877k 8% 6.5k/s ] features: [ 1.8B 33k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.7 gc: 1% heap: 3.3G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 94% 95% 95% 94% 96% 96% 95% 96% 96% 93%) -> (4.9k/62k) -> write( 2%)
0:59:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 950k 9% 7.3k/s ] features: [ 1.8B 39k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 1% heap: 5G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 96% 96% 95% 96% 95% 95% 96% 96% 95%) -> (5.6k/62k) -> write( 2%)
0:59:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1M 10% 8.3k/s ] features: [ 1.8B 41k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.4 gc: 1% heap: 5.5G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 93% 94% 94% 94% 94% 93% 95% 92% 92% 93%) -> (4.9k/62k) -> write( 2%)
0:59:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.1M 11% 9.8k/s ] features: [ 1.8B 38k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.5 gc: 1% heap: 4.4G/32G direct: 566k postGC: 2.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 94% 94% 95% 94% 93% 94% 94% 94% 95% 95%) -> (4.5k/62k) -> write( 2%)
0:59:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.2M 11% 8k/s ] features: [ 1.8B 39k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 1% heap: 5.5G/32G direct: 566k postGC: 2.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 95% 94% 96% 96% 96% 95% 95% 94% 95% 94%) -> (5.3k/62k) -> write( 2%)
0:59:39 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 11730, 4011 is not filled!
0:59:41 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13988, 3238 is not filled!
0:59:44 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13998, 3267 is not filled!
0:59:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.3M 12% 10k/s ] features: [ 1.8B 68k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 7.4G/32G direct: 566k postGC: 2.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 94% 95% 94% 95% 95% 95% 96% 95% 94% 95%) -> (6.4k/62k) -> write( 3%)
0:59:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.3M 13% 7.8k/s ] features: [ 1.8B 48k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.4 gc: 3% heap: 6.2G/32G direct: 566k postGC: 2.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 95% 94% 93% 92% 93% 93% 93% 93% 94% 94%) -> (6.2k/62k) -> write( 2%)
1:00:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.4M 14% 7.8k/s ] features: [ 1.8B 499k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 3% heap: 6.5G/32G direct: 566k postGC: 2.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 94% 94% 95% 94% 94% 94% 94% 95% 94% 95%) -> (7k/62k) -> write( 7%)
1:00:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.5M 15% 8.8k/s ] features: [ 1.8B 462k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 3.3G/32G direct: 566k postGC: 2.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 95% 94% 96% 96% 95% 94% 94% 95% 94% 95%) -> (4.3k/62k) -> write( 7%)
1:00:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.6M 15% 9.2k/s ] features: [ 1.8B 54k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.3 gc: 2% heap: 3.2G/32G direct: 566k postGC: 2.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 91% 91% 92% 93% 93% 92% 93% 93% 93% 92%) -> (6.4k/62k) -> write( 3%)
1:00:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.7M 16% 10k/s ] features: [ 1.8B 41k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 7G/32G direct: 566k postGC: 2.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 96% 95% 97% 95% 95% 96% 95% 96% 96%) -> (6.2k/62k) -> write( 2%)
1:00:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.8M 17% 9.8k/s ] features: [ 1.8B 42k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 3.8G/32G direct: 566k postGC: 2.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 95% 94% 95% 96% 95% 94% 95% 95% 95%) -> (5.5k/62k) -> write( 2%)
1:00:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.9M 18% 10k/s ] features: [ 1.8B 36k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 4% heap: 2.6G/32G direct: 566k postGC: 2.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 90% 91% 89% 90% 92% 91% 90% 89% 91% 91%) -> (4.2k/62k) -> write( 2%)
1:01:04 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='glacier', geom=Polygon, attrs={}}: 6536, 4059 is not filled!
1:01:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2M 19% 11k/s ] features: [ 1.8B 43k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10 gc: 2% heap: 3.5G/32G direct: 566k postGC: 2.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 88% 93% 89% 88% 89% 90% 94% 89% 89% 90%) -> (5.6k/62k) -> write( 2%)
1:01:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.1M 20% 11k/s ] features: [ 1.8B 48k/s ] 116G blocks: [ 39k 99% 0/s ]
cpus: 9.4 gc: 7% heap: 4.3G/32G direct: 566k postGC: 2.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(81% 85% 85% 84% 87% 86% 86% 82% 82% 83% 87%) -> (6.8k/62k) -> write( 2%)
1:01:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.3M 21% 11k/s ] features: [ 1.8B 42k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.8 gc: 1% heap: 5.3G/32G direct: 566k postGC: 2.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 88% 90% 88% 90% 87% 89% 88% 89% 88% 90%) -> (4.2k/62k) -> write( 2%)
1:01:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.4M 23% 13k/s ] features: [ 1.8B 51k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.5 gc: 3% heap: 3.3G/32G direct: 566k postGC: 2.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 94% 95% 93% 95% 94% 94% 93% 93% 94% 95%) -> (6.1k/62k) -> write( 2%)
1:01:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.5M 24% 13k/s ] features: [ 1.8B 40k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.5 gc: 2% heap: 7.3G/32G direct: 566k postGC: 2.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 95% 95% 95% 95% 95% 93% 95%) -> (5k/62k) -> write( 2%)
1:01:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.7M 25% 13k/s ] features: [ 1.8B 43k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.4 gc: 3% heap: 4.4G/32G direct: 566k postGC: 2.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 93% 94% 95% 95% 94% 94%) -> (5.4k/62k) -> write( 2%)
1:02:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.8M 26% 10k/s ] features: [ 1.8B 38k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.4 gc: 2% heap: 6.7G/32G direct: 566k postGC: 2.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 93% 91% 95% 94% 92% 95% 96% 92% 93% 93%) -> (5.7k/62k) -> write( 2%)
1:02:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.9M 27% 11k/s ] features: [ 1.8B 38k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 4.5G/32G direct: 566k postGC: 2.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 95% 96% 95% 95% 96% 96% 95% 95% 96%) -> (4.4k/62k) -> write( 2%)
1:02:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3M 29% 13k/s ] features: [ 1.8B 45k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 3G/32G direct: 566k postGC: 2.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 94% 95% 96% 95% 95% 96% 95% 96% 96%) -> (5.3k/62k) -> write( 2%)
1:02:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.2M 30% 13k/s ] features: [ 1.8B 40k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.5 gc: 2% heap: 5.8G/32G direct: 566k postGC: 3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 95% 94% 94% 93% 94% 94% 95% 95% 95% 94%) -> (4.1k/62k) -> write( 2%)
1:02:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.3M 31% 15k/s ] features: [ 1.8B 39k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.5 gc: 3% heap: 10G/32G direct: 566k postGC: 3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 96% 94% 95% 95% 95% 95% 95% 94% 94% 94%) -> (4.7k/62k) -> write( 2%)
1:02:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.5M 33% 14k/s ] features: [ 1.8B 43k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 7.6G/32G direct: 566k postGC: 3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 97% 96% 96% 95% 95% 96% 95% 96% 96% 94%) -> (4.9k/62k) -> write( 2%)
1:03:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.6M 34% 15k/s ] features: [ 1.8B 39k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.4 gc: 2% heap: 10G/32G direct: 566k postGC: 3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 95% 93% 95% 92% 93% 94% 93% 94% 93% 93%) -> (6.3k/62k) -> write( 2%)
1:03:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.7M 35% 13k/s ] features: [ 1.8B 35k/s ] 118G blocks: [ 40k 99% <1/s ]
cpus: 10.2 gc: 2% heap: 4.8G/32G direct: 566k postGC: 3.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 92% 90% 90% 92% 92% 91% 91% 93% 91% 91%) -> (5.7k/62k) -> write( 3%)
1:03:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.9M 36% 11k/s ] features: [ 1.8B 30k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.8 gc: 7% heap: 6.7G/32G direct: 566k postGC: 3.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(86% 88% 86% 86% 87% 88% 87% 88% 87% 89% 86%) -> (5.5k/62k) -> write( 2%)
1:03:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4M 38% 13k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.1 gc: 3% heap: 8G/32G direct: 566k postGC: 3.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 91% 89% 90% 89% 92% 90% 92% 90% 91% 91%) -> (6.4k/62k) -> write( 2%)
1:03:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.1M 39% 15k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.1 gc: 3% heap: 9.4G/32G direct: 566k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 90% 90% 90% 88% 93% 90% 90% 93% 93% 91%) -> (4.9k/62k) -> write( 2%)
1:03:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.3M 41% 16k/s ] features: [ 1.8B 39k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 4% heap: 8.9G/32G direct: 566k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 92% 92% 92% 91% 90% 92% 92% 92% 92% 91%) -> (6.2k/62k) -> write( 2%)
1:04:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.5M 42% 16k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 2% heap: 6.3G/32G direct: 566k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 96% 95% 95% 95% 95% 96% 96%) -> (6k/62k) -> write( 2%)
1:04:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.6M 44% 16k/s ] features: [ 1.8B 40k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 2% heap: 3.9G/32G direct: 566k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (3.1k/62k) -> write( 2%)
1:04:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.8M 45% 13k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 2% heap: 7.2G/32G direct: 566k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 94% 94% 95% 94% 94% 95% 94% 97% 94% 94%) -> (6.7k/62k) -> write( 2%)
1:04:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.9M 46% 14k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 5.9G/32G direct: 566k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 96%) -> (3.9k/62k) -> write( 2%)
1:04:37 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 15536, 3744 is not filled!
1:04:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.1M 48% 15k/s ] features: [ 1.8B 36k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 5.1G/32G direct: 566k postGC: 3.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 96% 97% 96% 96% 97% 97% 97% 97% 97% 97%) -> (5k/62k) -> write( 2%)
1:04:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.2M 49% 16k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 4.9G/32G direct: 566k postGC: 3.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (6.3k/62k) -> write( 2%)
1:05:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.4M 51% 15k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10 gc: 1% heap: 6.5G/32G direct: 566k postGC: 3.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 89% 88% 88% 89% 90% 93% 87% 92% 88% 90%) -> (6.1k/62k) -> write( 2%)
1:05:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.6M 53% 22k/s ] features: [ 1.8B 40k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.9 gc: 1% heap: 9.1G/32G direct: 566k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 90% 88% 86% 90% 90% 90% 88% 90% 90% 92%) -> (4.6k/62k) -> write( 2%)
1:05:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.8M 54% 15k/s ] features: [ 1.8B 40k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10 gc: 1% heap: 5.5G/32G direct: 566k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 89% 89% 91% 89% 88% 91% 91% 89% 88% 91%) -> (3.7k/62k) -> write( 2%)
1:05:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.9M 56% 15k/s ] features: [ 1.8B 40k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.4 gc: 1% heap: 9.1G/32G direct: 566k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 94% 93% 94% 93% 94% 93% 95% 93% 93% 93%) -> (5.5k/62k) -> write( 2%)
1:05:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.1M 57% 17k/s ] features: [ 1.8B 46k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 7.7G/32G direct: 566k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97%) -> (5.5k/62k) -> write( 2%)
1:05:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.2M 59% 15k/s ] features: [ 1.8B 36k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 1% heap: 10G/32G direct: 566k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 93% 93% 93% 91% 91% 91% 91% 91% 91% 93%) -> (5.7k/62k) -> write( 2%)
1:06:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.5M 61% 20k/s ] features: [ 1.8B 47k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 1% heap: 5.9G/32G direct: 566k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 94% 91% 92% 94% 93% 92% 93% 92% 94% 94%) -> (5.7k/62k) -> write( 2%)
1:06:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.7M 62% 21k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.5 gc: 1% heap: 4.3G/32G direct: 566k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 95% 93% 95% 94% 95% 92% 94% 92% 95% 95%) -> (6.2k/62k) -> write( 3%)
1:06:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.9M 64% 18k/s ] features: [ 1.8B 38k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 10G/32G direct: 566k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 96% 96% 95% 93% 95% 95% 95% 94% 95% 96%) -> (4.8k/62k) -> write( 2%)
1:06:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7M 66% 15k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.5 gc: 1% heap: 9.8G/32G direct: 566k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 95% 95% 94% 94% 97% 95% 93% 95% 93% 95%) -> (6k/62k) -> write( 2%)
1:06:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.1M 67% 12k/s ] features: [ 1.8B 34k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 9.7G/32G direct: 566k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 97% 97% 96% 97% 97% 96% 96% 97% 97% 97%) -> (4.6k/62k) -> write( 2%)
1:06:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.3M 68% 11k/s ] features: [ 1.8B 34k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 10G/32G direct: 566k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (5.2k/62k) -> write( 2%)
1:07:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.4M 69% 12k/s ] features: [ 1.8B 33k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 4G/32G direct: 566k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98%) -> (4.9k/62k) -> write( 2%)
1:07:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.5M 71% 16k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 6.8G/32G direct: 566k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (6.2k/62k) -> write( 2%)
1:07:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.7M 72% 15k/s ] features: [ 1.8B 37k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 8.4G/32G direct: 566k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 95% 95% 96% 95% 95% 97% 97%) -> (4.5k/62k) -> write( 2%)
1:07:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.8M 73% 14k/s ] features: [ 1.8B 38k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 9G/32G direct: 566k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 97% 93% 96% 97% 97% 96% 97% 97% 97%) -> (4.7k/62k) -> write( 2%)
1:07:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8M 75% 19k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 4G/32G direct: 566k postGC: 4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 97% 95% 96% 96% 96% 96% 96% 96% 96%) -> (5.4k/62k) -> write( 2%)
1:07:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.2M 77% 21k/s ] features: [ 1.8B 41k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 5.9G/32G direct: 566k postGC: 4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 95% 96% 95% 95% 96% 96% 97% 96% 96%) -> (3.8k/62k) -> write( 2%)
1:08:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.5M 79% 22k/s ] features: [ 1.8B 43k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 8G/32G direct: 566k postGC: 4.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 95% 95% 95% 95% 96% 97% 96% 95% 96%) -> (5.8k/62k) -> write( 2%)
1:08:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.7M 81% 23k/s ] features: [ 1.8B 51k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 6.5G/32G direct: 566k postGC: 4.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (3.9k/62k) -> write( 2%)
1:08:21 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13974, 3196 is not filled!
1:08:27 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13944, 3207 is not filled!
1:08:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.9M 83% 21k/s ] features: [ 1.8B 49k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 11 gc: 1% heap: 4.2G/32G direct: 566k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (6k/62k) -> write( 3%)
1:08:27 WAR [osm_pass2:process] - Error slicing feature at z13: Feature{layer='water', geom=Polygon, attrs={}}: 6972, 1607 is not filled!
1:08:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.1M 85% 21k/s ] features: [ 1.8B 46k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 10G/32G direct: 566k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (3.4k/62k) -> write( 2%)
1:08:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.3M 87% 22k/s ] features: [ 1.8B 43k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 7.9G/32G direct: 566k postGC: 4.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 96% 96% 97% 96% 97% 96% 96% 96% 96%) -> (3.3k/62k) -> write( 2%)
1:08:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.6M 89% 21k/s ] features: [ 1.8B 42k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 7.2G/32G direct: 566k postGC: 4.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 97% 96% 97% 97% 97% 97% 96% 97% 96%) -> (5.1k/62k) -> write( 2%)
1:09:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.7M 91% 17k/s ] features: [ 1.8B 40k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 2% heap: 7.4G/32G direct: 566k postGC: 4.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 95% 95% 96% 96% 95% 95% 92% 95% 96%) -> (5.3k/62k) -> write( 3%)
1:09:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.9M 93% 19k/s ] features: [ 1.8B 43k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 2% heap: 9.1G/32G direct: 566k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97%) -> (5.2k/62k) -> write( 2%)
1:09:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 95% 18k/s ] features: [ 1.8B 41k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 6.9G/32G direct: 566k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( -%) -> (10/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (6.4k/62k) -> write( 2%)
1:09:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 96% 18k/s ] features: [ 1.8B 40k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 10G/32G direct: 566k postGC: 4.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (4/22) -> process(98% 98% 99% 98% 99% 98% 98% 99% 98% 98% 98%) -> (4.1k/62k) -> write( 2%)
1:09:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 98% 17k/s ] features: [ 1.8B 44k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 10G/32G direct: 566k postGC: 4.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (1/22) -> process(98% 99% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (5.1k/62k) -> write( 2%)
1:09:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 100% 19k/s ] features: [ 1.8B 48k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 11 gc: 1% heap: 10G/32G direct: 566k postGC: 4.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (0/22) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (5.8k/62k) -> write( 3%)
1:09:57 INF [osm_pass2:process] - Finished relations: 10,752,655 (13k/s) in 13m8s cpu:2h18m12s gc:14s avg:10.5
1:09:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 100% 9.2k/s ] features: [ 1.8B 54k/s ] 119G blocks: [ 40k 100% 5/s ]
cpus: 9.7 gc: 1% heap: 7.2G/32G direct: 16k postGC: 4.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (0/22) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
1:09:57 DEB [osm_pass2] - Processed 40,252 blocks:
1:09:57 DEB [osm_pass2] - nodes: 8,274,330,803 (25M/s) in 5m19s cpu:57m58s gc:6s avg:10.9
1:09:57 DEB [osm_pass2] - ways: 927,681,304 (349k/s) in 44m18s cpu:7h38m2s gc:1m12s avg:10.3
1:09:57 DEB [osm_pass2] - relations: 10,752,655 (13k/s) in 13m8s cpu:2h18m12s gc:14s avg:10.5
1:09:57 INF [osm_pass2] - Finished in 1h2m44s cpu:10h54m13s gc:1m32s avg:10.4
1:09:57 INF [osm_pass2] - read 1x(0% 3s sys:1s wait:1h2m7s done:32s)
1:09:57 INF [osm_pass2] - process 11x(91% 57m18s sys:27s block:3s)
1:09:57 INF [osm_pass2] - write 1x(14% 9m4s sys:2m10s wait:53m28s)
1:10:09 INF [ocean] -
1:10:09 INF [ocean] - Starting...
1:10:19 INF [ocean] - read: [ 648 4% 64/s ] write: [ 3.2M 326k/s ] 121G
cpus: 10.8 gc: 10% heap: 9.6G/32G direct: 51M postGC: 1.4G
-> (0/3) -> read(54%) -> (1k/1k) -> process(78% 81% 79% 80% 80% 78% 82% 81% 77% 80% 78%) -> (5.5k/62k) -> write( 5%)
1:10:29 INF [ocean] - read: [ 1.1k 8% 52/s ] write: [ 6.3M 306k/s ] 121G
cpus: 11.1 gc: 6% heap: 8.9G/32G direct: 51M postGC: 1.9G
-> (0/3) -> read(11%) -> (1k/1k) -> process(94% 94% 94% 93% 93% 93% 94% 94% 94% 93% 94%) -> (5.8k/62k) -> write( 5%)
1:10:39 INF [ocean] - read: [ 1.8k 13% 72/s ] write: [ 10M 412k/s ] 121G
cpus: 11.2 gc: 7% heap: 5G/32G direct: 51M postGC: 2.6G
-> (0/3) -> read(18%) -> (1k/1k) -> process(92% 92% 93% 92% 93% 92% 92% 90% 92% 92% 93%) -> (5.3k/62k) -> write( 6%)
1:10:49 INF [ocean] - read: [ 2.3k 16% 43/s ] write: [ 13M 293k/s ] 121G
cpus: 11 gc: 4% heap: 13G/32G direct: 51M postGC: 2.8G
-> (0/3) -> read(10%) -> (1k/1k) -> process(96% 95% 96% 94% 95% 95% 95% 96% 95% 95% 96%) -> (7.2k/62k) -> write( 4%)
1:10:59 INF [ocean] - read: [ 2.8k 20% 54/s ] write: [ 16M 356k/s ] 121G
cpus: 11.1 gc: 6% heap: 5.2G/32G direct: 51M postGC: 3.2G
-> (0/3) -> read(14%) -> (1k/1k) -> process(94% 93% 93% 93% 93% 93% 93% 94% 93% 93% 94%) -> (8k/62k) -> write( 5%)
1:11:09 INF [ocean] - read: [ 3.4k 24% 52/s ] write: [ 20M 308k/s ] 122G
cpus: 11.1 gc: 5% heap: 7.3G/32G direct: 51M postGC: 3.2G
-> (0/3) -> read(10%) -> (1k/1k) -> process(95% 94% 95% 94% 95% 95% 95% 95% 95% 95% 95%) -> (6.4k/62k) -> write( 5%)
1:11:19 WAR [ocean:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 14058, 3292 is not filled!
1:11:19 INF [ocean] - read: [ 3.8k 27% 46/s ] write: [ 22M 281k/s ] 122G
cpus: 11 gc: 4% heap: 11G/32G direct: 51M postGC: 3.2G
-> (0/3) -> read( 9%) -> (1k/1k) -> process(96% 94% 95% 95% 95% 95% 95% 96% 95% 95% 96%) -> (4.8k/62k) -> write( 4%)
1:11:27 WAR [ocean:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 2140, 5036 is not filled!
1:11:29 INF [ocean] - read: [ 4.5k 31% 65/s ] write: [ 26M 390k/s ] 122G
cpus: 11.1 gc: 5% heap: 10G/32G direct: 51M postGC: 3.2G
-> (0/3) -> read(14%) -> (1k/1k) -> process(95% 94% 94% 94% 94% 94% 95% 95% 94% 94% 95%) -> (5.2k/62k) -> write( 6%)
1:11:39 INF [ocean] - read: [ 5.2k 36% 66/s ] write: [ 30M 392k/s ] 122G
cpus: 11.1 gc: 5% heap: 8.8G/32G direct: 51M postGC: 3.3G
-> (0/3) -> read(14%) -> (1k/1k) -> process(95% 95% 94% 94% 95% 94% 95% 95% 95% 95% 94%) -> (6.8k/62k) -> write( 6%)
1:11:49 INF [ocean] - read: [ 5.8k 40% 63/s ] write: [ 34M 392k/s ] 122G
cpus: 11.1 gc: 5% heap: 13G/32G direct: 51M postGC: 3.2G
-> (0/3) -> read( 7%) -> (1k/1k) -> process(94% 93% 95% 94% 94% 94% 94% 94% 95% 94% 94%) -> (6.2k/62k) -> write( 6%)
1:11:59 INF [ocean] - read: [ 6.5k 46% 75/s ] write: [ 41M 725k/s ] 123G
cpus: 11 gc: 4% heap: 7G/32G direct: 51M postGC: 2.9G
-> (0/3) -> read( 0%) -> (1k/1k) -> process(96% 96% 95% 95% 95% 95% 96% 95% 96% 96% 95%) -> (39k/62k) -> write(10%)
1:12:09 INF [ocean] - read: [ 10k 73% 397/s ] write: [ 132M 9M/s ] 127G
cpus: 10 gc: 1% heap: 12G/32G direct: 51M postGC: 2.8G
-> (0/3) -> read( 1%) -> (1k/1k) -> process(80% 80% 80% 79% 80% 79% 82% 79% 88% 79% 80%) -> (57k/62k) -> write(98%)
1:12:19 INF [ocean] - read: [ 14k 100% 415/s ] write: [ 222M 9.5M/s ] 128G
cpus: 8.9 gc: 0% heap: 9G/32G direct: 51M postGC: 2.8G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
1:12:19 INF [ocean] - Finished in 2m10s cpu:23m24s gc:6s avg:10.8
1:12:19 INF [ocean] - read 1x(13% 16s wait:1m47s done:3s)
1:12:19 INF [ocean] - process 11x(90% 1m57s wait:5s)
1:12:19 INF [ocean] - write 1x(19% 25s sys:8s wait:1m43s)
1:12:19 INF - Deleting node.db to make room for output file
1:12:19 INF [sort] -
1:12:19 INF [sort] - Starting...
1:12:19 INF [sort] - Grouped 122 chunks into 119
1:12:31 INF [sort] - chunks: [ 1 / 119 1% ] 130G
cpus: 9.8 gc: 13% heap: 10G/32G direct: 51M postGC: 11G
-> (113/125) -> worker(33% 40% 55% 46% 37%)
1:12:42 INF [sort] - chunks: [ 5 / 119 4% ] 130G
cpus: 9.1 gc: 15% heap: 13G/32G direct: 51M postGC: 13G
-> (109/125) -> worker(31% 37% 30% 28% 21%)
1:12:52 INF [sort] - chunks: [ 10 / 119 8% ] 130G
cpus: 8.6 gc: 13% heap: 21G/32G direct: 51M postGC: 21G
-> (104/125) -> worker(45% 32% 30% 53% 34%)
1:13:03 INF [sort] - chunks: [ 14 / 119 12% ] 129G
cpus: 8.4 gc: 16% heap: 29G/32G direct: 51M postGC: 29G
-> (100/125) -> worker(32% 44% 32% 34% 39%)
1:13:14 INF [sort] - chunks: [ 18 / 119 15% ] 129G
cpus: 5.9 gc: 9% heap: 31G/32G direct: 51M postGC: 31G
-> (96/125) -> worker(15% 22% 24% 25% 20%)
1:13:24 INF [sort] - chunks: [ 20 / 119 17% ] 128G
cpus: 8.9 gc: 24% heap: 9.7G/32G direct: 18M postGC: 9.2G
-> (94/125) -> worker(32% 19% 43% 36% 37%)
1:13:34 INF [sort] - chunks: [ 25 / 119 21% ] 128G
cpus: 7.8 gc: 13% heap: 16G/32G direct: 18M postGC: 16G
-> (89/125) -> worker(32% 33% 47% 46% 32%)
1:13:44 INF [sort] - chunks: [ 27 / 119 23% ] 128G
cpus: 10.1 gc: 10% heap: 13G/32G direct: 18M postGC: 12G
-> (87/125) -> worker(32% 43% 30% 46% 41%)
1:13:55 INF [sort] - chunks: [ 32 / 119 27% ] 129G
cpus: 10.2 gc: 17% heap: 22G/32G direct: 18M postGC: 22G
-> (82/125) -> worker(45% 48% 41% 42% 44%)
1:14:05 INF [sort] - chunks: [ 35 / 119 29% ] 132G
cpus: 7.5 gc: 11% heap: 26G/32G direct: 18M postGC: 26G
-> (79/125) -> worker(34% 56% 42% 29% 39%)
1:14:15 INF [sort] - chunks: [ 40 / 119 34% ] 128G
cpus: 4 gc: 11% heap: 6.6G/32G direct: 18M postGC: 6.3G
-> (74/125) -> worker( 1% 14% 13% 35% 13%)
1:14:25 INF [sort] - chunks: [ 42 / 119 35% ] 128G
cpus: 10 gc: 11% heap: 11G/32G direct: 18M postGC: 11G
-> (72/125) -> worker(40% 34% 40% 43% 43%)
1:14:36 INF [sort] - chunks: [ 45 / 119 38% ] 129G
cpus: 8.8 gc: 13% heap: 19G/32G direct: 18M postGC: 18G
-> (69/125) -> worker(23% 51% 41% 46% 38%)
1:14:47 INF [sort] - chunks: [ 48 / 119 40% ] 132G
cpus: 9 gc: 10% heap: 14G/32G direct: 18M postGC: 14G
-> (66/125) -> worker(49% 30% 33% 35% 58%)
1:14:57 INF [sort] - chunks: [ 54 / 119 45% ] 128G
cpus: 9.2 gc: 19% heap: 24G/32G direct: 18M postGC: 24G
-> (60/125) -> worker(44% 36% 32% 44% 33%)
1:15:07 INF [sort] - chunks: [ 58 / 119 49% ] 128G
cpus: 7.4 gc: 31% heap: 7.1G/32G direct: 18M postGC: 7.1G
-> (56/125) -> worker(24% 27% 17% 22% 30%)
1:15:19 INF [sort] - chunks: [ 59 / 119 50% ] 131G
cpus: 9.3 gc: 4% heap: 9.5G/32G direct: 18M postGC: 9.9G
-> (55/125) -> worker(40% 33% 46% 38% 26%)
1:15:29 INF [sort] - chunks: [ 65 / 119 55% ] 128G
cpus: 6.5 gc: 21% heap: 20G/32G direct: 18M postGC: 19G
-> (49/125) -> worker(21% 35% 31% 25% 36%)
1:15:40 INF [sort] - chunks: [ 69 / 119 58% ] 130G
cpus: 9.7 gc: 9% heap: 24G/32G direct: 18M postGC: 23G
-> (45/125) -> worker(44% 31% 37% 35% 45%)
1:15:50 INF [sort] - chunks: [ 73 / 119 61% ] 128G
cpus: 5.6 gc: 22% heap: 20G/32G direct: 18M postGC: 19G
-> (41/125) -> worker(10% 43% 9% 8% 10%)
1:16:00 INF [sort] - chunks: [ 78 / 119 66% ] 128G
cpus: 9.2 gc: 11% heap: 26G/32G direct: 18M postGC: 25G
-> (36/125) -> worker(36% 53% 40% 51% 63%)
1:16:10 INF [sort] - chunks: [ 79 / 119 66% ] 128G
cpus: 9.9 gc: 33% heap: 8.9G/32G direct: 18M postGC: 8.4G
-> (35/125) -> worker(34% 39% 27% 24% 36%)
1:16:20 INF [sort] - chunks: [ 84 / 119 71% ] 128G
cpus: 9.1 gc: 15% heap: 17G/32G direct: 18M postGC: 16G
-> (30/125) -> worker(50% 49% 45% 39% 32%)
1:16:30 INF [sort] - chunks: [ 87 / 119 73% ] 130G
cpus: 9.2 gc: 4% heap: 11G/32G direct: 18M postGC: 11G
-> (27/125) -> worker(54% 38% 50% 26% 39%)
1:16:40 INF [sort] - chunks: [ 90 / 119 76% ] 128G
cpus: 9.9 gc: 15% heap: 12G/32G direct: 18M postGC: 20G
-> (24/125) -> worker(43% 22% 57% 48% 41%)
1:16:50 INF [sort] - chunks: [ 95 / 119 80% ] 128G
cpus: 7.5 gc: 10% heap: 14G/32G direct: 18M postGC: 13G
-> (19/125) -> worker(46% 32% 41% 39% 31%)
1:17:01 INF [sort] - chunks: [ 95 / 119 80% ] 130G
cpus: 8.3 gc: 13% heap: 21G/32G direct: 18M postGC: 20G
-> (19/125) -> worker(39% 37% 36% 35% 36%)
1:17:11 INF [sort] - chunks: [ 100 / 119 84% ] 128G
cpus: 8.3 gc: 14% heap: 10G/32G direct: 18M postGC: 9.4G
-> (14/125) -> worker(26% 55% 50% 52% 41%)
1:17:21 INF [sort] - chunks: [ 105 / 119 88% ] 128G
cpus: 7.3 gc: 14% heap: 14G/32G direct: 18M postGC: 14G
-> (9/125) -> worker(34% 47% 41% 26% 33%)
1:17:33 INF [sort] - chunks: [ 107 / 119 90% ] 131G
cpus: 8.4 gc: 11% heap: 20G/32G direct: 18M postGC: 21G
-> (7/125) -> worker(49% 34% 50% 50% 42%)
1:17:43 INF [sort] - chunks: [ 111 / 119 93% ] 128G
cpus: 7.9 gc: 15% heap: 12G/32G direct: 18M postGC: 10G
-> (3/125) -> worker(32% 47% 44% 33% 18%)
1:17:54 INF [sort] - chunks: [ 117 / 119 98% ] 130G
cpus: 9 gc: 12% heap: 5.3G/32G direct: 18M postGC: 5.1G
-> (0/125) -> worker(56% -% -% -% 44%)
1:17:54 INF [sort] - chunks: [ 119 / 119 100% ] 128G
cpus: 1.4 gc: 0% heap: 5.3G/32G direct: 18M postGC: 5.1G
-> (0/125) -> worker( -% -% -% -% -%)
1:17:54 INF [sort] - Finished in 5m35s cpu:46m55s gc:48s avg:8.4
1:17:54 INF [sort] - worker 5x(36% 2m2s sys:19s wait:58s done:3s)
1:17:54 INF - read:660s write:291s sort:709s
1:17:54 INF [archive] -
1:17:54 INF [archive] - Starting...
1:17:58 INF [archive:write] - Starting z0
1:17:58 INF [archive:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
1:17:58 INF [archive:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
1:17:58 INF [archive:write] - Finished z2 in 0s cpu:0s avg:57.4, now starting z3
1:18:00 INF [archive:write] - Finished z3 in 2s cpu:26s avg:10.9, now starting z4
1:18:04 INF [archive] - features: [ 378k 0% 37k/s ] 128G tiles: [ 292 29/s ] 2.9M
cpus: 11.2 gc: 11% heap: 4G/32G direct: 18M postGC: 2.9G
read(25%) -> (1.5k/1.6k) -> encode(77% 73% 74% 74% 71% 73% 69% 76% 71% 78% 69%) -> (1.6k/1.6k) -> write( 0%)
last tile: 4/13/0 (z4 94%) https://www.openstreetmap.org/#map=4/85.05113/112.50000
1:18:05 INF [archive:write] - Finished z4 in 5s cpu:52s avg:11.1, now starting z5
1:18:13 INF [archive:write] - Finished z5 in 9s cpu:1m34s avg:11, now starting z6
1:18:14 INF [archive] - features: [ 810k 0% 43k/s ] 128G tiles: [ 1.3k 106/s ] 11M
cpus: 11.1 gc: 3% heap: 11G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(88% 86% 85% 90% 88% 91% 85% 91% 87% 89% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/13/14 (z6 4%) https://www.openstreetmap.org/#map=6/70.61261/-106.87500
1:18:24 INF [archive] - features: [ 1.4M 0% 64k/s ] 128G tiles: [ 1.6k 29/s ] 11M
cpus: 11.2 gc: 3% heap: 14G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(94% 92% 92% 95% 97% 92% 94% 95% 91% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/18/12 (z6 12%) https://www.openstreetmap.org/#map=6/74.01954/-78.75000
1:18:34 INF [archive] - features: [ 2.9M 0% 149k/s ] 128G tiles: [ 3.8k 217/s ] 22M
cpus: 11.4 gc: 3% heap: 10G/32G direct: 18M postGC: 3G
read( 2%) -> (1.5k/1.6k) -> encode(88% 88% 93% 88% 89% 94% 92% 91% 92% 91% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/53/27 (z6 80%) https://www.openstreetmap.org/#map=6/27.05913/118.12500
1:18:44 INF [archive] - features: [ 3.4M 0% 51k/s ] 128G tiles: [ 4k 19/s ] 28M
cpus: 11.3 gc: 3% heap: 8.3G/32G direct: 18M postGC: 3.1G
read( 1%) -> (1.5k/1.6k) -> encode(90% 92% 94% 93% 92% 93% 90% 95% 91% 91% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/35/18 (z6 85%) https://www.openstreetmap.org/#map=6/61.60640/16.87500
1:18:54 INF [archive] - features: [ 3.7M 0% 29k/s ] 128G tiles: [ 4k <1/s ] 28M
cpus: 11.4 gc: 2% heap: 7.9G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(92% 92% 94% 95% 90% 96% 89% 88% 93% 91% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/32/18 (z6 85%) https://www.openstreetmap.org/#map=6/61.60640/0.00000
1:18:56 INF [archive:write] - Finished z6 in 42s cpu:8m1s gc:1s avg:11.3, now starting z7
1:19:04 INF [archive] - features: [ 4.5M 0% 76k/s ] 128G tiles: [ 6.4k 246/s ] 37M
cpus: 11.4 gc: 2% heap: 17G/32G direct: 18M postGC: 3G
read( 0%) -> (1.5k/1.6k) -> encode(93% 94% 90% 96% 87% 96% 93% 86% 93% 92% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/34/35 (z7 13%) https://www.openstreetmap.org/#map=7/62.91523/-84.37500
1:19:14 INF [archive] - features: [ 5.4M 0% 95k/s ] 128G tiles: [ 7.4k 91/s ] 45M
cpus: 11.5 gc: 3% heap: 8.9G/32G direct: 18M postGC: 2.7G
read( 1%) -> (1.5k/1.6k) -> encode(91% 90% 91% 87% 87% 90% 90% 91% 93% 91% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/35/50 (z7 18%) https://www.openstreetmap.org/#map=7/36.59789/-81.56250
1:19:24 INF [archive] - features: [ 6.2M 0% 76k/s ] 128G tiles: [ 10k 278/s ] 54M
cpus: 11.6 gc: 3% heap: 13G/32G direct: 18M postGC: 2.5G
read( 2%) -> (1.5k/1.6k) -> encode(87% 90% 92% 89% 88% 79% 90% 86% 91% 87% 90%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/45/103 (z7 38%) https://www.openstreetmap.org/#map=7/-73.22670/-53.43750
1:19:34 INF [archive] - features: [ 8M 0% 180k/s ] 128G tiles: [ 14k 428/s ] 60M
cpus: 11.2 gc: 3% heap: 8.2G/32G direct: 18M postGC: 2.5G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 94% 93% 93% 93% 94% 94% 95% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/113/37 (z7 78%) https://www.openstreetmap.org/#map=7/60.23981/137.81250
1:19:44 INF [archive] - features: [ 9.1M 0% 107k/s ] 128G tiles: [ 15k 87/s ] 70M
cpus: 11.4 gc: 2% heap: 3G/32G direct: 18M postGC: 2.8G
read( 5%) -> (1.5k/1.6k) -> encode(93% 95% 94% 87% 94% 88% 92% 93% 93% 96% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/74/58 (z7 83%) https://www.openstreetmap.org/#map=7/16.63619/28.12500
1:19:54 INF [archive] - features: [ 9.6M 0% 51k/s ] 128G tiles: [ 15k 3/s ] 70M
cpus: 11.3 gc: 7% heap: 11G/32G direct: 18M postGC: 2.9G
read( 0%) -> (1.5k/1.6k) -> encode(89% 86% 86% 91% 88% 89% 88% 83% 86% 89% 87%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/70/60 (z7 83%) https://www.openstreetmap.org/#map=7/11.17840/16.87500
1:20:04 INF [archive] - features: [ 10M 0% 51k/s ] 128G tiles: [ 15k 31/s ] 83M
cpus: 11.2 gc: 3% heap: 13G/32G direct: 18M postGC: 3.3G
read( 2%) -> (1.5k/1.6k) -> encode(96% 95% 91% 95% 95% 91% 94% 96% 96% 91% 93%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/69/38 (z7 85%) https://www.openstreetmap.org/#map=7/58.81374/14.06250
1:20:14 INF [archive] - features: [ 10M 0% 17k/s ] 128G tiles: [ 15k 3/s ] 85M
cpus: 11.1 gc: 4% heap: 3.6G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(94% 94% 92% 90% 94% 94% 95% 90% 95% 93% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/67/32 (z7 85%) https://www.openstreetmap.org/#map=7/66.51326/8.43750
1:20:24 INF [archive] - features: [ 10M 1% 34k/s ] 128G tiles: [ 15k 0/s ] 85M
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/67/32 (z7 85%) https://www.openstreetmap.org/#map=7/66.51326/8.43750
1:20:30 INF [archive:write] - Finished z7 in 1m35s cpu:17m47s gc:3s avg:11.3, now starting z8
1:20:34 INF [archive] - features: [ 11M 1% 57k/s ] 128G tiles: [ 25k 991/s ] 108M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 3.3G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/71/90 (z8 13%) https://www.openstreetmap.org/#map=8/47.04018/-80.15625
1:20:44 INF [archive] - features: [ 11M 1% 20k/s ] 128G tiles: [ 25k 6/s ] 111M
cpus: 11 gc: 3% heap: 3.7G/32G direct: 18M postGC: 3.3G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 96% 97% 96% 96% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/79/91 (z8 13%) https://www.openstreetmap.org/#map=8/46.07323/-68.90625
1:20:54 INF [archive] - features: [ 13M 1% 177k/s ] 128G tiles: [ 25k 0/s ] 111M
cpus: 10.9 gc: 2% heap: 8.2G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/79/91 (z8 13%) https://www.openstreetmap.org/#map=8/46.07323/-68.90625
1:21:04 INF [archive] - features: [ 15M 1% 184k/s ] 128G tiles: [ 28k 318/s ] 125M
cpus: 11 gc: 4% heap: 9G/32G direct: 18M postGC: 3.5G
read( 2%) -> (1.4k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/73/98 (z8 18%) https://www.openstreetmap.org/#map=8/38.82259/-77.34375
1:21:14 INF [archive] - features: [ 15M 1% 16k/s ] 128G tiles: [ 30k 171/s ] 136M
cpus: 11 gc: 3% heap: 11G/32G direct: 18M postGC: 3.5G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.4k/1.6k) -> write( 0%)
last tile: 8/40/71 (z8 21%) https://www.openstreetmap.org/#map=8/62.26792/-123.75000
1:21:24 INF [archive] - features: [ 16M 1% 108k/s ] 128G tiles: [ 42k 1.2k/s ] 148M
cpus: 11 gc: 4% heap: 10G/32G direct: 18M postGC: 3.7G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/67/176 (z8 46%) https://www.openstreetmap.org/#map=8/-55.77657/-85.78125
1:21:34 INF [archive] - features: [ 17M 1% 125k/s ] 128G tiles: [ 54k 1.1k/s ] 162M
cpus: 11 gc: 5% heap: 8.9G/32G direct: 18M postGC: 4G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/252/157 (z8 74%) https://www.openstreetmap.org/#map=8/-37.71859/174.37500
1:21:44 INF [archive] - features: [ 19M 1% 158k/s ] 128G tiles: [ 56k 200/s ] 164M
cpus: 10.9 gc: 4% heap: 13G/32G direct: 18M postGC: 4.1G
read( 1%) -> (1.4k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/231/64 (z8 78%) https://www.openstreetmap.org/#map=8/66.51326/144.84375
1:21:54 INF [archive] - features: [ 20M 1% 142k/s ] 128G tiles: [ 56k 0/s ] 164M
cpus: 11 gc: 2% heap: 7.8G/32G direct: 18M postGC: 4.1G
read( 0%) -> (1.2k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/231/64 (z8 78%) https://www.openstreetmap.org/#map=8/66.51326/144.84375
1:22:04 INF [archive] - features: [ 21M 1% 113k/s ] 128G tiles: [ 60k 345/s ] 187M
cpus: 11 gc: 3% heap: 4.6G/32G direct: 18M postGC: 4.5G
read( 6%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/154/116 (z8 83%) https://www.openstreetmap.org/#map=8/16.63619/36.56250
1:22:14 INF [archive] - features: [ 22M 1% 46k/s ] 128G tiles: [ 60k 16/s ] 188M
cpus: 10.9 gc: 7% heap: 7.1G/32G direct: 18M postGC: 4.6G
read( 0%) -> (1.4k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/137/123 (z8 83%) https://www.openstreetmap.org/#map=8/7.01367/12.65625
1:22:24 INF [archive] - features: [ 22M 1% 16k/s ] 128G tiles: [ 60k 0/s ] 188M
cpus: 10.9 gc: 6% heap: 16G/32G direct: 18M postGC: 4.8G
read( 0%) -> (1.4k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/137/123 (z8 83%) https://www.openstreetmap.org/#map=8/7.01367/12.65625
1:22:34 INF [archive] - features: [ 23M 1% 79k/s ] 128G tiles: [ 61k 91/s ] 202M
cpus: 11 gc: 5% heap: 6.9G/32G direct: 18M postGC: 5G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/141/94 (z8 85%) https://www.openstreetmap.org/#map=8/43.06889/18.28125
1:22:44 INF [archive] - features: [ 25M 1% 190k/s ] 128G tiles: [ 61k 21/s ] 217M
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 5G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/138/85 (z8 85%) https://www.openstreetmap.org/#map=8/51.61802/14.06250
1:22:54 INF [archive] - features: [ 25M 1% 28k/s ] 128G tiles: [ 61k 7/s ] 221M
cpus: 10.9 gc: 5% heap: 15G/32G direct: 18M postGC: 5.2G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/139/72 (z8 85%) https://www.openstreetmap.org/#map=8/61.60640/15.46875
1:23:04 INF [archive] - features: [ 25M 1% 19k/s ] 128G tiles: [ 61k 7/s ] 225M
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 5.1G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/132/75 (z8 85%) https://www.openstreetmap.org/#map=8/59.53432/5.62500
1:23:14 INF [archive] - features: [ 25M 1% 22k/s ] 128G tiles: [ 61k 8/s ] 228M
cpus: 11 gc: 3% heap: 9.8G/32G direct: 18M postGC: 5.1G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/136/66 (z8 85%) https://www.openstreetmap.org/#map=8/65.36684/11.25000
1:23:24 INF [archive] - features: [ 26M 1% 38k/s ] 128G tiles: [ 62k 54/s ] 246M
cpus: 11 gc: 2% heap: 8.1G/32G direct: 18M postGC: 5.1G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/160/75 (z8 86%) https://www.openstreetmap.org/#map=8/59.53432/45.00000
1:23:34 INF [archive] - features: [ 26M 1% 42k/s ] 128G tiles: [ 64k 197/s ] 255M
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 5.1G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/144/57 (z8 89%) https://www.openstreetmap.org/#map=8/70.14036/22.50000
1:23:37 INF [archive:write] - Finished z8 in 3m6s cpu:34m3s gc:7s avg:11, now starting z9
1:23:44 INF [archive] - features: [ 27M 1% 76k/s ] 128G tiles: [ 100k 3.5k/s ] 274M
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 5.2G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/135/172 (z9 13%) https://www.openstreetmap.org/#map=9/50.73646/-85.07813
1:23:54 INF [archive] - features: [ 27M 1% 57k/s ] 128G tiles: [ 100k 45/s ] 287M
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 5.4G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/153/190 (z9 13%) https://www.openstreetmap.org/#map=9/42.03297/-72.42188
1:24:05 INF [archive] - features: [ 28M 1% 16k/s ] 128G tiles: [ 100k 4/s ] 288M
cpus: 11 gc: 2% heap: 15G/32G direct: 18M postGC: 5.4G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/158/180 (z9 13%) https://www.openstreetmap.org/#map=9/47.04018/-68.90625
1:24:15 INF [archive] - features: [ 29M 1% 136k/s ] 128G tiles: [ 101k 117/s ] 302M
cpus: 11 gc: 1% heap: 5.5G/32G direct: 18M postGC: 5.4G
read( 1%) -> (1.4k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/177/171 (z9 14%) https://www.openstreetmap.org/#map=9/51.17934/-55.54688
1:24:25 INF [archive] - features: [ 31M 1% 162k/s ] 128G tiles: [ 110k 917/s ] 317M
cpus: 11 gc: 4% heap: 5.7G/32G direct: 18M postGC: 5.7G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/176/246 (z9 17%) https://www.openstreetmap.org/#map=9/7.01367/-56.25000
1:24:35 INF [archive] - features: [ 32M 2% 119k/s ] 128G tiles: [ 113k 229/s ] 321M
cpus: 10.9 gc: 5% heap: 17G/32G direct: 18M postGC: 5.8G
read( 1%) -> (1.4k/1.6k) -> encode(95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/146/196 (z9 18%) https://www.openstreetmap.org/#map=9/38.82259/-77.34375
1:24:45 INF [archive] - features: [ 35M 2% 287k/s ] 128G tiles: [ 118k 530/s ] 338M
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 6.1G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/117/217 (z9 20%) https://www.openstreetmap.org/#map=9/26.43123/-97.73438
1:24:55 INF [archive] - features: [ 35M 2% 20k/s ] 128G tiles: [ 119k 112/s ] 346M
cpus: 10.9 gc: 5% heap: 19G/32G direct: 18M postGC: 6.2G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/106/165 (z9 21%) https://www.openstreetmap.org/#map=9/53.74871/-105.46875
1:25:05 INF [archive] - features: [ 35M 2% 49k/s ] 128G tiles: [ 122k 252/s ] 365M
cpus: 10.9 gc: 3% heap: 7G/32G direct: 18M postGC: 6.2G
read( 1%) -> (1.5k/1.6k) -> encode(97% 96% 97% 96% 97% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/90/164 (z9 22%) https://www.openstreetmap.org/#map=9/54.16243/-116.71875
1:25:15 INF [archive] - features: [ 36M 2% 82k/s ] 128G tiles: [ 168k 4.6k/s ] 377M
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 6.4G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/156/353 (z9 46%) https://www.openstreetmap.org/#map=9/-56.17002/-70.31250
1:25:25 INF [archive] - features: [ 38M 2% 185k/s ] 128G tiles: [ 175k 717/s ] 398M
cpus: 11 gc: 4% heap: 11G/32G direct: 18M postGC: 6.6G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/193/289 (z9 49%) https://www.openstreetmap.org/#map=9/-22.59373/-44.29688
1:25:35 INF [archive] - features: [ 39M 2% 134k/s ] 128G tiles: [ 182k 683/s ] 403M
cpus: 10.9 gc: 5% heap: 12G/32G direct: 18M postGC: 6.7G
read( 1%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/296/258 (z9 51%) https://www.openstreetmap.org/#map=9/-1.40611/28.12500
1:25:45 INF [archive] - features: [ 40M 2% 93k/s ] 128G tiles: [ 223k 4k/s ] 424M
cpus: 11 gc: 4% heap: 14G/32G direct: 18M postGC: 7G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/459/148 (z9 78%) https://www.openstreetmap.org/#map=9/60.23981/142.73438
1:25:55 INF [archive] - features: [ 41M 2% 110k/s ] 128G tiles: [ 223k 0/s ] 424M
cpus: 10.9 gc: 3% heap: 8.5G/32G direct: 18M postGC: 7G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 96% 97% 97% 97% 97% 97% 96% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/459/148 (z9 78%) https://www.openstreetmap.org/#map=9/60.23981/142.73438
1:26:05 INF [archive] - features: [ 44M 2% 205k/s ] 128G tiles: [ 229k 687/s ] 456M
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 7.3G
read( 7%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/428/211 (z9 80%) https://www.openstreetmap.org/#map=9/30.14513/120.93750
1:26:15 INF [archive] - features: [ 45M 2% 153k/s ] 128G tiles: [ 229k 1/s ] 456M
cpus: 10.9 gc: 6% heap: 12G/32G direct: 18M postGC: 7.4G
read( 0%) -> (1.4k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/424/209 (z9 80%) https://www.openstreetmap.org/#map=9/31.35364/118.12500
1:26:25 INF [archive] - features: [ 46M 2% 145k/s ] 128G tiles: [ 233k 403/s ] 477M
cpus: 11 gc: 4% heap: 9.1G/32G direct: 18M postGC: 7.7G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/362/209 (z9 82%) https://www.openstreetmap.org/#map=9/31.35364/74.53125
1:26:35 INF [archive] - features: [ 48M 2% 111k/s ] 128G tiles: [ 236k 270/s ] 482M
cpus: 11 gc: 5% heap: 13G/32G direct: 18M postGC: 7.8G
read( 1%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/303/233 (z9 83%) https://www.openstreetmap.org/#map=9/15.96133/33.04688
1:26:45 INF [archive] - features: [ 48M 2% 65k/s ] 128G tiles: [ 237k 58/s ] 487M
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 7.8G
read( 0%) -> (1.4k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/272/249 (z9 83%) https://www.openstreetmap.org/#map=9/4.91583/11.25000
1:26:55 INF [archive] - features: [ 49M 2% 33k/s ] 128G tiles: [ 240k 329/s ] 514M
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 8.1G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/289/174 (z9 85%) https://www.openstreetmap.org/#map=9/49.83798/23.20313
1:27:05 INF [archive] - features: [ 49M 2% 37k/s ] 128G tiles: [ 240k <1/s ] 515M
cpus: 10.9 gc: 4% heap: 15G/32G direct: 18M postGC: 8.2G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/290/176 (z9 85%) https://www.openstreetmap.org/#map=9/48.92250/23.90625
1:27:15 INF [archive] - features: [ 49M 2% 42k/s ] 128G tiles: [ 240k 28/s ] 522M
cpus: 10.9 gc: 3% heap: 19G/32G direct: 18M postGC: 8.2G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/280/187 (z9 85%) https://www.openstreetmap.org/#map=9/43.58039/16.87500
1:27:25 INF [archive] - features: [ 50M 2% 86k/s ] 128G tiles: [ 240k 14/s ] 530M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 8.3G
read( 1%) -> (1.5k/1.6k) -> encode(96% 97% 97% 96% 96% 96% 97% 96% 97% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/275/180 (z9 85%) https://www.openstreetmap.org/#map=9/47.04018/13.35938
1:27:35 INF [archive] - features: [ 51M 2% 112k/s ] 128G tiles: [ 241k 15/s ] 535M
cpus: 10.9 gc: 5% heap: 8.7G/32G direct: 18M postGC: 8.3G
read( 1%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/259/190 (z9 85%) https://www.openstreetmap.org/#map=9/42.03297/2.10938
1:27:45 INF [archive] - features: [ 54M 3% 255k/s ] 128G tiles: [ 241k 40/s ] 552M
cpus: 11 gc: 4% heap: 18G/32G direct: 18M postGC: 8.5G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/268/167 (z9 85%) https://www.openstreetmap.org/#map=9/52.90890/8.43750
1:27:55 INF [archive] - features: [ 55M 3% 131k/s ] 128G tiles: [ 241k 25/s ] 562M
cpus: 11 gc: 7% heap: 12G/32G direct: 18M postGC: 8.8G
read( 3%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/282/163 (z9 85%) https://www.openstreetmap.org/#map=9/54.57206/18.28125
1:28:05 INF [archive] - features: [ 56M 3% 31k/s ] 128G tiles: [ 242k 24/s ] 570M
cpus: 10.9 gc: 4% heap: 11G/32G direct: 18M postGC: 8.8G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/277/154 (z9 85%) https://www.openstreetmap.org/#map=9/58.07788/14.76563
1:28:15 INF [archive] - features: [ 56M 3% 23k/s ] 128G tiles: [ 242k 24/s ] 575M
cpus: 11 gc: 2% heap: 20G/32G direct: 18M postGC: 8.9G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/265/151 (z9 85%) https://www.openstreetmap.org/#map=9/59.17593/6.32813
1:28:25 INF [archive] - features: [ 56M 3% 22k/s ] 128G tiles: [ 242k 35/s ] 582M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 8.9G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/272/134 (z9 85%) https://www.openstreetmap.org/#map=9/64.77413/11.25000
1:28:35 INF [archive] - features: [ 56M 3% 30k/s ] 128G tiles: [ 243k 38/s ] 591M
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 8.9G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/296/140 (z9 86%) https://www.openstreetmap.org/#map=9/62.91523/28.12500
1:28:45 INF [archive] - features: [ 57M 3% 27k/s ] 128G tiles: [ 243k 29/s ] 601M
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 9G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/296/146 (z9 86%) https://www.openstreetmap.org/#map=9/60.93043/28.12500
1:28:55 INF [archive] - features: [ 57M 3% 33k/s ] 128G tiles: [ 243k 40/s ] 611M
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 9G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/311/135 (z9 86%) https://www.openstreetmap.org/#map=9/64.47279/38.67188
1:29:05 INF [archive] - features: [ 57M 3% 49k/s ] 128G tiles: [ 245k 197/s ] 628M
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 9.1G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/341/166 (z9 87%) https://www.openstreetmap.org/#map=9/53.33087/59.76563
1:29:15 INF [archive] - features: [ 58M 3% 43k/s ] 128G tiles: [ 252k 687/s ] 645M
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 9.1G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/289/118 (z9 89%) https://www.openstreetmap.org/#map=9/69.16256/23.20313
1:29:22 INF [archive:write] - Finished z9 in 5m45s cpu:1h3m6s gc:12s avg:11, now starting z10
1:29:25 INF [archive] - features: [ 59M 3% 63k/s ] 128G tiles: [ 387k 13k/s ] 676M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 9.4G
read( 4%) -> (1.5k/1.6k) -> encode(97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 10/274/268 (z10 13%) https://www.openstreetmap.org/#map=10/64.77413/-83.67188
1:29:35 INF [archive] - features: [ 60M 3% 117k/s ] 128G tiles: [ 391k 450/s ] 692M
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 9.5G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/286/371 (z10 13%) https://www.openstreetmap.org/#map=10/44.33957/-79.45313
1:29:45 INF [archive] - features: [ 60M 3% 58k/s ] 128G tiles: [ 392k 53/s ] 707M
cpus: 10.9 gc: 3% heap: 13G/32G direct: 18M postGC: 9.6G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/291/368 (z10 13%) https://www.openstreetmap.org/#map=10/45.08904/-77.69531
1:29:55 INF [archive] - features: [ 61M 3% 48k/s ] 128G tiles: [ 392k 33/s ] 713M
cpus: 10.9 gc: 3% heap: 16G/32G direct: 18M postGC: 9.7G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/307/380 (z10 13%) https://www.openstreetmap.org/#map=10/42.03297/-72.07031
1:30:05 INF [archive] - features: [ 61M 3% 22k/s ] 128G tiles: [ 393k 143/s ] 727M
cpus: 11 gc: 2% heap: 17G/32G direct: 18M postGC: 9.6G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/326/333 (z10 13%) https://www.openstreetmap.org/#map=10/53.12041/-65.39063
1:30:15 INF [archive] - features: [ 61M 3% 24k/s ] 128G tiles: [ 395k 118/s ] 739M
cpus: 11 gc: 1% heap: 20G/32G direct: 18M postGC: 9.6G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/326/369 (z10 13%) https://www.openstreetmap.org/#map=10/44.84029/-65.39063
1:30:25 INF [archive] - features: [ 64M 3% 239k/s ] 128G tiles: [ 411k 1.6k/s ] 764M
cpus: 11 gc: 1% heap: 18G/32G direct: 18M postGC: 9.8G
read( 3%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/509/359 (z10 15%) https://www.openstreetmap.org/#map=10/47.27923/-1.05469
1:30:35 INF [archive] - features: [ 66M 3% 218k/s ] 128G tiles: [ 428k 1.6k/s ] 784M
cpus: 11 gc: 7% heap: 17G/32G direct: 18M postGC: 10G
read( 5%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/473/485 (z10 17%) https://www.openstreetmap.org/#map=10/9.44906/-13.71094
1:30:45 INF [archive] - features: [ 67M 3% 119k/s ] 128G tiles: [ 442k 1.4k/s ] 789M
cpus: 10.9 gc: 6% heap: 17G/32G direct: 18M postGC: 10G
read( 1%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/304/384 (z10 18%) https://www.openstreetmap.org/#map=10/40.97990/-73.12500
1:30:55 INF [archive] - features: [ 68M 3% 109k/s ] 128G tiles: [ 443k 87/s ] 798M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 10G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/283/398 (z10 18%) https://www.openstreetmap.org/#map=10/37.16032/-80.50781
1:31:05 INF [archive] - features: [ 70M 3% 156k/s ] 128G tiles: [ 444k 80/s ] 808M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 10G
read( 2%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 96% 97% 96% 97% 97% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/257/420 (z10 18%) https://www.openstreetmap.org/#map=10/30.75128/-89.64844
1:31:15 INF [archive] - features: [ 73M 4% 348k/s ] 128G tiles: [ 462k 1.8k/s ] 833M
cpus: 11 gc: 5% heap: 20G/32G direct: 18M postGC: 10G
read( 6%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/195/400 (z10 20%) https://www.openstreetmap.org/#map=10/36.59789/-111.44531
1:31:25 INF [archive] - features: [ 74M 4% 76k/s ] 128G tiles: [ 467k 460/s ] 851M
cpus: 11 gc: 7% heap: 18G/32G direct: 18M postGC: 11G
read( 5%) -> (1.5k/1.6k) -> encode(92% 92% 92% 93% 92% 92% 92% 93% 92% 93% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/196/369 (z10 20%) https://www.openstreetmap.org/#map=10/44.84029/-111.09375
1:31:35 INF [archive] - features: [ 74M 4% 22k/s ] 128G tiles: [ 472k 504/s ] 873M
cpus: 10.9 gc: 4% heap: 12G/32G direct: 18M postGC: 11G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/209/290 (z10 21%) https://www.openstreetmap.org/#map=10/61.27023/-106.52344
1:31:45 INF [archive] - features: [ 75M 4% 41k/s ] 128G tiles: [ 476k 421/s ] 887M
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 11G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/138/337 (z10 22%) https://www.openstreetmap.org/#map=10/52.26816/-131.48438
1:31:55 INF [archive] - features: [ 76M 4% 104k/s ] 128G tiles: [ 488k 1.2k/s ] 912M
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 11G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/51/294 (z10 23%) https://www.openstreetmap.org/#map=10/60.58697/-162.07031
1:32:05 INF [archive] - features: [ 77M 4% 104k/s ] 128G tiles: [ 670k 18k/s ] 926M
cpus: 10.9 gc: 6% heap: 13G/32G direct: 18M postGC: 11G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/372/586 (z10 47%) https://www.openstreetmap.org/#map=10/-25.16517/-49.21875
1:32:15 INF [archive] - features: [ 79M 4% 220k/s ] 128G tiles: [ 684k 1.4k/s ] 955M
cpus: 11 gc: 5% heap: 20G/32G direct: 18M postGC: 11G
read( 5%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/353/540 (z10 48%) https://www.openstreetmap.org/#map=10/-9.79568/-55.89844
1:32:25 INF [archive] - features: [ 80M 4% 120k/s ] 128G tiles: [ 688k 465/s ] 962M
cpus: 10.9 gc: 6% heap: 17G/32G direct: 18M postGC: 12G
read( 1%) -> (1.4k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/397/570 (z10 49%) https://www.openstreetmap.org/#map=10/-19.97335/-40.42969
1:32:35 INF [archive] - features: [ 82M 4% 148k/s ] 128G tiles: [ 789k 10k/s ] 986M
cpus: 11 gc: 4% heap: 20G/32G direct: 18M postGC: 12G
read( 4%) -> (1.4k/1.6k) -> encode(96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/1005/643 (z10 69%) https://www.openstreetmap.org/#map=10/-41.77131/173.32031
1:32:45 INF [archive] - features: [ 83M 4% 146k/s ] 128G tiles: [ 842k 5.2k/s ] 1G
cpus: 11 gc: 6% heap: 19G/32G direct: 18M postGC: 12G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/1014/634 (z10 74%) https://www.openstreetmap.org/#map=10/-39.36828/176.48438
1:32:55 INF [archive] - features: [ 84M 4% 115k/s ] 128G tiles: [ 875k 3.2k/s ] 1G
cpus: 10.9 gc: 7% heap: 12G/32G direct: 18M postGC: 12G
read( 4%) -> (1.5k/1.6k) -> encode(92% 93% 93% 92% 93% 93% 93% 93% 93% 92% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/911/297 (z10 78%) https://www.openstreetmap.org/#map=10/60.06484/140.27344
1:33:05 INF [archive] - features: [ 85M 4% 68k/s ] 128G tiles: [ 884k 941/s ] 1G
cpus: 11 gc: 2% heap: 17G/32G direct: 18M postGC: 12G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/890/285 (z10 79%) https://www.openstreetmap.org/#map=10/62.10388/132.89063
1:33:15 INF [archive] - features: [ 88M 4% 306k/s ] 128G tiles: [ 898k 1.3k/s ] 1G
cpus: 11 gc: 3% heap: 21G/32G direct: 18M postGC: 13G
read( 7%) -> (1.5k/1.6k) -> encode(96% 97% 96% 97% 96% 97% 97% 97% 97% 97% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/870/392 (z10 80%) https://www.openstreetmap.org/#map=10/38.82259/125.85938
1:33:25 INF [archive] - features: [ 89M 4% 101k/s ] 128G tiles: [ 899k 74/s ] 1G
cpus: 10.9 gc: 8% heap: 15G/32G direct: 18M postGC: 13G
read( 3%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/874/403 (z10 80%) https://www.openstreetmap.org/#map=10/35.74651/127.26563
1:33:35 INF [archive] - features: [ 91M 4% 172k/s ] 128G tiles: [ 900k 161/s ] 1G
cpus: 10.9 gc: 3% heap: 20G/32G direct: 18M postGC: 13G
read( 2%) -> (1.5k/1.6k) -> encode(97% 96% 96% 97% 97% 96% 96% 96% 96% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/849/421 (z10 80%) https://www.openstreetmap.org/#map=10/30.44867/118.47656
1:33:45 INF [archive] - features: [ 93M 5% 272k/s ] 128G tiles: [ 913k 1.2k/s ] 1.1G
cpus: 11 gc: 5% heap: 15G/32G direct: 18M postGC: 13G
read( 7%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/763/432 (z10 82%) https://www.openstreetmap.org/#map=10/27.05913/88.24219
1:33:55 INF [archive] - features: [ 96M 5% 225k/s ] 128G tiles: [ 927k 1.4k/s ] 1.1G
cpus: 11 gc: 5% heap: 19G/32G direct: 18M postGC: 14G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/576/484 (z10 83%) https://www.openstreetmap.org/#map=10/9.79568/22.50000
1:34:05 INF [archive] - features: [ 96M 5% 27k/s ] 128G tiles: [ 927k 0/s ] 1.1G
cpus: 10.9 gc: 6% heap: 15G/32G direct: 18M postGC: 14G
read( 0%) -> (1.5k/1.6k) -> encode(93% 94% 94% 94% 94% 93% 94% 93% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/576/484 (z10 83%) https://www.openstreetmap.org/#map=10/9.79568/22.50000
1:34:15 INF [archive] - features: [ 98M 5% 221k/s ] 128G tiles: [ 938k 1k/s ] 1.1G
cpus: 11 gc: 2% heap: 21G/32G direct: 18M postGC: 14G
read( 4%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/613/386 (z10 84%) https://www.openstreetmap.org/#map=10/40.44695/35.50781
1:34:25 INF [archive] - features: [ 99M 5% 102k/s ] 128G tiles: [ 940k 174/s ] 1.2G
cpus: 10.9 gc: 5% heap: 18G/32G direct: 18M postGC: 14G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/634/322 (z10 85%) https://www.openstreetmap.org/#map=10/55.37911/42.89063
1:34:35 INF [archive] - features: [ 100M 5% 89k/s ] 128G tiles: [ 941k 127/s ] 1.2G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 14G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 97% 96% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/586/322 (z10 85%) https://www.openstreetmap.org/#map=10/55.37911/26.01563
1:34:45 INF [archive] - features: [ 101M 5% 50k/s ] 128G tiles: [ 942k 40/s ] 1.2G
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/579/351 (z10 85%) https://www.openstreetmap.org/#map=10/49.15297/23.55469
1:34:55 INF [archive] - features: [ 101M 5% 70k/s ] 128G tiles: [ 942k 3/s ] 1.2G
cpus: 10.9 gc: 1% heap: 19G/32G direct: 18M postGC: 14G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/583/355 (z10 85%) https://www.openstreetmap.org/#map=10/48.22467/24.96094
1:35:05 INF [archive] - features: [ 102M 5% 38k/s ] 128G tiles: [ 943k 112/s ] 1.2G
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 14G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/567/377 (z10 85%) https://www.openstreetmap.org/#map=10/42.81152/19.33594
1:35:15 INF [archive] - features: [ 102M 5% 52k/s ] 128G tiles: [ 943k 40/s ] 1.2G
cpus: 10.9 gc: 4% heap: 19G/32G direct: 18M postGC: 15G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/552/367 (z10 85%) https://www.openstreetmap.org/#map=10/45.33670/14.06250
1:35:25 INF [archive] - features: [ 103M 5% 77k/s ] 128G tiles: [ 944k 17/s ] 1.2G
cpus: 10.9 gc: 4% heap: 16G/32G direct: 18M postGC: 15G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/544/361 (z10 85%) https://www.openstreetmap.org/#map=10/46.80006/11.25000
1:35:35 INF [archive] - features: [ 104M 5% 90k/s ] 128G tiles: [ 944k 39/s ] 1.2G
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 15G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/543/372 (z10 85%) https://www.openstreetmap.org/#map=10/44.08759/10.89844
1:35:45 INF [archive] - features: [ 105M 5% 92k/s ] 128G tiles: [ 944k 24/s ] 1.2G
cpus: 10.9 gc: 5% heap: 21G/32G direct: 18M postGC: 15G
read( 1%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/517/381 (z10 85%) https://www.openstreetmap.org/#map=10/41.77131/1.75781
1:35:55 INF [archive] - features: [ 106M 5% 126k/s ] 128G tiles: [ 945k 51/s ] 1.3G
cpus: 11 gc: 3% heap: 20G/32G direct: 18M postGC: 15G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/529/363 (z10 85%) https://www.openstreetmap.org/#map=10/46.31658/5.97656
1:36:05 INF [archive] - features: [ 108M 5% 169k/s ] 128G tiles: [ 945k 30/s ] 1.3G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 15G
read( 1%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/537/342 (z10 85%) https://www.openstreetmap.org/#map=10/51.17934/8.78906
1:36:15 INF [archive] - features: [ 111M 5% 340k/s ] 128G tiles: [ 946k 104/s ] 1.3G
cpus: 11 gc: 5% heap: 16G/32G direct: 18M postGC: 15G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/557/329 (z10 85%) https://www.openstreetmap.org/#map=10/53.95609/15.82031
1:36:25 INF [archive] - features: [ 113M 5% 168k/s ] 128G tiles: [ 946k 46/s ] 1.3G
cpus: 10.9 gc: 8% heap: 16G/32G direct: 18M postGC: 16G
read( 4%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/565/351 (z10 85%) https://www.openstreetmap.org/#map=10/49.15297/18.63281
1:36:35 INF [archive] - features: [ 114M 5% 80k/s ] 128G tiles: [ 947k 92/s ] 1.3G
cpus: 10.9 gc: 4% heap: 23G/32G direct: 18M postGC: 16G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/557/301 (z10 85%) https://www.openstreetmap.org/#map=10/59.35560/15.82031
1:36:45 INF [archive] - features: [ 114M 5% 34k/s ] 128G tiles: [ 948k 35/s ] 1.3G
cpus: 10.9 gc: 2% heap: 21G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/558/309 (z10 85%) https://www.openstreetmap.org/#map=10/57.89150/16.17188
1:36:55 INF [archive] - features: [ 114M 6% 45k/s ] 128G tiles: [ 949k 101/s ] 1.3G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.5k/1.6k) -> write( 0%)
last tile: 10/532/302 (z10 85%) https://www.openstreetmap.org/#map=10/59.17593/7.03125
1:37:05 INF [archive] - features: [ 115M 6% 17k/s ] 128G tiles: [ 949k 25/s ] 1.4G
cpus: 11 gc: 2% heap: 20G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/538/274 (z10 85%) https://www.openstreetmap.org/#map=10/63.86004/9.14063
1:37:15 INF [archive] - features: [ 115M 6% 11k/s ] 128G tiles: [ 950k 115/s ] 1.4G
cpus: 10.9 gc: 4% heap: 21G/32G direct: 18M postGC: 16G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 96% 96% 95% 96% 96% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/547/264 (z10 85%) https://www.openstreetmap.org/#map=10/65.36684/12.30469
1:37:25 INF [archive] - features: [ 115M 6% 32k/s ] 128G tiles: [ 950k 6/s ] 1.4G
cpus: 10.9 gc: 5% heap: 20G/32G direct: 18M postGC: 16G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/549/276 (z10 85%) https://www.openstreetmap.org/#map=10/63.54855/13.00781
1:37:35 INF [archive] - features: [ 116M 6% 55k/s ] 128G tiles: [ 952k 220/s ] 1.4G
cpus: 11 gc: 2% heap: 22G/32G direct: 18M postGC: 16G
read( 2%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/590/308 (z10 86%) https://www.openstreetmap.org/#map=10/58.07788/27.42188
1:37:45 INF [archive] - features: [ 116M 6% 37k/s ] 128G tiles: [ 953k 56/s ] 1.4G
cpus: 10.9 gc: 3% heap: 22G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/605/289 (z10 86%) https://www.openstreetmap.org/#map=10/61.43877/32.69531
1:37:55 INF [archive] - features: [ 117M 6% 46k/s ] 128G tiles: [ 955k 153/s ] 1.4G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/620/275 (z10 86%) https://www.openstreetmap.org/#map=10/63.70472/37.96875
1:38:05 INF [archive] - features: [ 117M 6% 48k/s ] 128G tiles: [ 958k 389/s ] 1.4G
cpus: 11 gc: 1% heap: 21G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/660/300 (z10 86%) https://www.openstreetmap.org/#map=10/59.53432/52.03125
1:38:15 INF [archive] - features: [ 118M 6% 87k/s ] 128G tiles: [ 960k 184/s ] 1.4G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/640/374 (z10 86%) https://www.openstreetmap.org/#map=10/43.58039/45.00000
1:38:26 INF [archive] - features: [ 118M 6% 26k/s ] 128G tiles: [ 965k 496/s ] 1.5G
cpus: 10.9 gc: 2% heap: 18G/32G direct: 18M postGC: 16G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/766/339 (z10 87%) https://www.openstreetmap.org/#map=10/51.83578/89.29688
1:38:36 INF [archive] - features: [ 119M 6% 51k/s ] 128G tiles: [ 965k 9/s ] 1.5G
cpus: 10.9 gc: 1% heap: 19G/32G direct: 18M postGC: 16G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/752/338 (z10 87%) https://www.openstreetmap.org/#map=10/52.05249/84.37500
1:38:45 INF [archive:write] - Finished z10 in 9m23s cpu:1h42m41s gc:21s avg:11, now starting z11
1:38:46 INF [archive] - features: [ 120M 6% 97k/s ] 128G tiles: [ 1.2M 27k/s ] 1.5G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 17G
read( 7%) -> (1.4k/1.6k) -> encode(97% 97% 97% 96% 97% 96% 97% 97% 97% 96% 96%) -> (1.6k/1.6k) -> write( 4%)
last tile: 11/260/479 (z11 4%) https://www.openstreetmap.org/#map=11/68.72044/-134.29688
1:38:56 INF [archive] - features: [ 120M 6% 69k/s ] 128G tiles: [ 1.5M 27k/s ] 1.6G
cpus: 10.9 gc: 9% heap: 23G/32G direct: 18M postGC: 17G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 91% 90% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 11/535/678 (z11 13%) https://www.openstreetmap.org/#map=11/51.83578/-85.95703
1:39:06 INF [archive] - features: [ 122M 6% 133k/s ] 128G tiles: [ 1.5M 383/s ] 1.6G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 17G
read( 4%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/562/724 (z11 13%) https://www.openstreetmap.org/#map=11/46.55886/-81.21094
1:39:16 INF [archive] - features: [ 122M 6% 59k/s ] 128G tiles: [ 1.5M 184/s ] 1.6G
cpus: 11 gc: 2% heap: 20G/32G direct: 18M postGC: 17G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/580/734 (z11 13%) https://www.openstreetmap.org/#map=11/45.33670/-78.04688
1:39:26 INF [archive] - features: [ 123M 6% 64k/s ] 128G tiles: [ 1.5M 140/s ] 1.6G
cpus: 10.9 gc: 4% heap: 21G/32G direct: 18M postGC: 18G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/614/764 (z11 13%) https://www.openstreetmap.org/#map=11/41.50858/-72.07031
1:39:36 INF [archive] - features: [ 123M 6% 26k/s ] 128G tiles: [ 1.5M 1/s ] 1.6G
cpus: 10.9 gc: 3% heap: 21G/32G direct: 18M postGC: 18G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 96% 96% 97% 97% 97% 96% 96% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/615/760 (z11 13%) https://www.openstreetmap.org/#map=11/42.03297/-71.89453
1:39:46 INF [archive] - features: [ 124M 6% 37k/s ] 128G tiles: [ 1.5M 0/s ] 1.6G
cpus: 10.9 gc: 2% heap: 24G/32G direct: 18M postGC: 18G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/615/760 (z11 13%) https://www.openstreetmap.org/#map=11/42.03297/-71.89453
1:39:56 INF [archive] - features: [ 124M 6% 28k/s ] 128G tiles: [ 1.5M 0/s ] 1.6G
cpus: 11 gc: 2% heap: 22G/32G direct: 18M postGC: 18G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/615/760 (z11 13%) https://www.openstreetmap.org/#map=11/42.03297/-71.89453
1:40:06 INF [archive] - features: [ 125M 6% 70k/s ] 128G tiles: [ 1.5M 3k/s ] 1.7G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 18G
read( 4%) -> (1.5k/1.6k) -> encode(97% 96% 96% 96% 96% 96% 97% 97% 96% 97% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/652/544 (z11 14%) https://www.openstreetmap.org/#map=11/64.16811/-65.39063
1:40:16 INF [archive] - features: [ 128M 6% 309k/s ] 128G tiles: [ 1.6M 4.6k/s ] 1.7G
cpus: 10.9 gc: 8% heap: 21G/32G direct: 18M postGC: 18G
read( 6%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/992/749 (z11 15%) https://www.openstreetmap.org/#map=11/43.45292/-5.62500
1:40:26 INF [archive] - features: [ 130M 6% 231k/s ] 128G tiles: [ 1.6M 4.5k/s ] 1.7G
cpus: 10.9 gc: 6% heap: 21G/32G direct: 18M postGC: 19G
read( 3%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/997/826 (z11 16%) https://www.openstreetmap.org/#map=11/32.84267/-4.74609
1:40:36 INF [archive] - features: [ 131M 6% 138k/s ] 128G tiles: [ 1.7M 7.6k/s ] 1.8G
cpus: 10.9 gc: 3% heap: 25G/32G direct: 18M postGC: 19G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/586/785 (z11 18%) https://www.openstreetmap.org/#map=11/38.68551/-76.99219
1:40:46 INF [archive] - features: [ 132M 6% 97k/s ] 128G tiles: [ 1.7M 230/s ] 1.8G
cpus: 10.9 gc: 2% heap: 21G/32G direct: 18M postGC: 19G
read( 0%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/560/797 (z11 18%) https://www.openstreetmap.org/#map=11/37.02010/-81.56250
1:40:56 INF [archive] - features: [ 133M 6% 91k/s ] 128G tiles: [ 1.7M 75/s ] 1.8G
cpus: 11 gc: 1% heap: 20G/32G direct: 18M postGC: 19G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/556/785 (z11 18%) https://www.openstreetmap.org/#map=11/38.68551/-82.26563
1:41:06 INF [archive] - features: [ 134M 6% 124k/s ] 128G tiles: [ 1.7M 246/s ] 1.8G
cpus: 10.9 gc: 2% heap: 21G/32G direct: 18M postGC: 19G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/512/845 (z11 18%) https://www.openstreetmap.org/#map=11/29.99300/-90.00000
1:41:16 INF [archive] - features: [ 137M 7% 295k/s ] 128G tiles: [ 1.7M 0/s ] 1.8G
cpus: 10.9 gc: 1% heap: 23G/32G direct: 18M postGC: 19G
read( 0%) -> (1.1k/1.6k) -> encode(99% 99% 99% 99% 98% 99% 99% 98% 99% 99% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/512/845 (z11 18%) https://www.openstreetmap.org/#map=11/29.99300/-90.00000
1:41:26 INF [archive] - features: [ 140M 7% 273k/s ] 128G tiles: [ 1.8M 7.9k/s ] 1.8G
cpus: 11 gc: 6% heap: 20G/32G direct: 18M postGC: 19G
read(10%) -> (1.3k/1.6k) -> encode(93% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/502/870 (z11 20%) https://www.openstreetmap.org/#map=11/26.11599/-91.75781
1:41:36 INF [archive] - features: [ 141M 7% 62k/s ] 128G tiles: [ 1.8M 1k/s ] 1.9G
cpus: 10.9 gc: 7% heap: 24G/32G direct: 18M postGC: 20G
read( 4%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/393/736 (z11 20%) https://www.openstreetmap.org/#map=11/45.08904/-110.91797
1:41:46 INF [archive] - features: [ 141M 7% 35k/s ] 128G tiles: [ 1.8M 0/s ] 1.9G
cpus: 11 gc: 1% heap: 25G/32G direct: 18M postGC: 20G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/393/736 (z11 20%) https://www.openstreetmap.org/#map=11/45.08904/-110.91797
1:41:56 INF [archive] - features: [ 142M 7% 36k/s ] 128G tiles: [ 1.8M 2.6k/s ] 1.9G
cpus: 11 gc: 3% heap: 20G/32G direct: 18M postGC: 20G
read( 3%) -> (1.5k/1.6k) -> encode(97% 96% 96% 97% 96% 97% 97% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/287/583 (z11 21%) https://www.openstreetmap.org/#map=11/61.01572/-129.55078
1:42:06 INF [archive] - features: [ 143M 7% 122k/s ] 128G tiles: [ 1.8M 3.8k/s ] 2G
cpus: 11 gc: 1% heap: 22G/32G direct: 18M postGC: 20G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/250/570 (z11 22%) https://www.openstreetmap.org/#map=11/62.10388/-136.05469
1:42:16 INF [archive] - features: [ 144M 7% 156k/s ] 128G tiles: [ 2.5M 70k/s ] 2G
cpus: 11.2 gc: 3% heap: 20G/32G direct: 18M postGC: 8.3G
read( 6%) -> (1.5k/1.6k) -> encode(91% 92% 94% 92% 92% 95% 93% 92% 91% 94% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/612/1310 (z11 46%) https://www.openstreetmap.org/#map=11/-44.84029/-72.42188
1:42:26 INF [archive] - features: [ 146M 7% 159k/s ] 128G tiles: [ 2.6M 2.4k/s ] 2G
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 3.1G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/717/1213 (z11 47%) https://www.openstreetmap.org/#map=11/-31.50363/-53.96484
1:42:36 INF [archive] - features: [ 147M 7% 151k/s ] 128G tiles: [ 2.6M 4.9k/s ] 2.1G
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 3.4G
read( 6%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/746/1133 (z11 48%) https://www.openstreetmap.org/#map=11/-18.81272/-48.86719
1:42:46 INF [archive] - features: [ 148M 7% 87k/s ] 128G tiles: [ 2.6M 2.1k/s ] 2.1G
cpus: 11 gc: 5% heap: 11G/32G direct: 18M postGC: 3.6G
read( 2%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/790/1143 (z11 49%) https://www.openstreetmap.org/#map=11/-20.46819/-41.13281
1:42:56 INF [archive] - features: [ 150M 7% 155k/s ] 128G tiles: [ 2.6M 7/s ] 2.1G
cpus: 10.9 gc: 4% heap: 11G/32G direct: 18M postGC: 3.7G
read( 0%) -> (1.2k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/793/1141 (z11 49%) https://www.openstreetmap.org/#map=11/-20.13847/-40.60547
1:43:06 INF [archive] - features: [ 151M 7% 159k/s ] 128G tiles: [ 2.8M 10k/s ] 2.1G
cpus: 11 gc: 3% heap: 12G/32G direct: 18M postGC: 3.9G
read( 4%) -> (1k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1190/1042 (z11 51%) https://www.openstreetmap.org/#map=11/-3.16246/29.17969
1:43:16 INF [archive] - features: [ 153M 7% 176k/s ] 128G tiles: [ 3.3M 49k/s ] 2.2G
cpus: 11 gc: 9% heap: 6.9G/32G direct: 18M postGC: 4.7G
read(14%) -> (1.5k/1.6k) -> encode(90% 89% 90% 90% 90% 90% 90% 90% 90% 91% 90%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/2029/1268 (z11 74%) https://www.openstreetmap.org/#map=11/-39.36828/176.66016
1:43:26 INF [archive] - features: [ 155M 7% 148k/s ] 128G tiles: [ 3.3M 6.6k/s ] 2.2G
cpus: 11 gc: 9% heap: 20G/32G direct: 18M postGC: 5G
read( 7%) -> (1.5k/1.6k) -> encode(90% 91% 91% 90% 91% 90% 90% 90% 90% 91% 91%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1827/782 (z11 76%) https://www.openstreetmap.org/#map=11/39.09596/141.15234
1:43:36 INF [archive] - features: [ 156M 7% 84k/s ] 128G tiles: [ 3.4M 7.3k/s ] 2.2G
cpus: 11 gc: 6% heap: 18G/32G direct: 18M postGC: 5.1G
read( 3%) -> (1.5k/1.6k) -> encode(94% 94% 93% 94% 94% 94% 94% 94% 93% 94% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1849/748 (z11 78%) https://www.openstreetmap.org/#map=11/43.58039/145.01953
1:43:46 INF [archive] - features: [ 157M 8% 102k/s ] 128G tiles: [ 3.4M 4.9k/s ] 2.2G
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 5.3G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1540/848 (z11 80%) https://www.openstreetmap.org/#map=11/29.53523/90.70313
1:43:56 INF [archive] - features: [ 160M 8% 334k/s ] 128G tiles: [ 3.5M 1.5k/s ] 2.3G
cpus: 11.1 gc: 4% heap: 14G/32G direct: 18M postGC: 5.7G
read(11%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1746/796 (z11 80%) https://www.openstreetmap.org/#map=11/37.16032/126.91406
1:44:06 INF [archive] - features: [ 161M 8% 84k/s ] 128G tiles: [ 3.5M 230/s ] 2.3G
cpus: 10.9 gc: 6% heap: 11G/32G direct: 18M postGC: 5.9G
read( 2%) -> (1.5k/1.6k) -> encode(94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1771/816 (z11 80%) https://www.openstreetmap.org/#map=11/34.30714/131.30859
1:44:16 INF [archive] - features: [ 162M 8% 155k/s ] 128G tiles: [ 3.5M 701/s ] 2.3G
cpus: 11 gc: 6% heap: 9.2G/32G direct: 18M postGC: 6.1G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1703/843 (z11 80%) https://www.openstreetmap.org/#map=11/30.29702/119.35547
1:44:26 INF [archive] - features: [ 165M 8% 269k/s ] 128G tiles: [ 3.5M 2.9k/s ] 2.4G
cpus: 11 gc: 3% heap: 23G/32G direct: 18M postGC: 6.3G
read( 7%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1555/905 (z11 81%) https://www.openstreetmap.org/#map=11/20.46819/93.33984
1:44:36 INF [archive] - features: [ 167M 8% 215k/s ] 128G tiles: [ 3.5M 2.2k/s ] 2.4G
cpus: 11 gc: 6% heap: 15G/32G direct: 18M postGC: 6.7G
read( 3%) -> (1.5k/1.6k) -> encode(93% 94% 94% 94% 94% 94% 94% 93% 94% 94% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1526/867 (z11 82%) https://www.openstreetmap.org/#map=11/26.58853/88.24219
1:44:46 INF [archive] - features: [ 170M 8% 251k/s ] 128G tiles: [ 3.5M 2.3k/s ] 2.4G
cpus: 11 gc: 6% heap: 10G/32G direct: 18M postGC: 7G
read( 4%) -> (1.4k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1283/779 (z11 82%) https://www.openstreetmap.org/#map=11/39.50404/45.52734
1:44:56 INF [archive] - features: [ 170M 8% 19k/s ] 128G tiles: [ 3.6M 2.8k/s ] 2.4G
cpus: 11 gc: 4% heap: 8.8G/32G direct: 18M postGC: 7.1G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1155/947 (z11 83%) https://www.openstreetmap.org/#map=11/13.41099/23.02734
1:45:06 INF [archive] - features: [ 172M 8% 164k/s ] 128G tiles: [ 3.6M 2.8k/s ] 2.5G
cpus: 11 gc: 2% heap: 24G/32G direct: 18M postGC: 7.1G
read( 3%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 97% 98% 97% 97% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1183/794 (z11 84%) https://www.openstreetmap.org/#map=11/37.43997/27.94922
1:45:16 INF [archive] - features: [ 173M 8% 151k/s ] 128G tiles: [ 3.6M 1.2k/s ] 2.5G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 7.4G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1267/762 (z11 84%) https://www.openstreetmap.org/#map=11/41.77131/42.71484
1:45:26 INF [archive] - features: [ 174M 8% 130k/s ] 128G tiles: [ 3.6M 672/s ] 2.5G
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 7.5G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1219/644 (z11 85%) https://www.openstreetmap.org/#map=11/55.37911/34.27734
1:45:36 INF [archive] - features: [ 175M 8% 108k/s ] 128G tiles: [ 3.6M 226/s ] 2.6G
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 7.6G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1208/685 (z11 85%) https://www.openstreetmap.org/#map=11/51.06902/32.34375
1:45:46 INF [archive] - features: [ 176M 8% 72k/s ] 128G tiles: [ 3.6M 316/s ] 2.6G
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 7.7G
read( 3%) -> (1.5k/1.6k) -> encode(96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1154/701 (z11 85%) https://www.openstreetmap.org/#map=11/49.26780/22.85156
1:45:56 INF [archive] - features: [ 177M 9% 90k/s ] 128G tiles: [ 3.6M 10/s ] 2.6G
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 7.7G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1165/707 (z11 85%) https://www.openstreetmap.org/#map=11/48.57479/24.78516
1:46:06 INF [archive] - features: [ 177M 9% 40k/s ] 128G tiles: [ 3.6M 464/s ] 2.6G
cpus: 11 gc: 2% heap: 9.1G/32G direct: 18M postGC: 7.9G
read( 3%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1125/741 (z11 85%) https://www.openstreetmap.org/#map=11/44.46515/17.75391
1:46:16 INF [archive] - features: [ 178M 9% 57k/s ] 128G tiles: [ 3.6M 144/s ] 2.6G
cpus: 11 gc: 2% heap: 25G/32G direct: 18M postGC: 7.9G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1112/729 (z11 85%) https://www.openstreetmap.org/#map=11/45.95115/15.46875
1:46:26 INF [archive] - features: [ 179M 9% 57k/s ] 128G tiles: [ 3.6M 40/s ] 2.6G
cpus: 11 gc: 2% heap: 25G/32G direct: 18M postGC: 8G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1104/711 (z11 85%) https://www.openstreetmap.org/#map=11/48.10743/14.06250
1:46:36 INF [archive] - features: [ 179M 9% 73k/s ] 128G tiles: [ 3.6M 41/s ] 2.7G
cpus: 11 gc: 2% heap: 21G/32G direct: 18M postGC: 8.1G
read( 2%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1101/725 (z11 85%) https://www.openstreetmap.org/#map=11/46.43786/13.53516
1:46:46 INF [archive] - features: [ 180M 9% 71k/s ] 128G tiles: [ 3.6M 46/s ] 2.7G
cpus: 11 gc: 2% heap: 20G/32G direct: 18M postGC: 8.1G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1111/739 (z11 85%) https://www.openstreetmap.org/#map=11/44.71551/15.29297
1:46:56 INF [archive] - features: [ 181M 9% 84k/s ] 128G tiles: [ 3.6M 203/s ] 2.7G
cpus: 11 gc: 2% heap: 11G/32G direct: 18M postGC: 8.3G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1034/763 (z11 85%) https://www.openstreetmap.org/#map=11/41.64008/1.75781
1:47:06 INF [archive] - features: [ 182M 9% 140k/s ] 128G tiles: [ 3.6M 149/s ] 2.7G
cpus: 11 gc: 3% heap: 25G/32G direct: 18M postGC: 8.5G
read( 5%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1036/705 (z11 85%) https://www.openstreetmap.org/#map=11/48.80686/2.10938
1:47:16 INF [archive] - features: [ 183M 9% 89k/s ] 128G tiles: [ 3.6M 55/s ] 2.7G
cpus: 10.9 gc: 4% heap: 23G/32G direct: 18M postGC: 8.7G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1062/726 (z11 85%) https://www.openstreetmap.org/#map=11/46.31658/6.67969
1:47:26 INF [archive] - features: [ 184M 9% 67k/s ] 128G tiles: [ 3.6M 38/s ] 2.7G
cpus: 11 gc: 4% heap: 21G/32G direct: 18M postGC: 8.8G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1086/733 (z11 85%) https://www.openstreetmap.org/#map=11/45.46013/10.89844
1:47:36 INF [archive] - features: [ 186M 9% 243k/s ] 128G tiles: [ 3.6M 112/s ] 2.7G
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 9.2G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1056/695 (z11 85%) https://www.openstreetmap.org/#map=11/49.95122/5.62500
1:47:46 INF [archive] - features: [ 190M 9% 327k/s ] 128G tiles: [ 3.6M 325/s ] 2.8G
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 9.3G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1081/644 (z11 85%) https://www.openstreetmap.org/#map=11/55.37911/10.01953
1:47:56 INF [archive] - features: [ 191M 9% 169k/s ] 128G tiles: [ 3.6M 181/s ] 2.8G
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 9.4G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 96% 95% 96% 94% 95% 96% 95% 96% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1112/688 (z11 85%) https://www.openstreetmap.org/#map=11/50.73646/15.46875
1:48:06 INF [archive] - features: [ 193M 9% 136k/s ] 128G tiles: [ 3.6M 96/s ] 2.8G
cpus: 11.1 gc: 2% heap: 18G/32G direct: 18M postGC: 3.2G
read( 0%) -> (1.5k/1.6k) -> encode(97% 98% 96% 97% 96% 97% 95% 97% 98% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1151/700 (z11 85%) https://www.openstreetmap.org/#map=11/49.38237/22.32422
1:48:16 INF [archive] - features: [ 194M 9% 85k/s ] 128G tiles: [ 3.6M 344/s ] 2.8G
cpus: 11 gc: 1% heap: 18G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1114/601 (z11 85%) https://www.openstreetmap.org/#map=11/59.44508/15.82031
1:48:26 INF [archive] - features: [ 194M 9% 37k/s ] 128G tiles: [ 3.6M 129/s ] 2.8G
cpus: 11 gc: 1% heap: 15G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 98% 98% 99% 99% 98% 99% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1110/611 (z11 85%) https://www.openstreetmap.org/#map=11/58.53959/15.11719
1:48:36 INF [archive] - features: [ 194M 9% 54k/s ] 128G tiles: [ 3.6M 407/s ] 2.9G
cpus: 11 gc: 1% heap: 14G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1063/597 (z11 85%) https://www.openstreetmap.org/#map=11/59.80063/6.85547
1:48:46 INF [archive] - features: [ 195M 9% 27k/s ] 128G tiles: [ 3.7M 95/s ] 2.9G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1084/567 (z11 85%) https://www.openstreetmap.org/#map=11/62.34961/10.54688
1:48:56 INF [archive] - features: [ 195M 9% 18k/s ] 128G tiles: [ 3.7M 401/s ] 2.9G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1096/525 (z11 85%) https://www.openstreetmap.org/#map=11/65.58572/12.65625
1:49:06 INF [archive] - features: [ 195M 9% 11k/s ] 128G tiles: [ 3.7M 97/s ] 2.9G
cpus: 11 gc: 1% heap: 19G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1100/550 (z11 85%) https://www.openstreetmap.org/#map=11/63.70472/13.35938
1:49:16 INF [archive] - features: [ 195M 9% 31k/s ] 128G tiles: [ 3.7M 2/s ] 2.9G
cpus: 11 gc: 2% heap: 21G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1098/555 (z11 85%) https://www.openstreetmap.org/#map=11/63.31268/13.00781
1:49:26 INF [archive] - features: [ 196M 9% 55k/s ] 128G tiles: [ 3.7M 46/s ] 2.9G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1105/574 (z11 85%) https://www.openstreetmap.org/#map=11/61.77312/14.23828
1:49:36 INF [archive] - features: [ 197M 9% 61k/s ] 128G tiles: [ 3.7M 896/s ] 3G
cpus: 11 gc: 1% heap: 11G/32G direct: 18M postGC: 3.4G
read( 1%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1190/639 (z11 86%) https://www.openstreetmap.org/#map=11/55.87531/29.17969
1:49:46 INF [archive] - features: [ 197M 9% 58k/s ] 128G tiles: [ 3.7M 429/s ] 3G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1266/628 (z11 86%) https://www.openstreetmap.org/#map=11/56.94497/42.53906
1:49:56 INF [archive] - features: [ 198M 10% 64k/s ] 128G tiles: [ 3.7M 1.5k/s ] 3G
cpus: 11 gc: 1% heap: 11G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1345/621 (z11 86%) https://www.openstreetmap.org/#map=11/57.61011/56.42578
1:50:06 INF [archive] - features: [ 198M 10% 62k/s ] 128G tiles: [ 3.7M 344/s ] 3G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1289/612 (z11 86%) https://www.openstreetmap.org/#map=11/58.44773/46.58203
1:50:16 INF [archive] - features: [ 199M 10% 92k/s ] 128G tiles: [ 3.7M 569/s ] 3G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.4G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1281/749 (z11 86%) https://www.openstreetmap.org/#map=11/43.45292/45.17578
1:50:26 INF [archive] - features: [ 200M 10% 20k/s ] 128G tiles: [ 3.7M 1.6k/s ] 3.1G
cpus: 11 gc: 1% heap: 14G/32G direct: 18M postGC: 3.5G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1528/693 (z11 87%) https://www.openstreetmap.org/#map=11/50.17690/88.59375
1:50:36 INF [archive] - features: [ 200M 10% 43k/s ] 128G tiles: [ 3.7M 50/s ] 3.1G
cpus: 11 gc: 1% heap: 15G/32G direct: 18M postGC: 3.5G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1509/680 (z11 87%) https://www.openstreetmap.org/#map=11/51.61802/85.25391
1:50:46 INF [archive] - features: [ 201M 10% 61k/s ] 128G tiles: [ 3.8M 8.7k/s ] 3.1G
cpus: 11 gc: 1% heap: 15G/32G direct: 18M postGC: 3.5G
read( 1%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1193/464 (z11 89%) https://www.openstreetmap.org/#map=11/69.65709/29.70703
1:50:54 INF [archive:write] - Finished z11 in 12m9s cpu:2h13m26s gc:23s avg:11, now starting z12
1:50:56 INF [archive] - features: [ 203M 10% 284k/s ] 128G tiles: [ 5.8M 198k/s ] 3.2G
cpus: 11.2 gc: 3% heap: 6.9G/32G direct: 18M postGC: 4.5G
read(15%) -> (978/1.6k) -> encode(97% 97% 96% 97% 96% 97% 97% 97% 97% 97% 97%) -> (992/1.6k) -> write(10%)
last tile: 12/1164/843 (z12 12%) https://www.openstreetmap.org/#map=12/72.10094/-77.69531
1:51:06 INF [archive] - features: [ 205M 10% 128k/s ] 128G tiles: [ 5.9M 7.3k/s ] 3.2G
cpus: 11.1 gc: 10% heap: 10G/32G direct: 18M postGC: 5.2G
read(19%) -> (1.5k/1.6k) -> encode(90% 90% 89% 89% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1058/1357 (z12 13%) https://www.openstreetmap.org/#map=12/51.78144/-87.01172
1:51:16 INF [archive] - features: [ 206M 10% 123k/s ] 128G tiles: [ 5.9M 1.7k/s ] 3.3G
cpus: 10.9 gc: 8% heap: 20G/32G direct: 18M postGC: 5.3G
read( 2%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/1129/1410 (z12 13%) https://www.openstreetmap.org/#map=12/48.80686/-80.77148
1:51:26 INF [archive] - features: [ 207M 10% 102k/s ] 128G tiles: [ 5.9M 538/s ] 3.3G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 5.5G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 96% 97% 96% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/1183/1477 (z12 13%) https://www.openstreetmap.org/#map=12/44.77794/-76.02539
1:51:36 INF [archive] - features: [ 208M 10% 70k/s ] 128G tiles: [ 5.9M 519/s ] 3.3G
cpus: 11 gc: 3% heap: 7.5G/32G direct: 18M postGC: 5.6G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1230/1529 (z12 13%) https://www.openstreetmap.org/#map=12/41.44273/-71.89453
1:51:46 INF [archive] - features: [ 208M 10% 41k/s ] 128G tiles: [ 5.9M 6/s ] 3.3G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 5.6G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1233/1521 (z12 13%) https://www.openstreetmap.org/#map=12/41.96766/-71.63086
1:51:56 INF [archive] - features: [ 209M 10% 75k/s ] 128G tiles: [ 5.9M 2.5k/s ] 3.4G
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 5.7G
read( 4%) -> (1.5k/1.6k) -> encode(98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1374/1374 (z12 13%) https://www.openstreetmap.org/#map=12/50.84757/-59.23828
1:52:06 INF [archive] - features: [ 210M 10% 66k/s ] 128G tiles: [ 5.9M 1.1k/s ] 3.4G
cpus: 11 gc: 2% heap: 7.3G/32G direct: 18M postGC: 5.8G
read( 1%) -> (1.5k/1.6k) -> encode(98% 97% 97% 98% 98% 98% 98% 98% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/1311/1485 (z12 13%) https://www.openstreetmap.org/#map=12/44.27667/-64.77539
1:52:16 INF [archive] - features: [ 213M 10% 306k/s ] 128G tiles: [ 6.2M 24k/s ] 3.5G
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 6.2G
read( 6%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2022/1342 (z12 15%) https://www.openstreetmap.org/#map=12/52.58970/-2.28516
1:52:26 INF [archive] - features: [ 216M 10% 384k/s ] 128G tiles: [ 6.2M 1.9k/s ] 3.5G
cpus: 11 gc: 7% heap: 16G/32G direct: 18M postGC: 6.7G
read( 7%) -> (1.5k/1.6k) -> encode(93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2017/1504 (z12 15%) https://www.openstreetmap.org/#map=12/43.06889/-2.72461
1:52:37 INF [archive] - features: [ 221M 11% 467k/s ] 128G tiles: [ 6.4M 23k/s ] 3.6G
cpus: 11 gc: 10% heap: 18G/32G direct: 18M postGC: 7.1G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1985/1937 (z12 17%) https://www.openstreetmap.org/#map=12/9.70906/-5.53711
1:52:47 INF [archive] - features: [ 223M 11% 211k/s ] 128G tiles: [ 6.7M 24k/s ] 3.6G
cpus: 11 gc: 11% heap: 23G/32G direct: 18M postGC: 7.7G
read( 8%) -> (1.5k/1.6k) -> encode(89% 88% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1180/1572 (z12 18%) https://www.openstreetmap.org/#map=12/38.54817/-76.28906
1:52:57 INF [archive] - features: [ 224M 11% 121k/s ] 128G tiles: [ 6.7M 924/s ] 3.7G
cpus: 10.9 gc: 10% heap: 12G/32G direct: 18M postGC: 8G
read( 3%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/1123/1591 (z12 18%) https://www.openstreetmap.org/#map=12/37.23033/-81.29883
1:53:07 INF [archive] - features: [ 225M 11% 101k/s ] 128G tiles: [ 6.7M 161/s ] 3.7G
cpus: 10.9 gc: 4% heap: 8G/32G direct: 18M postGC: 8G
read( 1%) -> (1.5k/1.6k) -> encode(96% 95% 95% 96% 95% 96% 95% 95% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1120/1560 (z12 18%) https://www.openstreetmap.org/#map=12/39.36828/-81.56250
1:53:17 INF [archive] - features: [ 226M 11% 81k/s ] 128G tiles: [ 6.7M 1.1k/s ] 3.7G
cpus: 11 gc: 2% heap: 21G/32G direct: 18M postGC: 8.2G
read( 4%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/1027/1695 (z12 18%) https://www.openstreetmap.org/#map=12/29.61167/-89.73633
1:53:27 INF [archive] - features: [ 229M 11% 243k/s ] 128G tiles: [ 6.7M 0/s ] 3.7G
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 8.3G
read( 0%) -> (1.2k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1027/1695 (z12 18%) https://www.openstreetmap.org/#map=12/29.61167/-89.73633
1:53:37 INF [archive] - features: [ 233M 11% 436k/s ] 128G tiles: [ 7M 27k/s ] 3.8G
cpus: 11.1 gc: 3% heap: 22G/32G direct: 18M postGC: 8.4G
read(10%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/759/1600 (z12 20%) https://www.openstreetmap.org/#map=12/36.59789/-113.29102
1:53:47 INF [archive] - features: [ 237M 11% 341k/s ] 128G tiles: [ 7M 4.4k/s ] 3.8G
cpus: 10.9 gc: 7% heap: 10G/32G direct: 18M postGC: 8.9G
read( 1%) -> (1.3k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1001/1741 (z12 20%) https://www.openstreetmap.org/#map=12/26.03704/-92.02148
1:53:57 INF [archive] - features: [ 238M 11% 179k/s ] 128G tiles: [ 7.1M 4.2k/s ] 3.9G
cpus: 10.9 gc: 7% heap: 20G/32G direct: 18M postGC: 9G
read( 1%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/787/1486 (z12 20%) https://www.openstreetmap.org/#map=12/44.21371/-110.83008
1:54:07 INF [archive] - features: [ 239M 11% 83k/s ] 128G tiles: [ 7.1M 6.7k/s ] 4G
cpus: 11.1 gc: 2% heap: 6G/32G direct: 18M postGC: 2.7G
read( 1%) -> (1.5k/1.6k) -> encode(97% 93% 97% 98% 97% 97% 94% 94% 97% 93% 95%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/677/1274 (z12 21%) https://www.openstreetmap.org/#map=12/56.07204/-120.49805
1:54:17 INF [archive] - features: [ 240M 12% 114k/s ] 128G tiles: [ 7.2M 5.2k/s ] 4G
cpus: 11 gc: 1% heap: 18G/32G direct: 18M postGC: 2.7G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/718/1356 (z12 22%) https://www.openstreetmap.org/#map=12/51.83578/-116.89453
1:54:27 INF [archive] - features: [ 244M 12% 403k/s ] 128G tiles: [ 9.3M 211k/s ] 4.1G
cpus: 11.1 gc: 2% heap: 4G/32G direct: 18M postGC: 3.2G
read( 6%) -> (1k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.1k/1.6k) -> write( 7%)
last tile: 12/1274/3129 (z12 38%) https://www.openstreetmap.org/#map=12/-68.43151/-68.02734
1:54:37 INF [archive] - features: [ 247M 12% 245k/s ] 128G tiles: [ 10M 91k/s ] 4.1G
cpus: 11.2 gc: 6% heap: 22G/32G direct: 18M postGC: 4.4G
read(27%) -> (1.5k/1.6k) -> encode(94% 94% 93% 94% 94% 94% 94% 93% 93% 94% 93%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1488/2348 (z12 47%) https://www.openstreetmap.org/#map=12/-25.48295/-49.21875
1:54:47 INF [archive] - features: [ 249M 12% 259k/s ] 128G tiles: [ 10M 4k/s ] 4.2G
cpus: 11 gc: 4% heap: 15G/32G direct: 18M postGC: 4.8G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1221/2546 (z12 47%) https://www.openstreetmap.org/#map=12/-40.04444/-72.68555
1:54:57 INF [archive] - features: [ 252M 12% 240k/s ] 128G tiles: [ 10M 15k/s ] 4.2G
cpus: 11 gc: 6% heap: 8G/32G direct: 18M postGC: 5G
read( 3%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1493/2271 (z12 48%) https://www.openstreetmap.org/#map=12/-19.22818/-48.77930
1:55:07 INF [archive] - features: [ 254M 12% 254k/s ] 128G tiles: [ 10M 8.3k/s ] 4.3G
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 5.2G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 95%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1581/2287 (z12 49%) https://www.openstreetmap.org/#map=12/-20.55051/-41.04492
1:55:17 INF [archive] - features: [ 256M 12% 133k/s ] 128G tiles: [ 10M 158/s ] 4.3G
cpus: 11 gc: 3% heap: 10G/32G direct: 18M postGC: 5.2G
read( 0%) -> (1.2k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1543/2281 (z12 49%) https://www.openstreetmap.org/#map=12/-20.05593/-44.38477
1:55:27 INF [archive] - features: [ 261M 13% 497k/s ] 128G tiles: [ 10M 42k/s ] 4.4G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 5.4G
read( 2%) -> (1.3k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2373/2078 (z12 51%) https://www.openstreetmap.org/#map=12/-2.63579/28.56445
1:55:37 INF [archive] - features: [ 265M 13% 475k/s ] 128G tiles: [ 12M 177k/s ] 4.4G
cpus: 11.2 gc: 7% heap: 10G/32G direct: 18M postGC: 6.4G
read(20%) -> (1.5k/1.6k) -> encode(93% 92% 93% 93% 93% 93% 93% 93% 93% 92% 93%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/3432/2100 (z12 73%) https://www.openstreetmap.org/#map=12/-4.56547/121.64063
1:55:47 INF [archive] - features: [ 269M 13% 402k/s ] 128G tiles: [ 13M 46k/s ] 4.5G
cpus: 11.1 gc: 6% heap: 11G/32G direct: 18M postGC: 7.4G
read(14%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/3608/1621 (z12 76%) https://www.openstreetmap.org/#map=12/35.10193/137.10938
1:55:57 INF [archive] - features: [ 274M 13% 448k/s ] 128G tiles: [ 13M 702/s ] 4.5G
cpus: 11 gc: 9% heap: 23G/32G direct: 18M postGC: 7.9G
read(11%) -> (1.5k/1.6k) -> encode(90% 90% 90% 91% 91% 90% 91% 90% 90% 91% 90%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/3654/1565 (z12 76%) https://www.openstreetmap.org/#map=12/39.02772/141.15234
1:56:07 INF [archive] - features: [ 276M 13% 195k/s ] 128G tiles: [ 13M 27k/s ] 4.6G
cpus: 11 gc: 13% heap: 9.7G/32G direct: 18M postGC: 8.4G
read( 8%) -> (1.5k/1.6k) -> encode(87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 86%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/3710/1500 (z12 78%) https://www.openstreetmap.org/#map=12/43.32518/146.07422
1:56:17 INF [archive] - features: [ 278M 13% 189k/s ] 128G tiles: [ 13M 17k/s ] 4.7G
cpus: 11.2 gc: 6% heap: 7.4G/32G direct: 18M postGC: 4G
read( 6%) -> (1.5k/1.6k) -> encode(89% 90% 91% 89% 92% 89% 90% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/3226/1677 (z12 80%) https://www.openstreetmap.org/#map=12/30.97761/103.53516
1:56:27 INF [archive] - features: [ 283M 14% 512k/s ] 128G tiles: [ 13M 4.4k/s ] 4.7G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 4.2G
read( 2%) -> (1.1k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95%) -> (1.1k/1.6k) -> write( 3%)
last tile: 12/3442/1536 (z12 80%) https://www.openstreetmap.org/#map=12/40.97990/122.51953
1:56:37 INF [archive] - features: [ 285M 14% 207k/s ] 128G tiles: [ 13M 1.2k/s ] 4.8G
cpus: 11.1 gc: 9% heap: 17G/32G direct: 18M postGC: 4.9G
read(19%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/3540/1633 (z12 80%) https://www.openstreetmap.org/#map=12/34.23451/131.13281
1:56:47 INF [archive] - features: [ 288M 14% 278k/s ] 128G tiles: [ 13M 2.8k/s ] 4.8G
cpus: 11 gc: 10% heap: 19G/32G direct: 18M postGC: 5.4G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 89% 90% 90% 90% 90% 90% 89%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/3395/1697 (z12 80%) https://www.openstreetmap.org/#map=12/29.45873/118.38867
1:56:57 INF [archive] - features: [ 292M 14% 391k/s ] 128G tiles: [ 13M 9.9k/s ] 4.9G
cpus: 11 gc: 8% heap: 22G/32G direct: 18M postGC: 5.8G
read( 9%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/3254/1798 (z12 81%) https://www.openstreetmap.org/#map=12/21.45307/105.99609
1:57:07 INF [archive] - features: [ 297M 14% 556k/s ] 128G tiles: [ 13M 10k/s ] 4.9G
cpus: 11 gc: 11% heap: 20G/32G direct: 18M postGC: 6.6G
read( 9%) -> (1.4k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/3051/1729 (z12 82%) https://www.openstreetmap.org/#map=12/26.98083/88.15430
1:57:17 INF [archive] - features: [ 302M 15% 486k/s ] 128G tiles: [ 14M 8.2k/s ] 5G
cpus: 11 gc: 11% heap: 24G/32G direct: 18M postGC: 7.3G
read(11%) -> (1.4k/1.6k) -> encode(89% 88% 89% 88% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2575/1558 (z12 82%) https://www.openstreetmap.org/#map=12/39.50404/46.31836
1:57:27 INF [archive] - features: [ 304M 15% 188k/s ] 128G tiles: [ 14M 0/s ] 5G
cpus: 10.9 gc: 7% heap: 11G/32G direct: 18M postGC: 7.3G
read( 0%) -> (1.2k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2575/1558 (z12 82%) https://www.openstreetmap.org/#map=12/39.50404/46.31836
1:57:37 INF [archive] - features: [ 305M 15% 51k/s ] 128G tiles: [ 14M 12k/s ] 5.1G
cpus: 11 gc: 6% heap: 19G/32G direct: 18M postGC: 7.8G
read(11%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 93% 93% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2200/1976 (z12 83%) https://www.openstreetmap.org/#map=12/6.31530/13.35938
1:57:47 INF [archive] - features: [ 308M 15% 364k/s ] 128G tiles: [ 14M 7.8k/s ] 5.2G
cpus: 11.3 gc: 4% heap: 15G/32G direct: 18M postGC: 4.2G
read( 9%) -> (1.5k/1.6k) -> encode(92% 95% 92% 89% 90% 92% 93% 94% 92% 92% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2335/1551 (z12 84%) https://www.openstreetmap.org/#map=12/39.97712/25.22461
1:57:57 INF [archive] - features: [ 311M 15% 276k/s ] 128G tiles: [ 14M 4.8k/s ] 5.2G
cpus: 11 gc: 6% heap: 16G/32G direct: 18M postGC: 4.6G
read( 6%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2545/1520 (z12 84%) https://www.openstreetmap.org/#map=12/42.03297/43.68164
1:58:07 INF [archive] - features: [ 313M 15% 168k/s ] 128G tiles: [ 14M 2.1k/s ] 5.3G
cpus: 11 gc: 7% heap: 21G/32G direct: 18M postGC: 4.8G
read( 3%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2539/1300 (z12 85%) https://www.openstreetmap.org/#map=12/54.77535/43.15430
1:58:17 INF [archive] - features: [ 315M 15% 189k/s ] 128G tiles: [ 14M 1.4k/s ] 5.3G
cpus: 11 gc: 5% heap: 9.5G/32G direct: 18M postGC: 5G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2424/1364 (z12 85%) https://www.openstreetmap.org/#map=12/51.39921/33.04688
1:58:27 INF [archive] - features: [ 316M 15% 132k/s ] 128G tiles: [ 14M 1.2k/s ] 5.4G
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 5.1G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 95% 96% 96% 96% 96% 96% 95% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2304/1403 (z12 85%) https://www.openstreetmap.org/#map=12/49.21042/22.50000
1:58:37 INF [archive] - features: [ 317M 15% 152k/s ] 128G tiles: [ 14M 1.7k/s ] 5.4G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 5.3G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2277/1505 (z12 85%) https://www.openstreetmap.org/#map=12/43.00465/20.12695
1:58:47 INF [archive] - features: [ 318M 15% 111k/s ] 128G tiles: [ 14M 266/s ] 5.4G
cpus: 11 gc: 3% heap: 9.9G/32G direct: 18M postGC: 5.4G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2273/1489 (z12 85%) https://www.openstreetmap.org/#map=12/44.02442/19.77539
1:58:57 INF [archive] - features: [ 319M 15% 61k/s ] 128G tiles: [ 14M 548/s ] 5.5G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 5.5G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2212/1450 (z12 85%) https://www.openstreetmap.org/#map=12/46.43786/14.41406
1:59:07 INF [archive] - features: [ 320M 15% 135k/s ] 128G tiles: [ 14M 218/s ] 5.5G
cpus: 11 gc: 2% heap: 9.1G/32G direct: 18M postGC: 5.6G
read( 4%) -> (1.5k/1.6k) -> encode(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2176/1423 (z12 85%) https://www.openstreetmap.org/#map=12/48.04871/11.25000
1:59:17 INF [archive] - features: [ 321M 15% 71k/s ] 128G tiles: [ 14M 91/s ] 5.5G
cpus: 11 gc: 3% heap: 18G/32G direct: 18M postGC: 5.7G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2207/1465 (z12 85%) https://www.openstreetmap.org/#map=12/45.52174/13.97461
1:59:27 INF [archive] - features: [ 322M 15% 124k/s ] 128G tiles: [ 14M 386/s ] 5.5G
cpus: 11 gc: 3% heap: 8.3G/32G direct: 18M postGC: 5.8G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2194/1509 (z12 85%) https://www.openstreetmap.org/#map=12/42.74701/12.83203
1:59:37 INF [archive] - features: [ 324M 16% 138k/s ] 128G tiles: [ 14M 222/s ] 5.5G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 5.9G
read( 1%) -> (1.4k/1.6k) -> encode(98% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2152/1473 (z12 85%) https://www.openstreetmap.org/#map=12/45.02695/9.14063
1:59:47 INF [archive] - features: [ 326M 16% 203k/s ] 128G tiles: [ 14M 684/s ] 5.6G
cpus: 11 gc: 3% heap: 23G/32G direct: 18M postGC: 6.1G
read( 5%) -> (1.5k/1.6k) -> encode(96% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2109/1449 (z12 85%) https://www.openstreetmap.org/#map=12/46.49839/5.36133
1:59:57 INF [archive] - features: [ 328M 16% 243k/s ] 128G tiles: [ 14M 477/s ] 5.6G
cpus: 11 gc: 5% heap: 8.2G/32G direct: 18M postGC: 6.4G
read( 6%) -> (1.5k/1.6k) -> encode(95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2116/1436 (z12 85%) https://www.openstreetmap.org/#map=12/47.27923/5.97656
2:00:07 INF [archive] - features: [ 329M 16% 86k/s ] 128G tiles: [ 14M 53/s ] 5.6G
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 6.5G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 95% 96% 96% 96% 96% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2125/1458 (z12 85%) https://www.openstreetmap.org/#map=12/45.95115/6.76758
2:00:17 INF [archive] - features: [ 331M 16% 211k/s ] 128G tiles: [ 14M 281/s ] 5.7G
cpus: 11 gc: 3% heap: 24G/32G direct: 18M postGC: 6.7G
read( 6%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2160/1404 (z12 85%) https://www.openstreetmap.org/#map=12/49.15297/9.84375
2:00:27 INF [archive] - features: [ 335M 16% 346k/s ] 128G tiles: [ 14M 319/s ] 5.7G
cpus: 11 gc: 5% heap: 21G/32G direct: 18M postGC: 7.3G
read( 8%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2137/1380 (z12 85%) https://www.openstreetmap.org/#map=12/50.51343/7.82227
2:00:37 INF [archive] - features: [ 339M 16% 388k/s ] 128G tiles: [ 14M 480/s ] 5.7G
cpus: 11 gc: 9% heap: 14G/32G direct: 18M postGC: 7.8G
read( 9%) -> (1.5k/1.6k) -> encode(91% 91% 90% 91% 91% 91% 91% 91% 90% 91% 91%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2103/1343 (z12 85%) https://www.openstreetmap.org/#map=12/52.53627/4.83398
2:00:47 INF [archive] - features: [ 342M 16% 363k/s ] 128G tiles: [ 14M 1.3k/s ] 5.8G
cpus: 11 gc: 10% heap: 26G/32G direct: 18M postGC: 8.4G
read( 9%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2194/1406 (z12 85%) https://www.openstreetmap.org/#map=12/49.03787/12.83203
2:00:57 INF [archive] - features: [ 344M 17% 169k/s ] 128G tiles: [ 14M 383/s ] 5.8G
cpus: 10.9 gc: 11% heap: 11G/32G direct: 18M postGC: 8.6G
read( 2%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2249/1407 (z12 85%) https://www.openstreetmap.org/#map=12/48.98022/17.66602
2:01:07 INF [archive] - features: [ 346M 17% 177k/s ] 128G tiles: [ 14M 432/s ] 5.8G
cpus: 11.3 gc: 5% heap: 15G/32G direct: 18M postGC: 3.4G
read( 2%) -> (1.5k/1.6k) -> encode(88% 92% 91% 92% 91% 93% 89% 95% 90% 89% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2247/1318 (z12 85%) https://www.openstreetmap.org/#map=12/53.85253/17.49023
2:01:17 INF [archive] - features: [ 347M 17% 111k/s ] 128G tiles: [ 14M 1.2k/s ] 5.9G
cpus: 11 gc: 3% heap: 4.8G/32G direct: 18M postGC: 3.5G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2220/1167 (z12 85%) https://www.openstreetmap.org/#map=12/60.97311/15.11719
2:01:27 INF [archive] - features: [ 348M 17% 131k/s ] 128G tiles: [ 14M 1.8k/s ] 5.9G
cpus: 11 gc: 2% heap: 8.2G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2108/1178 (z12 85%) https://www.openstreetmap.org/#map=12/60.50053/5.27344
2:01:37 INF [archive] - features: [ 349M 17% 60k/s ] 128G tiles: [ 14M 260/s ] 5.9G
cpus: 11 gc: 1% heap: 13G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2145/1193 (z12 85%) https://www.openstreetmap.org/#map=12/59.84481/8.52539
2:01:47 INF [archive] - features: [ 349M 17% 43k/s ] 128G tiles: [ 14M 1.6k/s ] 6G
cpus: 11 gc: 1% heap: 5.2G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2155/1075 (z12 85%) https://www.openstreetmap.org/#map=12/64.66152/9.40430
2:01:57 INF [archive] - features: [ 349M 17% 23k/s ] 128G tiles: [ 14M 526/s ] 6G
cpus: 11 gc: 1% heap: 10G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2184/1074 (z12 85%) https://www.openstreetmap.org/#map=12/64.69911/11.95313
2:02:07 INF [archive] - features: [ 350M 17% 32k/s ] 128G tiles: [ 14M 241/s ] 6G
cpus: 11 gc: 1% heap: 9.7G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/2214/1135 (z12 85%) https://www.openstreetmap.org/#map=12/62.30879/14.58984
2:02:17 INF [archive] - features: [ 351M 17% 117k/s ] 128G tiles: [ 14M 2.6k/s ] 6G
cpus: 11 gc: 1% heap: 8.8G/32G direct: 18M postGC: 3.7G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2310/1177 (z12 86%) https://www.openstreetmap.org/#map=12/60.54378/23.02734
2:02:27 INF [archive] - features: [ 352M 17% 139k/s ] 128G tiles: [ 14M 1.2k/s ] 6.1G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.7G
read( 0%) -> (1.5k/1.6k) -> encode(99% 98% 99% 98% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2429/1193 (z12 86%) https://www.openstreetmap.org/#map=12/59.84481/33.48633
2:02:37 INF [archive] - features: [ 354M 17% 117k/s ] 128G tiles: [ 14M 2.7k/s ] 6.1G
cpus: 11 gc: 1% heap: 16G/32G direct: 18M postGC: 3.7G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2485/1096 (z12 86%) https://www.openstreetmap.org/#map=12/63.86004/38.40820
2:02:47 INF [archive] - features: [ 355M 17% 101k/s ] 128G tiles: [ 14M 5k/s ] 6.2G
cpus: 11 gc: 1% heap: 8.2G/32G direct: 18M postGC: 3.8G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2626/1215 (z12 86%) https://www.openstreetmap.org/#map=12/58.85922/50.80078
2:02:57 INF [archive] - features: [ 356M 17% 121k/s ] 128G tiles: [ 14M 2.5k/s ] 6.2G
cpus: 11 gc: 1% heap: 14G/32G direct: 18M postGC: 3.8G
read( 1%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2563/1502 (z12 86%) https://www.openstreetmap.org/#map=12/43.19717/45.26367
2:03:07 INF [archive] - features: [ 357M 17% 105k/s ] 128G tiles: [ 14M 2.5k/s ] 6.3G
cpus: 11 gc: 1% heap: 6.3G/32G direct: 18M postGC: 3.9G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 99% 98% 99% 99% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2841/1339 (z12 87%) https://www.openstreetmap.org/#map=12/52.74959/69.69727
2:03:17 INF [archive] - features: [ 357M 17% 41k/s ] 128G tiles: [ 14M 2.9k/s ] 6.3G
cpus: 11 gc: 1% heap: 12G/32G direct: 18M postGC: 3.9G
read( 0%) -> (1.5k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/3018/1363 (z12 87%) https://www.openstreetmap.org/#map=12/51.45401/85.25391
2:03:27 INF [archive] - features: [ 358M 17% 98k/s ] 128G tiles: [ 14M 0/s ] 6.3G
cpus: 11 gc: 1% heap: 5.2G/32G direct: 18M postGC: 3.9G
read( 0%) -> (1.2k/1.6k) -> encode(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/3018/1363 (z12 87%) https://www.openstreetmap.org/#map=12/51.45401/85.25391
2:03:37 INF [archive] - features: [ 359M 17% 65k/s ] 128G tiles: [ 15M 33k/s ] 6.4G
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 4G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 7%)
last tile: 12/2268/933 (z12 89%) https://www.openstreetmap.org/#map=12/69.50377/19.33594
2:03:42 INF [archive:write] - Finished z12 in 12m48s cpu:2h20m52s gc:35s avg:11, now starting z13
2:03:47 INF [archive] - features: [ 368M 18% 947k/s ] 128G tiles: [ 22M 793k/s ] 6.5G
cpus: 11.4 gc: 5% heap: 13G/32G direct: 18M postGC: 4.8G
read(30%) -> (896/1.6k) -> encode(93% 93% 95% 95% 95% 95% 95% 95% 94% 94% 95%) -> (1k/1.6k) -> write(23%)
last tile: 13/2539/2305 (z13 13%) https://www.openstreetmap.org/#map=13/61.58549/-68.42285
2:03:57 INF [archive] - features: [ 373M 18% 455k/s ] 128G tiles: [ 23M 17k/s ] 6.6G
cpus: 11 gc: 8% heap: 14G/32G direct: 18M postGC: 5.8G
read(10%) -> (1.5k/1.6k) -> encode(91% 92% 92% 91% 91% 91% 92% 91% 91% 92% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/2289/2924 (z13 13%) https://www.openstreetmap.org/#map=13/45.70618/-79.40918
2:04:07 INF [archive] - features: [ 375M 18% 247k/s ] 128G tiles: [ 23M 4.3k/s ] 6.7G
cpus: 11 gc: 7% heap: 18G/32G direct: 18M postGC: 5.9G
read( 2%) -> (1.5k/1.6k) -> encode(92% 93% 92% 92% 93% 92% 93% 92% 92% 92% 93%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/2411/3037 (z13 13%) https://www.openstreetmap.org/#map=13/42.13082/-74.04785
2:04:17 INF [archive] - features: [ 377M 18% 164k/s ] 128G tiles: [ 23M 1k/s ] 6.7G
cpus: 11 gc: 5% heap: 8G/32G direct: 18M postGC: 6.1G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/2460/3041 (z13 13%) https://www.openstreetmap.org/#map=13/42.00033/-71.89453
2:04:27 INF [archive] - features: [ 379M 18% 153k/s ] 128G tiles: [ 23M 9.1k/s ] 6.8G
cpus: 11 gc: 4% heap: 14G/32G direct: 18M postGC: 6.4G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 95% 96% 96% 96% 96% 96% 96% 95% 96%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/2709/2723 (z13 13%) https://www.openstreetmap.org/#map=13/51.53609/-60.95215
2:04:37 INF [archive] - features: [ 381M 18% 278k/s ] 128G tiles: [ 24M 83k/s ] 6.9G
cpus: 11.1 gc: 5% heap: 16G/32G direct: 18M postGC: 6.9G
read(14%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95%) -> (1.4k/1.6k) -> write( 6%)
last tile: 13/3975/2483 (z13 15%) https://www.openstreetmap.org/#map=13/57.63364/-5.31738
2:04:47 INF [archive] - features: [ 388M 19% 642k/s ] 128G tiles: [ 24M 20k/s ] 7G
cpus: 11 gc: 11% heap: 11G/32G direct: 18M postGC: 7.7G
read( 6%) -> (1.5k/1.6k) -> encode(88% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4068/2751 (z13 15%) https://www.openstreetmap.org/#map=13/50.76426/-1.23047
2:04:57 INF [archive] - features: [ 393M 19% 508k/s ] 128G tiles: [ 24M 7.5k/s ] 7.1G
cpus: 11 gc: 10% heap: 14G/32G direct: 18M postGC: 8.2G
read( 7%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/3925/3056 (z13 15%) https://www.openstreetmap.org/#map=13/41.50858/-7.51465
2:05:07 INF [archive] - features: [ 402M 19% 945k/s ] 128G tiles: [ 25M 88k/s ] 7.2G
cpus: 11 gc: 10% heap: 17G/32G direct: 18M postGC: 8.8G
read(13%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/3840/3862 (z13 17%) https://www.openstreetmap.org/#map=13/10.22844/-11.25000
2:05:17 INF [archive] - features: [ 409M 20% 651k/s ] 128G tiles: [ 26M 100k/s ] 7.3G
cpus: 11.1 gc: 12% heap: 20G/32G direct: 18M postGC: 9.8G
read(23%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 87% 88% 88% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/2331/3139 (z13 18%) https://www.openstreetmap.org/#map=13/38.71980/-77.56348
2:05:27 INF [archive] - features: [ 413M 20% 369k/s ] 128G tiles: [ 26M 3.7k/s ] 7.4G
cpus: 10.9 gc: 11% heap: 12G/32G direct: 18M postGC: 10G
read( 5%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/2240/3170 (z13 18%) https://www.openstreetmap.org/#map=13/37.64903/-81.56250
2:05:37 INF [archive] - features: [ 416M 20% 342k/s ] 128G tiles: [ 26M 1.1k/s ] 7.4G
cpus: 10.9 gc: 7% heap: 25G/32G direct: 18M postGC: 10G
read( 4%) -> (1.3k/1.6k) -> encode(92% 93% 92% 92% 93% 93% 92% 92% 93% 92% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/2229/3141 (z13 18%) https://www.openstreetmap.org/#map=13/38.65120/-82.04590
2:05:47 INF [archive] - features: [ 419M 20% 255k/s ] 128G tiles: [ 26M 3.9k/s ] 7.5G
cpus: 11 gc: 7% heap: 25G/32G direct: 18M postGC: 10G
read( 7%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/2056/3383 (z13 18%) https://www.openstreetmap.org/#map=13/29.87876/-89.64844
2:05:57 INF [archive] - features: [ 425M 20% 614k/s ] 128G tiles: [ 26M 10/s ] 7.5G
cpus: 10.9 gc: 5% heap: 20G/32G direct: 18M postGC: 10G
read( 0%) -> (775/1.6k) -> encode(94% 95% 94% 94% 94% 95% 94% 94% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 13/2048/3386 (z13 18%) https://www.openstreetmap.org/#map=13/29.76438/-90.00000
2:06:07 INF [archive] - features: [ 436M 21% 1M/s ] 128G tiles: [ 27M 106k/s ] 7.7G
cpus: 11.3 gc: 8% heap: 22G/32G direct: 18M postGC: 12G
read(29%) -> (1.5k/1.6k) -> encode(88% 91% 90% 90% 89% 90% 90% 90% 90% 86% 90%) -> (1.5k/1.6k) -> write( 8%)
last tile: 13/1429/3286 (z13 20%) https://www.openstreetmap.org/#map=13/33.50476/-117.20215
2:06:17 INF [archive] - features: [ 443M 21% 791k/s ] 128G tiles: [ 27M 8k/s ] 7.8G
cpus: 11.1 gc: 4% heap: 20G/32G direct: 18M postGC: 4.4G
read( 8%) -> (1.1k/1.6k) -> encode(93% 92% 94% 95% 95% 95% 95% 94% 93% 93% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/1594/3343 (z13 20%) https://www.openstreetmap.org/#map=13/31.39116/-109.95117
2:06:28 INF [archive] - features: [ 451M 22% 712k/s ] 128G tiles: [ 27M 19k/s ] 7.9G
cpus: 11.1 gc: 9% heap: 5.2G/32G direct: 18M postGC: 5.2G
read(11%) -> (1.5k/1.6k) -> encode(91% 90% 91% 91% 91% 90% 90% 91% 90% 90% 91%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/2041/2848 (z13 20%) https://www.openstreetmap.org/#map=13/47.98992/-90.30762
2:06:38 INF [archive] - features: [ 454M 22% 357k/s ] 128G tiles: [ 27M 17k/s ] 8G
cpus: 11 gc: 9% heap: 12G/32G direct: 18M postGC: 5.4G
read( 1%) -> (1.5k/1.6k) -> encode(91% 90% 91% 91% 91% 90% 90% 90% 91% 91% 91%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/1925/2728 (z13 21%) https://www.openstreetmap.org/#map=13/51.39921/-95.40527
2:06:48 INF [archive] - features: [ 457M 22% 226k/s ] 128G tiles: [ 28M 30k/s ] 8.2G
cpus: 11 gc: 8% heap: 10G/32G direct: 18M postGC: 5.4G
read( 1%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/1409/2708 (z13 22%) https://www.openstreetmap.org/#map=13/51.94426/-118.08105
2:06:58 INF [archive] - features: [ 466M 22% 973k/s ] 128G tiles: [ 34M 590k/s ] 8.3G
cpus: 11.2 gc: 3% heap: 22G/32G direct: 18M postGC: 5.7G
read(11%) -> (1.2k/1.6k) -> encode(96% 97% 97% 96% 96% 96% 96% 96% 97% 96% 97%) -> (1.4k/1.6k) -> write(14%)
last tile: 13/74/5247 (z13 31%) https://www.openstreetmap.org/#map=13/-45.05800/-176.74805
2:07:08 INF [archive] - features: [ 476M 23% 938k/s ] 128G tiles: [ 40M 611k/s ] 8.4G
cpus: 11.3 gc: 8% heap: 10G/32G direct: 18M postGC: 7G
read(40%) -> (1.5k/1.6k) -> encode(92% 92% 92% 91% 88% 92% 90% 91% 91% 90% 92%) -> (1.6k/1.6k) -> write(11%)
last tile: 13/2977/4701 (z13 47%) https://www.openstreetmap.org/#map=13/-25.68114/-49.17480
2:07:18 INF [archive] - features: [ 481M 23% 509k/s ] 128G tiles: [ 40M 14k/s ] 8.5G
cpus: 11 gc: 7% heap: 13G/32G direct: 18M postGC: 7.6G
read( 8%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/2433/5099 (z13 47%) https://www.openstreetmap.org/#map=13/-40.27953/-73.08105
2:07:28 INF [archive] - features: [ 486M 23% 572k/s ] 128G tiles: [ 40M 58k/s ] 8.6G
cpus: 11 gc: 10% heap: 14G/32G direct: 18M postGC: 8.1G
read( 6%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/2827/4579 (z13 48%) https://www.openstreetmap.org/#map=13/-20.75611/-55.76660
2:07:38 INF [archive] - features: [ 491M 24% 488k/s ] 128G tiles: [ 41M 11k/s ] 8.7G
cpus: 10.9 gc: 9% heap: 21G/32G direct: 18M postGC: 8.2G
read( 1%) -> (1.4k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.5k/1.6k) -> write( 4%)
last tile: 13/3301/4259 (z13 49%) https://www.openstreetmap.org/#map=13/-7.14450/-34.93652
2:07:48 INF [archive] - features: [ 494M 24% 278k/s ] 128G tiles: [ 41M 21k/s ] 8.7G
cpus: 10.9 gc: 8% heap: 24G/32G direct: 18M postGC: 8.4G
read( 4%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/3176/4566 (z13 49%) https://www.openstreetmap.org/#map=13/-20.22097/-40.42969
2:07:58 INF [archive] - features: [ 500M 24% 603k/s ] 128G tiles: [ 42M 126k/s ] 8.8G
cpus: 11.2 gc: 6% heap: 12G/32G direct: 18M postGC: 4G
read(17%) -> (1.5k/1.6k) -> encode(91% 92% 88% 92% 92% 91% 93% 92% 92% 90% 92%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/4778/4796 (z13 51%) https://www.openstreetmap.org/#map=13/-29.38218/29.97070
2:08:08 INF [archive] - features: [ 506M 24% 626k/s ] 128G tiles: [ 42M 35k/s ] 8.9G
cpus: 11 gc: 5% heap: 13G/32G direct: 18M postGC: 4.4G
read( 2%) -> (1.4k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 95% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4742/4157 (z13 51%) https://www.openstreetmap.org/#map=13/-2.67969/28.38867
2:08:18 INF [archive] - features: [ 518M 25% 1.1M/s ] 128G tiles: [ 49M 641k/s ] 9.1G
cpus: 10.8 gc: 4% heap: 18G/32G direct: 18M postGC: 4.4G
read(20%) -> (1.1k/1.6k) -> encode(91% 91% 90% 91% 91% 91% 91% 91% 90% 90% 95%) -> (1.2k/1.6k) -> write(12%)
last tile: 13/6721/4629 (z13 72%) https://www.openstreetmap.org/#map=13/-22.79644/115.35645
2:08:28 INF [archive] - features: [ 530M 25% 1.1M/s ] 128G tiles: [ 50M 112k/s ] 9.2G
cpus: 11.1 gc: 8% heap: 15G/32G direct: 18M postGC: 5.4G
read(15%) -> (1.5k/1.6k) -> encode(91% 91% 92% 92% 91% 91% 91% 91% 90% 91% 91%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/7453/4930 (z13 74%) https://www.openstreetmap.org/#map=13/-34.37971/147.52441
2:08:38 INF [archive] - features: [ 538M 26% 810k/s ] 128G tiles: [ 51M 131k/s ] 9.3G
cpus: 11.1 gc: 8% heap: 7.7G/32G direct: 18M postGC: 5.5G
read(16%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 91% 90% 91% 91% 92% 91% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/7284/3234 (z13 76%) https://www.openstreetmap.org/#map=13/35.38905/140.09766
2:08:48 INF [archive] - features: [ 545M 26% 715k/s ] 128G tiles: [ 52M 90k/s ] 9.4G
cpus: 11.1 gc: 9% heap: 12G/32G direct: 18M postGC: 6.4G
read(25%) -> (1.3k/1.6k) -> encode(90% 91% 91% 89% 89% 90% 90% 90% 90% 91% 89%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/7266/2699 (z13 78%) https://www.openstreetmap.org/#map=13/52.18740/139.30664
2:08:58 INF [archive] - features: [ 549M 26% 416k/s ] 128G tiles: [ 53M 66k/s ] 9.5G
cpus: 11.1 gc: 8% heap: 7.3G/32G direct: 18M postGC: 7.3G
read(14%) -> (1.5k/1.6k) -> encode(91% 91% 92% 91% 91% 90% 91% 90% 91% 91% 90%) -> (1.6k/1.6k) -> write(15%)
last tile: 13/6175/3450 (z13 80%) https://www.openstreetmap.org/#map=13/27.29369/91.36230
2:09:08 INF [archive] - features: [ 556M 27% 693k/s ] 128G tiles: [ 53M 16k/s ] 9.7G
cpus: 11 gc: 9% heap: 24G/32G direct: 18M postGC: 7.5G
read( 8%) -> (1.4k/1.6k) -> encode(91% 91% 89% 91% 91% 91% 91% 91% 91% 90% 91%) -> (1.4k/1.6k) -> write( 6%)
last tile: 13/6776/3320 (z13 80%) https://www.openstreetmap.org/#map=13/32.24997/117.77344
2:09:18 INF [archive] - features: [ 562M 27% 560k/s ] 128G tiles: [ 53M 8.3k/s ] 9.8G
cpus: 11.3 gc: 7% heap: 5.9G/32G direct: 18M postGC: 4G
read( 9%) -> (1.5k/1.6k) -> encode(87% 88% 90% 90% 85% 87% 89% 88% 86% 87% 86%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/7103/3273 (z13 80%) https://www.openstreetmap.org/#map=13/33.97981/132.14355
2:09:28 INF [archive] - features: [ 568M 27% 565k/s ] 128G tiles: [ 53M 11k/s ] 9.9G
cpus: 11.5 gc: 4% heap: 10G/32G direct: 18M postGC: 3G
read(10%) -> (1.5k/1.6k) -> encode(89% 90% 90% 88% 89% 84% 87% 88% 84% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/6741/3395 (z13 80%) https://www.openstreetmap.org/#map=13/29.42046/116.23535
2:09:38 INF [archive] - features: [ 576M 28% 826k/s ] 128G tiles: [ 54M 33k/s ] 10G
cpus: 11.6 gc: 4% heap: 12G/32G direct: 18M postGC: 2.7G
read(14%) -> (1.5k/1.6k) -> encode(86% 90% 86% 87% 85% 88% 85% 85% 84% 87% 85%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/6529/3850 (z13 81%) https://www.openstreetmap.org/#map=13/10.74697/106.91895
2:09:48 INF [archive] - features: [ 589M 28% 1.2M/s ] 128G tiles: [ 54M 34k/s ] 10G
cpus: 11.2 gc: 7% heap: 3.8G/32G direct: 18M postGC: 3.5G
read(21%) -> (1.5k/1.6k) -> encode(91% 90% 92% 90% 92% 90% 89% 91% 90% 90% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/5807/3760 (z13 81%) https://www.openstreetmap.org/#map=13/14.60485/75.19043
2:09:58 INF [archive] - features: [ 598M 29% 985k/s ] 128G tiles: [ 54M 12k/s ] 10G
cpus: 11.3 gc: 6% heap: 15G/32G direct: 18M postGC: 3G
read(10%) -> (1.2k/1.6k) -> encode(92% 91% 91% 88% 89% 90% 88% 89% 91% 90% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/6103/3456 (z13 82%) https://www.openstreetmap.org/#map=13/27.05913/88.19824
2:10:08 INF [archive] - features: [ 606M 29% 715k/s ] 128G tiles: [ 54M 14k/s ] 10G
cpus: 11.3 gc: 5% heap: 9.4G/32G direct: 18M postGC: 3.1G
read(15%) -> (1.5k/1.6k) -> encode(88% 90% 87% 88% 85% 86% 86% 87% 89% 86% 89%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/5770/3429 (z13 82%) https://www.openstreetmap.org/#map=13/28.11075/73.56445
Mar 21, 2023 1:11:25 PM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
2:10:18 INF [archive] - features: [ 617M 30% 1.1M/s ] 128G tiles: [ 54M 13k/s ] 10G
cpus: 11.1 gc: 5% heap: 3.8G/32G direct: 18M postGC: 3.1G
read( 9%) -> (777/1.6k) -> encode(94% 94% 89% 93% 93% 93% 95% 95% 93% 93% 88%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/5151/3117 (z13 82%) https://www.openstreetmap.org/#map=13/39.47013/46.36230
2:10:28 INF [archive] - features: [ 620M 30% 295k/s ] 128G tiles: [ 55M 43k/s ] 10G
cpus: 11.2 gc: 4% heap: 7.8G/32G direct: 18M postGC: 3.9G
read(22%) -> (1.3k/1.6k) -> encode(96% 95% 96% 96% 95% 94% 96% 96% 95% 95% 96%) -> (1.4k/1.6k) -> write(10%)
last tile: 13/4580/3958 (z13 83%) https://www.openstreetmap.org/#map=13/6.05316/21.26953
2:10:38 INF [archive] - features: [ 627M 30% 659k/s ] 128G tiles: [ 55M 19k/s ] 10G
cpus: 11.1 gc: 9% heap: 17G/32G direct: 18M postGC: 4.7G
read(14%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 90% 91% 91% 91% 90% 91% 90%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/4188/3201 (z13 84%) https://www.openstreetmap.org/#map=13/36.56260/4.04297
2:10:48 INF [archive] - features: [ 633M 30% 609k/s ] 128G tiles: [ 55M 13k/s ] 10G
cpus: 11 gc: 13% heap: 7.1G/32G direct: 18M postGC: 5.9G
read(13%) -> (1.5k/1.6k) -> encode(86% 87% 87% 87% 86% 87% 86% 87% 87% 87% 86%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4758/3163 (z13 84%) https://www.openstreetmap.org/#map=13/37.89220/29.09180
2:10:58 INF [archive] - features: [ 641M 31% 831k/s ] 128G tiles: [ 55M 12k/s ] 10G
cpus: 11 gc: 11% heap: 8.1G/32G direct: 18M postGC: 6.9G
read(13%) -> (1.4k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4985/3135 (z13 84%) https://www.openstreetmap.org/#map=13/38.85682/39.06738
2:11:08 INF [archive] - features: [ 645M 31% 349k/s ] 128G tiles: [ 55M 11k/s ] 11G
cpus: 11 gc: 10% heap: 11G/32G direct: 18M postGC: 7.3G
read(10%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.5k/1.6k) -> write( 5%)
last tile: 13/4938/2600 (z13 85%) https://www.openstreetmap.org/#map=13/54.77535/37.00195
2:11:18 INF [archive] - features: [ 648M 31% 334k/s ] 128G tiles: [ 55M 6.6k/s ] 11G
cpus: 11 gc: 9% heap: 13G/32G direct: 18M postGC: 7.8G
read( 8%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4671/2589 (z13 85%) https://www.openstreetmap.org/#map=13/55.05320/25.26855
2:11:28 INF [archive] - features: [ 652M 31% 385k/s ] 128G tiles: [ 55M 6.6k/s ] 11G
cpus: 11 gc: 8% heap: 24G/32G direct: 18M postGC: 8.1G
read( 7%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4845/3045 (z13 85%) https://www.openstreetmap.org/#map=13/41.86956/32.91504
2:11:38 INF [archive] - features: [ 655M 31% 323k/s ] 128G tiles: [ 55M 3.5k/s ] 11G
cpus: 11 gc: 9% heap: 16G/32G direct: 18M postGC: 8.6G
read( 6%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4546/2979 (z13 85%) https://www.openstreetmap.org/#map=13/43.99281/19.77539
2:11:48 INF [archive] - features: [ 657M 32% 178k/s ] 128G tiles: [ 55M 2.1k/s ] 11G
cpus: 10.9 gc: 9% heap: 16G/32G direct: 18M postGC: 8.9G
read( 5%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4442/2916 (z13 85%) https://www.openstreetmap.org/#map=13/45.95115/15.20508
2:11:58 INF [archive] - features: [ 659M 32% 215k/s ] 128G tiles: [ 55M 667/s ] 11G
cpus: 11 gc: 5% heap: 22G/32G direct: 18M postGC: 9.1G
read( 5%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4396/2864 (z13 85%) https://www.openstreetmap.org/#map=13/47.51720/13.18359
2:12:08 INF [archive] - features: [ 661M 32% 145k/s ] 128G tiles: [ 55M 522/s ] 11G
cpus: 11 gc: 5% heap: 14G/32G direct: 18M postGC: 9.3G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4415/2902 (z13 85%) https://www.openstreetmap.org/#map=13/46.37725/14.01855
2:12:18 INF [archive] - features: [ 663M 32% 230k/s ] 128G tiles: [ 56M 1.6k/s ] 11G
cpus: 11 gc: 4% heap: 23G/32G direct: 18M postGC: 9.6G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 95% 95% 96% 95% 95% 95% 96% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4387/3028 (z13 85%) https://www.openstreetmap.org/#map=13/42.42346/12.78809
2:12:28 INF [archive] - features: [ 666M 32% 266k/s ] 128G tiles: [ 56M 885/s ] 11G
cpus: 11 gc: 5% heap: 16G/32G direct: 18M postGC: 9.7G
read( 3%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 13/4305/2952 (z13 85%) https://www.openstreetmap.org/#map=13/44.84029/9.18457
2:12:38 INF [archive] - features: [ 669M 32% 325k/s ] 128G tiles: [ 56M 2.7k/s ] 11G
cpus: 11 gc: 6% heap: 25G/32G direct: 18M postGC: 10G
read( 8%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4219/2901 (z13 85%) https://www.openstreetmap.org/#map=13/46.40756/5.40527
2:12:48 INF [archive] - features: [ 673M 32% 438k/s ] 128G tiles: [ 56M 1.9k/s ] 11G
cpus: 11 gc: 9% heap: 13G/32G direct: 18M postGC: 10G
read( 9%) -> (1.5k/1.6k) -> encode(90% 90% 90% 91% 91% 90% 90% 90% 90% 91% 90%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4224/2886 (z13 85%) https://www.openstreetmap.org/#map=13/46.86019/5.62500
2:12:58 INF [archive] - features: [ 675M 32% 162k/s ] 128G tiles: [ 56M 197/s ] 11G
cpus: 10.9 gc: 8% heap: 13G/32G direct: 18M postGC: 10G
read( 2%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 13/4253/2914 (z13 85%) https://www.openstreetmap.org/#map=13/46.01222/6.89941
2:13:08 INF [archive] - features: [ 679M 33% 466k/s ] 128G tiles: [ 56M 1.3k/s ] 11G
cpus: 11.1 gc: 4% heap: 11G/32G direct: 18M postGC: 11G
read(11%) -> (1.5k/1.6k) -> encode(95% 96% 95% 96% 96% 95% 96% 96% 95% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4336/2777 (z13 85%) https://www.openstreetmap.org/#map=13/50.03597/10.54688
2:13:18 INF [archive] - features: [ 685M 33% 576k/s ] 128G tiles: [ 56M 1k/s ] 11G
cpus: 11 gc: 10% heap: 16G/32G direct: 18M postGC: 12G
read(10%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4270/2795 (z13 85%) https://www.openstreetmap.org/#map=13/49.52521/7.64648
2:13:28 INF [archive] - features: [ 691M 33% 564k/s ] 128G tiles: [ 56M 1.7k/s ] 11G
cpus: 11 gc: 11% heap: 18G/32G direct: 18M postGC: 12G
read(12%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 88% 89% 89% 89% 88% 89% 88%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4205/2691 (z13 85%) https://www.openstreetmap.org/#map=13/52.40242/4.79004
2:13:38 INF [archive] - features: [ 697M 33% 563k/s ] 128G tiles: [ 56M 5.2k/s ] 11G
cpus: 11 gc: 11% heap: 22G/32G direct: 18M postGC: 13G
read(10%) -> (1.5k/1.6k) -> encode(89% 88% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4411/2744 (z13 85%) https://www.openstreetmap.org/#map=13/50.95843/13.84277
2:13:48 INF [archive] - features: [ 700M 34% 350k/s ] 128G tiles: [ 56M 1.6k/s ] 12G
cpus: 11.2 gc: 10% heap: 5.5G/32G direct: 18M postGC: 4.3G
read( 9%) -> (1.5k/1.6k) -> encode(86% 84% 85% 87% 88% 87% 83% 88% 84% 86% 88%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4537/2735 (z13 85%) https://www.openstreetmap.org/#map=13/51.20688/19.37988
2:13:58 INF [archive] - features: [ 703M 34% 343k/s ] 128G tiles: [ 56M 2k/s ] 12G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 4.7G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4483/2655 (z13 85%) https://www.openstreetmap.org/#map=13/53.35711/17.00684
2:14:08 INF [archive] - features: [ 706M 34% 238k/s ] 128G tiles: [ 56M 6.3k/s ] 12G
cpus: 11 gc: 8% heap: 5.1G/32G direct: 18M postGC: 5.1G
read( 6%) -> (1.5k/1.6k) -> encode(92% 92% 92% 91% 92% 91% 92% 92% 92% 91% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4436/2436 (z13 85%) https://www.openstreetmap.org/#map=13/58.72260/14.94141
2:14:18 INF [archive] - features: [ 708M 34% 193k/s ] 128G tiles: [ 56M 6.7k/s ] 12G
cpus: 11 gc: 7% heap: 12G/32G direct: 18M postGC: 5.4G
read( 5%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4287/2430 (z13 85%) https://www.openstreetmap.org/#map=13/58.85922/8.39355
2:14:28 INF [archive] - features: [ 709M 34% 109k/s ] 128G tiles: [ 56M 2.2k/s ] 12G
cpus: 11 gc: 5% heap: 6.6G/32G direct: 18M postGC: 5.6G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 94% 95% 95% 94% 95% 94% 95% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4257/2249 (z13 85%) https://www.openstreetmap.org/#map=13/62.73460/7.07520
2:14:38 INF [archive] - features: [ 709M 34% 42k/s ] 128G tiles: [ 56M 6.7k/s ] 12G
cpus: 11 gc: 3% heap: 21G/32G direct: 18M postGC: 5.6G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 96% 97% 97% 97% 96% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 13/4409/2180 (z13 85%) https://www.openstreetmap.org/#map=13/64.09141/13.75488
2:14:48 INF [archive] - features: [ 711M 34% 127k/s ] 128G tiles: [ 56M 7.7k/s ] 12G
cpus: 11 gc: 2% heap: 11G/32G direct: 18M postGC: 5.7G
read( 1%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4781/2237 (z13 86%) https://www.openstreetmap.org/#map=13/62.97520/30.10254
2:14:58 INF [archive] - features: [ 714M 34% 295k/s ] 128G tiles: [ 56M 7.9k/s ] 12G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 5.8G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4860/2379 (z13 86%) https://www.openstreetmap.org/#map=13/59.99899/33.57422
2:15:08 INF [archive] - features: [ 716M 34% 241k/s ] 128G tiles: [ 56M 21k/s ] 12G
cpus: 11 gc: 2% heap: 20G/32G direct: 18M postGC: 5.9G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/5579/2313 (z13 86%) https://www.openstreetmap.org/#map=13/61.41775/65.17090
2:15:18 INF [archive] - features: [ 718M 34% 192k/s ] 128G tiles: [ 56M 6.5k/s ] 12G
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 6G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/5225/2428 (z13 86%) https://www.openstreetmap.org/#map=13/58.90465/49.61426
2:15:28 INF [archive] - features: [ 721M 35% 309k/s ] 128G tiles: [ 56M 13k/s ] 12G
cpus: 11 gc: 3% heap: 12G/32G direct: 18M postGC: 6.2G
read( 4%) -> (1.4k/1.6k) -> encode(97% 97% 97% 96% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/5402/2727 (z13 87%) https://www.openstreetmap.org/#map=13/51.42661/57.39258
2:15:38 INF [archive] - features: [ 722M 35% 104k/s ] 128G tiles: [ 57M 11k/s ] 12G
cpus: 11 gc: 3% heap: 8.5G/32G direct: 18M postGC: 6.3G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/6091/2802 (z13 87%) https://www.openstreetmap.org/#map=13/49.32512/87.67090
2:15:48 INF [archive] - features: [ 723M 35% 109k/s ] 128G tiles: [ 57M 10k/s ] 12G
cpus: 11 gc: 2% heap: 6.8G/32G direct: 18M postGC: 6.3G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 97% 97% 97% 98% 98% 97%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/5766/2309 (z13 87%) https://www.openstreetmap.org/#map=13/61.50173/73.38867
2:15:58 INF [archive] - features: [ 725M 35% 229k/s ] 128G tiles: [ 58M 115k/s ] 13G
cpus: 11.1 gc: 4% heap: 15G/32G direct: 18M postGC: 6.7G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 95% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/4531/1882 (z13 89%) https://www.openstreetmap.org/#map=13/69.25615/19.11621
2:16:04 INF [archive:write] - Finished z13 in 12m22s cpu:2h16m41s gc:51s avg:11.1, now starting z14
2:16:08 INF [archive] - features: [ 752M 36% 2.6M/s ] 128G tiles: [ 82M 2.4M/s ] 13G
cpus: 10.8 gc: 3% heap: 10G/32G direct: 18M postGC: 6.6G
read(40%) -> (1.1k/1.6k) -> encode(86% 88% 88% 86% 87% 87% 88% 88% 89% 89% 87%) -> (1.3k/1.6k) -> write(46%)
last tile: 14/6783/749 (z14 8%) https://www.openstreetmap.org/#map=14/83.40761/-30.95947
2:16:18 INF [archive] - features: [ 768M 37% 1.6M/s ] 128G tiles: [ 90M 764k/s ] 13G
cpus: 11.2 gc: 8% heap: 8.7G/32G direct: 18M postGC: 8.7G
read(41%) -> (1.5k/1.6k) -> encode(87% 90% 88% 89% 89% 90% 90% 90% 88% 90% 90%) -> (1.6k/1.6k) -> write(25%)
last tile: 14/4196/6036 (z14 13%) https://www.openstreetmap.org/#map=14/42.74701/-87.80273
2:16:28 INF [archive] - features: [ 780M 37% 1.2M/s ] 128G tiles: [ 90M 13k/s ] 13G
cpus: 11.1 gc: 11% heap: 11G/32G direct: 18M postGC: 10G
read(18%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 88% 88% 88% 88% 87% 88% 88%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/4409/5710 (z14 13%) https://www.openstreetmap.org/#map=14/47.78363/-83.12256
2:16:38 INF [archive] - features: [ 792M 38% 1.1M/s ] 128G tiles: [ 90M 17k/s ] 13G
cpus: 11 gc: 10% heap: 26G/32G direct: 18M postGC: 11G
read(13%) -> (1.5k/1.6k) -> encode(89% 89% 90% 90% 90% 90% 90% 89% 90% 89% 90%) -> (1.5k/1.6k) -> write( 8%)
last tile: 14/4890/6074 (z14 13%) https://www.openstreetmap.org/#map=14/42.13082/-72.55371
2:16:48 INF [archive] - features: [ 800M 38% 801k/s ] 128G tiles: [ 90M 7.5k/s ] 14G
cpus: 11.2 gc: 8% heap: 15G/32G direct: 18M postGC: 3.3G
read( 3%) -> (1.5k/1.6k) -> encode(90% 88% 84% 90% 89% 91% 88% 90% 88% 88% 88%) -> (1.6k/1.6k) -> write( 3%)
last tile: 14/4934/5817 (z14 13%) https://www.openstreetmap.org/#map=14/46.17983/-71.58691
2:16:58 INF [archive] - features: [ 805M 39% 492k/s ] 128G tiles: [ 91M 56k/s ] 14G
cpus: 11.1 gc: 4% heap: 15G/32G direct: 18M postGC: 3.5G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.5k/1.6k) -> write(13%)
last tile: 14/5482/5848 (z14 13%) https://www.openstreetmap.org/#map=14/45.70618/-59.54590
2:17:08 INF [archive] - features: [ 819M 39% 1.4M/s ] 128G tiles: [ 95M 374k/s ] 14G
cpus: 11.4 gc: 9% heap: 15G/32G direct: 18M postGC: 4.7G
read(36%) -> (1.5k/1.6k) -> encode(90% 89% 90% 90% 90% 90% 89% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(16%)
last tile: 14/8151/5241 (z14 15%) https://www.openstreetmap.org/#map=14/54.25239/-0.90088
2:17:18 INF [archive] - features: [ 836M 40% 1.6M/s ] 128G tiles: [ 95M 6.4k/s ] 14G
cpus: 11.1 gc: 8% heap: 15G/32G direct: 18M postGC: 6G
read(20%) -> (1.5k/1.6k) -> encode(91% 92% 92% 91% 91% 92% 91% 92% 92% 92% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8182/5484 (z14 15%) https://www.openstreetmap.org/#map=14/51.01375/-0.21973
2:17:28 INF [archive] - features: [ 853M 41% 1.7M/s ] 128G tiles: [ 95M 20k/s ] 15G
cpus: 11.1 gc: 12% heap: 10G/32G direct: 18M postGC: 7.3G
read(20%) -> (1.4k/1.6k) -> encode(88% 88% 88% 87% 88% 88% 87% 87% 88% 87% 88%) -> (1.5k/1.6k) -> write( 4%)
last tile: 14/8189/5771 (z14 15%) https://www.openstreetmap.org/#map=14/46.87521/-0.06592
2:17:38 INF [archive] - features: [ 868M 42% 1.5M/s ] 128G tiles: [ 98M 280k/s ] 15G
cpus: 11.1 gc: 7% heap: 9.6G/32G direct: 18M postGC: 7.3G
read(11%) -> (342/1.6k) -> encode(93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93%) -> (358/1.6k) -> write( 8%)
last tile: 14/7766/6277 (z14 16%) https://www.openstreetmap.org/#map=14/38.73695/-9.36035
2:17:48 INF [archive] - features: [ 882M 42% 1.4M/s ] 128G tiles: [ 98M 67k/s ] 15G
cpus: 11.3 gc: 9% heap: 18G/32G direct: 18M postGC: 8.5G
read(31%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.5k/1.6k) -> write(10%)
last tile: 14/7625/7666 (z14 16%) https://www.openstreetmap.org/#map=14/11.48002/-12.45850
2:17:58 INF [archive] - features: [ 906M 43% 2.3M/s ] 128G tiles: [ 102M 387k/s ] 16G
cpus: 11.2 gc: 7% heap: 18G/32G direct: 18M postGC: 8.8G
read(17%) -> (229/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 92% 92% 92% 93%) -> (398/1.6k) -> write(18%)
last tile: 14/4904/6876 (z14 18%) https://www.openstreetmap.org/#map=14/27.76133/-72.24609
2:18:08 INF [archive] - features: [ 921M 44% 1.4M/s ] 128G tiles: [ 102M 23k/s ] 16G
cpus: 11.2 gc: 9% heap: 13G/32G direct: 18M postGC: 10G
read(37%) -> (1.5k/1.6k) -> encode(88% 90% 90% 90% 90% 90% 89% 90% 91% 90% 90%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/4715/6311 (z14 18%) https://www.openstreetmap.org/#map=14/38.15184/-76.39893
2:18:18 INF [archive] - features: [ 936M 45% 1.5M/s ] 128G tiles: [ 103M 13k/s ] 16G
cpus: 11.1 gc: 13% heap: 12G/32G direct: 18M postGC: 12G
read(22%) -> (1.5k/1.6k) -> encode(86% 87% 87% 86% 86% 86% 86% 86% 86% 87% 87%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/4585/6430 (z14 18%) https://www.openstreetmap.org/#map=14/36.06686/-79.25537
2:18:28 INF [archive] - features: [ 946M 45% 941k/s ] 128G tiles: [ 103M 8.5k/s ] 16G
cpus: 11 gc: 12% heap: 13G/32G direct: 18M postGC: 13G
read(14%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88%) -> (1.5k/1.6k) -> write( 5%)
last tile: 14/4331/6202 (z14 18%) https://www.openstreetmap.org/#map=14/40.01079/-84.83643
2:18:39 INF [archive] - features: [ 957M 46% 1.1M/s ] 128G tiles: [ 103M 12k/s ] 16G
cpus: 11.1 gc: 11% heap: 20G/32G direct: 18M postGC: 14G
read(13%) -> (1.5k/1.6k) -> encode(88% 87% 88% 89% 88% 88% 88% 88% 88% 88% 89%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/4117/6766 (z14 18%) https://www.openstreetmap.org/#map=14/29.87876/-89.53857
2:18:49 INF [archive] - features: [ 966M 46% 904k/s ] 128G tiles: [ 103M 13k/s ] 17G
cpus: 11.2 gc: 5% heap: 15G/32G direct: 18M postGC: 4G
read( 9%) -> (1.5k/1.6k) -> encode(91% 94% 93% 91% 91% 89% 92% 90% 94% 94% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 14/4543/6952 (z14 18%) https://www.openstreetmap.org/#map=14/26.27371/-80.17822
2:18:59 INF [archive] - features: [ 982M 47% 1.6M/s ] 128G tiles: [ 104M 80k/s ] 17G
cpus: 11.2 gc: 8% heap: 16G/32G direct: 18M postGC: 4.9G
read(20%) -> (1.5k/1.6k) -> encode(90% 92% 91% 91% 92% 91% 91% 91% 92% 91% 91%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/4676/8061 (z14 19%) https://www.openstreetmap.org/#map=14/2.87721/-77.25586
2:19:09 INF [archive] - features: [ 1B 48% 1.9M/s ] 128G tiles: [ 107M 318k/s ] 17G
cpus: 11.3 gc: 7% heap: 8.2G/32G direct: 18M postGC: 5.4G
read(29%) -> (1.5k/1.6k) -> encode(93% 93% 93% 92% 93% 92% 92% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(12%)
last tile: 14/2631/6375 (z14 20%) https://www.openstreetmap.org/#map=14/37.03764/-122.18994
2:19:16 WAR [archive:encode] - {x=2873 y=6626 z=14} 1140kb uncompressed
2:19:19 INF [archive] - features: [ 1B 49% 1.8M/s ] 128G tiles: [ 107M 19k/s ] 17G
cpus: 11.2 gc: 8% heap: 16G/32G direct: 18M postGC: 7.1G
read(26%) -> (1.5k/1.6k) -> encode(92% 91% 91% 91% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 7%)
last tile: 14/3107/6317 (z14 20%) https://www.openstreetmap.org/#map=14/38.04809/-111.73096
2:19:29 INF [archive] - features: [ 1B 50% 1.3M/s ] 128G tiles: [ 107M 23k/s ] 18G
cpus: 11.1 gc: 10% heap: 17G/32G direct: 18M postGC: 8.4G
read(14%) -> (1.2k/1.6k) -> encode(90% 90% 89% 90% 90% 90% 90% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/3219/6659 (z14 20%) https://www.openstreetmap.org/#map=14/31.89621/-109.27002
2:19:39 INF [archive] - features: [ 1B 50% 1.3M/s ] 128G tiles: [ 108M 49k/s ] 18G
cpus: 11.4 gc: 6% heap: 21G/32G direct: 18M postGC: 4.7G
read(25%) -> (1.5k/1.6k) -> encode(92% 88% 88% 92% 93% 92% 92% 91% 86% 93% 91%) -> (1.5k/1.6k) -> write(12%)
last tile: 14/3804/6542 (z14 20%) https://www.openstreetmap.org/#map=14/34.05266/-96.41602
2:19:49 INF [archive] - features: [ 1B 51% 1.4M/s ] 128G tiles: [ 108M 23k/s ] 18G
cpus: 11.1 gc: 12% heap: 10G/32G direct: 18M postGC: 7G
read(18%) -> (1.5k/1.6k) -> encode(87% 87% 86% 88% 88% 88% 88% 87% 88% 87% 88%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/4006/5913 (z14 20%) https://www.openstreetmap.org/#map=14/44.69990/-91.97754
2:19:59 INF [archive] - features: [ 1B 51% 964k/s ] 128G tiles: [ 109M 57k/s ] 18G
cpus: 11.2 gc: 9% heap: 11G/32G direct: 18M postGC: 7.9G
read(11%) -> (1.5k/1.6k) -> encode(90% 91% 90% 90% 91% 91% 91% 91% 91% 91% 90%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/3167/5164 (z14 21%) https://www.openstreetmap.org/#map=14/55.22902/-110.41260
2:20:09 INF [archive] - features: [ 1B 52% 483k/s ] 128G tiles: [ 110M 88k/s ] 19G
cpus: 11.3 gc: 9% heap: 18G/32G direct: 18M postGC: 4.1G
read(12%) -> (1.5k/1.6k) -> encode(87% 86% 87% 91% 89% 88% 91% 89% 88% 88% 90%) -> (1.6k/1.6k) -> write(22%)
last tile: 14/2159/5196 (z14 21%) https://www.openstreetmap.org/#map=14/54.82601/-132.56104
2:20:19 INF [archive] - features: [ 1B 52% 1.1M/s ] 128G tiles: [ 110M 47k/s ] 19G
cpus: 11.1 gc: 5% heap: 16G/32G direct: 18M postGC: 4.9G
read( 7%) -> (1.5k/1.6k) -> encode(95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/2615/5843 (z14 22%) https://www.openstreetmap.org/#map=14/45.78285/-122.54150
2:20:29 INF [archive] - features: [ 1.1B 53% 1.7M/s ] 128G tiles: [ 119M 946k/s ] 19G
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 4.4G
read(17%) -> (5/1.6k) -> encode(91% 92% 92% 92% 92% 91% 91% 91% 92% 93% 93%) -> (446/1.6k) -> write(26%)
last tile: 14/105/9892 (z14 26%) https://www.openstreetmap.org/#map=14/-34.95800/-177.69287
2:20:39 INF [archive] - features: [ 1.1B 55% 4.1M/s ] 128G tiles: [ 158M 3.8M/s ] 19G
cpus: 9.1 gc: 4% heap: 7.3G/32G direct: 18M postGC: 4.9G
read(70%) -> (832/1.6k) -> encode(70% 70% 70% 70% 70% 69% 69% 68% 70% 70% 69%) -> (842/1.6k) -> write(38%)
last tile: 14/6072/9266 (z14 47%) https://www.openstreetmap.org/#map=14/-22.95839/-46.58203
2:20:49 INF [archive] - features: [ 1.1B 55% 915k/s ] 128G tiles: [ 158M 11k/s ] 20G
cpus: 11.1 gc: 9% heap: 13G/32G direct: 18M postGC: 6.1G
read(22%) -> (1.5k/1.6k) -> encode(90% 90% 89% 90% 87% 91% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/5799/9506 (z14 47%) https://www.openstreetmap.org/#map=14/-27.72244/-52.58057
2:20:59 INF [archive] - features: [ 1.1B 56% 955k/s ] 128G tiles: [ 158M 45k/s ] 20G
cpus: 11.1 gc: 8% heap: 9.5G/32G direct: 18M postGC: 6.2G
read( 6%) -> (1.4k/1.6k) -> encode(92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 91%) -> (1.6k/1.6k) -> write(14%)
last tile: 14/4871/10042 (z14 47%) https://www.openstreetmap.org/#map=14/-37.61423/-72.97119
2:21:09 INF [archive] - features: [ 1.1B 56% 1.1M/s ] 128G tiles: [ 161M 210k/s ] 20G
cpus: 11.2 gc: 8% heap: 9.2G/32G direct: 18M postGC: 7G
read(26%) -> (1.5k/1.6k) -> encode(92% 89% 90% 91% 91% 92% 91% 92% 89% 90% 91%) -> (1.6k/1.6k) -> write(18%)
last tile: 14/5255/9020 (z14 48%) https://www.openstreetmap.org/#map=14/-17.89511/-64.53369
2:21:19 INF [archive] - features: [ 1.1B 57% 473k/s ] 128G tiles: [ 161M 17k/s ] 20G
cpus: 11.3 gc: 2% heap: 19G/32G direct: 18M postGC: 4G
read( 1%) -> (1.2k/1.6k) -> encode(96% 94% 92% 89% 95% 89% 93% 89% 89% 88% 90%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/5907/9067 (z14 48%) https://www.openstreetmap.org/#map=14/-18.87510/-50.20752
2:21:23 WAR [archive:encode] - {x=6435 y=8361 z=14} 1349kb uncompressed
2:21:29 INF [archive] - features: [ 1.1B 57% 938k/s ] 128G tiles: [ 162M 122k/s ] 20G
cpus: 11.2 gc: 6% heap: 12G/32G direct: 19M postGC: 4.7G
read(11%) -> (1.5k/1.6k) -> encode(94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write(16%)
last tile: 14/6320/9148 (z14 49%) https://www.openstreetmap.org/#map=14/-20.55051/-41.13281
2:21:39 INF [archive] - features: [ 1.2B 58% 869k/s ] 128G tiles: [ 165M 349k/s ] 21G
cpus: 10.9 gc: 6% heap: 5G/32G direct: 19M postGC: 4.3G
read( 9%) -> (436/1.6k) -> encode(92% 93% 93% 92% 93% 93% 92% 92% 92% 92% 93%) -> (458/1.6k) -> write( 7%)
last tile: 14/9145/8205 (z14 50%) https://www.openstreetmap.org/#map=14/-0.28564/20.93994
2:21:49 INF [archive] - features: [ 1.2B 59% 2M/s ] 128G tiles: [ 168M 253k/s ] 21G
cpus: 11.4 gc: 5% heap: 16G/32G direct: 19M postGC: 4.7G
read(37%) -> (1.3k/1.6k) -> encode(94% 95% 93% 95% 93% 94% 94% 93% 94% 93% 93%) -> (1.3k/1.6k) -> write(19%)
last tile: 14/9733/9083 (z14 51%) https://www.openstreetmap.org/#map=14/-19.20743/33.85986
2:21:59 INF [archive] - features: [ 1.2B 60% 2.2M/s ] 128G tiles: [ 168M 35k/s ] 21G
cpus: 11.2 gc: 10% heap: 8.1G/32G direct: 19M postGC: 6.5G
read(28%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 87% 89% 89% 88% 87% 89% 88%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/9502/8257 (z14 51%) https://www.openstreetmap.org/#map=14/-1.42807/28.78418
2:22:09 INF [archive] - features: [ 1.2B 61% 2.4M/s ] 128G tiles: [ 169M 49k/s ] 22G
cpus: 11.2 gc: 8% heap: 18G/32G direct: 19M postGC: 6.8G
read(20%) -> (1.5k/1.6k) -> encode(92% 92% 92% 91% 91% 91% 91% 91% 91% 90% 91%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/10277/8516 (z14 52%) https://www.openstreetmap.org/#map=14/-7.10089/45.81299
2:22:19 INF [archive] - features: [ 1.3B 62% 3.2M/s ] 128G tiles: [ 192M 2.3M/s ] 22G
cpus: 9.6 gc: 3% heap: 20G/32G direct: 19M postGC: 6.2G
read(39%) -> (0/1.6k) -> encode(77% 79% 84% 78% 78% 78% 78% 77% 78% 79% 78%) -> (10/1.6k) -> write(27%)
last tile: 14/12640/10843 (z14 71%) https://www.openstreetmap.org/#map=14/-50.21909/97.73438
2:22:29 INF [archive] - features: [ 1.3B 64% 3.1M/s ] 128G tiles: [ 196M 430k/s ] 22G
cpus: 11.1 gc: 5% heap: 14G/32G direct: 19M postGC: 7G
read(50%) -> (1.5k/1.6k) -> encode(92% 90% 92% 90% 91% 92% 91% 91% 92% 92% 90%) -> (1.6k/1.6k) -> write(12%)
last tile: 14/13202/8550 (z14 73%) https://www.openstreetmap.org/#map=14/-7.84162/110.08301
2:22:39 INF [archive] - features: [ 1.3B 65% 2.6M/s ] 128G tiles: [ 198M 178k/s ] 23G
cpus: 11.2 gc: 10% heap: 8.8G/32G direct: 19M postGC: 8.7G
read(27%) -> (1.5k/1.6k) -> encode(89% 89% 89% 90% 90% 88% 88% 88% 90% 89% 89%) -> (1.6k/1.6k) -> write(15%)
last tile: 14/14564/9501 (z14 74%) https://www.openstreetmap.org/#map=14/-27.62514/140.00977
2:22:49 INF [archive] - features: [ 1.3B 66% 1.4M/s ] 128G tiles: [ 201M 329k/s ] 23G
cpus: 11 gc: 5% heap: 13G/32G direct: 19M postGC: 3.2G
read(10%) -> (0/1.6k) -> encode(91% 92% 90% 91% 89% 91% 88% 90% 92% 92% 89%) -> (1k/1.6k) -> write(15%)
last tile: 14/15778/7571 (z14 75%) https://www.openstreetmap.org/#map=14/13.51784/166.68457
2:22:59 INF [archive] - features: [ 1.3B 67% 2.1M/s ] 128G tiles: [ 204M 224k/s ] 23G
cpus: 11.3 gc: 7% heap: 11G/32G direct: 19M postGC: 4.9G
read(40%) -> (1.5k/1.6k) -> encode(92% 92% 92% 91% 92% 92% 92% 92% 91% 91% 92%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/14564/6401 (z14 76%) https://www.openstreetmap.org/#map=14/36.58025/140.00977
2:23:09 INF [archive] - features: [ 1.4B 68% 1.6M/s ] 128G tiles: [ 208M 420k/s ] 23G
cpus: 11.3 gc: 8% heap: 7.1G/32G direct: 19M postGC: 5.4G
read(25%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 92% 88% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write(18%)
last tile: 14/14838/5982 (z14 78%) https://www.openstreetmap.org/#map=14/43.61222/146.03027
2:23:19 INF [archive] - features: [ 1.4B 68% 889k/s ] 128G tiles: [ 209M 150k/s ] 24G
cpus: 11.5 gc: 7% heap: 10G/32G direct: 19M postGC: 6.9G
read(22%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(34%)
last tile: 14/12645/6508 (z14 80%) https://www.openstreetmap.org/#map=14/34.66936/97.84424
2:23:29 INF [archive] - features: [ 1.4B 69% 1.3M/s ] 128G tiles: [ 210M 41k/s ] 24G
cpus: 11.2 gc: 8% heap: 17G/32G direct: 19M postGC: 8.4G
read(18%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write(14%)
last tile: 14/13240/6452 (z14 80%) https://www.openstreetmap.org/#map=14/35.67515/110.91797
2:23:39 INF [archive] - features: [ 1.4B 69% 1.1M/s ] 128G tiles: [ 210M 51k/s ] 24G
cpus: 11.1 gc: 11% heap: 9.5G/32G direct: 19M postGC: 9.4G
read(14%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 88% 89% 89% 89% 89% 88% 88%) -> (1.6k/1.6k) -> write(12%)
last tile: 14/14281/6468 (z14 80%) https://www.openstreetmap.org/#map=14/35.38905/133.79150
2:23:49 INF [archive] - features: [ 1.4B 70% 1.1M/s ] 128G tiles: [ 211M 39k/s ] 25G
cpus: 11.2 gc: 11% heap: 4.7G/32G direct: 19M postGC: 4.7G
read(20%) -> (1.5k/1.6k) -> encode(85% 85% 86% 88% 86% 85% 87% 86% 86% 86% 86%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/13661/7099 (z14 80%) https://www.openstreetmap.org/#map=14/23.34226/120.16846
2:23:59 INF [archive] - features: [ 1.4B 71% 1.2M/s ] 128G tiles: [ 211M 38k/s ] 25G
cpus: 11.1 gc: 6% heap: 7.1G/32G direct: 19M postGC: 5.6G
read(13%) -> (1.5k/1.6k) -> encode(94% 93% 94% 94% 94% 93% 94% 93% 94% 92% 94%) -> (1.6k/1.6k) -> write( 8%)
last tile: 14/13804/7579 (z14 81%) https://www.openstreetmap.org/#map=14/13.34687/123.31055
2:24:09 INF [archive] - features: [ 1.4B 72% 2M/s ] 128G tiles: [ 212M 103k/s ] 25G
cpus: 11.2 gc: 11% heap: 7.1G/32G direct: 19M postGC: 7.1G
read(32%) -> (1.4k/1.6k) -> encode(87% 88% 88% 89% 88% 87% 88% 87% 88% 88% 87%) -> (1.6k/1.6k) -> write( 8%)
last tile: 14/13062/7705 (z14 81%) https://www.openstreetmap.org/#map=14/10.63901/107.00684
2:24:18 WAR [archive:encode] - {x=12386 y=7204 z=14} 1149kb uncompressed
2:24:19 INF [archive] - features: [ 1.5B 72% 1.8M/s ] 128G tiles: [ 213M 65k/s ] 25G
cpus: 11.1 gc: 8% heap: 21G/32G direct: 19M postGC: 8.2G
read(20%) -> (1.5k/1.6k) -> encode(92% 92% 91% 92% 90% 92% 92% 92% 91% 92% 92%) -> (1.6k/1.6k) -> write(11%)
last tile: 14/12766/7897 (z14 81%) https://www.openstreetmap.org/#map=14/6.46815/100.50293
2:24:29 INF [archive] - features: [ 1.5B 73% 2M/s ] 128G tiles: [ 214M 94k/s ] 26G
cpus: 11.3 gc: 8% heap: 16G/32G direct: 19M postGC: 4.7G
read(30%) -> (1.5k/1.6k) -> encode(91% 88% 90% 88% 87% 88% 90% 89% 90% 86% 90%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/11841/7238 (z14 82%) https://www.openstreetmap.org/#map=14/20.50935/80.17822
2:24:39 INF [archive] - features: [ 1.5B 74% 1.5M/s ] 128G tiles: [ 214M 28k/s ] 26G
cpus: 11.1 gc: 10% heap: 10G/32G direct: 19M postGC: 6.3G
read(20%) -> (1.3k/1.6k) -> encode(90% 88% 89% 89% 90% 90% 89% 90% 90% 90% 90%) -> (1.3k/1.6k) -> write( 6%)
last tile: 14/12076/6929 (z14 82%) https://www.openstreetmap.org/#map=14/26.72599/85.34180
2:24:49 INF [archive] - features: [ 1.5B 75% 1.3M/s ] 128G tiles: [ 214M 21k/s ] 26G
cpus: 11.1 gc: 10% heap: 10G/32G direct: 19M postGC: 7.7G
read(23%) -> (1.5k/1.6k) -> encode(89% 88% 88% 88% 90% 89% 88% 89% 90% 90% 89%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/11810/6578 (z14 82%) https://www.openstreetmap.org/#map=14/33.39476/79.49707
2:24:59 INF [archive] - features: [ 1.5B 76% 1.5M/s ] 128G tiles: [ 215M 49k/s ] 26G
cpus: 11.4 gc: 5% heap: 11G/32G direct: 19M postGC: 5.7G
read(19%) -> (1.5k/1.6k) -> encode(90% 92% 92% 92% 92% 90% 91% 90% 92% 92% 90%) -> (1.6k/1.6k) -> write(15%)
last tile: 14/10757/6818 (z14 82%) https://www.openstreetmap.org/#map=14/28.88316/56.35986
2:25:09 INF [archive] - features: [ 1.5B 76% 1.3M/s ] 128G tiles: [ 215M 24k/s ] 27G
cpus: 10.9 gc: 9% heap: 15G/32G direct: 19M postGC: 6.2G
read( 3%) -> (0/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 91% 91% 90%) -> (1.5k/1.6k) -> write( 7%)
last tile: 14/10295/6460 (z14 82%) https://www.openstreetmap.org/#map=14/35.53223/46.20850
2:25:19 INF [archive] - features: [ 1.6B 77% 2M/s ] 128G tiles: [ 216M 150k/s ] 27G
cpus: 11.4 gc: 7% heap: 19G/32G direct: 19M postGC: 7.1G
read(39%) -> (1.5k/1.6k) -> encode(90% 90% 93% 92% 92% 93% 91% 91% 93% 92% 93%) -> (1.5k/1.6k) -> write(22%)
last tile: 14/9571/8085 (z14 83%) https://www.openstreetmap.org/#map=14/2.35041/30.30029
2:25:29 INF [archive] - features: [ 1.6B 78% 1.3M/s ] 128G tiles: [ 217M 39k/s ] 27G
cpus: 11.3 gc: 6% heap: 18G/32G direct: 19M postGC: 4.9G
read(19%) -> (1.5k/1.6k) -> encode(91% 92% 90% 88% 91% 90% 90% 87% 89% 89% 92%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/8251/7732 (z14 83%) https://www.openstreetmap.org/#map=14/10.05540/1.29639
2:25:39 INF [archive] - features: [ 1.6B 79% 2M/s ] 128G tiles: [ 217M 53k/s ] 28G
cpus: 11.2 gc: 9% heap: 9.1G/32G direct: 19M postGC: 7.1G
read(28%) -> (1.5k/1.6k) -> encode(89% 90% 90% 91% 90% 90% 89% 89% 89% 90% 91%) -> (1.6k/1.6k) -> write(15%)
last tile: 14/8593/6235 (z14 84%) https://www.openstreetmap.org/#map=14/39.45316/8.81104
2:25:49 INF [archive] - features: [ 1.6B 79% 1.3M/s ] 128G tiles: [ 218M 32k/s ] 28G
cpus: 11.3 gc: 7% heap: 13G/32G direct: 19M postGC: 5.2G
read(19%) -> (1.5k/1.6k) -> encode(87% 88% 88% 88% 87% 87% 91% 88% 92% 89% 89%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/9379/6158 (z14 84%) https://www.openstreetmap.org/#map=14/40.74726/26.08154
2:25:59 INF [archive] - features: [ 1.6B 80% 1.6M/s ] 128G tiles: [ 218M 48k/s ] 28G
cpus: 11.2 gc: 10% heap: 10G/32G direct: 19M postGC: 6.9G
read(26%) -> (1.5k/1.6k) -> encode(90% 90% 88% 89% 90% 88% 90% 90% 89% 89% 90%) -> (1.6k/1.6k) -> write(11%)
last tile: 14/9754/6399 (z14 84%) https://www.openstreetmap.org/#map=14/36.61553/34.32129
2:26:09 INF [archive] - features: [ 1.6B 81% 875k/s ] 128G tiles: [ 218M 25k/s ] 28G
cpus: 11.1 gc: 12% heap: 15G/32G direct: 19M postGC: 7.7G
read(16%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 88% 88% 88% 88% 86% 87% 88%) -> (1.6k/1.6k) -> write( 8%)
last tile: 14/9734/5663 (z14 84%) https://www.openstreetmap.org/#map=14/48.47292/33.88184
2:26:19 INF [archive] - features: [ 1.6B 81% 1.1M/s ] 128G tiles: [ 219M 26k/s ] 29G
cpus: 11.3 gc: 8% heap: 9.1G/32G direct: 19M postGC: 4.8G
read(18%) -> (1.5k/1.6k) -> encode(91% 90% 89% 86% 90% 88% 86% 90% 90% 87% 88%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/9817/5437 (z14 85%) https://www.openstreetmap.org/#map=14/51.65893/35.70557
2:26:29 INF [archive] - features: [ 1.7B 82% 1.2M/s ] 128G tiles: [ 219M 22k/s ] 29G
cpus: 11.1 gc: 9% heap: 13G/32G direct: 19M postGC: 5.9G
read(18%) -> (1.5k/1.6k) -> encode(88% 90% 89% 89% 91% 90% 90% 91% 91% 90% 91%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/9237/5217 (z14 85%) https://www.openstreetmap.org/#map=14/54.55932/22.96143
2:26:39 INF [archive] - features: [ 1.7B 82% 1.1M/s ] 128G tiles: [ 219M 16k/s ] 29G
cpus: 11 gc: 10% heap: 22G/32G direct: 19M postGC: 7G
read(18%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 88% 89% 89% 90% 89% 89% 90%) -> (1.6k/1.6k) -> write( 8%)
last tile: 14/9639/5634 (z14 85%) https://www.openstreetmap.org/#map=14/48.89362/31.79443
2:26:49 INF [archive] - features: [ 1.7B 83% 950k/s ] 128G tiles: [ 219M 21k/s ] 29G
cpus: 11.1 gc: 9% heap: 18G/32G direct: 19M postGC: 8G
read(15%) -> (1.5k/1.6k) -> encode(89% 89% 88% 87% 85% 88% 88% 87% 86% 89% 87%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8985/5891 (z14 85%) https://www.openstreetmap.org/#map=14/45.04248/17.42432
2:26:59 INF [archive] - features: [ 1.7B 83% 1.1M/s ] 128G tiles: [ 219M 9.1k/s ] 30G
cpus: 11.1 gc: 7% heap: 12G/32G direct: 19M postGC: 5.3G
read(18%) -> (1.5k/1.6k) -> encode(92% 89% 92% 91% 91% 91% 90% 91% 91% 93% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/8880/5856 (z14 85%) https://www.openstreetmap.org/#map=14/45.58329/15.11719
2:27:09 INF [archive] - features: [ 1.7B 84% 561k/s ] 128G tiles: [ 219M 1.9k/s ] 30G
cpus: 11 gc: 9% heap: 10G/32G direct: 19M postGC: 5.6G
read( 8%) -> (1.5k/1.6k) -> encode(91% 91% 90% 91% 90% 90% 90% 90% 90% 91% 90%) -> (1.5k/1.6k) -> write( 2%)
last tile: 14/8920/5693 (z14 85%) https://www.openstreetmap.org/#map=14/48.03402/15.99609
2:27:19 INF [archive] - features: [ 1.7B 84% 949k/s ] 128G tiles: [ 219M 3.1k/s ] 30G
cpus: 11 gc: 10% heap: 12G/32G direct: 19M postGC: 6.5G
read(18%) -> (1.5k/1.6k) -> encode(90% 90% 88% 90% 90% 90% 90% 88% 89% 90% 89%) -> (1.6k/1.6k) -> write( 3%)
last tile: 14/8803/5805 (z14 85%) https://www.openstreetmap.org/#map=14/46.36209/13.42529
2:27:29 INF [archive] - features: [ 1.7B 84% 540k/s ] 128G tiles: [ 219M 1.4k/s ] 30G
cpus: 11 gc: 11% heap: 10G/32G direct: 19M postGC: 6.9G
read( 9%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 88% 88% 89% 88% 89% 89% 89%) -> (1.5k/1.6k) -> write( 2%)
last tile: 14/8724/5967 (z14 85%) https://www.openstreetmap.org/#map=14/43.85037/11.68945
2:27:39 INF [archive] - features: [ 1.7B 85% 957k/s ] 128G tiles: [ 220M 8.7k/s ] 30G
cpus: 11 gc: 11% heap: 10G/32G direct: 19M postGC: 7.7G
read(16%) -> (1.5k/1.6k) -> encode(88% 89% 89% 89% 88% 89% 89% 88% 87% 89% 89%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8611/5893 (z14 85%) https://www.openstreetmap.org/#map=14/45.01142/9.20654
2:27:49 INF [archive] - features: [ 1.7B 85% 824k/s ] 128G tiles: [ 220M 6.9k/s ] 30G
cpus: 11.3 gc: 6% heap: 12G/32G direct: 19M postGC: 4.7G
read(12%) -> (1.5k/1.6k) -> encode(89% 91% 87% 90% 88% 91% 90% 90% 89% 89% 89%) -> (1.6k/1.6k) -> write( 3%)
last tile: 14/8262/6079 (z14 85%) https://www.openstreetmap.org/#map=14/42.04929/1.53809
2:27:59 INF [archive] - features: [ 1.7B 86% 1.6M/s ] 128G tiles: [ 220M 4k/s ] 31G
cpus: 11.1 gc: 8% heap: 15G/32G direct: 19M postGC: 5.9G
read(22%) -> (1.5k/1.6k) -> encode(91% 91% 89% 91% 91% 91% 91% 91% 91% 91% 90%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8436/5800 (z14 85%) https://www.openstreetmap.org/#map=14/46.43786/5.36133
2:28:09 INF [archive] - features: [ 1.8B 87% 1.9M/s ] 128G tiles: [ 220M 6.5k/s ] 31G
cpus: 11.1 gc: 10% heap: 13G/32G direct: 19M postGC: 7.1G
read(28%) -> (1.5k/1.6k) -> encode(88% 90% 90% 90% 89% 90% 90% 88% 89% 90% 90%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8531/5637 (z14 85%) https://www.openstreetmap.org/#map=14/48.85026/7.44873
2:28:19 INF [archive] - features: [ 1.8B 87% 1M/s ] 128G tiles: [ 220M 1.9k/s ] 31G
cpus: 11 gc: 11% heap: 17G/32G direct: 19M postGC: 8.2G
read(16%) -> (1.5k/1.6k) -> encode(88% 87% 88% 88% 88% 88% 88% 87% 87% 88% 88%) -> (1.6k/1.6k) -> write( 2%)
last tile: 14/8515/5827 (z14 85%) https://www.openstreetmap.org/#map=14/46.02748/7.09717
2:28:29 INF [archive] - features: [ 1.8B 88% 479k/s ] 128G tiles: [ 220M 0/s ] 31G
cpus: 11.2 gc: 10% heap: 11G/32G direct: 19M postGC: 4.1G
read( 0%) -> (990/1.6k) -> encode(84% 87% 85% 85% 87% 84% 86% 81% 87% 84% 83%) -> (1.6k/1.6k) -> write( 0%)
last tile: 14/8515/5827 (z14 85%) https://www.openstreetmap.org/#map=14/46.02748/7.09717
2:28:39 INF [archive] - features: [ 1.8B 89% 1.8M/s ] 128G tiles: [ 220M 5.1k/s ] 32G
cpus: 11.2 gc: 6% heap: 12G/32G direct: 19M postGC: 5.7G
read(36%) -> (1.5k/1.6k) -> encode(91% 93% 92% 93% 93% 93% 92% 91% 93% 92% 93%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8593/5511 (z14 85%) https://www.openstreetmap.org/#map=14/50.63901/8.81104
2:28:49 INF [archive] - features: [ 1.8B 89% 1.7M/s ] 128G tiles: [ 220M 3.2k/s ] 32G
cpus: 11.1 gc: 9% heap: 19G/32G direct: 19M postGC: 6.7G
read(23%) -> (1.5k/1.6k) -> encode(89% 90% 89% 89% 89% 90% 90% 89% 90% 90% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8461/5390 (z14 85%) https://www.openstreetmap.org/#map=14/52.29504/5.91064
2:28:59 INF [archive] - features: [ 1.8B 90% 1.7M/s ] 128G tiles: [ 220M 2.8k/s ] 32G
cpus: 11 gc: 11% heap: 11G/32G direct: 19M postGC: 7.8G
read(24%) -> (1.5k/1.6k) -> encode(89% 88% 87% 87% 89% 88% 88% 89% 89% 89% 88%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8414/5509 (z14 85%) https://www.openstreetmap.org/#map=14/50.66687/4.87793
2:29:09 INF [archive] - features: [ 1.9B 91% 2M/s ] 128G tiles: [ 220M 5.2k/s ] 33G
cpus: 11.2 gc: 9% heap: 15G/32G direct: 19M postGC: 9.1G
read(24%) -> (1.5k/1.6k) -> encode(90% 89% 90% 89% 89% 89% 90% 87% 90% 86% 89%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/8412/5490 (z14 85%) https://www.openstreetmap.org/#map=14/50.93074/4.83398
2:29:19 INF [archive] - features: [ 1.9B 92% 1.3M/s ] 128G tiles: [ 220M 9.5k/s ] 33G
cpus: 11.2 gc: 8% heap: 11G/32G direct: 19M postGC: 5G
read(24%) -> (1.5k/1.6k) -> encode(91% 89% 88% 91% 90% 91% 92% 91% 90% 89% 89%) -> (1.6k/1.6k) -> write( 3%)
last tile: 14/8488/5338 (z14 85%) https://www.openstreetmap.org/#map=14/52.98834/6.50391
2:29:29 INF [archive] - features: [ 1.9B 93% 1.8M/s ] 128G tiles: [ 220M 10k/s ] 33G
cpus: 11.1 gc: 11% heap: 15G/32G direct: 19M postGC: 6.2G
read(27%) -> (1.5k/1.6k) -> encode(87% 88% 89% 89% 89% 89% 89% 88% 89% 89% 88%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8741/5408 (z14 85%) https://www.openstreetmap.org/#map=14/52.05249/12.06299
2:29:39 INF [archive] - features: [ 1.9B 93% 1.4M/s ] 128G tiles: [ 220M 4.6k/s ] 33G
cpus: 11.1 gc: 11% heap: 15G/32G direct: 19M postGC: 7.6G
read(23%) -> (1.5k/1.6k) -> encode(87% 88% 88% 88% 89% 89% 89% 87% 89% 87% 89%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/8931/5532 (z14 85%) https://www.openstreetmap.org/#map=14/50.34546/16.23779
2:29:49 INF [archive] - features: [ 1.9B 94% 1.5M/s ] 128G tiles: [ 220M 5.3k/s ] 34G
cpus: 11.1 gc: 9% heap: 15G/32G direct: 19M postGC: 8.7G
read(23%) -> (1.5k/1.6k) -> encode(86% 90% 88% 88% 86% 89% 86% 87% 87% 88% 88%) -> (1.6k/1.6k) -> write( 5%)
last tile: 14/9094/5551 (z14 85%) https://www.openstreetmap.org/#map=14/50.07829/19.81934
2:29:59 INF [archive] - features: [ 1.9B 95% 1.5M/s ] 128G tiles: [ 220M 12k/s ] 34G
cpus: 11.1 gc: 10% heap: 7.7G/32G direct: 19M postGC: 5.9G
read(23%) -> (1.5k/1.6k) -> encode(89% 88% 85% 89% 89% 88% 87% 88% 90% 89% 89%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/9063/4935 (z14 85%) https://www.openstreetmap.org/#map=14/57.99645/19.13818
2:30:09 INF [archive] - features: [ 1.9B 95% 888k/s ] 128G tiles: [ 221M 23k/s ] 34G
cpus: 11.1 gc: 9% heap: 19G/32G direct: 19M postGC: 6.5G
read(14%) -> (1.5k/1.6k) -> encode(90% 90% 90% 91% 91% 90% 91% 91% 90% 89% 89%) -> (1.6k/1.6k) -> write( 8%)
last tile: 14/8628/5112 (z14 85%) https://www.openstreetmap.org/#map=14/55.87531/9.58008
2:30:19 INF [archive] - features: [ 1.9B 96% 568k/s ] 128G tiles: [ 221M 22k/s ] 34G
cpus: 11 gc: 12% heap: 9.9G/32G direct: 19M postGC: 7.4G
read(11%) -> (1.5k/1.6k) -> encode(88% 88% 87% 88% 88% 87% 88% 88% 87% 88% 88%) -> (1.6k/1.6k) -> write( 4%)
last tile: 14/8585/4768 (z14 85%) https://www.openstreetmap.org/#map=14/59.88894/8.63525
2:30:29 INF [archive] - features: [ 1.9B 96% 508k/s ] 128G tiles: [ 221M 33k/s ] 35G
cpus: 11 gc: 11% heap: 8.2G/32G direct: 19M postGC: 8.2G
read(14%) -> (1.5k/1.6k) -> encode(89% 88% 88% 89% 87% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8801/4277 (z14 85%) https://www.openstreetmap.org/#map=14/64.87694/13.38135
2:30:39 INF [archive] - features: [ 2B 96% 290k/s ] 128G tiles: [ 221M 22k/s ] 35G
cpus: 11.2 gc: 9% heap: 16G/32G direct: 19M postGC: 4.4G
read( 5%) -> (1.5k/1.6k) -> encode(89% 91% 88% 87% 87% 88% 87% 89% 89% 86% 89%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/9404/4247 (z14 86%) https://www.openstreetmap.org/#map=14/65.15535/26.63086
2:30:49 INF [archive] - features: [ 2B 96% 869k/s ] 128G tiles: [ 222M 30k/s ] 35G
cpus: 11.1 gc: 4% heap: 19G/32G direct: 19M postGC: 5.2G
read(11%) -> (1.5k/1.6k) -> encode(96% 95% 95% 94% 96% 95% 96% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/9292/5036 (z14 86%) https://www.openstreetmap.org/#map=14/56.80088/24.16992
2:30:59 INF [archive] - features: [ 2B 97% 880k/s ] 128G tiles: [ 222M 30k/s ] 35G
cpus: 11.1 gc: 10% heap: 18G/32G direct: 19M postGC: 6G
read(14%) -> (1.5k/1.6k) -> encode(90% 88% 89% 90% 89% 89% 90% 90% 90% 89% 88%) -> (1.5k/1.6k) -> write(10%)
last tile: 14/10009/4992 (z14 86%) https://www.openstreetmap.org/#map=14/57.32652/39.92432
2:31:09 INF [archive] - features: [ 2B 97% 646k/s ] 128G tiles: [ 223M 66k/s ] 35G
cpus: 11.1 gc: 10% heap: 23G/32G direct: 19M postGC: 6.9G
read(11%) -> (1.4k/1.6k) -> encode(90% 89% 90% 89% 90% 90% 90% 90% 90% 89% 89%) -> (1.6k/1.6k) -> write(17%)
last tile: 14/11023/5051 (z14 86%) https://www.openstreetmap.org/#map=14/56.61998/62.20459
2:31:19 INF [archive] - features: [ 2B 98% 873k/s ] 128G tiles: [ 223M 37k/s ] 36G
cpus: 11.1 gc: 10% heap: 12G/32G direct: 19M postGC: 7.8G
read(14%) -> (1.5k/1.6k) -> encode(89% 88% 87% 90% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/10604/5340 (z14 86%) https://www.openstreetmap.org/#map=14/52.96188/52.99805
2:31:29 INF [archive] - features: [ 2B 98% 993k/s ] 128G tiles: [ 223M 47k/s ] 36G
cpus: 11.3 gc: 6% heap: 16G/32G direct: 19M postGC: 4.6G
read( 8%) -> (1.4k/1.6k) -> encode(86% 87% 86% 88% 87% 90% 87% 86% 92% 89% 93%) -> (1.6k/1.6k) -> write(14%)
last tile: 14/11624/5571 (z14 87%) https://www.openstreetmap.org/#map=14/49.79545/75.41016
2:31:39 INF [archive] - features: [ 2B 98% 314k/s ] 128G tiles: [ 224M 17k/s ] 36G
cpus: 11 gc: 2% heap: 18G/32G direct: 19M postGC: 4.8G
read( 1%) -> (1.4k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 97%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/12165/5578 (z14 87%) https://www.openstreetmap.org/#map=14/49.69606/87.29736
2:31:49 INF [archive] - features: [ 2B 98% 348k/s ] 128G tiles: [ 224M 28k/s ] 36G
cpus: 11.1 gc: 3% heap: 6.2G/32G direct: 19M postGC: 4.9G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/11566/5008 (z14 87%) https://www.openstreetmap.org/#map=14/57.13624/74.13574
2:31:59 INF [archive] - features: [ 2B 99% 766k/s ] 128G tiles: [ 228M 448k/s ] 36G
cpus: 11.1 gc: 4% heap: 22G/32G direct: 19M postGC: 5.4G
read(14%) -> (1.5k/1.6k) -> encode(94% 93% 92% 93% 93% 94% 94% 92% 94% 93% 92%) -> (1.6k/1.6k) -> write(28%)
last tile: 14/8881/3821 (z14 90%) https://www.openstreetmap.org/#map=14/68.80799/15.13916
2:32:08 INF [archive:write] - Finished z14 in 16m4s cpu:2h58m5s gc:1m19s avg:11.1
2:32:08 INF [archive:write] - Building directories with 11854 entries per leaf, attempt 1...
2:32:09 INF [archive] - features: [ 2B 100% 2.6M/s ] 128G tiles: [ 253M 2.4M/s ] 36G
cpus: 7.3 gc: 2% heap: 20G/32G direct: 19M postGC: 5.2G
read( -%) -> (0/1.6k) -> encode( -% -% -% -% -% -% -% -% -% -% -%) -> (0/1.6k) -> write(54%)
last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
2:32:12 INF [archive:write] - Built directories with 3501 leaves, 16547B root directory
2:32:12 INF [archive:write] - Building directories with 14224 entries per leaf, attempt 2...
2:32:17 INF [archive:write] - Built directories with 2918 leaves, 13977B root directory
2:32:17 INF [archive:write] - Writing metadata and leaf directories...
2:32:17 INF [archive:write] - Writing header...
2:32:17 INF [archive:write] - # addressed tiles: 253884612
2:32:17 INF [archive:write] - # of tile entries: 41492284
2:32:17 INF [archive:write] - # of tile contents: 32416216
2:32:17 INF [archive:write] - Root directory: 13kB
2:32:17 INF [archive:write] - # leaves: 2918
2:32:17 INF [archive:write] - Leaf directories: 66MB
2:32:17 INF [archive:write] - Avg leaf size: 22kB
2:32:17 INF [archive:write] - Total dir bytes: 66MB
2:32:17 INF [archive:write] - Average bytes per addressed tile: 0.26035978501918816
2:32:17 INF [archive] - features: [ 2B 100% 0/s ] 128G tiles: [ 253M 0/s ] 36G
cpus: 1 gc: 0% heap: 23G/32G direct: 84M postGC: 5.2G
read( -%) -> (0/1.6k) -> encode( -% -% -% -% -% -% -% -% -% -% -%) -> (0/1.6k) -> write( -%)
last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
2:32:17 DEB [archive] - Tile stats:
2:32:17 DEB [archive] - z0 avg:34k max:34k
2:32:17 DEB [archive] - z1 avg:21k max:36k
2:32:17 DEB [archive] - z2 avg:14k max:36k
2:32:17 DEB [archive] - z3 avg:12k max:72k
2:32:17 DEB [archive] - z4 avg:14k max:219k
2:32:17 DEB [archive] - z5 avg:13k max:339k
2:32:17 DEB [archive] - z6 avg:10k max:401k
2:32:17 DEB [archive] - z7 avg:7.1k max:375k
2:32:17 DEB [archive] - z8 avg:4.4k max:328k
2:32:17 DEB [archive] - z9 avg:2.6k max:292k
2:32:17 DEB [archive] - z10 avg:1.5k max:300k
2:32:17 DEB [archive] - z11 avg:707 max:206k
2:32:17 DEB [archive] - z12 avg:379 max:142k
2:32:17 DEB [archive] - z13 avg:232 max:119k
2:32:17 DEB [archive] - z14 avg:223 max:1.3M
2:32:17 DEB [archive] - all avg:246 max:1.3M
2:32:17 DEB [archive] - # features: 2,084,634,205
2:32:17 DEB [archive] - # tiles: 253,884,612
2:32:17 INF [archive] - Finished in 1h14m23s cpu:13h38m25s gc:3m53s avg:11
2:32:17 INF [archive] - read 1x(8% 5m43s sys:55s wait:1h4m35s done:9s)
2:32:17 INF [archive] - encode 11x(94% 1h9m36s sys:5s wait:10s done:9s)
2:32:17 INF [archive] - write 1x(4% 2m50s sys:1m25s wait:1h10m42s)
2:32:17 INF - Finished in 2h32m17s cpu:26h54m47s gc:6m26s avg:10.6
2:32:17 INF - FINISHED!
2:32:17 INF -
2:32:17 INF - ----------------------------------------
2:32:17 INF - overall 2h32m17s cpu:26h54m47s gc:6m26s avg:10.6
2:32:17 INF - osm_pass1 7m13s cpu:1h11m38s gc:8s avg:9.9
2:32:17 INF - read 1x(1% 5s sys:3s wait:6m36s)
2:32:17 INF - process 11x(88% 6m23s sys:11s block:6s)
2:32:17 INF - osm_pass2 1h2m44s cpu:10h54m13s gc:1m32s avg:10.4
2:32:17 INF - read 1x(0% 3s sys:1s wait:1h2m7s done:32s)
2:32:17 INF - process 11x(91% 57m18s sys:27s block:3s)
2:32:17 INF - write 1x(14% 9m4s sys:2m10s wait:53m28s)
2:32:17 INF - ocean 2m10s cpu:23m24s gc:6s avg:10.8
2:32:17 INF - read 1x(13% 16s wait:1m47s done:3s)
2:32:17 INF - process 11x(90% 1m57s wait:5s)
2:32:17 INF - write 1x(19% 25s sys:8s wait:1m43s)
2:32:17 INF - sort 5m35s cpu:46m55s gc:48s avg:8.4
2:32:17 INF - worker 5x(36% 2m2s sys:19s wait:58s done:3s)
2:32:17 INF - archive 1h14m23s cpu:13h38m25s gc:3m53s avg:11
2:32:17 INF - read 1x(8% 5m43s sys:55s wait:1h4m35s done:9s)
2:32:17 INF - encode 11x(94% 1h9m36s sys:5s wait:10s done:9s)
2:32:17 INF - write 1x(4% 2m50s sys:1m25s wait:1h10m42s)
2:32:17 INF - ----------------------------------------
2:32:17 INF - archive 36GB
2:32:17 INF - features 128GB
Elapsed Time: 9146 seconds
end pmtiles ##############################3
start mbtiles ###############################
0:00:00 DEB - argument: config=null (path to config file)
0:00:00 DEB - argument: area=planet (geofabrik area to download)
0:00:00 INF - argument: stats=use in-memory stats
0:00:00 DEB - argument: madvise=true (default value for whether to use linux madvise(random) to improve memory-mapped read performance for temporary storage)
0:00:00 DEB - argument: storage=mmap (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=12 (num threads)
0:00:00 DEB - argument: write_threads=1 (number of threads to use when writing temp features)
0:00:00 DEB - argument: process_threads=11 (number of threads to use when processing input features)
0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
0:00:00 DEB - argument: polygon=null (a .poly file that limits output to tiles intersecting the shape)
0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level up to 15)
0:00:00 DEB - argument: render_maxzoom=14 (maximum rendering zoom level up to 15)
0:00:00 DEB - argument: feature_read_threads=1 (number of threads to use when reading features at tile write time)
0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
0:00:00 DEB - argument: force=false (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: gzip_temp=false (gzip temporary feature storage (uses more CPU, but less disk space))
0:00:00 DEB - argument: mmap_temp=true (use memory-mapped IO for temp feature files)
0:00:00 DEB - argument: sort_max_readers=6 (maximum number of concurrent read threads to use when sorting chunks)
0:00:00 DEB - argument: sort_max_writers=6 (maximum number of concurrent write threads to use when sorting chunks)
0:00:00 DEB - argument: nodemap_type=array (type of node location map, one of [noop, sortedtable, sparsearray, array])
0:00:00 DEB - argument: nodemap_storage=mmap (storage for node location map, one of [ram, mmap, direct])
0:00:00 DEB - argument: nodemap_madvise=true (use linux madvise(random) for node locations)
0:00:00 DEB - argument: multipolygon_geometry_storage=mmap (storage for multipolygon geometries, one of [ram, mmap, direct])
0:00:00 DEB - argument: multipolygon_geometry_madvise=true (use linux madvise(random) for temporary multipolygon geometry storage)
0:00:00 DEB - argument: http_user_agent=Planetiler downloader (https://github.com/onthegomap/planetiler) (User-Agent header to set when downloading files over HTTP)
0:00:00 DEB - argument: http_timeout=30 seconds (Timeout to use when downloading files over HTTP)
0:00:00 DEB - argument: http_retries=1 (Retries to use when downloading files over HTTP)
0:00:00 DEB - argument: download_chunk_size_mb=1000 (Size of file chunks to download in parallel in megabytes)
0:00:00 DEB - argument: download_threads=10 (Number of parallel threads to use when downloading each file)
0:00:00 DEB - argument: download_max_bandwidth= (Maximum bandwidth to consume when downloading files in units mb/s, mbps, kbps, etc.)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=true (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tile_warning_size_mb=1.0 (Maximum size in megabytes of a tile to emit a warning about)
0:00:00 DEB - argument: color=null (Color the terminal output)
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
0:00:00 DEB - argument: only_download=false (download source data then exit)
0:00:00 DEB - argument: download=true (download sources)
0:00:00 DEB - argument: temp_nodes=data/tmp/node.db (temp node db location)
0:00:00 DEB - argument: temp_multipolygons=data/tmp/multipolygon.db (temp multipolygon db location)
0:00:00 DEB - argument: temp_features=data/tmp/feature.db (temp feature db location)
0:00:00 DEB - argument: osm_parse_node_bounds=false (parse bounds from OSM nodes instead of header)
0:00:00 DEB - argument: osm_path=data/sources/planet.osm.pbf (osm OSM input file path)
0:00:00 DEB - argument: free_osm_after_read=false (delete osm input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: osm_url=aws:latest (osm OSM input file url)
0:00:00 DEB - argument: ocean_path=data/sources/water-polygons-split-3857.zip (ocean shapefile path)
0:00:00 DEB - argument: free_ocean_after_read=false (delete ocean input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: ocean_url=https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip (ocean shapefile url)
0:00:00 DEB - argument: output=data/swissmap.mbtiles (output tile archive path)
0:00:00 DEB - argument: version=false (show version then exit)
0:00:00 INF - Planetiler build git hash: 74db638dbc69f10ab6de2f7a6447327d062fc86f
0:00:00 INF - Planetiler build version: 0.6-SNAPSHOT
0:00:00 INF - Planetiler build timestamp: 2023-03-18T18:47:42.003Z
0:00:00 DEB - argument: help=false (show arguments then exit)
0:00:00 INF - Building SwissMap profile into file:///root/swiss-map/planetiler/data/swissmap.mbtiles in these phases:
0:00:00 INF - osm_pass1: Pre-process OpenStreetMap input (store node locations then relation members)
0:00:00 INF - osm_pass2: Process OpenStreetMap nodes, ways, then relations
0:00:00 INF - ocean: Process features in data/sources/water-polygons-split-3857.zip
0:00:00 INF - sort: Sort rendered features by tile ID
0:00:00 INF - archive: Encode each tile and write to TileArchiveConfig[format=MBTILES, scheme=FILE, uri=file:///root/swiss-map/planetiler/data/swissmap.mbtiles, options={}]
0:00:00 DEB - ? 94G storage on / (/dev/md2) requested for read phase disk, 415G available
0:00:00 DEB - - 83G used for temporary node location cache
0:00:00 DEB - - 11G used for temporary multipolygon geometry cache
0:00:00 DEB - ? 94G storage on / (/dev/md2) requested for read phase, 415G available
0:00:00 DEB - - 83G used for array node location cache (switch to sparsearray to reduce size)
0:00:00 DEB - - 11G used for multipolygon way geometries
0:00:00 DEB - ? 94G temporary files and 102G of free memory for OS to cache them
0:00:00 DEB - argument: archive_name=Streets ('name' attribute for tileset metadata)
0:00:00 DEB - argument: archive_description=Streets from OpenStreetMap ('description' attribute for tileset metadata)
0:00:00 DEB - argument: archive_attribution=<a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a> ('attribution' attribute for tileset metadata)
0:00:00 DEB - argument: archive_version=null ('version' attribute for tileset metadata)
0:00:00 DEB - argument: archive_type=baselayer ('type' attribute for tileset metadata)
0:00:00 DEB - argument: archive_format=pbf ('format' attribute for tileset metadata)
0:00:00 DEB - argument: compact=true (mbtiles: reduce the DB size by separating and deduping the tile data)
0:00:00 DEB - argument: no_index=false (mbtiles: skip adding index to sqlite DB)
0:00:00 DEB - argument: vacuum_analyze=false (mbtiles: vacuum analyze sqlite DB after writing)
0:00:00 INF - Using merge sort feature map, chunk size=2000mb max workers=12
0:00:00 INF [osm_pass1] -
0:00:00 INF [osm_pass1] - Starting...
0:00:10 INF [osm_pass1] - nodes: [ 242M 24M/s ] 2.9G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.1k 113/s ]
cpus: 10.7 gc: 3% heap: 1.4G/32G direct: 1.3G postGC: 1.1G hppc: 848
read( 2%) -> (23/34) -> process(92% 92% 93% 93% 93% 92% 93% 94% 92% 93% 93%)
0:00:20 INF [osm_pass1] - nodes: [ 523M 27M/s ] 6.5G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.2k 112/s ]
cpus: 10.9 gc: 2% heap: 4.7G/32G direct: 1.4G postGC: 953M hppc: 848
read( 2%) -> (23/34) -> process(97% 97% 97% 96% 97% 96% 97% 96% 97% 97% 97%)
0:00:30 INF [osm_pass1] - nodes: [ 791M 26M/s ] 9.5G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.4k 121/s ]
cpus: 10.9 gc: 2% heap: 2G/32G direct: 1.4G postGC: 939M hppc: 848
read( 2%) -> (23/34) -> process(96% 97% 97% 96% 97% 97% 97% 96% 97% 97% 97%)
0:00:40 INF [osm_pass1] - nodes: [ 1B 21M/s ] 11G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.3k 89/s ]
cpus: 8.2 gc: 1% heap: 1.4G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(73% 72% 72% 73% 72% 71% 72% 73% 73% 73% 72%)
0:00:50 INF [osm_pass1] - nodes: [ 1.2B 23M/s ] 14G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.3k 93/s ]
cpus: 9.2 gc: 1% heap: 3G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (22/34) -> process(82% 82% 83% 82% 84% 82% 83% 83% 84% 82% 82%)
0:01:00 INF [osm_pass1] - nodes: [ 1.5B 29M/s ] 17G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.4k 114/s ]
cpus: 10.9 gc: 2% heap: 2.6G/32G direct: 1.4G postGC: 953M hppc: 848
read( 2%) -> (23/34) -> process(97% 96% 96% 97% 96% 97% 97% 96% 96% 96% 96%)
0:01:10 INF [osm_pass1] - nodes: [ 1.8B 30M/s ] 20G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.5k 111/s ]
cpus: 10.8 gc: 2% heap: 4G/32G direct: 1.4G postGC: 950M hppc: 848
read( 1%) -> (23/34) -> process(97% 96% 97% 96% 97% 97% 96% 97% 96% 97% 96%)
0:01:20 INF [osm_pass1] - nodes: [ 2.1B 27M/s ] 22G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.5k 99/s ]
cpus: 9.8 gc: 2% heap: 4.8G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(88% 87% 88% 87% 87% 87% 87% 86% 87% 88% 86%)
0:01:30 INF [osm_pass1] - nodes: [ 2.3B 22M/s ] 25G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.2k 70/s ]
cpus: 8 gc: 1% heap: 2.5G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(71% 72% 72% 71% 71% 71% 73% 72% 73% 72% 72%)
0:01:40 INF [osm_pass1] - nodes: [ 2.6B 27M/s ] 28G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 83/s ]
cpus: 9.4 gc: 2% heap: 1.5G/32G direct: 1.4G postGC: 951M hppc: 848
read( 1%) -> (23/34) -> process(84% 85% 83% 84% 84% 84% 84% 84% 83% 84% 84%)
0:01:50 INF [osm_pass1] - nodes: [ 2.9B 30M/s ] 31G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 90/s ]
cpus: 10.1 gc: 2% heap: 3.7G/32G direct: 1.4G postGC: 949M hppc: 848
read( 1%) -> (23/34) -> process(90% 89% 89% 91% 91% 90% 90% 91% 90% 91% 90%)
0:02:01 INF [osm_pass1] - nodes: [ 3.2B 32M/s ] 34G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 95/s ]
cpus: 10.8 gc: 2% heap: 1.9G/32G direct: 1.4G postGC: 952M hppc: 848
read( 1%) -> (23/34) -> process(97% 96% 96% 96% 97% 97% 97% 97% 96% 97% 97%)
0:02:11 INF [osm_pass1] - nodes: [ 3.5B 32M/s ] 37G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 94/s ]
cpus: 10.8 gc: 2% heap: 1.1G/32G direct: 1.4G postGC: 1.1G hppc: 848
read( 1%) -> (23/34) -> process(96% 97% 97% 96% 97% 97% 96% 96% 96% 97% 96%)
0:02:21 INF [osm_pass1] - nodes: [ 3.8B 25M/s ] 40G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 13k 73/s ]
cpus: 8.4 gc: 2% heap: 2.1G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(73% 73% 74% 75% 74% 74% 74% 75% 74% 73% 76%)
0:02:31 INF [osm_pass1] - nodes: [ 4.1B 26M/s ] 42G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 14k 74/s ]
cpus: 8.6 gc: 2% heap: 1.7G/32G direct: 1.4G postGC: 946M hppc: 848
read( 1%) -> (23/34) -> process(76% 76% 77% 76% 77% 78% 78% 77% 77% 77% 78%)
0:02:41 INF [osm_pass1] - nodes: [ 4.4B 30M/s ] 45G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 87/s ]
cpus: 9.8 gc: 2% heap: 4G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(88% 88% 88% 87% 87% 88% 88% 87% 88% 87% 89%)
0:02:51 INF [osm_pass1] - nodes: [ 4.7B 33M/s ] 49G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 16k 94/s ]
cpus: 10.8 gc: 2% heap: 3.2G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(97% 96% 97% 96% 96% 97% 97% 97% 97% 97% 97%)
0:03:01 INF [osm_pass1] - nodes: [ 5B 33M/s ] 52G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 17k 94/s ]
cpus: 10.8 gc: 2% heap: 2.4G/32G direct: 1.4G postGC: 1.1G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:03:11 INF [osm_pass1] - nodes: [ 5.3B 28M/s ] 55G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 80/s ]
cpus: 9.3 gc: 2% heap: 965M/32G direct: 1.4G postGC: 941M hppc: 848
read( 1%) -> (22/34) -> process(84% 82% 82% 83% 83% 83% 82% 83% 82% 82% 83%)
0:03:21 INF [osm_pass1] - nodes: [ 5.6B 26M/s ] 58G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 75/s ]
cpus: 8.3 gc: 2% heap: 2G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (18/34) -> process(72% 73% 73% 73% 74% 74% 74% 72% 73% 74% 72%)
0:03:31 INF [osm_pass1] - nodes: [ 5.9B 27M/s ] 60G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 77/s ]
cpus: 9.1 gc: 2% heap: 3.4G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(83% 82% 83% 82% 83% 82% 82% 82% 82% 82% 83%)
0:03:41 INF [osm_pass1] - nodes: [ 6.2B 33M/s ] 64G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 20k 93/s ]
cpus: 10.8 gc: 2% heap: 3.5G/32G direct: 1.4G postGC: 1.1G hppc: 848
read( 1%) -> (23/34) -> process(96% 96% 96% 96% 96% 96% 96% 96% 96% 97% 96%)
0:03:51 INF [osm_pass1] - nodes: [ 6.5B 33M/s ] 67G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 21k 91/s ]
cpus: 10.9 gc: 2% heap: 2.3G/32G direct: 1.4G postGC: 1.1G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 96% 96% 97% 97% 96%)
0:04:01 INF [osm_pass1] - nodes: [ 6.8B 29M/s ] 70G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 85/s ]
cpus: 10 gc: 2% heap: 1.1G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(89% 89% 88% 89% 89% 89% 89% 88% 89% 89% 89%)
0:04:11 INF [osm_pass1] - nodes: [ 7.1B 24M/s ] 72G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 66/s ]
cpus: 7.7 gc: 2% heap: 2.3G/32G direct: 1.4G postGC: 943M hppc: 848
read( 1%) -> (22/34) -> process(67% 68% 69% 68% 69% 69% 69% 69% 69% 70% 70%)
0:04:21 INF [osm_pass1] - nodes: [ 7.4B 28M/s ] 75G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 23k 78/s ]
cpus: 9.3 gc: 2% heap: 4.9G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(82% 82% 82% 81% 82% 83% 83% 83% 82% 81% 83%)
0:04:31 INF [osm_pass1] - nodes: [ 7.7B 30M/s ] 78G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 83/s ]
cpus: 9.9 gc: 2% heap: 3G/32G direct: 1.4G postGC: 949M hppc: 848
read( 1%) -> (23/34) -> process(89% 88% 88% 89% 88% 90% 89% 88% 89% 89% 89%)
0:04:41 INF [osm_pass1] - nodes: [ 8B 31M/s ] 81G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 87/s ]
cpus: 10.1 gc: 2% heap: 1.2G/32G direct: 1.4G postGC: 1G hppc: 848
read( 1%) -> (23/34) -> process(90% 90% 91% 90% 90% 90% 90% 91% 90% 89% 91%)
0:04:49 INF [osm_pass1:process] - Finished nodes: 8,274,330,803 (28M/s) in 4m49s cpu:47m17s gc:6s avg:9.8
0:04:51 INF [osm_pass1] - nodes: [ 8.2B 24M/s ] 85G ways: [ 7.9M 796k/s ] rels: [ 0 0/s ] blocks: [ 26k 85/s ]
cpus: 10.6 gc: 2% heap: 4.2G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(96% 95% 92% 95% 95% 95% 93% 94% 95% 95% 91%)
0:05:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 61M 5.3M/s ] rels: [ 0 0/s ] blocks: [ 27k 108/s ]
cpus: 10.9 gc: 2% heap: 3.9G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 96% 97% 97% 97% 97% 97% 96% 97% 97%)
0:05:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 107M 4.5M/s ] rels: [ 0 0/s ] blocks: [ 28k 78/s ]
cpus: 8.3 gc: 2% heap: 7.3G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(72% 75% 73% 75% 72% 74% 74% 73% 74% 74% 74%)
0:05:21 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 171M 6.3M/s ] rels: [ 0 0/s ] blocks: [ 29k 100/s ]
cpus: 10.9 gc: 2% heap: 2.1G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:05:31 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 236M 6.5M/s ] rels: [ 0 0/s ] blocks: [ 30k 104/s ]
cpus: 10.9 gc: 2% heap: 4.4G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96%)
0:05:41 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 304M 6.7M/s ] rels: [ 0 0/s ] blocks: [ 31k 101/s ]
cpus: 10.9 gc: 2% heap: 6.4G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:05:51 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 373M 6.8M/s ] rels: [ 0 0/s ] blocks: [ 32k 101/s ]
cpus: 10.9 gc: 2% heap: 2.5G/32G direct: 1.4G postGC: 2.1G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97%)
0:06:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 446M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 33k 100/s ]
cpus: 10.9 gc: 2% heap: 6G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 98% 98% 98% 97% 98% 97% 98% 97% 97%)
0:06:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 521M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 34k 100/s ]
cpus: 10.9 gc: 2% heap: 2.8G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97%)
0:06:21 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 592M 7.1M/s ] rels: [ 0 0/s ] blocks: [ 35k 100/s ]
cpus: 10.9 gc: 2% heap: 6.4G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(96% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97%)
0:06:31 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 663M 7M/s ] rels: [ 0 0/s ] blocks: [ 36k 99/s ]
cpus: 10.9 gc: 2% heap: 3.2G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:06:41 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 736M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 37k 102/s ]
cpus: 10.9 gc: 2% heap: 7.4G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97%)
0:06:51 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 811M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 38k 102/s ]
cpus: 10.9 gc: 2% heap: 5.2G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97%)
0:07:01 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 886M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 39k 102/s ]
cpus: 10.9 gc: 2% heap: 3G/32G direct: 1.4G postGC: 2G hppc: 848
read( 1%) -> (23/34) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%)
0:07:07 INF [osm_pass1:process] - Finished ways: 927,681,304 (6.7M/s) in 2m18s cpu:24m31s gc:3s avg:10.7
0:07:11 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 927M 4.1M/s ] rels: [ 4.4M 440k/s ] blocks: [ 40k 73/s ]
cpus: 8.5 gc: 1% heap: 7G/32G direct: 1.4G postGC: 2G hppc: 26M
read( 1%) -> (23/34) -> process(75% 75% 75% 75% 75% 75% 76% 74% 75% 75% 75%)
0:07:16 INF [osm_pass1:process] - Finished relations: 10,752,655 (1.1M/s) in 9s cpu:48s avg:5.3
0:07:16 INF [osm_pass1] - nodes: [ 8.2B 0/s ] 85G ways: [ 927M 0/s ] rels: [ 10M 1.3M/s ] blocks: [ 40k 39/s ]
cpus: 5.1 gc: 1% heap: 4.4G/32G direct: 536M postGC: 2G hppc: 53M
read( -%) -> (0/34) -> process( -% -% -% -% -% -% -% -% -% -% -%)
0:07:16 DEB [osm_pass1] - Processed 40,252 blocks:
0:07:16 DEB [osm_pass1] - nodes: 8,274,330,803 (28M/s) in 4m49s cpu:47m17s gc:6s avg:9.8
0:07:16 DEB [osm_pass1] - ways: 927,681,304 (6.7M/s) in 2m18s cpu:24m31s gc:3s avg:10.7
0:07:16 DEB [osm_pass1] - relations: 10,752,655 (1.1M/s) in 9s cpu:48s avg:5.3
0:07:16 INF [osm_pass1] - Finished in 7m16s cpu:1h12m36s gc:8s avg:10
0:07:16 INF [osm_pass1] - read 1x(1% 5s sys:3s wait:6m39s)
0:07:16 INF [osm_pass1] - process 11x(89% 6m28s sys:12s block:5s)
0:07:16 INF [osm_pass2] -
0:07:16 INF [osm_pass2] - Starting...
0:07:26 INF [osm_pass2] - nodes: [ 224M 3% 22M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 1k 3% 104/s ]
cpus: 10.9 gc: 2% heap: 6.6G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(97% 97% 97% 97% 97% 97% 96% 97% 96% 97% 97%) -> (0/62k) -> write( 0%)
0:07:36 INF [osm_pass2] - nodes: [ 460M 6% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 1.9k 5% 95/s ]
cpus: 10.9 gc: 1% heap: 5.9G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:07:46 INF [osm_pass2] - nodes: [ 691M 8% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 3k 8% 103/s ]
cpus: 10.9 gc: 1% heap: 2.1G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:07:56 INF [osm_pass2] - nodes: [ 924M 11% 23M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 4k 10% 102/s ]
cpus: 10.9 gc: 1% heap: 5.3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (0/62k) -> write( 0%)
0:08:06 INF [osm_pass2] - nodes: [ 1.1B 14% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 5k 13% 97/s ]
cpus: 10.9 gc: 1% heap: 4.3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (0/62k) -> write( 0%)
0:08:16 INF [osm_pass2] - nodes: [ 1.4B 17% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 5.9k 15% 95/s ]
cpus: 10.9 gc: 1% heap: 4G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:08:26 INF [osm_pass2] - nodes: [ 1.6B 20% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 6.9k 17% 91/s ]
cpus: 10.9 gc: 1% heap: 5.9G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:08:36 INF [osm_pass2] - nodes: [ 1.9B 23% 25M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 7.8k 19% 91/s ]
cpus: 10.9 gc: 1% heap: 2.1G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:08:46 INF [osm_pass2] - nodes: [ 2.1B 26% 24M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 8.7k 22% 88/s ]
cpus: 10.9 gc: 1% heap: 6.2G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:08:56 INF [osm_pass2] - nodes: [ 2.4B 29% 25M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 9.5k 24% 79/s ]
cpus: 10.9 gc: 1% heap: 5.7G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:06 INF [osm_pass2] - nodes: [ 2.6B 32% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 10k 26% 78/s ]
cpus: 10.9 gc: 1% heap: 5.2G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:16 INF [osm_pass2] - nodes: [ 2.9B 36% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 11k 28% 78/s ]
cpus: 10.9 gc: 1% heap: 4.8G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:26 INF [osm_pass2] - nodes: [ 3.2B 39% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 11k 29% 77/s ]
cpus: 10.9 gc: 1% heap: 4.3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:36 INF [osm_pass2] - nodes: [ 3.4B 42% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 12k 31% 77/s ]
cpus: 10.9 gc: 1% heap: 4.1G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:46 INF [osm_pass2] - nodes: [ 3.7B 45% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 13k 33% 75/s ]
cpus: 10.9 gc: 1% heap: 4.4G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:09:56 INF [osm_pass2] - nodes: [ 4B 48% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 14k 35% 76/s ]
cpus: 11 gc: 1% heap: 6.2G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:06 INF [osm_pass2] - nodes: [ 4.2B 52% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 14k 37% 77/s ]
cpus: 10.9 gc: 1% heap: 8.3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:16 INF [osm_pass2] - nodes: [ 4.5B 55% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 15k 39% 76/s ]
cpus: 11 gc: 2% heap: 3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:26 INF [osm_pass2] - nodes: [ 4.8B 58% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 16k 41% 76/s ]
cpus: 11 gc: 1% heap: 4.3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:36 INF [osm_pass2] - nodes: [ 5B 61% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 17k 43% 76/s ]
cpus: 11 gc: 1% heap: 6.8G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:46 INF [osm_pass2] - nodes: [ 5.3B 65% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 17k 45% 76/s ]
cpus: 11 gc: 1% heap: 8.4G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:10:56 INF [osm_pass2] - nodes: [ 5.6B 68% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 18k 47% 76/s ]
cpus: 11 gc: 1% heap: 3G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:06 INF [osm_pass2] - nodes: [ 5.8B 71% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 19k 48% 75/s ]
cpus: 11 gc: 1% heap: 4.9G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 99% 98% 98% 98% 99% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:16 INF [osm_pass2] - nodes: [ 6.1B 74% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 20k 50% 75/s ]
cpus: 11 gc: 1% heap: 7G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:26 INF [osm_pass2] - nodes: [ 6.4B 78% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 20k 52% 74/s ]
cpus: 11 gc: 1% heap: 2.4G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:36 INF [osm_pass2] - nodes: [ 6.6B 81% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 21k 54% 75/s ]
cpus: 11 gc: 1% heap: 4.6G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:46 INF [osm_pass2] - nodes: [ 6.9B 84% 26M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 22k 56% 75/s ]
cpus: 11 gc: 1% heap: 6.4G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:11:56 INF [osm_pass2] - nodes: [ 7.2B 87% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 23k 58% 74/s ]
cpus: 11 gc: 1% heap: 2.1G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:06 INF [osm_pass2] - nodes: [ 7.5B 91% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 23k 60% 74/s ]
cpus: 11 gc: 1% heap: 4.7G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:16 INF [osm_pass2] - nodes: [ 7.7B 94% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 24k 61% 74/s ]
cpus: 10.9 gc: 1% heap: 7.2G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:26 INF [osm_pass2] - nodes: [ 8B 97% 27M/s ] 85G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 0 0/s ] 2G blocks: [ 25k 63% 74/s ]
cpus: 11 gc: 1% heap: 2.7G/32G direct: 8.3k postGC: 2G relInfo: 53M mpGeoms: 277
read( 1%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (0/62k) -> write( 0%)
0:12:34 DEB [osm_pass2:process] - Sorting long long multimap...
0:12:34 DEB [osm_pass2:process] - Sorted long long multimap 0s cpu:0s avg:9.3
0:12:35 INF [osm_pass2:process] - Finished nodes: 8,274,330,803 (25M/s) in 5m19s cpu:58m7s gc:5s avg:10.9
0:12:36 INF [osm_pass2] - nodes: [ 8.2B 100% 22M/s ] 85G ways: [ 65k 0% 6.5k/s ] rels: [ 0 0% 0/s ] features: [ 333k 33k/s ] 2G blocks: [ 26k 65% 63/s ]
cpus: 10.7 gc: 1% heap: 7.9G/32G direct: 308k postGC: 2G relInfo: 53M mpGeoms: 3.6M
read( 1%) -> (11/22) -> process(92% 91% 93% 90% 93% 92% 91% 92% 92% 91% 91%) -> (5.3k/62k) -> write( 2%)
0:12:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 1.1M 0% 104k/s ] rels: [ 0 0% 0/s ] features: [ 6.4M 611k/s ] 2G blocks: [ 26k 65% 2/s ]
cpus: 6.2 gc: 1% heap: 5.2G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 29M
read( 0%) -> (11/22) -> process(46% 43% 46% 45% 48% 43% 47% 47% 42% 44% 43%) -> (4.3k/62k) -> write(16%)
0:12:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 2.9M 0% 182k/s ] rels: [ 0 0% 0/s ] features: [ 16M 1M/s ] 3.1G blocks: [ 26k 65% 4/s ]
cpus: 6.6 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 37M
read( 0%) -> (11/22) -> process(56% 54% 60% 55% 50% 54% 52% 56% 61% 58% 58%) -> (7.3k/62k) -> write(26%)
0:13:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 4.9M 1% 204k/s ] rels: [ 0 0% 0/s ] features: [ 27M 1M/s ] 3.1G blocks: [ 26k 65% 4/s ]
cpus: 7.3 gc: 2% heap: 4G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 53M
read( 0%) -> (11/22) -> process(65% 61% 60% 62% 60% 61% 57% 59% 63% 63% 64%) -> (4.8k/62k) -> write(29%)
0:13:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 7.4M 1% 250k/s ] rels: [ 0 0% 0/s ] features: [ 40M 1.2M/s ] 4.3G blocks: [ 26k 65% 5/s ]
cpus: 8.5 gc: 2% heap: 3.6G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 82M
read( 0%) -> (11/22) -> process(74% 72% 69% 71% 72% 72% 69% 76% 72% 70% 71%) -> (6.2k/62k) -> write(37%)
0:13:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 9.6M 1% 214k/s ] rels: [ 0 0% 0/s ] features: [ 51M 1M/s ] 5.5G blocks: [ 26k 65% 4/s ]
cpus: 7.4 gc: 2% heap: 6.5G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 90M
read( 0%) -> (11/22) -> process(58% 63% 60% 61% 60% 66% 65% 66% 61% 63% 64%) -> (5.7k/62k) -> write(31%)
0:13:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 12M 1% 248k/s ] rels: [ 0 0% 0/s ] features: [ 63M 1.2M/s ] 6.7G blocks: [ 26k 66% 5/s ]
cpus: 8.4 gc: 2% heap: 4.2G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 98M
read( 0%) -> (11/22) -> process(71% 73% 67% 70% 70% 73% 70% 70% 72% 71% 69%) -> (6.6k/62k) -> write(35%)
0:13:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 13M 1% 166k/s ] rels: [ 0 0% 0/s ] features: [ 72M 892k/s ] 6.7G blocks: [ 26k 66% 3/s ]
cpus: 7.2 gc: 2% heap: 4.6G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 155M
read( 0%) -> (11/22) -> process(61% 61% 60% 58% 61% 64% 59% 60% 60% 63% 59%) -> (4k/62k) -> write(24%)
0:13:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 14M 2% 118k/s ] rels: [ 0 0% 0/s ] features: [ 78M 637k/s ] 7.9G blocks: [ 26k 66% 2/s ]
cpus: 6.6 gc: 2% heap: 6G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 184M
read( 0%) -> (11/22) -> process(54% 59% 57% 56% 58% 52% 55% 54% 62% 54% 56%) -> (5.4k/62k) -> write(17%)
0:14:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 16M 2% 131k/s ] rels: [ 0 0% 0/s ] features: [ 85M 667k/s ] 7.9G blocks: [ 26k 66% 3/s ]
cpus: 6.9 gc: 2% heap: 5.2G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 213M
read( 0%) -> (11/22) -> process(66% 61% 58% 59% 59% 57% 60% 57% 60% 61% 58%) -> (7.7k/62k) -> write(18%)
0:14:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 17M 2% 163k/s ] rels: [ 0 0% 0/s ] features: [ 92M 718k/s ] 7.9G blocks: [ 26k 66% 3/s ]
cpus: 7.8 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 250M
read( 0%) -> (11/22) -> process(66% 68% 67% 66% 69% 65% 69% 66% 69% 69% 68%) -> (6.9k/62k) -> write(19%)
0:14:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 19M 2% 164k/s ] rels: [ 0 0% 0/s ] features: [ 100M 801k/s ] 9.1G blocks: [ 26k 66% 3/s ]
cpus: 8.4 gc: 2% heap: 5.4G/32G direct: 558k postGC: 2.1G relInfo: 53M mpGeoms: 280M
read( 0%) -> (11/22) -> process(68% 74% 74% 74% 72% 72% 76% 69% 74% 72% 71%) -> (5.7k/62k) -> write(22%)
0:14:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 21M 2% 168k/s ] rels: [ 0 0% 0/s ] features: [ 107M 712k/s ] 9.1G blocks: [ 26k 66% 3/s ]
cpus: 7.9 gc: 2% heap: 8.2G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 350M
read( 0%) -> (11/22) -> process(70% 66% 71% 65% 65% 68% 68% 68% 69% 68% 70%) -> (5.3k/62k) -> write(20%)
0:14:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 23M 3% 227k/s ] rels: [ 0 0% 0/s ] features: [ 115M 800k/s ] 10G blocks: [ 26k 66% 4/s ]
cpus: 8.8 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 384M
read( 0%) -> (11/22) -> process(74% 76% 76% 77% 72% 72% 76% 76% 77% 80% 77%) -> (4.2k/62k) -> write(23%)
0:14:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 25M 3% 186k/s ] rels: [ 0 0% 0/s ] features: [ 122M 688k/s ] 10G blocks: [ 26k 66% 4/s ]
cpus: 8.3 gc: 2% heap: 4.3G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 437M
read( 0%) -> (11/22) -> process(71% 73% 74% 70% 71% 71% 71% 72% 70% 73% 74%) -> (4.3k/62k) -> write(20%)
0:15:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 26M 3% 113k/s ] rels: [ 0 0% 0/s ] features: [ 126M 403k/s ] 11G blocks: [ 26k 66% 2/s ]
cpus: 9.6 gc: 2% heap: 6.7G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 487M
read( 0%) -> (11/22) -> process(85% 87% 81% 87% 80% 80% 83% 88% 81% 86% 87%) -> (5.4k/62k) -> write(13%)
0:15:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 27M 3% 133k/s ] rels: [ 0 0% 0/s ] features: [ 131M 486k/s ] 11G blocks: [ 26k 66% 3/s ]
cpus: 9 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 542M
read( 0%) -> (11/22) -> process(77% 83% 74% 86% 74% 73% 76% 80% 74% 87% 76%) -> (5.5k/62k) -> write(15%)
0:15:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 30M 3% 215k/s ] rels: [ 0 0% 0/s ] features: [ 138M 682k/s ] 11G blocks: [ 26k 67% 4/s ]
cpus: 9.6 gc: 3% heap: 8.1G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 598M
read( 0%) -> (11/22) -> process(81% 80% 81% 82% 81% 83% 89% 83% 93% 82% 83%) -> (6.5k/62k) -> write(20%)
0:15:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 32M 3% 197k/s ] rels: [ 0 0% 0/s ] features: [ 144M 629k/s ] 12G blocks: [ 26k 67% 3/s ]
cpus: 8.7 gc: 2% heap: 4.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 641M
read( 0%) -> (11/22) -> process(75% 76% 75% 73% 75% 77% 76% 74% 77% 75% 75%) -> (5.4k/62k) -> write(19%)
0:15:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 34M 4% 234k/s ] rels: [ 0 0% 0/s ] features: [ 151M 682k/s ] 12G blocks: [ 26k 67% 4/s ]
cpus: 9.8 gc: 2% heap: 3.8G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 683M
read( 0%) -> (11/22) -> process(85% 86% 84% 84% 85% 85% 84% 85% 85% 87% 83%) -> (9.3k/62k) -> write(20%)
0:15:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 36M 4% 231k/s ] rels: [ 0 0% 0/s ] features: [ 157M 631k/s ] 13G blocks: [ 26k 67% 5/s ]
cpus: 10 gc: 2% heap: 4.8G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 723M
read( 0%) -> (11/22) -> process(88% 85% 89% 87% 89% 86% 86% 86% 88% 88% 88%) -> (3.9k/62k) -> write(19%)
0:16:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 39M 4% 311k/s ] rels: [ 0 0% 0/s ] features: [ 163M 542k/s ] 13G blocks: [ 26k 67% 4/s ]
cpus: 9.6 gc: 2% heap: 2.7G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 749M
read( 0%) -> (11/22) -> process(81% 84% 81% 84% 82% 86% 83% 86% 82% 84% 86%) -> (6.6k/62k) -> write(15%)
0:16:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 43M 5% 331k/s ] rels: [ 0 0% 0/s ] features: [ 169M 581k/s ] 13G blocks: [ 27k 67% 5/s ]
cpus: 10.3 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 775M
read( 0%) -> (11/22) -> process(92% 90% 92% 90% 91% 90% 92% 91% 90% 91% 89%) -> (5.5k/62k) -> write(17%)
0:16:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 46M 5% 311k/s ] rels: [ 0 0% 0/s ] features: [ 174M 581k/s ] 13G blocks: [ 27k 67% 5/s ]
cpus: 10.3 gc: 2% heap: 7.6G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 808M
read( 0%) -> (11/22) -> process(91% 91% 91% 92% 90% 91% 89% 91% 91% 89% 91%) -> (5.6k/62k) -> write(17%)
0:16:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 49M 5% 285k/s ] rels: [ 0 0% 0/s ] features: [ 180M 533k/s ] 14G blocks: [ 27k 67% 5/s ]
cpus: 9.7 gc: 2% heap: 3.5G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 841M
read( 0%) -> (11/22) -> process(85% 86% 85% 84% 85% 85% 86% 84% 85% 86% 85%) -> (7.2k/62k) -> write(16%)
0:16:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 52M 6% 288k/s ] rels: [ 0 0% 0/s ] features: [ 185M 581k/s ] 14G blocks: [ 27k 68% 5/s ]
cpus: 10.3 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 880M
read( 0%) -> (11/22) -> process(88% 91% 89% 89% 90% 90% 91% 91% 90% 90% 89%) -> (5.6k/62k) -> write(17%)
0:16:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 54M 6% 287k/s ] rels: [ 0 0% 0/s ] features: [ 191M 582k/s ] 14G blocks: [ 27k 68% 5/s ]
cpus: 10.4 gc: 2% heap: 8.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 933M
read( 0%) -> (11/22) -> process(90% 90% 93% 92% 91% 91% 91% 91% 92% 91% 92%) -> (5.3k/62k) -> write(17%)
0:17:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 56M 6% 210k/s ] rels: [ 0 0% 0/s ] features: [ 196M 449k/s ] 15G blocks: [ 27k 68% 4/s ]
cpus: 9.7 gc: 2% heap: 6G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 976M
read( 0%) -> (11/22) -> process(85% 85% 87% 85% 87% 84% 82% 85% 84% 84% 84%) -> (7.1k/62k) -> write(14%)
0:17:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 59M 6% 264k/s ] rels: [ 0 0% 0/s ] features: [ 201M 550k/s ] 15G blocks: [ 27k 68% 5/s ]
cpus: 10.3 gc: 2% heap: 8.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(89% 93% 89% 93% 90% 91% 91% 91% 89% 91% 88%) -> (4.2k/62k) -> write(16%)
0:17:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 61M 7% 229k/s ] rels: [ 0 0% 0/s ] features: [ 206M 502k/s ] 15G blocks: [ 27k 68% 4/s ]
cpus: 10.5 gc: 2% heap: 6.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(93% 93% 93% 94% 92% 91% 93% 92% 91% 91% 92%) -> (5.7k/62k) -> write(15%)
0:17:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 64M 7% 224k/s ] rels: [ 0 0% 0/s ] features: [ 212M 533k/s ] 17G blocks: [ 27k 68% 4/s ]
cpus: 9.8 gc: 2% heap: 4.8G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1G
read( 0%) -> (11/22) -> process(86% 87% 86% 84% 88% 84% 86% 85% 86% 87% 83%) -> (5k/62k) -> write(16%)
0:17:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 66M 7% 269k/s ] rels: [ 0 0% 0/s ] features: [ 218M 615k/s ] 17G blocks: [ 27k 68% 5/s ]
cpus: 10.4 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(91% 91% 91% 91% 91% 91% 92% 92% 90% 90% 91%) -> (5.5k/62k) -> write(18%)
0:17:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 69M 7% 260k/s ] rels: [ 0 0% 0/s ] features: [ 224M 606k/s ] 17G blocks: [ 27k 68% 4/s ]
cpus: 10.5 gc: 2% heap: 6.2G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(93% 92% 92% 92% 92% 92% 93% 92% 93% 93% 91%) -> (5.7k/62k) -> write(18%)
0:18:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 71M 8% 232k/s ] rels: [ 0 0% 0/s ] features: [ 230M 585k/s ] 18G blocks: [ 27k 68% 4/s ]
cpus: 10.4 gc: 2% heap: 8.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(91% 90% 91% 90% 92% 91% 91% 91% 90% 90% 90%) -> (4.5k/62k) -> write(18%)
0:18:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 74M 8% 279k/s ] rels: [ 0 0% 0/s ] features: [ 237M 739k/s ] 18G blocks: [ 27k 69% 4/s ]
cpus: 9.9 gc: 2% heap: 7.6G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(86% 87% 86% 86% 85% 85% 88% 84% 87% 86% 85%) -> (11k/62k) -> write(22%)
0:18:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 77M 8% 294k/s ] rels: [ 0 0% 0/s ] features: [ 245M 810k/s ] 19G blocks: [ 27k 69% 5/s ]
cpus: 10.6 gc: 2% heap: 4.3G/32G direct: 558k postGC: 2.2G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(92% 93% 92% 92% 92% 92% 92% 92% 93% 93% 91%) -> (8.4k/62k) -> write(24%)
0:18:36 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 80M 9% 275k/s ] rels: [ 0 0% 0/s ] features: [ 253M 775k/s ] 19G blocks: [ 27k 69% 4/s ]
cpus: 9.9 gc: 2% heap: 8.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(85% 86% 88% 86% 84% 86% 86% 86% 87% 86% 86%) -> (14k/62k) -> write(23%)
0:18:46 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 83M 9% 290k/s ] rels: [ 0 0% 0/s ] features: [ 261M 820k/s ] 20G blocks: [ 27k 69% 4/s ]
cpus: 10.5 gc: 2% heap: 5.8G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(92% 91% 92% 92% 92% 90% 91% 92% 92% 91% 92%) -> (6.6k/62k) -> write(24%)
0:18:56 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 86M 9% 311k/s ] rels: [ 0 0% 0/s ] features: [ 270M 831k/s ] 20G blocks: [ 27k 69% 4/s ]
cpus: 10.7 gc: 2% heap: 5.8G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(93% 93% 93% 92% 93% 93% 93% 92% 92% 93% 93%) -> (6.2k/62k) -> write(24%)
0:19:06 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 89M 10% 287k/s ] rels: [ 0 0% 0/s ] features: [ 278M 798k/s ] 21G blocks: [ 27k 69% 4/s ]
cpus: 9.9 gc: 2% heap: 6.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(87% 85% 85% 85% 85% 86% 87% 85% 86% 85% 88%) -> (5.2k/62k) -> write(23%)
0:19:16 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 92M 10% 301k/s ] rels: [ 0 0% 0/s ] features: [ 285M 706k/s ] 21G blocks: [ 27k 69% 4/s ]
cpus: 10.5 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(92% 92% 92% 91% 92% 91% 92% 92% 92% 90% 92%) -> (4k/62k) -> write(20%)
0:19:26 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 94M 10% 247k/s ] rels: [ 0 0% 0/s ] features: [ 291M 638k/s ] 21G blocks: [ 27k 69% 3/s ]
cpus: 9.9 gc: 2% heap: 3.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(85% 91% 84% 87% 88% 84% 85% 87% 86% 84% 86%) -> (5.9k/62k) -> write(19%)
0:19:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 97M 10% 257k/s ] rels: [ 0 0% 0/s ] features: [ 297M 630k/s ] 22G blocks: [ 27k 70% 4/s ]
cpus: 10.6 gc: 2% heap: 6.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(93% 94% 92% 93% 93% 93% 93% 92% 94% 93% 94%) -> (6.2k/62k) -> write(19%)
0:19:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 99M 11% 247k/s ] rels: [ 0 0% 0/s ] features: [ 303M 579k/s ] 22G blocks: [ 28k 70% 4/s ]
cpus: 9.7 gc: 2% heap: 2.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.5G
read( 0%) -> (11/22) -> process(85% 87% 84% 83% 83% 84% 83% 87% 84% 85% 85%) -> (4.9k/62k) -> write(17%)
0:19:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 102M 11% 303k/s ] rels: [ 0 0% 0/s ] features: [ 310M 708k/s ] 22G blocks: [ 28k 70% 4/s ]
cpus: 10.7 gc: 2% heap: 3.6G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(94% 94% 92% 93% 93% 93% 93% 94% 93% 94% 93%) -> (4.1k/62k) -> write(20%)
0:20:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 105M 11% 279k/s ] rels: [ 0 0% 0/s ] features: [ 317M 659k/s ] 23G blocks: [ 28k 70% 4/s ]
cpus: 10 gc: 2% heap: 7.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(87% 87% 89% 88% 87% 88% 87% 90% 87% 87% 87%) -> (5k/62k) -> write(20%)
0:20:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 108M 12% 316k/s ] rels: [ 0 0% 0/s ] features: [ 324M 755k/s ] 23G blocks: [ 28k 70% 4/s ]
cpus: 10.7 gc: 2% heap: 7.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(94% 94% 93% 93% 94% 93% 93% 94% 93% 92% 93%) -> (8.5k/62k) -> write(22%)
0:20:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 111M 12% 314k/s ] rels: [ 0 0% 0/s ] features: [ 332M 794k/s ] 24G blocks: [ 28k 70% 4/s ]
cpus: 10.6 gc: 2% heap: 7.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(93% 92% 92% 91% 93% 93% 92% 92% 93% 92% 92%) -> (6.5k/62k) -> write(24%)
0:20:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 114M 12% 279k/s ] rels: [ 0 0% 0/s ] features: [ 339M 708k/s ] 24G blocks: [ 28k 70% 4/s ]
cpus: 10 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(86% 87% 88% 87% 87% 86% 88% 87% 89% 87% 86%) -> (6.2k/62k) -> write(21%)
0:20:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 118M 13% 334k/s ] rels: [ 0 0% 0/s ] features: [ 347M 779k/s ] 26G blocks: [ 28k 70% 5/s ]
cpus: 10.7 gc: 3% heap: 2.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(93% 93% 92% 93% 93% 92% 94% 93% 92% 93% 93%) -> (5.6k/62k) -> write(23%)
0:20:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 121M 13% 295k/s ] rels: [ 0 0% 0/s ] features: [ 355M 722k/s ] 26G blocks: [ 28k 70% 4/s ]
cpus: 9.9 gc: 2% heap: 8.8G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(87% 86% 87% 85% 87% 86% 86% 87% 85% 87% 86%) -> (5.7k/62k) -> write(21%)
0:21:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 124M 13% 310k/s ] rels: [ 0 0% 0/s ] features: [ 363M 862k/s ] 27G blocks: [ 28k 71% 5/s ]
cpus: 10.6 gc: 2% heap: 8.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(93% 92% 92% 92% 92% 91% 91% 92% 92% 92% 92%) -> (6.9k/62k) -> write(25%)
0:21:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 126M 14% 276k/s ] rels: [ 0 0% 0/s ] features: [ 370M 721k/s ] 27G blocks: [ 28k 71% 4/s ]
cpus: 9.9 gc: 2% heap: 4.1G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(86% 86% 86% 87% 86% 85% 86% 86% 87% 86% 85%) -> (5.4k/62k) -> write(21%)
0:21:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 129M 14% 297k/s ] rels: [ 0 0% 0/s ] features: [ 378M 736k/s ] 27G blocks: [ 28k 71% 4/s ]
cpus: 10.6 gc: 2% heap: 5.5G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(93% 92% 92% 93% 93% 93% 93% 92% 92% 92% 92%) -> (5.6k/62k) -> write(22%)
0:21:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 132M 14% 271k/s ] rels: [ 0 0% 0/s ] features: [ 385M 693k/s ] 28G blocks: [ 28k 71% 4/s ]
cpus: 10.5 gc: 2% heap: 5.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(93% 92% 91% 92% 91% 91% 91% 91% 91% 91% 90%) -> (5k/62k) -> write(21%)
0:21:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 135M 15% 248k/s ] rels: [ 0 0% 0/s ] features: [ 391M 613k/s ] 28G blocks: [ 28k 71% 4/s ]
cpus: 10.2 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(90% 89% 88% 88% 89% 90% 89% 89% 90% 90% 89%) -> (4.2k/62k) -> write(18%)
0:21:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 137M 15% 283k/s ] rels: [ 0 0% 0/s ] features: [ 398M 688k/s ] 29G blocks: [ 28k 71% 4/s ]
cpus: 10.7 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (4.2k/62k) -> write(21%)
0:22:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 140M 15% 279k/s ] rels: [ 0 0% 0/s ] features: [ 404M 663k/s ] 29G blocks: [ 28k 71% 4/s ]
cpus: 10 gc: 2% heap: 4.2G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(88% 87% 86% 88% 86% 86% 84% 87% 90% 88% 87%) -> (6.2k/62k) -> write(19%)
0:22:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 143M 15% 293k/s ] rels: [ 0 0% 0/s ] features: [ 412M 720k/s ] 29G blocks: [ 28k 71% 4/s ]
cpus: 10.8 gc: 2% heap: 7.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 95% 95% 94% 94% 94% 94% 94%) -> (6.2k/62k) -> write(21%)
0:22:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 146M 16% 290k/s ] rels: [ 0 0% 0/s ] features: [ 419M 728k/s ] 30G blocks: [ 28k 71% 4/s ]
cpus: 9.9 gc: 2% heap: 3.2G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(86% 85% 86% 86% 87% 86% 85% 86% 85% 86% 85%) -> (5k/62k) -> write(22%)
0:22:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 149M 16% 294k/s ] rels: [ 0 0% 0/s ] features: [ 426M 700k/s ] 30G blocks: [ 28k 72% 4/s ]
cpus: 10.7 gc: 2% heap: 4.5G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 93% 93% 94% 93% 94% 95% 93%) -> (5.6k/62k) -> write(21%)
0:22:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 152M 16% 290k/s ] rels: [ 0 0% 0/s ] features: [ 433M 681k/s ] 31G blocks: [ 28k 72% 4/s ]
cpus: 10.7 gc: 2% heap: 6.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(94% 94% 93% 93% 94% 93% 94% 93% 93% 94% 94%) -> (6.2k/62k) -> write(21%)
0:22:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 155M 17% 308k/s ] rels: [ 0 0% 0/s ] features: [ 439M 629k/s ] 31G blocks: [ 28k 72% 5/s ]
cpus: 9.9 gc: 2% heap: 2.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(85% 87% 86% 87% 86% 87% 86% 86% 87% 86% 86%) -> (7.6k/62k) -> write(18%)
0:23:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 158M 17% 336k/s ] rels: [ 0 0% 0/s ] features: [ 445M 611k/s ] 31G blocks: [ 28k 72% 4/s ]
cpus: 10.8 gc: 2% heap: 4.5G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 95% 95% 94% 95% 93% 94% 95%) -> (5.7k/62k) -> write(18%)
0:23:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 161M 17% 299k/s ] rels: [ 0 0% 0/s ] features: [ 452M 659k/s ] 32G blocks: [ 29k 72% 4/s ]
cpus: 10.3 gc: 2% heap: 8.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(90% 89% 90% 90% 90% 89% 89% 90% 90% 90% 90%) -> (6.2k/62k) -> write(20%)
0:23:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 164M 18% 287k/s ] rels: [ 0 0% 0/s ] features: [ 459M 673k/s ] 32G blocks: [ 29k 72% 4/s ]
cpus: 10.4 gc: 3% heap: 2.9G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(91% 90% 91% 92% 91% 92% 92% 91% 90% 91% 92%) -> (7.1k/62k) -> write(20%)
0:23:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 168M 18% 321k/s ] rels: [ 0 0% 0/s ] features: [ 466M 766k/s ] 33G blocks: [ 29k 72% 5/s ]
cpus: 10.7 gc: 2% heap: 3.7G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(93% 94% 94% 93% 93% 93% 93% 94% 93% 93% 93%) -> (7.8k/62k) -> write(23%)
0:23:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 170M 18% 286k/s ] rels: [ 0 0% 0/s ] features: [ 473M 672k/s ] 33G blocks: [ 29k 72% 4/s ]
cpus: 10 gc: 2% heap: 6.2G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(85% 88% 87% 87% 89% 87% 86% 87% 87% 87% 86%) -> (5.5k/62k) -> write(20%)
0:23:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 174M 19% 320k/s ] rels: [ 0 0% 0/s ] features: [ 480M 715k/s ] 33G blocks: [ 29k 73% 5/s ]
cpus: 10.7 gc: 2% heap: 7.2G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(94% 93% 94% 94% 93% 93% 93% 94% 93% 92% 94%) -> (4.2k/62k) -> write(21%)
0:24:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 177M 19% 322k/s ] rels: [ 0 0% 0/s ] features: [ 487M 684k/s ] 34G blocks: [ 29k 73% 4/s ]
cpus: 10.7 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.4G
read( 0%) -> (11/22) -> process(93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (6.2k/62k) -> write(21%)
0:24:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 180M 19% 310k/s ] rels: [ 0 0% 0/s ] features: [ 494M 667k/s ] 34G blocks: [ 29k 73% 4/s ]
cpus: 10 gc: 2% heap: 4.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.4G
read( 0%) -> (11/22) -> process(87% 87% 88% 87% 87% 87% 86% 87% 86% 88% 85%) -> (4.7k/62k) -> write(19%)
0:24:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 183M 20% 336k/s ] rels: [ 0 0% 0/s ] features: [ 501M 707k/s ] 36G blocks: [ 29k 73% 5/s ]
cpus: 10.8 gc: 2% heap: 6.1G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 94% 94% 94% 95% 95% 94% 93%) -> (6.1k/62k) -> write(21%)
0:24:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 187M 20% 324k/s ] rels: [ 0 0% 0/s ] features: [ 507M 600k/s ] 36G blocks: [ 29k 73% 5/s ]
cpus: 10 gc: 2% heap: 3.3G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(87% 87% 89% 88% 86% 87% 86% 88% 87% 87% 86%) -> (6.5k/62k) -> write(17%)
0:24:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 190M 21% 337k/s ] rels: [ 0 0% 0/s ] features: [ 514M 682k/s ] 36G blocks: [ 29k 73% 5/s ]
cpus: 10.8 gc: 2% heap: 6.5G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 95% 94% 95% 95% 94% 94% 94%) -> (6.3k/62k) -> write(20%)
0:24:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 193M 21% 305k/s ] rels: [ 0 0% 0/s ] features: [ 521M 695k/s ] 37G blocks: [ 29k 73% 4/s ]
cpus: 10.1 gc: 2% heap: 7.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.5G
read( 0%) -> (11/22) -> process(88% 87% 89% 88% 88% 87% 88% 89% 89% 89% 87%) -> (6.3k/62k) -> write(21%)
0:25:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 196M 21% 298k/s ] rels: [ 0 0% 0/s ] features: [ 527M 633k/s ] 37G blocks: [ 29k 73% 4/s ]
cpus: 10.7 gc: 2% heap: 5.1G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.6G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 94% 94% 93% 93% 93% 94%) -> (3.2k/62k) -> write(19%)
0:25:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 199M 22% 308k/s ] rels: [ 0 0% 0/s ] features: [ 533M 634k/s ] 38G blocks: [ 29k 74% 4/s ]
cpus: 10.8 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.3G relInfo: 53M mpGeoms: 2.6G
read( 0%) -> (11/22) -> process(93% 94% 94% 93% 95% 94% 94% 94% 94% 94% 94%) -> (5.1k/62k) -> write(19%)
0:25:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 202M 22% 320k/s ] rels: [ 0 0% 0/s ] features: [ 539M 555k/s ] 38G blocks: [ 29k 74% 5/s ]
cpus: 10 gc: 2% heap: 6.1G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(88% 87% 87% 87% 86% 87% 86% 89% 86% 87% 88%) -> (5.4k/62k) -> write(16%)
0:25:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 206M 22% 363k/s ] rels: [ 0 0% 0/s ] features: [ 545M 579k/s ] 38G blocks: [ 29k 74% 6/s ]
cpus: 10.7 gc: 3% heap: 8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(92% 94% 94% 94% 93% 94% 93% 94% 94% 94% 93%) -> (8k/62k) -> write(16%)
0:25:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 210M 23% 369k/s ] rels: [ 0 0% 0/s ] features: [ 551M 614k/s ] 39G blocks: [ 29k 74% 6/s ]
cpus: 10.8 gc: 3% heap: 3.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.8G
read( 0%) -> (11/22) -> process(93% 94% 94% 94% 95% 93% 94% 95% 94% 94% 94%) -> (4.3k/62k) -> write(18%)
0:25:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 213M 23% 353k/s ] rels: [ 0 0% 0/s ] features: [ 557M 587k/s ] 39G blocks: [ 29k 74% 6/s ]
cpus: 10.1 gc: 2% heap: 8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(89% 88% 87% 89% 86% 89% 88% 87% 88% 89% 90%) -> (7.4k/62k) -> write(16%)
0:26:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 217M 23% 356k/s ] rels: [ 0 0% 0/s ] features: [ 563M 606k/s ] 39G blocks: [ 29k 74% 6/s ]
cpus: 10.8 gc: 3% heap: 3.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 94% 94% 93% 94% 94% 94% 94%) -> (8.4k/62k) -> write(17%)
0:26:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 220M 24% 347k/s ] rels: [ 0 0% 0/s ] features: [ 569M 620k/s ] 40G blocks: [ 29k 74% 5/s ]
cpus: 10.8 gc: 2% heap: 6G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(94% 94% 95% 94% 94% 93% 95% 94% 95% 94% 94%) -> (4.9k/62k) -> write(18%)
0:26:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 223M 24% 314k/s ] rels: [ 0 0% 0/s ] features: [ 575M 632k/s ] 40G blocks: [ 30k 75% 5/s ]
cpus: 10.1 gc: 2% heap: 3.3G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 2.9G
read( 0%) -> (11/22) -> process(88% 88% 90% 88% 87% 88% 88% 88% 88% 89% 89%) -> (6.3k/62k) -> write(18%)
0:26:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 227M 24% 339k/s ] rels: [ 0 0% 0/s ] features: [ 582M 675k/s ] 40G blocks: [ 30k 75% 5/s ]
cpus: 10.7 gc: 2% heap: 5.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94%) -> (4.8k/62k) -> write(20%)
0:26:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 230M 25% 349k/s ] rels: [ 0 0% 0/s ] features: [ 588M 643k/s ] 41G blocks: [ 30k 75% 5/s ]
cpus: 10.8 gc: 2% heap: 7.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 93% 95% 95% 95% 95% 95% 95%) -> (10k/62k) -> write(19%)
0:26:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 234M 25% 329k/s ] rels: [ 0 0% 0/s ] features: [ 595M 656k/s ] 41G blocks: [ 30k 75% 4/s ]
cpus: 10.1 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3G
read( 0%) -> (11/22) -> process(89% 89% 89% 87% 88% 88% 88% 87% 88% 89% 88%) -> (5.6k/62k) -> write(19%)
0:27:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 237M 26% 330k/s ] rels: [ 0 0% 0/s ] features: [ 602M 690k/s ] 41G blocks: [ 30k 75% 5/s ]
cpus: 10.7 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.1G
read( 0%) -> (11/22) -> process(92% 94% 94% 93% 94% 94% 92% 94% 94% 94% 94%) -> (4.4k/62k) -> write(20%)
0:27:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 240M 26% 321k/s ] rels: [ 0 0% 0/s ] features: [ 608M 658k/s ] 42G blocks: [ 30k 75% 5/s ]
cpus: 10.4 gc: 2% heap: 6.1G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.1G
read( 0%) -> (11/22) -> process(91% 92% 90% 91% 91% 91% 92% 91% 91% 91% 91%) -> (5.5k/62k) -> write(20%)
0:27:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 243M 26% 330k/s ] rels: [ 0 0% 0/s ] features: [ 615M 696k/s ] 42G blocks: [ 30k 75% 4/s ]
cpus: 10.5 gc: 2% heap: 7.3G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.2G
read( 0%) -> (11/22) -> process(91% 92% 92% 92% 89% 92% 91% 91% 92% 92% 92%) -> (7.4k/62k) -> write(20%)
0:27:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 247M 27% 343k/s ] rels: [ 0 0% 0/s ] features: [ 623M 727k/s ] 43G blocks: [ 30k 75% 5/s ]
cpus: 10.8 gc: 2% heap: 3.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.2G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 95% 95% 95% 95% 95% 95% 94%) -> (4.7k/62k) -> write(22%)
0:27:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 250M 27% 304k/s ] rels: [ 0 0% 0/s ] features: [ 629M 641k/s ] 43G blocks: [ 30k 76% 4/s ]
cpus: 10 gc: 2% heap: 5.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.3G
read( 0%) -> (11/22) -> process(88% 88% 87% 87% 87% 89% 86% 88% 88% 87% 88%) -> (8.8k/62k) -> write(19%)
0:27:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 253M 27% 354k/s ] rels: [ 0 0% 0/s ] features: [ 636M 672k/s ] 43G blocks: [ 30k 76% 5/s ]
cpus: 10.8 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.3G
read( 0%) -> (11/22) -> process(95% 95% 94% 94% 95% 95% 94% 95% 95% 94% 95%) -> (6.2k/62k) -> write(19%)
0:28:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 257M 28% 332k/s ] rels: [ 0 0% 0/s ] features: [ 642M 640k/s ] 44G blocks: [ 30k 76% 5/s ]
cpus: 10.1 gc: 2% heap: 6.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.4G
read( 0%) -> (11/22) -> process(88% 88% 88% 89% 88% 88% 88% 88% 89% 87% 88%) -> (7.7k/62k) -> write(19%)
0:28:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 260M 28% 344k/s ] rels: [ 0 0% 0/s ] features: [ 649M 663k/s ] 44G blocks: [ 30k 76% 5/s ]
cpus: 10.7 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.4G
read( 0%) -> (11/22) -> process(93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (6.3k/62k) -> write(19%)
0:28:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 264M 28% 357k/s ] rels: [ 0 0% 0/s ] features: [ 655M 644k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.7 gc: 2% heap: 4.1G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.5G
read( 0%) -> (11/22) -> process(93% 94% 94% 94% 93% 92% 94% 94% 94% 94% 95%) -> (6.5k/62k) -> write(19%)
0:28:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 267M 29% 367k/s ] rels: [ 0 0% 0/s ] features: [ 662M 637k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.1 gc: 2% heap: 3.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.5G
read( 0%) -> (11/22) -> process(90% 88% 89% 89% 89% 87% 88% 88% 89% 89% 87%) -> (6.9k/62k) -> write(18%)
0:28:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 271M 29% 387k/s ] rels: [ 0 0% 0/s ] features: [ 668M 636k/s ] 45G blocks: [ 30k 76% 5/s ]
cpus: 10.6 gc: 2% heap: 6.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.6G
read( 0%) -> (11/22) -> process(94% 94% 93% 93% 93% 93% 93% 94% 92% 94% 93%) -> (5.9k/62k) -> write(18%)
0:28:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 275M 30% 376k/s ] rels: [ 0 0% 0/s ] features: [ 674M 623k/s ] 47G blocks: [ 30k 77% 5/s ]
cpus: 10.7 gc: 2% heap: 2.6G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.6G
read( 0%) -> (11/22) -> process(93% 94% 92% 94% 94% 94% 94% 94% 93% 94% 94%) -> (6.6k/62k) -> write(18%)
0:29:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 279M 30% 390k/s ] rels: [ 0 0% 0/s ] features: [ 681M 643k/s ] 47G blocks: [ 30k 77% 5/s ]
cpus: 10.3 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(90% 91% 89% 90% 90% 90% 92% 90% 91% 91% 91%) -> (6k/62k) -> write(18%)
0:29:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 283M 31% 372k/s ] rels: [ 0 0% 0/s ] features: [ 688M 686k/s ] 47G blocks: [ 30k 77% 5/s ]
cpus: 10.8 gc: 2% heap: 7.3G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 95% 94% 95% 94% 95% 94% 94%) -> (11k/62k) -> write(20%)
0:29:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 286M 31% 353k/s ] rels: [ 0 0% 0/s ] features: [ 694M 670k/s ] 48G blocks: [ 30k 77% 5/s ]
cpus: 10.9 gc: 2% heap: 4.3G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.7G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95%) -> (4.8k/62k) -> write(20%)
0:29:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 290M 31% 332k/s ] rels: [ 0 0% 0/s ] features: [ 701M 669k/s ] 48G blocks: [ 31k 77% 5/s ]
cpus: 10.3 gc: 2% heap: 3.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.8G
read( 0%) -> (11/22) -> process(90% 88% 89% 90% 91% 91% 90% 89% 89% 90% 90%) -> (7.5k/62k) -> write(19%)
0:29:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 293M 32% 342k/s ] rels: [ 0 0% 0/s ] features: [ 708M 704k/s ] 49G blocks: [ 31k 77% 5/s ]
cpus: 10.8 gc: 2% heap: 5.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.8G
read( 0%) -> (11/22) -> process(94% 95% 94% 94% 94% 94% 94% 93% 94% 94% 94%) -> (5.4k/62k) -> write(21%)
0:29:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 296M 32% 320k/s ] rels: [ 0 0% 0/s ] features: [ 715M 661k/s ] 49G blocks: [ 31k 77% 4/s ]
cpus: 10.2 gc: 2% heap: 3.1G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.8G
read( 0%) -> (11/22) -> process(87% 88% 89% 89% 89% 90% 89% 88% 88% 90% 89%) -> (5.9k/62k) -> write(19%)
0:30:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 300M 32% 348k/s ] rels: [ 0 0% 0/s ] features: [ 721M 624k/s ] 49G blocks: [ 31k 77% 4/s ]
cpus: 10.8 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.9G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 95% 95% 95% 95% 95% 94% 94%) -> (5.6k/62k) -> write(18%)
0:30:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 303M 33% 345k/s ] rels: [ 0 0% 0/s ] features: [ 727M 647k/s ] 50G blocks: [ 31k 78% 5/s ]
cpus: 10.8 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 3.9G
read( 0%) -> (11/22) -> process(94% 95% 95% 95% 95% 95% 95% 95% 93% 95% 95%) -> (5k/62k) -> write(19%)
0:30:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 306M 33% 333k/s ] rels: [ 0 0% 0/s ] features: [ 734M 616k/s ] 50G blocks: [ 31k 78% 5/s ]
cpus: 10.2 gc: 2% heap: 6.9G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4G
read( 0%) -> (11/22) -> process(92% 88% 91% 89% 90% 87% 89% 88% 88% 88% 89%) -> (7.1k/62k) -> write(18%)
0:30:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 310M 33% 363k/s ] rels: [ 0 0% 0/s ] features: [ 740M 676k/s ] 50G blocks: [ 31k 78% 5/s ]
cpus: 10.8 gc: 2% heap: 4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4G
read( 0%) -> (11/22) -> process(95% 95% 94% 95% 93% 94% 95% 95% 95% 95% 95%) -> (7.1k/62k) -> write(19%)
0:30:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 314M 34% 377k/s ] rels: [ 0 0% 0/s ] features: [ 748M 714k/s ] 51G blocks: [ 31k 78% 5/s ]
cpus: 10.9 gc: 2% heap: 8.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(94% 96% 95% 96% 95% 95% 95% 96% 95% 96% 95%) -> (7.4k/62k) -> write(21%)
0:30:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 317M 34% 344k/s ] rels: [ 0 0% 0/s ] features: [ 754M 638k/s ] 51G blocks: [ 31k 78% 4/s ]
cpus: 10.1 gc: 2% heap: 8.2G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(89% 89% 88% 88% 89% 89% 89% 90% 89% 89% 89%) -> (6.1k/62k) -> write(18%)
0:31:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 321M 35% 346k/s ] rels: [ 0 0% 0/s ] features: [ 760M 617k/s ] 51G blocks: [ 31k 78% 4/s ]
cpus: 10.9 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.1G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 96% 94% 94% 95% 95% 95% 96%) -> (5.9k/62k) -> write(18%)
0:31:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 324M 35% 347k/s ] rels: [ 0 0% 0/s ] features: [ 766M 590k/s ] 52G blocks: [ 31k 78% 4/s ]
cpus: 10.2 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(88% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89%) -> (5.2k/62k) -> write(17%)
0:31:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 328M 35% 392k/s ] rels: [ 0 0% 0/s ] features: [ 773M 712k/s ] 52G blocks: [ 31k 78% 5/s ]
cpus: 10.7 gc: 2% heap: 4.1G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(94% 94% 93% 94% 94% 93% 93% 94% 93% 94% 93%) -> (4.8k/62k) -> write(20%)
0:31:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 332M 36% 397k/s ] rels: [ 0 0% 0/s ] features: [ 781M 747k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10.8 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.2G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 95% 93% 95% 95% 95% 95% 94%) -> (7.8k/62k) -> write(22%)
0:31:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 336M 36% 368k/s ] rels: [ 0 0% 0/s ] features: [ 787M 642k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10 gc: 2% heap: 5.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.3G
read( 0%) -> (11/22) -> process(90% 87% 86% 88% 88% 87% 88% 89% 87% 88% 88%) -> (6.8k/62k) -> write(18%)
0:31:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 339M 37% 351k/s ] rels: [ 0 0% 0/s ] features: [ 793M 609k/s ] 53G blocks: [ 31k 79% 5/s ]
cpus: 10.6 gc: 3% heap: 8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.3G
read( 0%) -> (11/22) -> process(93% 93% 93% 93% 93% 93% 91% 92% 93% 93% 93%) -> (7.2k/62k) -> write(17%)
0:32:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 343M 37% 343k/s ] rels: [ 0 0% 0/s ] features: [ 800M 718k/s ] 54G blocks: [ 31k 79% 5/s ]
cpus: 10.3 gc: 2% heap: 7.2G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.3G
read( 0%) -> (11/22) -> process(89% 89% 90% 88% 90% 91% 89% 90% 89% 89% 90%) -> (5.4k/62k) -> write(21%)
0:32:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 347M 37% 366k/s ] rels: [ 0 0% 0/s ] features: [ 807M 695k/s ] 54G blocks: [ 31k 79% 5/s ]
cpus: 10.9 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.4G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 95% 94% 94% 94%) -> (4.9k/62k) -> write(20%)
0:32:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 350M 38% 380k/s ] rels: [ 0 0% 0/s ] features: [ 814M 677k/s ] 54G blocks: [ 31k 79% 5/s ]
cpus: 10.8 gc: 2% heap: 8.9G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.4G
read( 0%) -> (11/22) -> process(93% 95% 95% 94% 94% 95% 95% 95% 94% 94% 94%) -> (4.9k/62k) -> write(19%)
0:32:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 354M 38% 368k/s ] rels: [ 0 0% 0/s ] features: [ 821M 663k/s ] 55G blocks: [ 31k 79% 5/s ]
cpus: 10.4 gc: 2% heap: 2.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(91% 91% 90% 90% 90% 91% 92% 90% 90% 90% 91%) -> (11k/62k) -> write(19%)
0:32:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 358M 39% 392k/s ] rels: [ 0 0% 0/s ] features: [ 827M 661k/s ] 55G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 2% heap: 7.8G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 96% 96% 95% 96% 95% 96%) -> (8.2k/62k) -> write(19%)
0:32:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 362M 39% 384k/s ] rels: [ 0 0% 0/s ] features: [ 834M 677k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.8 gc: 2% heap: 5.7G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 94% 95% 94% 95% 95% 94% 95%) -> (5.8k/62k) -> write(20%)
0:33:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 366M 39% 372k/s ] rels: [ 0 0% 0/s ] features: [ 841M 646k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.3 gc: 2% heap: 6.9G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.5G
read( 0%) -> (11/22) -> process(91% 90% 90% 90% 91% 90% 89% 90% 90% 89% 91%) -> (6.8k/62k) -> write(18%)
0:33:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 369M 40% 377k/s ] rels: [ 0 0% 0/s ] features: [ 847M 637k/s ] 56G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 2% heap: 4.5G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.6G
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 95% 96% 94% 95% 96% 96% 96%) -> (6.4k/62k) -> write(18%)
0:33:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 373M 40% 364k/s ] rels: [ 0 0% 0/s ] features: [ 853M 572k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.8 gc: 3% heap: 6.4G/32G direct: 558k postGC: 2.4G relInfo: 53M mpGeoms: 4.6G
read( 0%) -> (11/22) -> process(94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94%) -> (5.7k/62k) -> write(17%)
0:33:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 377M 41% 370k/s ] rels: [ 0 0% 0/s ] features: [ 859M 647k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.3 gc: 2% heap: 6.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 4.8G
read( 0%) -> (11/22) -> process(89% 90% 90% 90% 88% 88% 91% 91% 90% 90% 89%) -> (7.2k/62k) -> write(18%)
0:33:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 381M 41% 386k/s ] rels: [ 0 0% 0/s ] features: [ 866M 714k/s ] 57G blocks: [ 32k 80% 5/s ]
cpus: 10.9 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 4.8G
read( 0%) -> (11/22) -> process(96% 96% 93% 96% 95% 95% 96% 95% 96% 96% 96%) -> (3.9k/62k) -> write(20%)
0:33:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 384M 41% 364k/s ] rels: [ 0 0% 0/s ] features: [ 873M 636k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.4 gc: 2% heap: 3.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 4.9G
read( 0%) -> (11/22) -> process(90% 90% 90% 91% 91% 90% 91% 90% 89% 90% 92%) -> (6.1k/62k) -> write(19%)
0:34:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 388M 42% 402k/s ] rels: [ 0 0% 0/s ] features: [ 879M 666k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 2% heap: 2.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 4.9G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 96% 96% 96% 95% 96% 95% 96%) -> (9.8k/62k) -> write(19%)
0:34:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 392M 42% 396k/s ] rels: [ 0 0% 0/s ] features: [ 886M 666k/s ] 58G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(96% 95% 95% 96% 96% 95% 96% 96% 96% 95% 96%) -> (7.2k/62k) -> write(19%)
0:34:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 396M 43% 391k/s ] rels: [ 0 0% 0/s ] features: [ 893M 641k/s ] 59G blocks: [ 32k 81% 5/s ]
cpus: 10.3 gc: 2% heap: 9.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(90% 90% 91% 91% 91% 89% 91% 91% 90% 90% 92%) -> (7.2k/62k) -> write(19%)
0:34:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 400M 43% 414k/s ] rels: [ 0 0% 0/s ] features: [ 899M 695k/s ] 59G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 2% heap: 8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5G
read( 0%) -> (11/22) -> process(95% 95% 96% 94% 95% 95% 94% 95% 95% 95% 96%) -> (5k/62k) -> write(20%)
0:34:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 404M 44% 405k/s ] rels: [ 0 0% 0/s ] features: [ 906M 691k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 2% heap: 7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(96% 96% 95% 94% 96% 96% 95% 96% 96% 95% 95%) -> (3.8k/62k) -> write(20%)
0:34:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 408M 44% 390k/s ] rels: [ 0 0% 0/s ] features: [ 913M 650k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.3 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(91% 91% 91% 90% 91% 90% 91% 92% 88% 91% 90%) -> (4.7k/62k) -> write(18%)
0:35:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 412M 45% 422k/s ] rels: [ 0 0% 0/s ] features: [ 920M 701k/s ] 60G blocks: [ 32k 81% 5/s ]
cpus: 10.9 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(96% 93% 96% 95% 95% 96% 95% 96% 95% 93% 95%) -> (4.8k/62k) -> write(20%)
0:35:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 417M 45% 417k/s ] rels: [ 0 0% 0/s ] features: [ 927M 669k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.9 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(94% 95% 96% 96% 96% 96% 95% 96% 95% 96% 95%) -> (6.6k/62k) -> write(19%)
0:35:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 421M 45% 392k/s ] rels: [ 0 0% 0/s ] features: [ 933M 644k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.3 gc: 2% heap: 7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.1G
read( 0%) -> (11/22) -> process(90% 90% 91% 89% 87% 90% 91% 91% 90% 91% 90%) -> (6.9k/62k) -> write(18%)
0:35:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 425M 46% 415k/s ] rels: [ 0 0% 0/s ] features: [ 940M 712k/s ] 61G blocks: [ 32k 82% 5/s ]
cpus: 10.9 gc: 2% heap: 6.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(95% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96%) -> (7k/62k) -> write(20%)
0:35:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 429M 46% 396k/s ] rels: [ 0 0% 0/s ] features: [ 947M 662k/s ] 62G blocks: [ 33k 82% 5/s ]
cpus: 10.4 gc: 2% heap: 7.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(90% 91% 91% 91% 91% 90% 91% 91% 91% 92% 90%) -> (4.1k/62k) -> write(19%)
0:35:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 433M 47% 420k/s ] rels: [ 0 0% 0/s ] features: [ 954M 750k/s ] 62G blocks: [ 33k 82% 5/s ]
cpus: 10.9 gc: 2% heap: 7.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(95% 96% 95% 96% 94% 95% 95% 95% 95% 95% 95%) -> (3.7k/62k) -> write(21%)
0:36:07 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 437M 47% 389k/s ] rels: [ 0 0% 0/s ] features: [ 962M 735k/s ] 64G blocks: [ 33k 82% 5/s ]
cpus: 10.8 gc: 2% heap: 5.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 94% 94% 95% 95% 95% 95%) -> (8.3k/62k) -> write(22%)
0:36:17 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 441M 48% 379k/s ] rels: [ 0 0% 0/s ] features: [ 969M 717k/s ] 64G blocks: [ 33k 82% 5/s ]
cpus: 10.4 gc: 2% heap: 6.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.3G
read( 0%) -> (11/22) -> process(91% 90% 92% 90% 91% 91% 90% 90% 90% 91% 91%) -> (5.1k/62k) -> write(21%)
0:36:27 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 445M 48% 403k/s ] rels: [ 0 0% 0/s ] features: [ 976M 732k/s ] 64G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.3G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 95% 96% 95% 96% 96% 96% 96%) -> (8k/62k) -> write(21%)
0:36:37 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 449M 48% 399k/s ] rels: [ 0 0% 0/s ] features: [ 983M 718k/s ] 65G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 2% heap: 2.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 95% 94% 95% 95% 95% 95% 94%) -> (6.2k/62k) -> write(21%)
0:36:47 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 452M 49% 384k/s ] rels: [ 0 0% 0/s ] features: [ 991M 741k/s ] 65G blocks: [ 33k 83% 5/s ]
cpus: 10.4 gc: 2% heap: 3.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(91% 90% 91% 90% 91% 91% 90% 90% 91% 91% 90%) -> (5.8k/62k) -> write(21%)
0:36:57 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 457M 49% 431k/s ] rels: [ 0 0% 0/s ] features: [ 999M 775k/s ] 66G blocks: [ 33k 83% 5/s ]
cpus: 11 gc: 2% heap: 3.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.4G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96%) -> (7.5k/62k) -> write(22%)
0:37:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 461M 50% 399k/s ] rels: [ 0 0% 0/s ] features: [ 1B 704k/s ] 66G blocks: [ 33k 83% 5/s ]
cpus: 10.3 gc: 2% heap: 5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(91% 90% 90% 91% 89% 91% 89% 90% 91% 90% 90%) -> (5.2k/62k) -> write(20%)
0:37:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 465M 50% 451k/s ] rels: [ 0 0% 0/s ] features: [ 1B 740k/s ] 66G blocks: [ 33k 83% 5/s ]
cpus: 10.9 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(96% 96% 97% 96% 96% 94% 96% 96% 96% 96% 94%) -> (3.2k/62k) -> write(20%)
0:37:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 469M 51% 415k/s ] rels: [ 0 0% 0/s ] features: [ 1B 694k/s ] 67G blocks: [ 33k 83% 5/s ]
cpus: 10.4 gc: 2% heap: 7.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.5G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 90% 91% 90% 91% 91% 91% 90%) -> (7.3k/62k) -> write(20%)
0:37:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 474M 51% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1B 713k/s ] 67G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 2% heap: 7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(94% 95% 96% 95% 95% 95% 96% 96% 95% 95% 96%) -> (6.5k/62k) -> write(20%)
0:37:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 478M 52% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1B 696k/s ] 68G blocks: [ 33k 84% 5/s ]
cpus: 11 gc: 2% heap: 7.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(97% 96% 96% 93% 96% 96% 96% 96% 96% 96% 96%) -> (5k/62k) -> write(20%)
0:37:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 482M 52% 441k/s ] rels: [ 0 0% 0/s ] features: [ 1B 690k/s ] 68G blocks: [ 33k 84% 5/s ]
cpus: 10.4 gc: 2% heap: 4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(92% 90% 91% 92% 91% 91% 91% 91% 89% 91% 91%) -> (4.8k/62k) -> write(19%)
0:38:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 487M 53% 450k/s ] rels: [ 0 0% 0/s ] features: [ 1B 713k/s ] 68G blocks: [ 33k 84% 5/s ]
cpus: 10.9 gc: 2% heap: 4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.6G
read( 0%) -> (11/22) -> process(96% 96% 96% 95% 96% 95% 95% 96% 96% 95% 96%) -> (6k/62k) -> write(20%)
0:38:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 491M 53% 424k/s ] rels: [ 0 0% 0/s ] features: [ 1B 748k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 11 gc: 2% heap: 3.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(96% 95% 96% 96% 96% 96% 96% 96% 95% 96% 96%) -> (5.7k/62k) -> write(22%)
0:38:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 495M 53% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1B 700k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 10.2 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 90% 90% 90% 89% 90% 90% 89%) -> (6.2k/62k) -> write(20%)
0:38:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 499M 54% 415k/s ] rels: [ 0 0% 0/s ] features: [ 1B 724k/s ] 69G blocks: [ 33k 84% 5/s ]
cpus: 11 gc: 2% heap: 3.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 95% 96% 95% 96% 96% 96%) -> (7.5k/62k) -> write(20%)
0:38:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 503M 54% 388k/s ] rels: [ 0 0% 0/s ] features: [ 1B 674k/s ] 70G blocks: [ 34k 85% 5/s ]
cpus: 10.2 gc: 2% heap: 3.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.7G
read( 0%) -> (11/22) -> process(88% 90% 90% 88% 89% 88% 89% 89% 89% 89% 90%) -> (4.1k/62k) -> write(20%)
0:38:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 507M 55% 376k/s ] rels: [ 0 0% 0/s ] features: [ 1B 737k/s ] 70G blocks: [ 34k 85% 5/s ]
cpus: 11 gc: 2% heap: 8.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.8G
read( 0%) -> (11/22) -> process(96% 96% 94% 96% 96% 96% 95% 96% 96% 96% 96%) -> (5.8k/62k) -> write(21%)
0:39:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 511M 55% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1B 685k/s ] 71G blocks: [ 34k 85% 5/s ]
cpus: 10.9 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.8G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 96% 95% 95% 95% 96%) -> (7.8k/62k) -> write(20%)
0:39:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 515M 56% 361k/s ] rels: [ 0 0% 0/s ] features: [ 1B 607k/s ] 71G blocks: [ 34k 85% 4/s ]
cpus: 10.3 gc: 2% heap: 3.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(91% 90% 89% 90% 90% 92% 90% 90% 90% 90% 92%) -> (6.5k/62k) -> write(17%)
0:39:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 519M 56% 425k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 704k/s ] 71G blocks: [ 34k 85% 5/s ]
cpus: 10.9 gc: 2% heap: 8.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (5.7k/62k) -> write(20%)
0:39:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 523M 56% 434k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 683k/s ] 72G blocks: [ 34k 85% 5/s ]
cpus: 10.5 gc: 2% heap: 3.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(92% 92% 93% 93% 91% 92% 92% 92% 91% 91% 92%) -> (4.4k/62k) -> write(19%)
0:39:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 528M 57% 441k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 706k/s ] 72G blocks: [ 34k 85% 6/s ]
cpus: 10.6 gc: 2% heap: 8.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 5.9G
read( 0%) -> (11/22) -> process(94% 94% 94% 93% 94% 94% 90% 92% 94% 95% 94%) -> (9.3k/62k) -> write(20%)
0:39:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 531M 57% 364k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 674k/s ] 72G blocks: [ 34k 85% 5/s ]
cpus: 10.9 gc: 2% heap: 7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96%) -> (4.4k/62k) -> write(19%)
0:40:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 535M 58% 330k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 589k/s ] 73G blocks: [ 34k 86% 4/s ]
cpus: 10 gc: 2% heap: 4.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(87% 89% 87% 87% 88% 88% 87% 86% 86% 88% 87%) -> (6.6k/62k) -> write(17%)
0:40:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 538M 58% 383k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 686k/s ] 73G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6G
read( 0%) -> (11/22) -> process(96% 95% 95% 93% 95% 96% 95% 95% 95% 96% 95%) -> (8.9k/62k) -> write(20%)
0:40:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 542M 58% 364k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 708k/s ] 74G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 2% heap: 5.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(94% 96% 96% 95% 96% 96% 95% 93% 96% 96% 95%) -> (8.3k/62k) -> write(21%)
0:40:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 546M 59% 354k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 680k/s ] 74G blocks: [ 34k 86% 4/s ]
cpus: 10.2 gc: 2% heap: 9.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(89% 90% 89% 90% 89% 89% 89% 90% 89% 88% 89%) -> (6.7k/62k) -> write(20%)
0:40:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 550M 59% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 754k/s ] 74G blocks: [ 34k 86% 5/s ]
cpus: 10.8 gc: 2% heap: 5.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.1G
read( 0%) -> (11/22) -> process(94% 94% 95% 96% 95% 94% 93% 95% 96% 95% 96%) -> (5.8k/62k) -> write(22%)
0:40:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 553M 60% 375k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 782k/s ] 75G blocks: [ 34k 86% 5/s ]
cpus: 10.9 gc: 2% heap: 8.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.2G
read( 0%) -> (11/22) -> process(95% 96% 96% 95% 96% 95% 96% 96% 95% 94% 95%) -> (5.9k/62k) -> write(23%)
0:41:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 557M 60% 349k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 703k/s ] 75G blocks: [ 34k 86% 5/s ]
cpus: 10.3 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.2G
read( 0%) -> (11/22) -> process(89% 91% 90% 90% 91% 91% 90% 89% 89% 90% 91%) -> (4.4k/62k) -> write(20%)
0:41:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 561M 60% 376k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 754k/s ] 76G blocks: [ 34k 87% 5/s ]
cpus: 10.9 gc: 2% heap: 4.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.2G
read( 0%) -> (11/22) -> process(94% 96% 96% 95% 95% 95% 96% 95% 94% 96% 94%) -> (6.7k/62k) -> write(22%)
0:41:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 564M 61% 338k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 688k/s ] 76G blocks: [ 34k 87% 5/s ]
cpus: 10.3 gc: 2% heap: 5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(91% 91% 89% 91% 89% 90% 90% 91% 90% 90% 92%) -> (8.3k/62k) -> write(20%)
0:41:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 568M 61% 363k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 741k/s ] 76G blocks: [ 34k 87% 5/s ]
cpus: 10.9 gc: 2% heap: 8.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 96% 95% 96% 95%) -> (5.9k/62k) -> write(21%)
0:41:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 571M 62% 382k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 763k/s ] 77G blocks: [ 34k 87% 5/s ]
cpus: 10.7 gc: 2% heap: 5.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.3G
read( 0%) -> (11/22) -> process(92% 93% 93% 94% 94% 94% 94% 94% 94% 94% 93%) -> (6.2k/62k) -> write(22%)
0:41:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 575M 62% 348k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 659k/s ] 77G blocks: [ 35k 87% 4/s ]
cpus: 10 gc: 2% heap: 8.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(88% 88% 88% 87% 87% 86% 86% 87% 86% 85% 88%) -> (7k/62k) -> write(19%)
0:42:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 579M 62% 373k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 683k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.6 gc: 2% heap: 4.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(93% 91% 93% 92% 93% 93% 93% 93% 92% 92% 92%) -> (8.3k/62k) -> write(20%)
0:42:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 583M 63% 400k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 682k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.2 gc: 2% heap: 4.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.4G
read( 0%) -> (11/22) -> process(86% 90% 89% 89% 87% 90% 88% 89% 90% 89% 89%) -> (5.4k/62k) -> write(19%)
0:42:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 587M 63% 419k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 791k/s ] 78G blocks: [ 35k 87% 5/s ]
cpus: 10.9 gc: 2% heap: 9.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.5G
read( 0%) -> (11/22) -> process(95% 95% 94% 95% 95% 95% 96% 95% 94% 95% 95%) -> (8k/62k) -> write(23%)
0:42:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 591M 64% 391k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 756k/s ] 79G blocks: [ 35k 88% 5/s ]
cpus: 10.2 gc: 2% heap: 9.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.5G
read( 0%) -> (11/22) -> process(90% 89% 89% 90% 90% 90% 87% 90% 89% 89% 89%) -> (7.1k/62k) -> write(22%)
0:42:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 595M 64% 400k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 760k/s ] 79G blocks: [ 35k 88% 5/s ]
cpus: 10.7 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.6G
read( 0%) -> (11/22) -> process(93% 93% 93% 94% 93% 92% 93% 93% 93% 94% 94%) -> (5k/62k) -> write(22%)
0:42:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 599M 65% 408k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 786k/s ] 80G blocks: [ 35k 88% 5/s ]
cpus: 10.8 gc: 2% heap: 4.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.6G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 94% 94% 94% 93% 94% 95% 94%) -> (4.7k/62k) -> write(23%)
0:43:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 603M 65% 397k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 740k/s ] 80G blocks: [ 35k 88% 5/s ]
cpus: 10.3 gc: 2% heap: 4.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.6G
read( 0%) -> (11/22) -> process(90% 89% 91% 91% 89% 91% 90% 90% 90% 91% 91%) -> (5.6k/62k) -> write(21%)
0:43:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 607M 66% 439k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 823k/s ] 82G blocks: [ 35k 88% 6/s ]
cpus: 10.9 gc: 2% heap: 9.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.7G
read( 0%) -> (11/22) -> process(95% 95% 96% 95% 96% 94% 95% 96% 96% 94% 96%) -> (7k/62k) -> write(24%)
0:43:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 611M 66% 378k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 718k/s ] 82G blocks: [ 35k 88% 5/s ]
cpus: 10.1 gc: 2% heap: 8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.7G
read( 0%) -> (11/22) -> process(90% 88% 89% 89% 88% 88% 89% 89% 87% 89% 87%) -> (4.6k/62k) -> write(21%)
0:43:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 615M 66% 367k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 719k/s ] 82G blocks: [ 35k 88% 5/s ]
cpus: 10.9 gc: 2% heap: 5.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.8G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 96% 96% 95% 96% 95% 96% 96%) -> (6.1k/62k) -> write(21%)
0:43:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 618M 67% 372k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 724k/s ] 83G blocks: [ 35k 89% 5/s ]
cpus: 10.4 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.8G
read( 0%) -> (11/22) -> process(91% 90% 91% 91% 91% 90% 90% 91% 88% 90% 90%) -> (4.7k/62k) -> write(21%)
0:43:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 622M 67% 373k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 745k/s ] 83G blocks: [ 35k 89% 5/s ]
cpus: 10.8 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.9G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 94% 95% 95% 95% 95% 94% 94%) -> (5.3k/62k) -> write(22%)
0:44:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 626M 68% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 818k/s ] 84G blocks: [ 35k 89% 5/s ]
cpus: 10.9 gc: 2% heap: 5.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 6.9G
read( 0%) -> (11/22) -> process(94% 95% 96% 95% 95% 95% 94% 95% 95% 95% 95%) -> (6.9k/62k) -> write(24%)
0:44:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 630M 68% 394k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 737k/s ] 84G blocks: [ 35k 89% 5/s ]
cpus: 10.2 gc: 2% heap: 5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7G
read( 0%) -> (11/22) -> process(88% 89% 87% 89% 90% 89% 90% 89% 89% 89% 88%) -> (6.1k/62k) -> write(21%)
0:44:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 633M 68% 325k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 635k/s ] 85G blocks: [ 35k 89% 4/s ]
cpus: 10.8 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(95% 94% 94% 95% 94% 94% 94% 94% 95% 94% 95%) -> (7.1k/62k) -> write(19%)
0:44:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 637M 69% 342k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 636k/s ] 85G blocks: [ 35k 89% 4/s ]
cpus: 10.2 gc: 2% heap: 8.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(89% 89% 90% 88% 91% 88% 89% 90% 88% 89% 89%) -> (8k/62k) -> write(18%)
0:44:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 641M 69% 378k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 711k/s ] 85G blocks: [ 35k 89% 5/s ]
cpus: 10.9 gc: 2% heap: 6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.1G
read( 0%) -> (11/22) -> process(95% 95% 96% 96% 94% 96% 96% 95% 94% 95% 95%) -> (6k/62k) -> write(21%)
0:44:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 645M 70% 418k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 788k/s ] 86G blocks: [ 36k 89% 5/s ]
cpus: 10.8 gc: 2% heap: 3.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.2G
read( 0%) -> (11/22) -> process(94% 94% 94% 95% 95% 94% 95% 95% 95% 94% 94%) -> (6.8k/62k) -> write(23%)
0:45:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 649M 70% 409k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 754k/s ] 86G blocks: [ 36k 90% 5/s ]
cpus: 10.3 gc: 2% heap: 3.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.2G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 89% 90% 89% 89% 90% 90% 89%) -> (6.3k/62k) -> write(21%)
0:45:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 653M 70% 425k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 781k/s ] 87G blocks: [ 36k 90% 5/s ]
cpus: 10.9 gc: 2% heap: 7.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 96% 95% 95% 96% 96% 95%) -> (6.6k/62k) -> write(23%)
0:45:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 657M 71% 408k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 767k/s ] 87G blocks: [ 36k 90% 5/s ]
cpus: 10.2 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(89% 89% 89% 89% 88% 89% 88% 90% 88% 88% 90%) -> (5.1k/62k) -> write(22%)
0:45:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 661M 71% 416k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 767k/s ] 88G blocks: [ 36k 90% 5/s ]
cpus: 10.4 gc: 2% heap: 2.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.3G
read( 0%) -> (11/22) -> process(91% 91% 92% 91% 90% 90% 91% 92% 91% 91% 91%) -> (11k/62k) -> write(22%)
0:45:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 666M 72% 409k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 753k/s ] 88G blocks: [ 36k 90% 5/s ]
cpus: 9.9 gc: 2% heap: 2.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(85% 87% 86% 88% 86% 86% 87% 87% 87% 87% 86%) -> (6.2k/62k) -> write(21%)
0:45:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 669M 72% 313k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 663k/s ] 88G blocks: [ 36k 90% 4/s ]
cpus: 10.9 gc: 2% heap: 2.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(96% 96% 96% 94% 96% 93% 95% 96% 96% 96% 93%) -> (4.5k/62k) -> write(19%)
0:46:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 673M 73% 407k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 752k/s ] 89G blocks: [ 36k 90% 5/s ]
cpus: 10.9 gc: 2% heap: 8.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 96% 95% 95% 95% 95%) -> (9.1k/62k) -> write(22%)
0:46:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 677M 73% 389k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 787k/s ] 89G blocks: [ 36k 91% 5/s ]
cpus: 9.9 gc: 2% heap: 7.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.4G
read( 0%) -> (11/22) -> process(86% 86% 86% 85% 85% 87% 86% 87% 86% 87% 86%) -> (6k/62k) -> write(22%)
0:46:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 681M 73% 393k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 752k/s ] 90G blocks: [ 36k 91% 5/s ]
cpus: 9.9 gc: 2% heap: 7.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.5G
read( 0%) -> (11/22) -> process(89% 87% 85% 88% 85% 87% 85% 81% 86% 85% 87%) -> (5.4k/62k) -> write(21%)
0:46:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 685M 74% 405k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 728k/s ] 90G blocks: [ 36k 91% 5/s ]
cpus: 9.7 gc: 2% heap: 6.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.5G
read( 0%) -> (11/22) -> process(84% 85% 85% 86% 83% 86% 85% 87% 84% 83% 86%) -> (5.9k/62k) -> write(20%)
0:46:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 689M 74% 430k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 775k/s ] 90G blocks: [ 36k 91% 5/s ]
cpus: 11 gc: 2% heap: 5.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.6G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 95% 95% 97% 96% 95%) -> (8.1k/62k) -> write(22%)
0:46:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 693M 75% 417k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 767k/s ] 91G blocks: [ 36k 91% 5/s ]
cpus: 10.9 gc: 2% heap: 4.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.6G
read( 0%) -> (11/22) -> process(95% 96% 96% 95% 94% 95% 94% 96% 96% 96% 96%) -> (5.1k/62k) -> write(22%)
0:47:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 697M 75% 390k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 710k/s ] 91G blocks: [ 36k 91% 5/s ]
cpus: 10.4 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(92% 89% 90% 91% 88% 90% 93% 90% 91% 90% 90%) -> (6.1k/62k) -> write(20%)
0:47:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 701M 76% 420k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 732k/s ] 92G blocks: [ 36k 91% 5/s ]
cpus: 10.8 gc: 2% heap: 4.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(94% 94% 95% 94% 95% 94% 94% 94% 93% 94% 94%) -> (5.6k/62k) -> write(21%)
0:47:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 705M 76% 419k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 724k/s ] 92G blocks: [ 36k 92% 5/s ]
cpus: 10.3 gc: 2% heap: 5.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.7G
read( 0%) -> (11/22) -> process(89% 90% 90% 90% 91% 90% 90% 90% 91% 91% 91%) -> (7.2k/62k) -> write(20%)
0:47:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 710M 77% 428k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 740k/s ] 92G blocks: [ 36k 92% 5/s ]
cpus: 10.9 gc: 2% heap: 3.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.8G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 94% 96% 94% 95% 95% 95% 96%) -> (6k/62k) -> write(21%)
0:47:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 714M 77% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 754k/s ] 93G blocks: [ 36k 92% 5/s ]
cpus: 10.8 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.8G
read( 0%) -> (11/22) -> process(94% 94% 93% 93% 94% 92% 94% 94% 93% 93% 93%) -> (4.6k/62k) -> write(22%)
0:47:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 718M 77% 416k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 747k/s ] 93G blocks: [ 37k 92% 6/s ]
cpus: 10.6 gc: 2% heap: 3.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(91% 94% 93% 93% 93% 93% 94% 93% 92% 93% 94%) -> (7.4k/62k) -> write(22%)
0:48:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 723M 78% 448k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 752k/s ] 94G blocks: [ 37k 92% 5/s ]
cpus: 10.8 gc: 2% heap: 8.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95%) -> (7.5k/62k) -> write(22%)
0:48:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 727M 78% 415k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 736k/s ] 94G blocks: [ 37k 92% 5/s ]
cpus: 10.3 gc: 2% heap: 8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 7.9G
read( 0%) -> (11/22) -> process(90% 90% 90% 90% 90% 89% 90% 90% 91% 91% 90%) -> (4.5k/62k) -> write(21%)
0:48:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 731M 79% 443k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 802k/s ] 95G blocks: [ 37k 92% 5/s ]
cpus: 11 gc: 2% heap: 6.9G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(96% 95% 96% 95% 96% 96% 96% 96% 96% 96% 96%) -> (4.3k/62k) -> write(24%)
0:48:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 736M 79% 439k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 755k/s ] 95G blocks: [ 37k 93% 6/s ]
cpus: 10.5 gc: 2% heap: 9.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(91% 92% 92% 91% 91% 91% 92% 91% 90% 93% 93%) -> (7k/62k) -> write(21%)
0:48:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 740M 80% 449k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 740k/s ] 95G blocks: [ 37k 93% 6/s ]
cpus: 10.9 gc: 2% heap: 7.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 96% 95% 95% 95% 95% 95% 96%) -> (7.9k/62k) -> write(21%)
0:48:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 745M 80% 448k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 775k/s ] 97G blocks: [ 37k 93% 6/s ]
cpus: 11 gc: 2% heap: 6.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 95%) -> (5.5k/62k) -> write(23%)
0:49:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 749M 81% 431k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 707k/s ] 97G blocks: [ 37k 93% 5/s ]
cpus: 10.4 gc: 2% heap: 8.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(91% 91% 90% 91% 91% 91% 91% 91% 90% 92% 87%) -> (4.5k/62k) -> write(20%)
0:49:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 753M 81% 453k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 760k/s ] 98G blocks: [ 37k 93% 6/s ]
cpus: 10.9 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 94% 95% 94% 95% 96%) -> (6.9k/62k) -> write(22%)
0:49:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 758M 82% 427k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 704k/s ] 98G blocks: [ 37k 93% 5/s ]
cpus: 10.3 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.1G
read( 0%) -> (11/22) -> process(90% 91% 90% 89% 88% 90% 91% 90% 90% 90% 89%) -> (7.3k/62k) -> write(20%)
0:49:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 762M 82% 439k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 737k/s ] 98G blocks: [ 37k 93% 5/s ]
cpus: 10.9 gc: 2% heap: 5.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(95% 96% 96% 94% 94% 96% 94% 96% 96% 96% 95%) -> (4.6k/62k) -> write(21%)
0:49:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 766M 83% 435k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 742k/s ] 99G blocks: [ 37k 94% 5/s ]
cpus: 10.9 gc: 2% heap: 3.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (6.9k/62k) -> write(22%)
0:49:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 771M 83% 408k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 721k/s ] 99G blocks: [ 37k 94% 5/s ]
cpus: 10.2 gc: 2% heap: 3.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.2G
read( 0%) -> (11/22) -> process(89% 87% 87% 90% 88% 90% 90% 89% 89% 89% 90%) -> (8.3k/62k) -> write(20%)
0:50:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 775M 84% 426k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 757k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 10.9 gc: 2% heap: 8.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(95% 95% 96% 94% 95% 96% 95% 95% 95% 95% 96%) -> (5.9k/62k) -> write(22%)
0:50:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 779M 84% 398k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 735k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 10.4 gc: 2% heap: 9.2G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(90% 91% 91% 90% 90% 89% 91% 90% 91% 91% 91%) -> (5k/62k) -> write(21%)
0:50:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 783M 84% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 745k/s ] 100G blocks: [ 37k 94% 5/s ]
cpus: 11 gc: 2% heap: 8.5G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.3G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96%) -> (5.7k/62k) -> write(21%)
0:50:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 787M 85% 431k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 735k/s ] 101G blocks: [ 37k 94% 6/s ]
cpus: 10.9 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(95% 96% 96% 95% 95% 96% 96% 96% 96% 96% 96%) -> (5.3k/62k) -> write(21%)
0:50:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 791M 85% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 671k/s ] 101G blocks: [ 38k 95% 5/s ]
cpus: 10.3 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(91% 91% 90% 91% 90% 90% 90% 90% 90% 90% 89%) -> (4.9k/62k) -> write(19%)
0:50:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 796M 86% 443k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 714k/s ] 102G blocks: [ 38k 95% 5/s ]
cpus: 10.9 gc: 2% heap: 6.6G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.4G
read( 0%) -> (11/22) -> process(95% 96% 93% 96% 95% 95% 96% 95% 95% 96% 95%) -> (6.9k/62k) -> write(21%)
0:51:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 800M 86% 410k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 697k/s ] 102G blocks: [ 38k 95% 5/s ]
cpus: 10.4 gc: 2% heap: 7.4G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(91% 90% 91% 92% 90% 91% 90% 90% 91% 91% 91%) -> (6.1k/62k) -> write(20%)
0:51:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 804M 87% 431k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 702k/s ] 102G blocks: [ 38k 95% 6/s ]
cpus: 11 gc: 2% heap: 6.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96%) -> (5.1k/62k) -> write(20%)
0:51:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 809M 87% 436k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 705k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.9 gc: 2% heap: 5.3G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.5G
read( 0%) -> (11/22) -> process(96% 95% 95% 95% 95% 96% 96% 95% 95% 95% 95%) -> (8.6k/62k) -> write(20%)
0:51:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 813M 88% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 682k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.4 gc: 2% heap: 6.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(91% 92% 92% 91% 91% 90% 91% 91% 91% 90% 91%) -> (4.6k/62k) -> write(19%)
0:51:48 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 817M 88% 418k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 698k/s ] 103G blocks: [ 38k 95% 5/s ]
cpus: 10.7 gc: 2% heap: 3.8G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(93% 94% 93% 94% 93% 94% 93% 93% 93% 93% 93%) -> (6.3k/62k) -> write(20%)
0:51:58 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 821M 89% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 646k/s ] 104G blocks: [ 38k 96% 5/s ]
cpus: 10.2 gc: 2% heap: 3.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.6G
read( 0%) -> (11/22) -> process(90% 90% 90% 89% 89% 88% 90% 89% 88% 90% 88%) -> (8.1k/62k) -> write(19%)
0:52:08 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 825M 89% 434k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 680k/s ] 104G blocks: [ 38k 96% 5/s ]
cpus: 10.9 gc: 2% heap: 2.7G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.7G
read( 0%) -> (11/22) -> process(96% 96% 94% 96% 95% 96% 96% 96% 96% 96% 96%) -> (5.4k/62k) -> write(19%)
0:52:18 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 830M 89% 427k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 688k/s ] 105G blocks: [ 38k 96% 5/s ]
cpus: 10.9 gc: 2% heap: 8.1G/32G direct: 558k postGC: 2.6G relInfo: 53M mpGeoms: 8.7G
read( 0%) -> (11/22) -> process(96% 96% 95% 96% 96% 96% 96% 96% 96% 95% 96%) -> (6.7k/62k) -> write(20%)
0:52:28 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 834M 90% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 640k/s ] 105G blocks: [ 38k 96% 5/s ]
cpus: 10 gc: 2% heap: 6.8G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(87% 88% 87% 87% 86% 87% 89% 87% 87% 86% 87%) -> (4.5k/62k) -> write(18%)
0:52:38 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 838M 90% 439k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 698k/s ] 105G blocks: [ 38k 96% 5/s ]
cpus: 10.9 gc: 2% heap: 5.4G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (6.9k/62k) -> write(19%)
0:52:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 842M 91% 417k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 603k/s ] 106G blocks: [ 38k 96% 5/s ]
cpus: 10.1 gc: 2% heap: 3.8G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(90% 87% 88% 88% 88% 89% 88% 89% 87% 87% 88%) -> (46k/62k) -> write(17%)
0:52:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 846M 91% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 695k/s ] 106G blocks: [ 38k 96% 5/s ]
cpus: 10.8 gc: 2% heap: 3.3G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.2G
read( 0%) -> (11/22) -> process(95% 94% 95% 95% 94% 93% 95% 95% 95% 94% 95%) -> (5k/62k) -> write(20%)
0:53:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 851M 92% 425k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 693k/s ] 106G blocks: [ 38k 97% 5/s ]
cpus: 10.9 gc: 2% heap: 9G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(96% 96% 96% 95% 96% 95% 96% 96% 96% 96% 97%) -> (6.8k/62k) -> write(20%)
0:53:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 855M 92% 438k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 696k/s ] 107G blocks: [ 38k 97% 5/s ]
cpus: 10.9 gc: 2% heap: 7.5G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 95% 96% 95% 96% 96% 96% 96%) -> (5.4k/62k) -> write(20%)
0:53:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 859M 93% 419k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 660k/s ] 107G blocks: [ 38k 97% 5/s ]
cpus: 9.9 gc: 2% heap: 6.6G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.3G
read( 0%) -> (11/22) -> process(89% 86% 86% 84% 89% 87% 88% 85% 86% 87% 87%) -> (6.8k/62k) -> write(18%)
0:53:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 864M 93% 437k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 673k/s ] 107G blocks: [ 39k 97% 5/s ]
cpus: 10.3 gc: 2% heap: 3.3G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (10/22) -> process(90% 91% 89% 91% 89% 90% 90% 90% 90% 90% 90%) -> (3.7k/62k) -> write(18%)
0:53:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 868M 94% 422k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 667k/s ] 108G blocks: [ 39k 97% 5/s ]
cpus: 10 gc: 2% heap: 3.2G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (11/22) -> process(87% 87% 88% 88% 87% 88% 87% 88% 86% 86% 87%) -> (7k/62k) -> write(19%)
0:53:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 872M 94% 428k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 701k/s ] 108G blocks: [ 39k 97% 5/s ]
cpus: 10.6 gc: 2% heap: 7.1G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.4G
read( 0%) -> (11/22) -> process(93% 92% 94% 93% 93% 93% 93% 93% 94% 93% 94%) -> (7.7k/62k) -> write(19%)
0:54:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 876M 95% 423k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 696k/s ] 109G blocks: [ 39k 97% 5/s ]
cpus: 10.9 gc: 2% heap: 4.7G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.5G
read( 0%) -> (11/22) -> process(96% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (7k/62k) -> write(20%)
0:54:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 880M 95% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 671k/s ] 109G blocks: [ 39k 98% 5/s ]
cpus: 10.3 gc: 2% heap: 5.9G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.5G
read( 0%) -> (11/22) -> process(91% 90% 91% 91% 90% 89% 91% 91% 91% 90% 91%) -> (4.6k/62k) -> write(19%)
0:54:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 884M 95% 395k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 653k/s ] 109G blocks: [ 39k 98% 5/s ]
cpus: 10.8 gc: 2% heap: 3.7G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.5G
read( 0%) -> (11/22) -> process(94% 95% 95% 94% 95% 95% 94% 95% 93% 94% 94%) -> (6.1k/62k) -> write(18%)
0:54:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 889M 96% 411k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 669k/s ] 110G blocks: [ 39k 98% 5/s ]
cpus: 10.7 gc: 2% heap: 8G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.6G
read( 0%) -> (11/22) -> process(93% 94% 93% 95% 93% 94% 94% 94% 95% 94% 94%) -> (5.8k/62k) -> write(19%)
0:54:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 893M 96% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 644k/s ] 110G blocks: [ 39k 98% 5/s ]
cpus: 10 gc: 2% heap: 7.1G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.6G
read( 0%) -> (11/22) -> process(86% 88% 88% 88% 88% 86% 86% 88% 88% 87% 88%) -> (6.3k/62k) -> write(18%)
0:54:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 897M 97% 425k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 658k/s ] 110G blocks: [ 39k 98% 6/s ]
cpus: 10.9 gc: 2% heap: 5.4G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.7G
read( 0%) -> (11/22) -> process(94% 96% 96% 95% 96% 93% 95% 95% 95% 96% 96%) -> (5.2k/62k) -> write(18%)
0:55:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 901M 97% 413k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 664k/s ] 111G blocks: [ 39k 98% 5/s ]
cpus: 10.5 gc: 2% heap: 9.2G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.7G
read( 0%) -> (11/22) -> process(93% 93% 91% 93% 92% 92% 93% 92% 89% 92% 93%) -> (5.9k/62k) -> write(19%)
0:55:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 905M 98% 389k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 637k/s ] 111G blocks: [ 39k 98% 5/s ]
cpus: 10.3 gc: 2% heap: 3.6G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.8G
read( 0%) -> (11/22) -> process(90% 89% 91% 90% 89% 90% 91% 91% 90% 91% 91%) -> (6.7k/62k) -> write(18%)
0:55:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 909M 98% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 677k/s ] 111G blocks: [ 39k 99% 5/s ]
cpus: 10.8 gc: 2% heap: 9G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.8G
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 95% 95% 94% 95% 95% 93% 96%) -> (4.9k/62k) -> write(19%)
0:55:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 913M 98% 367k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 590k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 9.9 gc: 2% heap: 7.6G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.9G
read( 0%) -> (11/22) -> process(83% 86% 86% 91% 87% 88% 87% 82% 86% 88% 85%) -> (5.5k/62k) -> write(17%)
0:55:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 917M 99% 412k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 660k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 10.8 gc: 2% heap: 6.2G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.9G
read( 0%) -> (11/22) -> process(95% 95% 94% 95% 95% 95% 95% 96% 96% 95% 95%) -> (7.6k/62k) -> write(18%)
0:55:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 921M 99% 421k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 647k/s ] 112G blocks: [ 39k 99% 5/s ]
cpus: 10.7 gc: 2% heap: 4G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 9.9G
read( 0%) -> (11/22) -> process(94% 93% 94% 93% 95% 94% 95% 96% 94% 94% 94%) -> (6.2k/62k) -> write(18%)
0:56:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 925M 100% 410k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 634k/s ] 113G blocks: [ 39k 99% 5/s ]
cpus: 10.1 gc: 2% heap: 4G/32G direct: 558k postGC: 3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 87% 90% 88% 88% 90% 90% 89% 89% 89% 89%) -> (7.2k/62k) -> write(18%)
0:56:14 INF [osm_pass2:process] - Finished ways: 927,681,304 (354k/s) in 43m40s cpu:7h31m36s gc:56s avg:10.3
0:56:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 206k/s ] rels: [ 29k 0% 2.9k/s ] features: [ 1.8B 314k/s ] 113G blocks: [ 39k 99% 3/s ]
cpus: 10.1 gc: 2% heap: 9.1G/32G direct: 558k postGC: 3.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(85% 82% 73% 87% 73% 84% 78% 89% 82% 81% 77%) -> (6.6k/62k) -> write( 9%)
0:56:22 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 11982, 3672 is not filled!
0:56:22 WAR [osm_pass2:process] - Error slicing feature at z13: Feature{layer='water', geom=Polygon, attrs={}}: 5989, 1833 is not filled!
0:56:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 109k 1% 8k/s ] features: [ 1.8B 27k/s ] 113G blocks: [ 39k 99% 0/s ]
cpus: 10.3 gc: 3% heap: 4.2G/32G direct: 558k postGC: 3.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 86% 84% 86% 88% 85% 84% 90% 85% 85% 85%) -> (5.6k/62k) -> write( 2%)
0:56:30 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13896, 4297 is not filled!
0:56:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 226k 2% 11k/s ] features: [ 1.8B 24k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.6 gc: 1% heap: 4.8G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 88% 87% 90% 81% 83% 85% 85% 86% 80% 85%) -> (4.8k/62k) -> write( 2%)
0:56:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 330k 3% 10k/s ] features: [ 1.8B 27k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.8 gc: 4% heap: 7.1G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(85% 84% 86% 92% 86% 83% 86% 88% 87% 91% 88%) -> (4.7k/62k) -> write( 2%)
0:56:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 386k 4% 5.5k/s ] features: [ 1.8B 22k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.9 gc: 1% heap: 5.4G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 91% 85% 89% 94% 88% 85% 92% 86% 90% 89%) -> (5.5k/62k) -> write( 2%)
0:57:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 464k 4% 7.7k/s ] features: [ 1.8B 27k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 1% heap: 3.7G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 92% 87% 90% 92% 90% 90% 89% 90% 92% 88%) -> (6.7k/62k) -> write( 2%)
0:57:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 518k 5% 5.4k/s ] features: [ 1.8B 30k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 1% heap: 5.7G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 95% 94% 96% 95% 95% 95% 95% 95% 94%) -> (5k/62k) -> write( 2%)
0:57:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 565k 5% 4.6k/s ] features: [ 1.8B 28k/s ] 113G blocks: [ 39k 99% 0/s ]
cpus: 10.7 gc: 2% heap: 5.3G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 96% 96% 95% 95% 95% 95% 95% 95% 94% 96%) -> (2.9k/62k) -> write( 2%)
0:57:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 611k 6% 4.5k/s ] features: [ 1.8B 27k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 1% heap: 4.9G/32G direct: 558k postGC: 3.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 93% 93% 92% 92% 93% 93% 92% 92% 90% 92%) -> (5k/62k) -> write( 2%)
0:57:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 667k 6% 5.5k/s ] features: [ 1.8B 36k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.6 gc: 1% heap: 9.2G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 83% 85% 85% 88% 82% 91% 85% 88% 87% 88%) -> (6.4k/62k) -> write( 2%)
0:57:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 727k 7% 6k/s ] features: [ 1.8B 32k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.6 gc: 1% heap: 6.7G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(84% 83% 86% 87% 89% 84% 90% 85% 86% 88% 85%) -> (5.4k/62k) -> write( 2%)
0:58:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 774k 7% 4.7k/s ] features: [ 1.8B 45k/s ] 113G blocks: [ 39k 99% <1/s ]
cpus: 9.8 gc: 1% heap: 4.7G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 83% 88% 88% 88% 92% 89% 92% 82% 89% 85%) -> (5.8k/62k) -> write( 2%)
0:58:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 839k 8% 6.5k/s ] features: [ 1.8B 34k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 1% heap: 3.5G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 88% 85% 92% 91% 91% 95% 89% 89% 94% 91%) -> (5.6k/62k) -> write( 3%)
0:58:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 902k 8% 6.3k/s ] features: [ 1.8B 33k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 1% heap: 4.2G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 89% 89% 92% 89% 91% 92% 87% 90% 94% 89%) -> (6k/62k) -> write( 2%)
0:58:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 978k 9% 7.5k/s ] features: [ 1.8B 40k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10 gc: 1% heap: 6.4G/32G direct: 558k postGC: 3.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 89% 91% 90% 90% 90% 91% 90% 92% 93% 90%) -> (6k/62k) -> write( 2%)
0:58:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1M 10% 8.5k/s ] features: [ 1.8B 38k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.4 gc: 1% heap: 7.9G/32G direct: 558k postGC: 3.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(94% 92% 95% 93% 94% 93% 93% 93% 94% 93% 94%) -> (4.7k/62k) -> write( 2%)
0:58:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.1M 11% 9.5k/s ] features: [ 1.8B 41k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 2% heap: 9.5G/32G direct: 558k postGC: 3.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 92% 91% 93% 91% 92% 92% 91% 93% 91% 91%) -> (5.7k/62k) -> write( 2%)
0:59:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.2M 12% 8.7k/s ] features: [ 1.8B 37k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 2% heap: 5.5G/32G direct: 558k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 93% 90% 91% 91% 90% 92% 90% 90% 90% 91%) -> (4.7k/62k) -> write( 2%)
0:59:09 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13944, 3268 is not filled!
0:59:09 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13988, 3238 is not filled!
0:59:10 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 11729, 4011 is not filled!
0:59:14 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13998, 3267 is not filled!
0:59:14 WAR [osm_pass2:process] - Error slicing feature at z13: Feature{layer='water', geom=Polygon, attrs={}}: 6999, 1634 is not filled!
0:59:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.3M 12% 9.2k/s ] features: [ 1.8B 75k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 1% heap: 8.9G/32G direct: 558k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 92% 92% 92% 90% 91% 93% 93% 92% 90% 92%) -> (6.9k/62k) -> write( 3%)
0:59:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.4M 13% 7.4k/s ] features: [ 1.8B 41k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10 gc: 1% heap: 3.8G/32G direct: 558k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(86% 88% 91% 90% 90% 90% 89% 91% 90% 92% 87%) -> (5.3k/62k) -> write( 2%)
0:59:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.4M 14% 8.2k/s ] features: [ 1.8B 591k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 1% heap: 7.6G/32G direct: 558k postGC: 3.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 90% 90% 89% 89% 90% 91% 92% 90% 93% 90%) -> (6.1k/62k) -> write( 8%)
0:59:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.5M 15% 8.4k/s ] features: [ 1.8B 367k/s ] 115G blocks: [ 39k 99% <1/s ]
cpus: 10.2 gc: 1% heap: 6.2G/32G direct: 558k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 93% 89% 89% 91% 92% 91% 90% 88% 92% 91%) -> (6.7k/62k) -> write( 6%)
0:59:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.6M 16% 9.6k/s ] features: [ 1.8B 59k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.1 gc: 1% heap: 9.1G/32G direct: 558k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 93% 92% 89% 91% 91% 90% 92% 94% 91% 90%) -> (6.3k/62k) -> write( 3%)
1:00:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.7M 17% 10k/s ] features: [ 1.8B 36k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.7 gc: 1% heap: 9.6G/32G direct: 558k postGC: 3.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 96% 96% 96% 96% 96% 95% 96% 94% 96%) -> (5.3k/62k) -> write( 2%)
1:00:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.8M 17% 9.4k/s ] features: [ 1.8B 42k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 4.8G/32G direct: 558k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 96% 95% 95% 94% 96% 96% 95% 95% 96%) -> (5k/62k) -> write( 2%)
1:00:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 1.9M 18% 9.6k/s ] features: [ 1.8B 34k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 9.3 gc: 7% heap: 4.8G/32G direct: 558k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(83% 83% 85% 80% 82% 82% 81% 83% 83% 84% 84%) -> (5.1k/62k) -> write( 2%)
1:00:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2M 19% 11k/s ] features: [ 1.8B 44k/s ] 116G blocks: [ 39k 99% <1/s ]
cpus: 9.2 gc: 1% heap: 11G/32G direct: 558k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(82% 82% 80% 77% 81% 85% 87% 85% 83% 88% 82%) -> (4.2k/62k) -> write( 2%)
1:00:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.2M 21% 12k/s ] features: [ 1.8B 56k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9 gc: 1% heap: 6.7G/32G direct: 558k postGC: 3.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(81% 80% 83% 76% 82% 84% 77% 84% 78% 81% 84%) -> (5.1k/62k) -> write( 2%)
1:00:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.3M 22% 10k/s ] features: [ 1.8B 35k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 8.9 gc: 1% heap: 7.9G/32G direct: 558k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(81% 77% 78% 79% 78% 83% 80% 80% 81% 86% 77%) -> (5.8k/62k) -> write( 2%)
1:01:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.4M 23% 14k/s ] features: [ 1.8B 51k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10 gc: 1% heap: 7.6G/32G direct: 558k postGC: 3.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 88% 90% 89% 89% 91% 87% 92% 89% 89% 92%) -> (5.5k/62k) -> write( 2%)
1:01:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.5M 24% 13k/s ] features: [ 1.8B 40k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10 gc: 1% heap: 7.1G/32G direct: 558k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 92% 90% 89% 89% 89% 92% 90% 91% 90% 89%) -> (5.3k/62k) -> write( 2%)
1:01:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.7M 25% 12k/s ] features: [ 1.8B 40k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.9 gc: 2% heap: 5.3G/32G direct: 558k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 88% 86% 90% 88% 87% 93% 87% 89% 91% 90%) -> (5.6k/62k) -> write( 2%)
1:01:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.8M 26% 10k/s ] features: [ 1.8B 38k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.5 gc: 1% heap: 3.9G/32G direct: 558k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 82% 82% 85% 85% 88% 94% 83% 87% 80% 88%) -> (3k/62k) -> write( 2%)
1:01:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 2.9M 27% 11k/s ] features: [ 1.8B 34k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.6 gc: 1% heap: 10G/32G direct: 558k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(86% 85% 87% 87% 86% 87% 87% 89% 89% 86% 86%) -> (6.4k/62k) -> write( 2%)
1:01:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3M 28% 11k/s ] features: [ 1.8B 43k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.7 gc: 1% heap: 10G/32G direct: 558k postGC: 3.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 88% 82% 90% 89% 92% 85% 87% 86% 85% 84%) -> (6k/62k) -> write( 2%)
1:02:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.1M 30% 13k/s ] features: [ 1.8B 41k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.4 gc: 2% heap: 4.4G/32G direct: 558k postGC: 4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(92% 94% 93% 94% 92% 93% 95% 93% 92% 93% 92%) -> (6.1k/62k) -> write( 2%)
1:02:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.3M 31% 14k/s ] features: [ 1.8B 39k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 7.8G/32G direct: 558k postGC: 4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 95% 95% 94% 97% 95% 95% 95% 94% 95%) -> (5.1k/62k) -> write( 2%)
1:02:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.4M 33% 14k/s ] features: [ 1.8B 43k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 10.6 gc: 2% heap: 4.8G/32G direct: 558k postGC: 4.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 96% 95% 95% 97% 96% 95% 96% 95% 96%) -> (5.7k/62k) -> write( 2%)
1:02:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.6M 34% 12k/s ] features: [ 1.8B 34k/s ] 116G blocks: [ 40k 99% <1/s ]
cpus: 9.1 gc: 9% heap: 4.1G/32G direct: 558k postGC: 4.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(79% 79% 79% 82% 80% 82% 78% 79% 84% 83% 83%) -> (5.2k/62k) -> write( 2%)
1:02:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.7M 35% 14k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 99% <1/s ]
cpus: 10 gc: 4% heap: 4.7G/32G direct: 558k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(88% 89% 90% 90% 90% 92% 89% 90% 92% 92% 89%) -> (5k/62k) -> write( 3%)
1:02:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 3.8M 36% 11k/s ] features: [ 1.8B 32k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 5% heap: 10G/32G direct: 558k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(91% 92% 92% 92% 91% 91% 93% 91% 92% 92% 91%) -> (6k/62k) -> write( 2%)
1:03:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4M 37% 12k/s ] features: [ 1.8B 33k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.8 gc: 2% heap: 9G/32G direct: 558k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 89% 90% 91% 88% 87% 89% 87% 89% 91% 87%) -> (5.2k/62k) -> write( 2%)
1:03:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.1M 39% 15k/s ] features: [ 1.8B 35k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.6 gc: 3% heap: 6.1G/32G direct: 558k postGC: 4.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(83% 87% 86% 81% 86% 86% 90% 86% 88% 89% 83%) -> (5.2k/62k) -> write( 2%)
1:03:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.3M 40% 15k/s ] features: [ 1.8B 38k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.4 gc: 7% heap: 6.1G/32G direct: 558k postGC: 4.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(84% 84% 83% 83% 85% 84% 83% 85% 85% 81% 83%) -> (6.6k/62k) -> write( 2%)
1:03:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.4M 42% 15k/s ] features: [ 1.8B 35k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10 gc: 4% heap: 12G/32G direct: 558k postGC: 4.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 92% 91% 89% 89% 88% 90% 88% 89% 88% 90%) -> (4.5k/62k) -> write( 2%)
1:03:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.6M 43% 15k/s ] features: [ 1.8B 39k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.2 gc: 2% heap: 5.8G/32G direct: 558k postGC: 4.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 94% 91% 91% 89% 92% 93% 91% 92% 92% 92%) -> (6.8k/62k) -> write( 2%)
1:03:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.7M 44% 14k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.1 gc: 2% heap: 6.1G/32G direct: 558k postGC: 4.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(90% 89% 91% 90% 90% 90% 89% 89% 96% 89% 90%) -> (6.3k/62k) -> write( 2%)
1:04:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 4.9M 46% 14k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 1% heap: 8.8G/32G direct: 558k postGC: 4.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 91% 93% 92% 93% 93% 92% 91% 94% 92% 91%) -> (5.9k/62k) -> write( 2%)
1:04:16 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 15538, 3743 is not filled!
1:04:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5M 47% 14k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.3 gc: 1% heap: 4.5G/32G direct: 558k postGC: 4.4G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 92% 91% 92% 92% 90% 93% 91% 93% 92% 94%) -> (5.3k/62k) -> write( 2%)
1:04:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.2M 49% 15k/s ] features: [ 1.8B 34k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.2 gc: 1% heap: 7.8G/32G direct: 558k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 92% 91% 91% 92% 92% 91% 92% 91% 93% 92%) -> (4.9k/62k) -> write( 2%)
1:04:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.3M 50% 17k/s ] features: [ 1.8B 38k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 6.3G/32G direct: 558k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 97% 96% 97% 96% 96% 96% 97% 97% 96%) -> (6.2k/62k) -> write( 2%)
1:04:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.5M 52% 19k/s ] features: [ 1.8B 37k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 5.3G/32G direct: 558k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 96% 96% 97% 97% 96% 97% 97% 97% 95%) -> (5.1k/62k) -> write( 2%)
1:04:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.7M 54% 17k/s ] features: [ 1.8B 39k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.1 gc: 1% heap: 9.1G/32G direct: 558k postGC: 4.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(89% 91% 91% 89% 91% 91% 90% 94% 90% 91% 92%) -> (6k/62k) -> write( 2%)
1:05:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 5.9M 55% 15k/s ] features: [ 1.8B 41k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.5 gc: 1% heap: 11G/32G direct: 558k postGC: 4.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 84% 84% 85% 89% 87% 85% 85% 82% 83% 85%) -> (5.5k/62k) -> write( 2%)
1:05:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6M 57% 16k/s ] features: [ 1.8B 41k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.6 gc: 1% heap: 6.5G/32G direct: 558k postGC: 4.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(87% 87% 87% 85% 87% 88% 88% 86% 83% 87% 85%) -> (5.1k/62k) -> write( 2%)
1:05:29 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.2M 58% 13k/s ] features: [ 1.8B 39k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 9.7 gc: 1% heap: 8.8G/32G direct: 558k postGC: 4.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(85% 88% 87% 89% 87% 88% 88% 88% 86% 84% 89%) -> (5.8k/62k) -> write( 2%)
1:05:39 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.4M 60% 18k/s ] features: [ 1.8B 44k/s ] 118G blocks: [ 40k 100% <1/s ]
cpus: 10.5 gc: 1% heap: 7.2G/32G direct: 558k postGC: 4.7G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(93% 94% 94% 95% 95% 95% 95% 95% 94% 92% 94%) -> (6.2k/62k) -> write( 2%)
1:05:49 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.6M 62% 22k/s ] features: [ 1.8B 44k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 8.1G/32G direct: 558k postGC: 4.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (4.9k/62k) -> write( 3%)
1:05:59 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.8M 64% 19k/s ] features: [ 1.8B 41k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 10G/32G direct: 558k postGC: 4.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 97% 95% 97% 97% 96% 96% 97% 96% 97%) -> (6.1k/62k) -> write( 2%)
1:06:09 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 6.9M 65% 15k/s ] features: [ 1.8B 35k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 5.5G/32G direct: 558k postGC: 4.8G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98%) -> (6.7k/62k) -> write( 2%)
1:06:19 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.1M 66% 15k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 9.9G/32G direct: 558k postGC: 4.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98%) -> (4.6k/62k) -> write( 2%)
1:06:30 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.2M 68% 11k/s ] features: [ 1.8B 32k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 11G/32G direct: 558k postGC: 4.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 95% 94% 97% 96% 94% 95% 95% 95% 94% 97%) -> (6.1k/62k) -> write( 2%)
1:06:40 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.3M 69% 12k/s ] features: [ 1.8B 35k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 5.6G/32G direct: 558k postGC: 4.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 94% 97% 94% 96% 95% 96% 95% 96% 95%) -> (5.3k/62k) -> write( 2%)
1:06:50 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.5M 70% 14k/s ] features: [ 1.8B 36k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 7.9G/32G direct: 558k postGC: 4.9G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 97% 95% 96% 93% 96% 97% 93% 96% 97% 96%) -> (5.5k/62k) -> write( 2%)
1:07:00 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.6M 71% 15k/s ] features: [ 1.8B 40k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 11G/32G direct: 558k postGC: 5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 95% 94% 95% 96% 93% 91% 96% 95% 97% 94%) -> (5.9k/62k) -> write( 2%)
1:07:10 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.8M 73% 12k/s ] features: [ 1.8B 34k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 7.6G/32G direct: 558k postGC: 5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 97% 96% 96% 95% 96% 97% 97% 96% 93%) -> (6.1k/62k) -> write( 2%)
1:07:20 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 7.9M 74% 19k/s ] features: [ 1.8B 41k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 11G/32G direct: 558k postGC: 5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 96% 97% 96% 97% 96% 96% 97% 97% 96% 96%) -> (5.4k/62k) -> write( 2%)
1:07:30 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.2M 76% 20k/s ] features: [ 1.8B 42k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 7.5G/32G direct: 558k postGC: 5.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 95% 95% 93% 95% 96% 96% 96% 95% 97% 96%) -> (6.6k/62k) -> write( 2%)
1:07:40 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.4M 78% 21k/s ] features: [ 1.8B 42k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 12G/32G direct: 558k postGC: 5.1G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 96% 96% 97% 96% 96% 97% 97% 96% 96% 96%) -> (4.4k/62k) -> write( 2%)
1:07:50 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.6M 80% 23k/s ] features: [ 1.8B 52k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 11G/32G direct: 558k postGC: 5.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 96% 96% 97% 96% 95% 96% 96%) -> (6k/62k) -> write( 3%)
1:08:00 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 8.8M 82% 21k/s ] features: [ 1.8B 45k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.6 gc: 1% heap: 8.1G/32G direct: 558k postGC: 5.2G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(95% 96% 95% 95% 95% 95% 95% 96% 94% 96% 95%) -> (5.9k/62k) -> write( 2%)
1:08:03 WAR [osm_pass2:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 13943, 3213 is not filled!
1:08:03 WAR [osm_pass2:process] - Error slicing feature at z13: Feature{layer='water', geom=Polygon, attrs={}}: 6971, 1607 is not filled!
1:08:10 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9M 84% 21k/s ] features: [ 1.8B 47k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 7.5G/32G direct: 558k postGC: 5.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 97% 97% 96% 95% 96% 96% 96% 96% 93% 96%) -> (6.5k/62k) -> write( 2%)
1:08:20 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.3M 87% 22k/s ] features: [ 1.8B 45k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 7.3G/32G direct: 558k postGC: 5.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 97% 96% 96% 96% 96% 97% 96% 97% 96% 97%) -> (4.6k/62k) -> write( 3%)
1:08:30 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.5M 89% 22k/s ] features: [ 1.8B 42k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.7 gc: 1% heap: 6.7G/32G direct: 558k postGC: 5.3G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(96% 96% 96% 96% 97% 96% 96% 96% 96% 96% 97%) -> (5.9k/62k) -> write( 2%)
1:08:40 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.7M 90% 19k/s ] features: [ 1.8B 41k/s ] 119G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 2% heap: 8.8G/32G direct: 558k postGC: 5.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (4.9k/62k) -> write( 2%)
1:08:50 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 9.9M 92% 19k/s ] features: [ 1.8B 44k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 2% heap: 10G/32G direct: 558k postGC: 5.5G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (5.3k/62k) -> write( 3%)
1:09:00 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 94% 20k/s ] features: [ 1.8B 41k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 9G/32G direct: 558k postGC: 5.6G relInfo: 53M mpGeoms: 10G
read( 0%) -> (11/22) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (6.4k/62k) -> write( 2%)
1:09:10 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 96% 17k/s ] features: [ 1.8B 39k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 7.1G/32G direct: 558k postGC: 5.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (6/22) -> process(97% 98% 96% 97% 97% 97% 97% 97% 97% 97% 97%) -> (5.3k/62k) -> write( 2%)
1:09:20 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 98% 19k/s ] features: [ 1.8B 43k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.8 gc: 1% heap: 11G/32G direct: 558k postGC: 5.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (2/22) -> process(97% 98% 97% 97% 97% 98% 97% 97% 97% 98% 97%) -> (5k/62k) -> write( 2%)
1:09:30 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 99% 18k/s ] features: [ 1.8B 46k/s ] 121G blocks: [ 40k 100% <1/s ]
cpus: 10.9 gc: 1% heap: 11G/32G direct: 558k postGC: 5.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (0/22) -> process(98% 98% 98% 99% 99% 98% 98% 99% 99% 99% 98%) -> (5.9k/62k) -> write( 3%)
1:09:34 INF [osm_pass2:process] - Finished relations: 10,752,655 (13k/s) in 13m20s cpu:2h16m21s gc:13s avg:10.2
1:09:34 INF [osm_pass2] - nodes: [ 8.2B 100% 0/s ] 85G ways: [ 927M 100% 0/s ] rels: [ 10M 100% 17k/s ] features: [ 1.8B 49k/s ] 119G blocks: [ 40k 100% 1/s ]
cpus: 10.8 gc: 0% heap: 11G/32G direct: 8.1k postGC: 5.6G relInfo: 53M mpGeoms: 10G
read( -%) -> (0/22) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
1:09:34 DEB [osm_pass2] - Processed 40,252 blocks:
1:09:34 DEB [osm_pass2] - nodes: 8,274,330,803 (25M/s) in 5m19s cpu:58m7s gc:5s avg:10.9
1:09:34 DEB [osm_pass2] - ways: 927,681,304 (354k/s) in 43m40s cpu:7h31m36s gc:56s avg:10.3
1:09:34 DEB [osm_pass2] - relations: 10,752,655 (13k/s) in 13m20s cpu:2h16m21s gc:13s avg:10.2
1:09:34 INF [osm_pass2] - Finished in 1h2m19s cpu:10h46m4s gc:1m14s avg:10.4
1:09:34 INF [osm_pass2] - read 1x(0% 3s sys:1s wait:1h1m40s done:33s)
1:09:34 INF [osm_pass2] - process 11x(91% 56m49s sys:28s block:3s)
1:09:34 INF [osm_pass2] - write 1x(15% 9m3s sys:2m10s wait:53m6s)
1:09:46 INF [ocean] -
1:09:46 INF [ocean] - Starting...
1:09:57 INF [ocean] - read: [ 533 4% 53/s ] write: [ 2.6M 261k/s ] 121G
cpus: 9.6 gc: 15% heap: 5.5G/32G direct: 51M postGC: 1.5G
-> (0/3) -> read(49%) -> (1k/1k) -> process(68% 68% 69% 63% 66% 67% 69% 69% 65% 67% 69%) -> (4.4k/62k) -> write( 4%)
1:10:07 INF [ocean] - read: [ 1.1k 8% 59/s ] write: [ 5.9M 336k/s ] 121G
cpus: 11.2 gc: 6% heap: 2.1G/32G direct: 51M postGC: 2.1G
-> (0/3) -> read(13%) -> (1k/1k) -> process(93% 93% 93% 93% 94% 94% 92% 93% 93% 93% 93%) -> (6.2k/62k) -> write( 5%)
1:10:17 INF [ocean] - read: [ 1.8k 13% 72/s ] write: [ 10M 419k/s ] 121G
cpus: 11.1 gc: 6% heap: 2.6G/32G direct: 51M postGC: 2.6G
-> (0/3) -> read(19%) -> (1k/1k) -> process(93% 92% 90% 93% 93% 92% 92% 91% 91% 93% 93%) -> (7.4k/62k) -> write( 7%)
1:10:27 INF [ocean] - read: [ 2.2k 16% 40/s ] write: [ 12M 259k/s ] 121G
cpus: 11 gc: 5% heap: 7.4G/32G direct: 51M postGC: 3G
-> (0/3) -> read(10%) -> (1k/1k) -> process(94% 93% 95% 95% 95% 94% 94% 94% 95% 95% 95%) -> (6.2k/62k) -> write( 4%)
1:10:37 INF [ocean] - read: [ 2.8k 20% 57/s ] write: [ 16M 369k/s ] 121G
cpus: 11.1 gc: 6% heap: 7.3G/32G direct: 51M postGC: 3.5G
-> (0/3) -> read(13%) -> (1k/1k) -> process(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93%) -> (6.1k/62k) -> write( 6%)
1:10:47 INF [ocean] - read: [ 3.3k 23% 48/s ] write: [ 19M 286k/s ] 121G
cpus: 11 gc: 5% heap: 6.6G/32G direct: 51M postGC: 3.7G
-> (0/3) -> read(10%) -> (1k/1k) -> process(94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94%) -> (6k/62k) -> write( 5%)
1:10:57 INF [ocean] - read: [ 3.8k 26% 50/s ] write: [ 22M 317k/s ] 122G
cpus: 11 gc: 5% heap: 5.9G/32G direct: 51M postGC: 3.9G
-> (0/3) -> read(10%) -> (1k/1k) -> process(94% 94% 94% 95% 95% 94% 94% 94% 95% 95% 94%) -> (7k/62k) -> write( 6%)
1:10:57 WAR [ocean:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 14058, 3292 is not filled!
1:11:05 WAR [ocean:process] - Error slicing feature at z14: Feature{layer='water', geom=Polygon, attrs={}}: 2140, 5036 is not filled!
1:11:07 INF [ocean] - read: [ 4.3k 30% 55/s ] write: [ 25M 313k/s ] 122G
cpus: 11.1 gc: 5% heap: 10G/32G direct: 51M postGC: 4.2G
-> (0/3) -> read(12%) -> (1k/1k) -> process(94% 94% 94% 95% 95% 94% 95% 94% 95% 95% 94%) -> (7.1k/62k) -> write( 5%)
1:11:17 INF [ocean] - read: [ 5k 35% 68/s ] write: [ 30M 437k/s ] 122G
cpus: 11.1 gc: 6% heap: 8.5G/32G direct: 51M postGC: 4.3G
-> (0/3) -> read(13%) -> (1k/1k) -> process(94% 94% 94% 93% 94% 93% 93% 94% 94% 94% 93%) -> (5.5k/62k) -> write( 7%)
1:11:27 INF [ocean] - read: [ 5.6k 39% 55/s ] write: [ 33M 369k/s ] 122G
cpus: 11 gc: 6% heap: 9.5G/32G direct: 51M postGC: 4.4G
-> (0/3) -> read(11%) -> (1k/1k) -> process(92% 93% 93% 92% 93% 93% 93% 93% 93% 92% 93%) -> (5.1k/62k) -> write( 6%)
1:11:37 INF [ocean] - read: [ 6.3k 44% 68/s ] write: [ 37M 399k/s ] 122G
cpus: 11 gc: 5% heap: 13G/32G direct: 51M postGC: 4.2G
-> (0/3) -> read( 0%) -> (1k/1k) -> process(95% 94% 94% 94% 95% 95% 95% 95% 95% 95% 95%) -> (3.7k/62k) -> write( 6%)
1:11:47 INF [ocean] - read: [ 9.7k 67% 338/s ] write: [ 113M 7.5M/s ] 126G
cpus: 9.6 gc: 2% heap: 6.3G/32G direct: 51M postGC: 4G
-> (0/3) -> read( 1%) -> (1k/1k) -> process(80% 76% 77% 75% 75% 76% 90% 76% 77% 75% 76%) -> (58k/62k) -> write(84%)
1:11:57 INF [ocean] - read: [ 13k 96% 416/s ] write: [ 208M 9.5M/s ] 129G
cpus: 7.9 gc: 0% heap: 9.4G/32G direct: 51M postGC: 4G
-> (0/3) -> read( -%) -> (602/1k) -> process(62% 62% 62% 62% 62% 63% 62% 63% 62% 62% 63%) -> (57k/62k) -> write(99%)
1:11:58 INF [ocean] - read: [ 14k 100% 405/s ] write: [ 222M 9.3M/s ] 128G
cpus: 7.9 gc: 0% heap: 13G/32G direct: 51M postGC: 4G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
1:11:58 INF [ocean] - Finished in 2m13s cpu:23m15s gc:7s avg:10.5
1:11:58 INF [ocean] - read 1x(12% 16s wait:1m48s done:3s)
1:11:58 INF [ocean] - process 11x(87% 1m56s wait:7s)
1:11:58 INF [ocean] - write 1x(19% 26s sys:8s wait:1m45s)
1:11:58 INF - Deleting node.db to make room for output file
1:11:58 INF [sort] -
1:11:58 INF [sort] - Starting...
1:11:58 INF [sort] - Grouped 122 chunks into 119
1:12:08 INF [sort] - chunks: [ 0 / 119 0% ] 129G
cpus: 11.1 gc: 17% heap: 9.9G/32G direct: 51M postGC: 12G
-> (114/125) -> worker(37% 25% 43% 48% 50%)
1:12:20 INF [sort] - chunks: [ 5 / 119 4% ] 130G
cpus: 9.6 gc: 16% heap: 18G/32G direct: 51M postGC: 17G
-> (109/125) -> worker(31% 32% 42% 50% 41%)
1:12:30 INF [sort] - chunks: [ 10 / 119 8% ] 128G
cpus: 5.7 gc: 12% heap: 9.8G/32G direct: 51M postGC: 9.9G
-> (104/125) -> worker(23% 32% 29% 28% 16%)
1:12:40 INF [sort] - chunks: [ 15 / 119 13% ] 128G
cpus: 9.9 gc: 9% heap: 14G/32G direct: 51M postGC: 14G
-> (99/125) -> worker(53% 42% 68% 57% 31%)
1:12:52 INF [sort] - chunks: [ 16 / 119 13% ] 132G
cpus: 9.5 gc: 11% heap: 10G/32G direct: 51M postGC: 10G
-> (98/125) -> worker(60% 52% 54% 57% 37%)
1:13:04 INF [sort] - chunks: [ 23 / 119 19% ] 130G
cpus: 10.6 gc: 13% heap: 11G/32G direct: 51M postGC: 18G
-> (91/125) -> worker(31% 38% 47% 43% 55%)
1:13:14 INF [sort] - chunks: [ 27 / 119 23% ] 128G
cpus: 8 gc: 21% heap: 23G/32G direct: 51M postGC: 22G
-> (87/125) -> worker(28% 41% 28% 48% 26%)
1:13:24 INF [sort] - chunks: [ 32 / 119 27% ] 128G
cpus: 10.3 gc: 5% heap: 13G/32G direct: 51M postGC: 13G
-> (82/125) -> worker(39% 30% 43% 60% 59%)
1:13:35 INF [sort] - chunks: [ 35 / 119 29% ] 130G
cpus: 10.1 gc: 13% heap: 20G/32G direct: 51M postGC: 20G
-> (79/125) -> worker(58% 34% 42% 59% 51%)
1:13:46 INF [sort] - chunks: [ 39 / 119 33% ] 128G
cpus: 7.2 gc: 36% heap: 8.5G/32G direct: 51M postGC: 8.5G
-> (75/125) -> worker(16% 9% 14% 14% 55%)
1:13:56 INF [sort] - chunks: [ 44 / 119 37% ] 128G
cpus: 9.1 gc: 10% heap: 4.9G/32G direct: 18M postGC: 5G
-> (70/125) -> worker(40% 47% 47% 69% 32%)
1:14:06 INF [sort] - chunks: [ 45 / 119 38% ] 128G
cpus: 9.7 gc: 7% heap: 10G/32G direct: 18M postGC: 9.4G
-> (69/125) -> worker(50% 36% 37% 53% 32%)
1:14:16 INF [sort] - chunks: [ 50 / 119 42% ] 129G
cpus: 9.3 gc: 20% heap: 21G/32G direct: 18M postGC: 20G
-> (64/125) -> worker(51% 41% 37% 44% 43%)
1:14:26 INF [sort] - chunks: [ 52 / 119 44% ] 129G
cpus: 10 gc: 2% heap: 12G/32G direct: 18M postGC: 11G
-> (59/125) -> worker(36% 31% 60% 56% 58%)
1:14:37 INF [sort] - chunks: [ 56 / 119 47% ] 129G
cpus: 9.4 gc: 18% heap: 20G/32G direct: 18M postGC: 20G
-> (58/125) -> worker(44% 36% 47% 38% 51%)
1:14:47 INF [sort] - chunks: [ 61 / 119 51% ] 128G
cpus: 8 gc: 16% heap: 10G/32G direct: 18M postGC: 9.9G
-> (53/125) -> worker(39% 22% 40% 38% 40%)
1:14:58 INF [sort] - chunks: [ 63 / 119 53% ] 132G
cpus: 8.4 gc: 6% heap: 12G/32G direct: 18M postGC: 12G
-> (51/125) -> worker(16% 58% 45% 35% 40%)
1:15:08 INF [sort] - chunks: [ 67 / 119 56% ] 129G
cpus: 9.9 gc: 14% heap: 10G/32G direct: 18M postGC: 21G
-> (47/125) -> worker(29% 46% 35% 47% 51%)
1:15:19 INF [sort] - chunks: [ 71 / 119 60% ] 130G
cpus: 8.2 gc: 10% heap: 16G/32G direct: 18M postGC: 16G
-> (43/125) -> worker(41% 25% 23% 30% 26%)
1:15:29 INF [sort] - chunks: [ 75 / 119 63% ] 128G
cpus: 6.2 gc: 11% heap: 24G/32G direct: 18M postGC: 23G
-> (39/125) -> worker(27% 45% 38% 24% 11%)
1:15:39 INF [sort] - chunks: [ 80 / 119 67% ] 128G
cpus: 8.3 gc: 15% heap: 31G/32G direct: 18M postGC: 31G
-> (34/125) -> worker(53% 44% 50% 33% 34%)
1:15:49 INF [sort] - chunks: [ 81 / 119 68% ] 128G
cpus: 10.7 gc: 17% heap: 9.3G/32G direct: 18M postGC: 8.4G
-> (33/125) -> worker(24% 48% 42% 39% 24%)
1:15:59 INF [sort] - chunks: [ 86 / 119 72% ] 128G
cpus: 8.4 gc: 18% heap: 18G/32G direct: 18M postGC: 18G
-> (28/125) -> worker(40% 43% 31% 40% 38%)
1:16:11 INF [sort] - chunks: [ 87 / 119 73% ] 131G
cpus: 11.8 gc: 3% heap: 19G/32G direct: 18M postGC: 19G
-> (27/125) -> worker(52% 43% 54% 31% 34%)
1:16:21 INF [sort] - chunks: [ 91 / 119 76% ] 128G
cpus: 3.4 gc: 12% heap: 26G/32G direct: 18M postGC: 26G
-> (23/125) -> worker(19% 20% 20% 21% 28%)
1:16:31 INF [sort] - chunks: [ 96 / 119 81% ] 128G
cpus: 10 gc: 12% heap: 31G/32G direct: 18M postGC: 31G
-> (18/125) -> worker(54% 51% 43% 39% 64%)
1:16:41 INF [sort] - chunks: [ 98 / 119 82% ] 128G
cpus: 8 gc: 25% heap: 11G/32G direct: 18M postGC: 11G
-> (16/125) -> worker(24% 17% 35% 32% 17%)
1:16:52 INF [sort] - chunks: [ 102 / 119 86% ] 129G
cpus: 8 gc: 5% heap: 13G/32G direct: 18M postGC: 13G
-> (12/125) -> worker(36% 28% 41% 26% 48%)
1:17:02 INF [sort] - chunks: [ 105 / 119 88% ] 131G
cpus: 10.4 gc: 11% heap: 20G/32G direct: 18M postGC: 18G
-> (9/125) -> worker(57% 41% 53% 43% 61%)
1:17:12 INF [sort] - chunks: [ 109 / 119 92% ] 128G
cpus: 4.1 gc: 14% heap: 9.5G/32G direct: 18M postGC: 8.4G
-> (5/125) -> worker(24% 11% 21% 12% 32%)
1:17:23 INF [sort] - chunks: [ 114 / 119 96% ] 128G
cpus: 9.7 gc: 15% heap: 16G/32G direct: 18M postGC: 16G
-> (0/125) -> worker(34% 47% 33% 52% 55%)
1:17:32 INF [sort] - chunks: [ 119 / 119 100% ] 128G
cpus: 8.1 gc: 7% heap: 9.6G/32G direct: 18M postGC: 9.2G
-> (0/125) -> worker( -% -% -% -% -%)
1:17:32 INF [sort] - Finished in 5m34s cpu:48m36s gc:44s avg:8.7
1:17:32 INF [sort] - worker 5x(39% 2m9s sys:20s wait:58s done:3s)
1:17:32 INF - read:629s write:284s sort:740s
1:17:32 INF [archive] -
1:17:32 INF [archive] - Starting...
1:17:32 DEB [archive:write] - Execute mbtiles: create table metadata (name text, value text);
1:17:32 DEB [archive:write] - Execute mbtiles: create unique index name on metadata (name);
1:17:32 DEB [archive:write] - Execute mbtiles: create table tiles_shallow (
zoom_level integer,
tile_column integer,
tile_row integer,
tile_data_id integer
, primary key(zoom_level,tile_column,tile_row)
) without rowid
1:17:32 DEB [archive:write] - Execute mbtiles: create table tiles_data (
tile_data_id integer primary key,
tile_data blob
)
1:17:32 DEB [archive:write] - Execute mbtiles: create view tiles AS
select
tiles_shallow.zoom_level as zoom_level,
tiles_shallow.tile_column as tile_column,
tiles_shallow.tile_row as tile_row,
tiles_data.tile_data as tile_data
from tiles_shallow
join tiles_data on tiles_shallow.tile_data_id = tiles_data.tile_data_id
1:17:33 DEB [archive:write] - Set mbtiles metadata: format=pbf
1:17:33 DEB [archive:write] - Set mbtiles metadata: center=0,0,0
1:17:33 DEB [archive:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
1:17:33 DEB [archive:write] - Set mbtiles metadata: json={"vector_layers":[{"id":"boundary","fields":{},"minzoom":0,"maxzoom":14},{"id":"building","fields":{},"minzoom":14,"maxzoom":14},{"id":"glacier","fields":{},"minzoom":4,"maxzoom":14},{"id":"highway","fields":{"line-width":"Number","line-width-z20":"Number","line-sort-key":"Number","line-color":"String"},"minzoom":6,"maxzoom":14},{"id":"highway-footway","fields":{},"minzoom":14,"maxzoom":14},{"id":"highway-path","fields":{},"minzoom":12,"maxzoom":14},{"id":"highway-tracktype-2","fields":{},"minzoom":14,"maxzoom":14},{"id":"highway-tracktype-3-4-5","fields":{},"minzoom":14,"maxzoom":14},{"id":"residential","fields":{},"minzoom":10,"maxzoom":14},{"id":"water","fields":{},"minzoom":0,"maxzoom":14},{"id":"waterway","fields":{},"minzoom":9,"maxzoom":14},{"id":"wood","fields":{},"minzoom":0,"maxzoom":14}]}
1:17:33 DEB [archive:write] - Set mbtiles metadata: name=Streets
1:17:33 DEB [archive:write] - Set mbtiles metadata: description=Streets from OpenStreetMap
1:17:33 DEB [archive:write] - Set mbtiles metadata: attribution=<a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a>
1:17:33 DEB [archive:write] - Set mbtiles metadata: type=baselayer
1:17:33 DEB [archive:write] - Set mbtiles metadata: minzoom=0
1:17:33 DEB [archive:write] - Set mbtiles metadata: maxzoom=14
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:version=0.6-SNAPSHOT
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:githash=74db638dbc69f10ab6de2f7a6447327d062fc86f
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:buildtime=2023-03-18T18:47:42.003Z
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationtime=2023-03-13T01:00:07Z
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationseq=0
1:17:33 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationurl=
1:17:37 INF [archive:write] - Starting z0
1:17:37 INF [archive:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
1:17:37 INF [archive:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
1:17:37 INF [archive:write] - Finished z2 in 0s cpu:0s avg:0, now starting z3
1:17:37 INF [archive:write] - Finished z3 in 0s cpu:0s avg:0, now starting z4
1:17:41 INF [archive:write] - Finished z4 in 4s cpu:47s avg:11.5, now starting z5
1:17:42 INF [archive] - features: [ 386k 0% 38k/s ] 128G tiles: [ 455 45/s ] 20k
cpus: 11.3 gc: 13% heap: 8.5G/32G direct: 18M postGC: 3.4G
read(24%) -> (1.5k/1.6k) -> encode(72% 70% 78% 69% 66% 72% 75% 68% 68% 73% 73%) -> (1.6k/1.6k) -> write( 1%)
last tile: 5/4/2 (z5 12%) https://www.openstreetmap.org/#map=5/82.67628/-135.00000
1:17:52 INF [archive] - features: [ 943k 0% 55k/s ] 128G tiles: [ 1k 60/s ] 10M
cpus: 11.4 gc: 3% heap: 7.9G/32G direct: 18M postGC: 3.2G
read( 0%) -> (1.5k/1.6k) -> encode(85% 88% 92% 87% 92% 88% 84% 90% 91% 91% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 5/27/9 (z5 84%) https://www.openstreetmap.org/#map=5/61.60640/123.75000
1:17:53 INF [archive:write] - Finished z5 in 12s cpu:2m18s avg:11.4, now starting z6
1:18:02 INF [archive] - features: [ 1.5M 0% 56k/s ] 128G tiles: [ 2.1k 111/s ] 14M
cpus: 11.4 gc: 3% heap: 8.1G/32G direct: 18M postGC: 3.3G
read( 0%) -> (1.5k/1.6k) -> encode(94% 89% 89% 87% 94% 89% 87% 92% 92% 92% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/17/23 (z6 27%) https://www.openstreetmap.org/#map=6/45.08904/-84.37500
1:18:12 INF [archive] - features: [ 2.1M 0% 65k/s ] 128G tiles: [ 2.1k 0/s ] 14M
cpus: 11.5 gc: 3% heap: 16G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(83% 95% 94% 92% 92% 90% 92% 93% 87% 89% 90%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/17/23 (z6 27%) https://www.openstreetmap.org/#map=6/45.08904/-84.37500
1:18:22 INF [archive] - features: [ 3M 0% 91k/s ] 128G tiles: [ 3.5k 132/s ] 23M
cpus: 11.4 gc: 3% heap: 3.7G/32G direct: 18M postGC: 3.2G
read( 1%) -> (1.5k/1.6k) -> encode(92% 91% 95% 96% 90% 86% 83% 91% 92% 92% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 6/42/21 (z6 66%) https://www.openstreetmap.org/#map=6/52.48278/56.25000
1:18:31 INF [archive:write] - Finished z6 in 38s cpu:7m11s gc:1s avg:11.4, now starting z7
1:18:32 INF [archive] - features: [ 3.8M 0% 73k/s ] 128G tiles: [ 6.6k 310/s ] 36M
cpus: 11.5 gc: 2% heap: 12G/32G direct: 18M postGC: 3.1G
read( 1%) -> (1.5k/1.6k) -> encode(91% 88% 92% 93% 91% 93% 93% 91% 90% 92% 89%) -> (1.6k/1.6k) -> write( 1%)
last tile: 7/16/42 (z7 12%) https://www.openstreetmap.org/#map=7/52.48278/-135.00000
1:18:42 INF [archive] - features: [ 4.8M 0% 105k/s ] 128G tiles: [ 8.4k 178/s ] 43M
cpus: 11.4 gc: 2% heap: 15G/32G direct: 18M postGC: 3G
read( 2%) -> (1.5k/1.6k) -> encode(92% 93% 92% 94% 89% 94% 90% 92% 92% 93% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/33/47 (z7 26%) https://www.openstreetmap.org/#map=7/43.06889/-87.18750
1:18:53 INF [archive] - features: [ 5.1M 0% 26k/s ] 128G tiles: [ 8.5k 10/s ] 43M
cpus: 11.4 gc: 3% heap: 3.2G/32G direct: 18M postGC: 3.2G
read( 0%) -> (1.5k/1.6k) -> encode(84% 95% 92% 94% 94% 93% 93% 92% 91% 94% 91%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/34/47 (z7 27%) https://www.openstreetmap.org/#map=7/43.06889/-84.37500
1:19:03 INF [archive] - features: [ 6.1M 0% 101k/s ] 128G tiles: [ 9.1k 67/s ] 52M
cpus: 11.6 gc: 2% heap: 7.5G/32G direct: 18M postGC: 2.9G
read( 1%) -> (1.5k/1.6k) -> encode(90% 89% 88% 90% 89% 88% 90% 89% 90% 81% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/40/46 (z7 31%) https://www.openstreetmap.org/#map=7/45.08904/-67.50000
1:19:13 INF [archive] - features: [ 6.8M 0% 69k/s ] 128G tiles: [ 11k 279/s ] 59M
cpus: 11.3 gc: 4% heap: 3.7G/32G direct: 18M postGC: 3.3G
read( 2%) -> (1.5k/1.6k) -> encode(90% 88% 87% 87% 92% 93% 93% 91% 92% 93% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/67/38 (z7 52%) https://www.openstreetmap.org/#map=7/58.81374/8.43750
1:19:23 INF [archive] - features: [ 7.1M 0% 33k/s ] 128G tiles: [ 12k 10/s ] 59M
cpus: 11.5 gc: 3% heap: 4.7G/32G direct: 18M postGC: 3.1G
read( 0%) -> (1.5k/1.6k) -> encode(86% 93% 91% 93% 91% 93% 91% 91% 92% 86% 92%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/68/36 (z7 53%) https://www.openstreetmap.org/#map=7/61.60640/11.25000
1:19:33 INF [archive] - features: [ 7.5M 0% 33k/s ] 128G tiles: [ 12k 0/s ] 59M
cpus: 11.1 gc: 2% heap: 18G/32G direct: 18M postGC: 3.2G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 97% 95% 93% 97% 95% 95% 97% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/68/36 (z7 53%) https://www.openstreetmap.org/#map=7/61.60640/11.25000
1:19:43 INF [archive] - features: [ 7.9M 0% 44k/s ] 128G tiles: [ 12k 60/s ] 69M
cpus: 11.4 gc: 2% heap: 14G/32G direct: 18M postGC: 3.2G
read( 1%) -> (1.5k/1.6k) -> encode(92% 92% 91% 93% 91% 93% 95% 94% 91% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/74/36 (z7 58%) https://www.openstreetmap.org/#map=7/61.60640/28.12500
1:19:53 INF [archive] - features: [ 9.9M 0% 198k/s ] 128G tiles: [ 15k 301/s ] 94M
cpus: 11.2 gc: 3% heap: 17G/32G direct: 18M postGC: 2.9G
read( 4%) -> (1.5k/1.6k) -> encode(95% 94% 96% 94% 96% 94% 94% 94% 94% 93% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 7/105/53 (z7 82%) https://www.openstreetmap.org/#map=7/29.53523/115.31250
1:20:03 INF [archive] - features: [ 10M 1% 69k/s ] 128G tiles: [ 16k 77/s ] 100M
cpus: 11.3 gc: 2% heap: 14G/32G direct: 18M postGC: 2.8G
read( 1%) -> (1.5k/1.6k) -> encode(92% 95% 92% 89% 97% 90% 92% 88% 91% 96% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 7/113/48 (z7 88%) https://www.openstreetmap.org/#map=7/40.97990/137.81250
1:20:10 INF [archive:write] - Finished z7 in 1m39s cpu:18m44s gc:2s avg:11.3, now starting z8
1:20:13 INF [archive] - features: [ 11M 1% 72k/s ] 128G tiles: [ 28k 1.2k/s ] 113M
cpus: 11.2 gc: 2% heap: 14G/32G direct: 18M postGC: 2.7G
read( 2%) -> (1.5k/1.6k) -> encode(93% 95% 97% 95% 96% 95% 95% 95% 95% 97% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/45/99 (z8 18%) https://www.openstreetmap.org/#map=8/37.71859/-116.71875
1:20:23 INF [archive] - features: [ 12M 1% 108k/s ] 128G tiles: [ 31k 333/s ] 124M
cpus: 11.2 gc: 1% heap: 16G/32G direct: 18M postGC: 2.6G
read( 2%) -> (1.5k/1.6k) -> encode(95% 94% 94% 94% 94% 92% 93% 94% 91% 93% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/61/88 (z8 24%) https://www.openstreetmap.org/#map=8/48.92250/-94.21875
1:20:33 INF [archive] - features: [ 13M 1% 89k/s ] 128G tiles: [ 33k 120/s ] 128M
cpus: 11.5 gc: 3% heap: 5G/32G direct: 18M postGC: 2.9G
read( 1%) -> (1.5k/1.6k) -> encode(91% 90% 89% 90% 88% 90% 92% 92% 90% 91% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/67/92 (z8 26%) https://www.openstreetmap.org/#map=8/45.08904/-85.78125
1:20:43 INF [archive] - features: [ 14M 1% 69k/s ] 128G tiles: [ 34k 125/s ] 136M
cpus: 11.2 gc: 3% heap: 3.2G/32G direct: 18M postGC: 3G
read( 1%) -> (1.5k/1.6k) -> encode(89% 94% 95% 93% 89% 93% 94% 95% 93% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/73/100 (z8 29%) https://www.openstreetmap.org/#map=8/36.59789/-77.34375
1:20:53 INF [archive] - features: [ 14M 1% 36k/s ] 128G tiles: [ 34k 0/s ] 136M
cpus: 11 gc: 4% heap: 3.3G/32G direct: 18M postGC: 3G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/73/100 (z8 29%) https://www.openstreetmap.org/#map=8/36.59789/-77.34375
1:21:03 INF [archive] - features: [ 15M 1% 59k/s ] 128G tiles: [ 37k 338/s ] 151M
cpus: 11 gc: 3% heap: 8.6G/32G direct: 18M postGC: 3G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/88/90 (z8 34%) https://www.openstreetmap.org/#map=8/47.04018/-56.25000
1:21:13 INF [archive] - features: [ 17M 1% 216k/s ] 128G tiles: [ 45k 810/s ] 164M
cpus: 11 gc: 5% heap: 9.5G/32G direct: 18M postGC: 3.4G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/129/95 (z8 50%) https://www.openstreetmap.org/#map=8/42.03297/1.40625
1:21:23 INF [archive] - features: [ 18M 1% 120k/s ] 128G tiles: [ 46k 81/s ] 167M
cpus: 10.9 gc: 6% heap: 4.2G/32G direct: 18M postGC: 3.5G
read( 1%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/133/77 (z8 52%) https://www.openstreetmap.org/#map=8/58.07788/7.03125
1:21:33 INF [archive] - features: [ 18M 1% 49k/s ] 128G tiles: [ 46k 0/s ] 167M
cpus: 11 gc: 3% heap: 11G/32G direct: 18M postGC: 3.6G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/133/77 (z8 52%) https://www.openstreetmap.org/#map=8/58.07788/7.03125
1:21:43 INF [archive] - features: [ 19M 1% 45k/s ] 128G tiles: [ 47k 97/s ] 180M
cpus: 11 gc: 4% heap: 5.4G/32G direct: 18M postGC: 3.7G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/138/91 (z8 54%) https://www.openstreetmap.org/#map=8/46.07323/14.06250
1:21:53 INF [archive] - features: [ 19M 1% 54k/s ] 128G tiles: [ 47k 38/s ] 190M
cpus: 10.9 gc: 6% heap: 5.2G/32G direct: 18M postGC: 3.8G
read( 1%) -> (1.5k/1.6k) -> encode(94% 93% 94% 94% 94% 94% 93% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/140/94 (z8 55%) https://www.openstreetmap.org/#map=8/43.06889/16.87500
1:22:03 INF [archive] - features: [ 20M 1% 38k/s ] 128G tiles: [ 48k 19/s ] 190M
cpus: 10.9 gc: 4% heap: 14G/32G direct: 18M postGC: 3.7G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/141/94 (z8 55%) https://www.openstreetmap.org/#map=8/43.06889/18.28125
1:22:13 INF [archive] - features: [ 20M 1% 26k/s ] 128G tiles: [ 48k 58/s ] 196M
cpus: 11 gc: 4% heap: 14G/32G direct: 18M postGC: 4G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/144/91 (z8 56%) https://www.openstreetmap.org/#map=8/46.07323/22.50000
1:22:23 INF [archive] - features: [ 20M 1% 41k/s ] 128G tiles: [ 48k 20/s ] 196M
cpus: 10.9 gc: 5% heap: 4.9G/32G direct: 18M postGC: 4G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/145/91 (z8 57%) https://www.openstreetmap.org/#map=8/46.07323/23.90625
1:22:33 INF [archive] - features: [ 21M 1% 51k/s ] 128G tiles: [ 50k 139/s ] 215M
cpus: 11 gc: 3% heap: 4.7G/32G direct: 18M postGC: 4G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/152/78 (z8 59%) https://www.openstreetmap.org/#map=8/57.32652/33.75000
1:22:43 INF [archive] - features: [ 22M 1% 76k/s ] 128G tiles: [ 53k 308/s ] 232M
cpus: 11 gc: 3% heap: 6.9G/32G direct: 18M postGC: 4G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/168/108 (z8 66%) https://www.openstreetmap.org/#map=8/27.05913/56.25000
1:22:53 INF [archive] - features: [ 23M 1% 133k/s ] 128G tiles: [ 60k 662/s ] 250M
cpus: 11 gc: 3% heap: 11G/32G direct: 18M postGC: 4.2G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 8/202/85 (z8 79%) https://www.openstreetmap.org/#map=8/51.61802/104.06250
1:23:03 INF [archive] - features: [ 25M 1% 189k/s ] 128G tiles: [ 61k 185/s ] 258M
cpus: 10.9 gc: 6% heap: 4.4G/32G direct: 18M postGC: 4.5G
read( 4%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/212/106 (z8 83%) https://www.openstreetmap.org/#map=8/29.53523/118.12500
1:23:13 INF [archive] - features: [ 26M 1% 89k/s ] 128G tiles: [ 64k 284/s ] 266M
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 4.6G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 8/227/96 (z8 89%) https://www.openstreetmap.org/#map=8/40.97990/139.21875
1:23:19 INF [archive:write] - Finished z8 in 3m10s cpu:34m49s gc:7s avg:11, now starting z9
1:23:23 INF [archive] - features: [ 26M 1% 46k/s ] 128G tiles: [ 84k 1.9k/s ] 278M
cpus: 11 gc: 3% heap: 9.1G/32G direct: 18M postGC: 4.7G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 9/25/147 (z9 5%) https://www.openstreetmap.org/#map=9/60.58697/-162.42188
1:23:33 INF [archive] - features: [ 28M 1% 129k/s ] 128G tiles: [ 111k 2.7k/s ] 298M
cpus: 11 gc: 3% heap: 5.6G/32G direct: 18M postGC: 4.8G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 9/88/178 (z9 17%) https://www.openstreetmap.org/#map=9/47.98992/-118.12500
1:23:43 INF [archive] - features: [ 29M 1% 97k/s ] 128G tiles: [ 119k 768/s ] 309M
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 4.9G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/107/169 (z9 21%) https://www.openstreetmap.org/#map=9/52.05249/-104.76563
1:23:53 INF [archive] - features: [ 30M 1% 153k/s ] 128G tiles: [ 127k 797/s ] 327M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 5G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/127/228 (z9 25%) https://www.openstreetmap.org/#map=9/19.31114/-90.70313
1:24:03 INF [archive] - features: [ 31M 2% 116k/s ] 128G tiles: [ 130k 394/s ] 338M
cpus: 11 gc: 4% heap: 7.2G/32G direct: 18M postGC: 5.2G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/137/188 (z9 27%) https://www.openstreetmap.org/#map=9/43.06889/-83.67188
1:24:13 INF [archive] - features: [ 32M 2% 79k/s ] 128G tiles: [ 132k 195/s ] 345M
cpus: 11 gc: 4% heap: 11G/32G direct: 18M postGC: 5.3G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/142/183 (z9 28%) https://www.openstreetmap.org/#map=9/45.58329/-80.15625
1:24:23 INF [archive] - features: [ 33M 2% 82k/s ] 128G tiles: [ 134k 203/s ] 353M
cpus: 10.9 gc: 4% heap: 6.8G/32G direct: 18M postGC: 5.4G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/147/200 (z9 29%) https://www.openstreetmap.org/#map=9/36.59789/-76.64063
1:24:33 INF [archive] - features: [ 34M 2% 57k/s ] 128G tiles: [ 137k 300/s ] 369M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 5.5G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/154/191 (z9 30%) https://www.openstreetmap.org/#map=9/41.50858/-71.71875
1:24:43 INF [archive] - features: [ 34M 2% 39k/s ] 128G tiles: [ 141k 341/s ] 379M
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 5.5G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/162/186 (z9 32%) https://www.openstreetmap.org/#map=9/44.08759/-66.09375
1:24:53 INF [archive] - features: [ 35M 2% 61k/s ] 128G tiles: [ 148k 752/s ] 396M
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 5.6G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 98% 97% 98% 97% 98% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/179/179 (z9 35%) https://www.openstreetmap.org/#map=9/47.51720/-54.14063
1:25:03 INF [archive] - features: [ 36M 2% 172k/s ] 128G tiles: [ 174k 2.5k/s ] 413M
cpus: 11 gc: 3% heap: 5.9G/32G direct: 18M postGC: 5.9G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/245/162 (z9 48%) https://www.openstreetmap.org/#map=9/54.97761/-7.73438
1:25:13 INF [archive] - features: [ 39M 2% 230k/s ] 128G tiles: [ 179k 507/s ] 426M
cpus: 10.9 gc: 7% heap: 11G/32G direct: 18M postGC: 6.3G
read( 4%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/258/191 (z9 50%) https://www.openstreetmap.org/#map=9/41.50858/1.40625
1:25:23 INF [archive] - features: [ 40M 2% 143k/s ] 128G tiles: [ 181k 202/s ] 431M
cpus: 10.9 gc: 6% heap: 6.6G/32G direct: 18M postGC: 6.4G
read( 2%) -> (1.5k/1.6k) -> encode(94% 94% 94% 93% 94% 94% 94% 93% 93% 93% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/263/147 (z9 51%) https://www.openstreetmap.org/#map=9/60.58697/4.92188
1:25:33 INF [archive] - features: [ 42M 2% 152k/s ] 128G tiles: [ 183k 157/s ] 438M
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 6.5G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/267/154 (z9 52%) https://www.openstreetmap.org/#map=9/58.07788/7.73438
1:25:43 INF [archive] - features: [ 42M 2% 76k/s ] 128G tiles: [ 183k 0/s ] 438M
cpus: 10.9 gc: 4% heap: 7.3G/32G direct: 18M postGC: 6.6G
read( 0%) -> (1.4k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/267/154 (z9 52%) https://www.openstreetmap.org/#map=9/58.07788/7.73438
1:25:53 INF [archive] - features: [ 43M 2% 75k/s ] 128G tiles: [ 185k 196/s ] 457M
cpus: 11 gc: 4% heap: 8.8G/32G direct: 18M postGC: 6.7G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/272/139 (z9 53%) https://www.openstreetmap.org/#map=9/63.23363/11.25000
1:26:03 INF [archive] - features: [ 43M 2% 45k/s ] 128G tiles: [ 186k 76/s ] 461M
cpus: 11 gc: 4% heap: 8.9G/32G direct: 18M postGC: 6.9G
read( 1%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/274/149 (z9 54%) https://www.openstreetmap.org/#map=9/59.88894/12.65625
1:26:13 INF [archive] - features: [ 44M 2% 41k/s ] 128G tiles: [ 186k 77/s ] 470M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 6.9G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/276/144 (z9 54%) https://www.openstreetmap.org/#map=9/61.60640/14.06250
1:26:23 INF [archive] - features: [ 45M 2% 69k/s ] 128G tiles: [ 188k 150/s ] 486M
cpus: 11 gc: 3% heap: 9.5G/32G direct: 18M postGC: 7G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 97% 96% 96% 97% 96% 97% 97% 96% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/280/186 (z9 55%) https://www.openstreetmap.org/#map=9/44.08759/16.87500
1:26:33 INF [archive] - features: [ 45M 2% 56k/s ] 128G tiles: [ 189k 76/s ] 494M
cpus: 10.9 gc: 4% heap: 14G/32G direct: 18M postGC: 7.1G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/282/188 (z9 55%) https://www.openstreetmap.org/#map=9/43.06889/18.28125
1:26:43 INF [archive] - features: [ 46M 2% 53k/s ] 128G tiles: [ 191k 194/s ] 506M
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 7.2G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/287/184 (z9 56%) https://www.openstreetmap.org/#map=9/45.08904/21.79688
1:26:53 INF [archive] - features: [ 46M 2% 35k/s ] 128G tiles: [ 191k 30/s ] 506M
cpus: 10.9 gc: 4% heap: 11G/32G direct: 18M postGC: 7.2G
read( 0%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/288/275 (z9 56%) https://www.openstreetmap.org/#map=9/-13.23995/22.50000
1:27:03 INF [archive] - features: [ 46M 2% 39k/s ] 128G tiles: [ 191k 0/s ] 506M
cpus: 10.9 gc: 2% heap: 14G/32G direct: 18M postGC: 7.2G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/288/275 (z9 56%) https://www.openstreetmap.org/#map=9/-13.23995/22.50000
1:27:13 INF [archive] - features: [ 47M 2% 42k/s ] 128G tiles: [ 192k 123/s ] 518M
cpus: 11 gc: 3% heap: 9.4G/32G direct: 18M postGC: 7.3G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/291/182 (z9 57%) https://www.openstreetmap.org/#map=9/46.07323/24.60938
1:27:23 INF [archive] - features: [ 47M 2% 52k/s ] 128G tiles: [ 194k 235/s ] 532M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 7.4G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/297/147 (z9 58%) https://www.openstreetmap.org/#map=9/60.58697/28.82813
1:27:33 INF [archive] - features: [ 48M 2% 56k/s ] 128G tiles: [ 197k 274/s ] 550M
cpus: 11 gc: 3% heap: 10G/32G direct: 18M postGC: 7.5G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/304/155 (z9 59%) https://www.openstreetmap.org/#map=9/57.70415/33.75000
1:27:43 INF [archive] - features: [ 49M 2% 67k/s ] 128G tiles: [ 202k 433/s ] 570M
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 7.6G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/315/162 (z9 62%) https://www.openstreetmap.org/#map=9/54.97761/41.48438
1:27:53 INF [archive] - features: [ 49M 2% 82k/s ] 128G tiles: [ 205k 310/s ] 580M
cpus: 10.9 gc: 3% heap: 8.7G/32G direct: 18M postGC: 7.7G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/323/160 (z9 63%) https://www.openstreetmap.org/#map=9/55.77657/47.10938
1:28:03 INF [archive] - features: [ 51M 2% 111k/s ] 128G tiles: [ 210k 529/s ] 592M
cpus: 11 gc: 2% heap: 15G/32G direct: 18M postGC: 7.7G
read( 2%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/337/173 (z9 66%) https://www.openstreetmap.org/#map=9/50.28934/56.95313
1:28:13 INF [archive] - features: [ 51M 2% 64k/s ] 128G tiles: [ 226k 1.5k/s ] 624M
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 7.9G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 9/377/191 (z9 74%) https://www.openstreetmap.org/#map=9/41.50858/85.07813
1:28:23 INF [archive] - features: [ 54M 3% 255k/s ] 128G tiles: [ 240k 1.4k/s ] 652M
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 8.2G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 9/416/197 (z9 81%) https://www.openstreetmap.org/#map=9/38.27269/112.50000
1:28:33 INF [archive] - features: [ 55M 3% 161k/s ] 128G tiles: [ 243k 300/s ] 660M
cpus: 10.9 gc: 7% heap: 13G/32G direct: 18M postGC: 8.4G
read( 3%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 92% 93% 92% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/424/215 (z9 83%) https://www.openstreetmap.org/#map=9/27.68353/118.12500
1:28:43 INF [archive] - features: [ 57M 3% 117k/s ] 128G tiles: [ 252k 898/s ] 678M
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 8.6G
read( 5%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/448/202 (z9 88%) https://www.openstreetmap.org/#map=9/35.46067/135.00000
1:28:53 INF [archive] - features: [ 57M 3% 87k/s ] 128G tiles: [ 255k 266/s ] 684M
cpus: 10.9 gc: 6% heap: 12G/32G direct: 18M postGC: 8.7G
read( 1%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 9/455/191 (z9 89%) https://www.openstreetmap.org/#map=9/41.50858/139.92188
1:29:03 INF [archive] - features: [ 58M 3% 70k/s ] 128G tiles: [ 270k 1.5k/s ] 700M
cpus: 11 gc: 3% heap: 9.7G/32G direct: 18M postGC: 8.9G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 9/492/208 (z9 96%) https://www.openstreetmap.org/#map=9/31.95216/165.93750
1:29:08 INF [archive:write] - Finished z9 in 5m48s cpu:1h3m40s gc:13s avg:11, now starting z10
1:29:13 INF [archive] - features: [ 59M 3% 60k/s ] 128G tiles: [ 399k 12k/s ] 723M
cpus: 11 gc: 3% heap: 9.1G/32G direct: 18M postGC: 9G
read( 4%) -> (1.5k/1.6k) -> encode(97% 96% 96% 97% 97% 97% 96% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 4%)
last tile: 10/128/460 (z10 12%) https://www.openstreetmap.org/#map=10/17.97873/-135.00000
1:29:23 INF [archive] - features: [ 60M 3% 153k/s ] 128G tiles: [ 434k 3.5k/s ] 747M
cpus: 11 gc: 3% heap: 12G/32G direct: 18M postGC: 9.2G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/172/348 (z10 17%) https://www.openstreetmap.org/#map=10/49.83798/-119.53125
1:29:33 INF [archive] - features: [ 61M 3% 101k/s ] 128G tiles: [ 453k 1.8k/s ] 764M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 9.3G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/196/399 (z10 19%) https://www.openstreetmap.org/#map=10/36.87962/-111.09375
1:29:43 INF [archive] - features: [ 63M 3% 128k/s ] 128G tiles: [ 474k 2k/s ] 784M
cpus: 11 gc: 3% heap: 11G/32G direct: 18M postGC: 9.4G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/222/343 (z10 22%) https://www.openstreetmap.org/#map=10/50.95843/-101.95313
1:29:53 INF [archive] - features: [ 65M 3% 191k/s ] 128G tiles: [ 494k 2k/s ] 811M
cpus: 11 gc: 4% heap: 17G/32G direct: 18M postGC: 9.6G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/248/348 (z10 24%) https://www.openstreetmap.org/#map=10/49.83798/-92.81250
1:30:03 INF [archive] - features: [ 66M 3% 133k/s ] 128G tiles: [ 505k 1.1k/s ] 828M
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 9.7G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/263/369 (z10 26%) https://www.openstreetmap.org/#map=10/44.84029/-87.53906
1:30:13 INF [archive] - features: [ 67M 3% 123k/s ] 128G tiles: [ 514k 899/s ] 847M
cpus: 10.9 gc: 5% heap: 9.9G/32G direct: 18M postGC: 9.9G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/275/377 (z10 27%) https://www.openstreetmap.org/#map=10/42.81152/-83.32031
1:30:23 INF [archive] - features: [ 68M 3% 74k/s ] 128G tiles: [ 518k 445/s ] 857M
cpus: 10.9 gc: 3% heap: 17G/32G direct: 18M postGC: 9.9G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 96% 97% 97% 97% 96% 96% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/281/396 (z10 27%) https://www.openstreetmap.org/#map=10/37.71859/-81.21094
1:30:33 INF [archive] - features: [ 69M 3% 82k/s ] 128G tiles: [ 523k 458/s ] 868M
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/287/372 (z10 28%) https://www.openstreetmap.org/#map=10/44.08759/-79.10156
1:30:43 INF [archive] - features: [ 70M 3% 89k/s ] 128G tiles: [ 529k 556/s ] 881M
cpus: 11 gc: 4% heap: 11G/32G direct: 18M postGC: 10G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/294/399 (z10 29%) https://www.openstreetmap.org/#map=10/36.87962/-76.64063
1:30:53 INF [archive] - features: [ 70M 3% 77k/s ] 128G tiles: [ 534k 491/s ] 895M
cpus: 10.9 gc: 3% heap: 14G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/300/366 (z10 29%) https://www.openstreetmap.org/#map=10/45.58329/-74.53125
1:31:03 INF [archive] - features: [ 71M 3% 66k/s ] 128G tiles: [ 540k 662/s ] 913M
cpus: 10.9 gc: 4% heap: 11G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 96% 95% 95% 95% 96% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/308/382 (z10 30%) https://www.openstreetmap.org/#map=10/41.50858/-71.71875
1:31:13 INF [archive] - features: [ 72M 3% 55k/s ] 128G tiles: [ 552k 1.2k/s ] 936M
cpus: 11 gc: 4% heap: 12G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/323/356 (z10 32%) https://www.openstreetmap.org/#map=10/47.98992/-66.44531
1:31:23 INF [archive] - features: [ 72M 3% 48k/s ] 128G tiles: [ 560k 744/s ] 949M
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 10G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/332/369 (z10 32%) https://www.openstreetmap.org/#map=10/44.84029/-63.28125
1:31:33 INF [archive] - features: [ 73M 4% 68k/s ] 128G tiles: [ 578k 1.7k/s ] 968M
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/353/501 (z10 34%) https://www.openstreetmap.org/#map=10/3.86425/-55.89844
1:31:43 INF [archive] - features: [ 74M 4% 124k/s ] 128G tiles: [ 593k 1.5k/s ] 983M
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 10G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/372/591 (z10 36%) https://www.openstreetmap.org/#map=10/-26.74561/-49.21875
1:31:53 INF [archive] - features: [ 76M 4% 154k/s ] 128G tiles: [ 610k 1.6k/s ] 996M
cpus: 10.9 gc: 5% heap: 13G/32G direct: 18M postGC: 10G
read( 2%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/395/572 (z10 39%) https://www.openstreetmap.org/#map=10/-20.63278/-41.13281
1:32:03 INF [archive] - features: [ 78M 4% 240k/s ] 128G tiles: [ 696k 8.6k/s ] 1G
cpus: 11 gc: 7% heap: 14G/32G direct: 18M postGC: 11G
read( 7%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
last tile: 10/506/379 (z10 49%) https://www.openstreetmap.org/#map=10/42.29356/-2.10938
1:32:13 INF [archive] - features: [ 80M 4% 246k/s ] 128G tiles: [ 704k 782/s ] 1G
cpus: 10.9 gc: 8% heap: 14G/32G direct: 18M postGC: 11G
read( 5%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/516/382 (z10 50%) https://www.openstreetmap.org/#map=10/41.50858/1.40625
1:32:23 INF [archive] - features: [ 82M 4% 197k/s ] 128G tiles: [ 705k 78/s ] 1G
cpus: 10.9 gc: 5% heap: 17G/32G direct: 18M postGC: 11G
read( 1%) -> (1.3k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/517/381 (z10 50%) https://www.openstreetmap.org/#map=10/41.77131/1.75781
1:32:33 INF [archive] - features: [ 83M 4% 107k/s ] 128G tiles: [ 711k 635/s ] 1G
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 11G
read( 1%) -> (1.3k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.4k/1.6k) -> write( 1%)
last tile: 10/526/289 (z10 51%) https://www.openstreetmap.org/#map=10/61.43877/4.92188
1:32:44 INF [archive] - features: [ 85M 4% 128k/s ] 128G tiles: [ 718k 619/s ] 1G
cpus: 11 gc: 10% heap: 12G/32G direct: 18M postGC: 12G
read( 9%) -> (1.5k/1.6k) -> encode(90% 89% 90% 89% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/533/331 (z10 52%) https://www.openstreetmap.org/#map=10/53.54031/7.38281
1:32:54 INF [archive] - features: [ 86M 4% 139k/s ] 128G tiles: [ 719k 158/s ] 1G
cpus: 11 gc: 4% heap: 18G/32G direct: 18M postGC: 12G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/535/316 (z10 52%) https://www.openstreetmap.org/#map=10/56.55948/8.08594
1:33:04 INF [archive] - features: [ 87M 4% 112k/s ] 128G tiles: [ 722k 315/s ] 1.1G
cpus: 11 gc: 4% heap: 18G/32G direct: 18M postGC: 12G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/539/290 (z10 53%) https://www.openstreetmap.org/#map=10/61.27023/9.49219
1:33:14 INF [archive] - features: [ 88M 4% 82k/s ] 128G tiles: [ 725k 308/s ] 1.1G
cpus: 11 gc: 6% heap: 14G/32G direct: 18M postGC: 12G
read( 4%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/543/286 (z10 53%) https://www.openstreetmap.org/#map=10/61.93895/10.89844
1:33:24 INF [archive] - features: [ 89M 4% 77k/s ] 128G tiles: [ 727k 153/s ] 1.1G
cpus: 10.9 gc: 3% heap: 16G/32G direct: 18M postGC: 12G
read( 1%) -> (1.5k/1.6k) -> encode(96% 97% 96% 97% 97% 97% 97% 96% 96% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/545/283 (z10 53%) https://www.openstreetmap.org/#map=10/62.43107/11.60156
1:33:34 INF [archive] - features: [ 90M 4% 69k/s ] 128G tiles: [ 729k 152/s ] 1.1G
cpus: 11 gc: 3% heap: 15G/32G direct: 18M postGC: 13G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/547/290 (z10 53%) https://www.openstreetmap.org/#map=10/61.27023/12.30469
1:33:44 INF [archive] - features: [ 90M 4% 46k/s ] 128G tiles: [ 730k 151/s ] 1.1G
cpus: 10.9 gc: 4% heap: 13G/32G direct: 18M postGC: 13G
read( 1%) -> (1.5k/1.6k) -> encode(95% 96% 95% 95% 96% 96% 95% 96% 95% 96% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/549/277 (z10 54%) https://www.openstreetmap.org/#map=10/63.39152/13.00781
1:33:54 INF [archive] - features: [ 91M 4% 50k/s ] 128G tiles: [ 731k 75/s ] 1.1G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 13G
read( 1%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/550/278 (z10 54%) https://www.openstreetmap.org/#map=10/63.23363/13.35938
1:34:04 INF [archive] - features: [ 91M 4% 39k/s ] 128G tiles: [ 731k 0/s ] 1.1G
cpus: 10.9 gc: 4% heap: 19G/32G direct: 18M postGC: 13G
read( 0%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/550/278 (z10 54%) https://www.openstreetmap.org/#map=10/63.23363/13.35938
1:34:14 INF [archive] - features: [ 92M 4% 52k/s ] 128G tiles: [ 733k 226/s ] 1.1G
cpus: 10.9 gc: 4% heap: 21G/32G direct: 18M postGC: 13G
read( 2%) -> (1.4k/1.6k) -> encode(95% 96% 95% 95% 96% 95% 96% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/553/288 (z10 54%) https://www.openstreetmap.org/#map=10/61.60640/14.41406
1:34:24 INF [archive] - features: [ 92M 4% 77k/s ] 128G tiles: [ 739k 577/s ] 1.2G
cpus: 11 gc: 3% heap: 18G/32G direct: 18M postGC: 13G
read( 5%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/561/591 (z10 55%) https://www.openstreetmap.org/#map=10/-26.74561/17.22656
1:34:34 INF [archive] - features: [ 93M 4% 88k/s ] 128G tiles: [ 742k 319/s ] 1.2G
cpus: 10.9 gc: 5% heap: 18G/32G direct: 18M postGC: 13G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/565/379 (z10 55%) https://www.openstreetmap.org/#map=10/42.29356/18.63281
1:34:44 INF [archive] - features: [ 94M 5% 61k/s ] 128G tiles: [ 744k 153/s ] 1.2G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 13G
read( 1%) -> (1.5k/1.6k) -> encode(96% 95% 95% 95% 95% 95% 95% 96% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/567/378 (z10 55%) https://www.openstreetmap.org/#map=10/42.55308/19.33594
1:34:54 INF [archive] - features: [ 95M 5% 70k/s ] 128G tiles: [ 750k 611/s ] 1.2G
cpus: 11 gc: 2% heap: 21G/32G direct: 18M postGC: 14G
read( 3%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/575/383 (z10 56%) https://www.openstreetmap.org/#map=10/41.24477/22.14844
1:35:04 INF [archive] - features: [ 95M 5% 50k/s ] 128G tiles: [ 751k 153/s ] 1.2G
cpus: 10.9 gc: 4% heap: 14G/32G direct: 18M postGC: 14G
read( 1%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 0%)
last tile: 10/577/367 (z10 56%) https://www.openstreetmap.org/#map=10/45.33670/22.85156
1:35:14 INF [archive] - features: [ 96M 5% 59k/s ] 128G tiles: [ 754k 228/s ] 1.2G
cpus: 11 gc: 2% heap: 19G/32G direct: 18M postGC: 14G
read( 1%) -> (1.5k/1.6k) -> encode(97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/580/360 (z10 57%) https://www.openstreetmap.org/#map=10/47.04018/23.90625
1:35:24 INF [archive] - features: [ 96M 5% 56k/s ] 128G tiles: [ 758k 455/s ] 1.2G
cpus: 11 gc: 2% heap: 17G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 97% 98% 97% 97% 97% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/586/370 (z10 57%) https://www.openstreetmap.org/#map=10/44.59047/26.01563
1:35:34 INF [archive] - features: [ 97M 5% 86k/s ] 128G tiles: [ 763k 441/s ] 1.3G
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(97% 96% 96% 96% 97% 97% 96% 96% 97% 97% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/592/587 (z10 58%) https://www.openstreetmap.org/#map=10/-25.48295/28.12500
1:35:44 INF [archive] - features: [ 98M 5% 55k/s ] 128G tiles: [ 765k 257/s ] 1.3G
cpus: 11 gc: 3% heap: 18G/32G direct: 18M postGC: 14G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/595/296 (z10 58%) https://www.openstreetmap.org/#map=10/60.23981/29.17969
1:35:54 INF [archive] - features: [ 99M 5% 99k/s ] 128G tiles: [ 772k 696/s ] 1.3G
cpus: 10.9 gc: 3% heap: 14G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(97% 96% 96% 96% 96% 96% 96% 96% 96% 97% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/604/341 (z10 59%) https://www.openstreetmap.org/#map=10/51.39921/32.34375
1:36:04 INF [archive] - features: [ 99M 5% 83k/s ] 128G tiles: [ 777k 464/s ] 1.3G
cpus: 11 gc: 3% heap: 20G/32G direct: 18M postGC: 14G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/610/319 (z10 60%) https://www.openstreetmap.org/#map=10/55.97380/34.45313
1:36:14 INF [archive] - features: [ 101M 5% 140k/s ] 128G tiles: [ 787k 1k/s ] 1.3G
cpus: 11 gc: 4% heap: 15G/32G direct: 18M postGC: 14G
read( 4%) -> (1.5k/1.6k) -> encode(95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/623/314 (z10 61%) https://www.openstreetmap.org/#map=10/56.94497/39.02344
1:36:24 INF [archive] - features: [ 101M 5% 64k/s ] 128G tiles: [ 795k 776/s ] 1.4G
cpus: 10.9 gc: 3% heap: 16G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/633/350 (z10 62%) https://www.openstreetmap.org/#map=10/49.38237/42.53906
1:36:34 INF [archive] - features: [ 103M 5% 105k/s ] 128G tiles: [ 807k 1.2k/s ] 1.4G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 15G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/649/307 (z10 63%) https://www.openstreetmap.org/#map=10/58.26329/48.16406
1:36:44 INF [archive] - features: [ 104M 5% 98k/s ] 128G tiles: [ 825k 1.7k/s ] 1.4G
cpus: 10.9 gc: 4% heap: 16G/32G direct: 18M postGC: 15G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 96% 95% 95% 96% 95% 95% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/673/422 (z10 66%) https://www.openstreetmap.org/#map=10/30.14513/56.60156
1:36:54 INF [archive] - features: [ 105M 5% 143k/s ] 128G tiles: [ 855k 2.9k/s ] 1.4G
cpus: 11 gc: 2% heap: 19G/32G direct: 18M postGC: 15G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/712/388 (z10 70%) https://www.openstreetmap.org/#map=10/39.90974/70.31250
1:37:04 INF [archive] - features: [ 107M 5% 161k/s ] 128G tiles: [ 881k 2.5k/s ] 1.5G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 15G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 10/746/426 (z10 73%) https://www.openstreetmap.org/#map=10/28.92163/82.26563
1:37:14 INF [archive] - features: [ 107M 5% 57k/s ] 128G tiles: [ 887k 662/s ] 1.5G
cpus: 10.9 gc: 3% heap: 15G/32G direct: 18M postGC: 15G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/755/351 (z10 74%) https://www.openstreetmap.org/#map=10/49.15297/85.42969
1:37:24 INF [archive] - features: [ 109M 5% 198k/s ] 128G tiles: [ 925k 3.8k/s ] 1.5G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 15G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 10/808/420 (z10 79%) https://www.openstreetmap.org/#map=10/30.75128/104.06250
1:37:34 INF [archive] - features: [ 112M 5% 298k/s ] 128G tiles: [ 946k 2k/s ] 1.5G
cpus: 10.9 gc: 6% heap: 16G/32G direct: 18M postGC: 15G
read( 5%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/837/444 (z10 82%) https://www.openstreetmap.org/#map=10/23.24135/114.25781
1:37:44 INF [archive] - features: [ 114M 5% 201k/s ] 128G tiles: [ 962k 1.6k/s ] 1.6G
cpus: 10.9 gc: 5% heap: 17G/32G direct: 18M postGC: 16G
read( 6%) -> (1.5k/1.6k) -> encode(94% 94% 95% 94% 95% 95% 94% 95% 95% 95% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 10/860/482 (z10 84%) https://www.openstreetmap.org/#map=10/10.48781/122.34375
1:37:54 INF [archive] - features: [ 115M 6% 130k/s ] 128G tiles: [ 979k 1.6k/s ] 1.6G
cpus: 10.9 gc: 6% heap: 19G/32G direct: 18M postGC: 16G
read( 3%) -> (1.5k/1.6k) -> encode(93% 94% 93% 94% 94% 94% 94% 94% 93% 94% 94%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/883/409 (z10 86%) https://www.openstreetmap.org/#map=10/34.01624/130.42969
1:38:04 INF [archive] - features: [ 117M 6% 139k/s ] 128G tiles: [ 996k 1.7k/s ] 1.6G
cpus: 11 gc: 4% heap: 20G/32G direct: 18M postGC: 16G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/907/404 (z10 89%) https://www.openstreetmap.org/#map=10/35.46067/138.86719
1:38:14 INF [archive] - features: [ 118M 6% 117k/s ] 128G tiles: [ 1M 675/s ] 1.6G
cpus: 11 gc: 4% heap: 20G/32G direct: 18M postGC: 16G
read( 2%) -> (1.5k/1.6k) -> encode(95% 96% 96% 96% 95% 96% 95% 96% 95% 95% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 10/916/369 (z10 89%) https://www.openstreetmap.org/#map=10/44.84029/142.03125
1:38:24 INF [archive] - features: [ 119M 6% 87k/s ] 128G tiles: [ 1M 6.8k/s ] 1.6G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 16G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 10/999/796 (z10 98%) https://www.openstreetmap.org/#map=10/-70.14036/171.21094
1:38:29 INF [archive:write] - Finished z10 in 9m21s cpu:1h42m31s gc:21s avg:11, now starting z11
1:38:34 INF [archive] - features: [ 120M 6% 110k/s ] 128G tiles: [ 1.3M 32k/s ] 1.7G
cpus: 11 gc: 5% heap: 19G/32G direct: 18M postGC: 17G
read( 8%) -> (1.5k/1.6k) -> encode(93% 95% 94% 94% 94% 94% 95% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 6%)
last tile: 11/155/1088 (z11 8%) https://www.openstreetmap.org/#map=11/-11.17840/-152.75391
1:38:44 INF [archive] - features: [ 121M 6% 65k/s ] 128G tiles: [ 1.6M 26k/s ] 1.7G
cpus: 10.9 gc: 8% heap: 20G/32G direct: 18M postGC: 17G
read( 5%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 6%)
last tile: 11/314/1539 (z11 15%) https://www.openstreetmap.org/#map=11/-66.72254/-124.80469
1:38:54 INF [archive] - features: [ 123M 6% 201k/s ] 128G tiles: [ 1.7M 6.6k/s ] 1.7G
cpus: 11 gc: 5% heap: 19G/32G direct: 18M postGC: 17G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/357/726 (z11 17%) https://www.openstreetmap.org/#map=11/46.31658/-117.24609
1:39:04 INF [archive] - features: [ 124M 6% 103k/s ] 128G tiles: [ 1.7M 5.2k/s ] 1.8G
cpus: 11 gc: 5% heap: 23G/32G direct: 18M postGC: 17G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 94% 95% 94% 95%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/392/756 (z11 19%) https://www.openstreetmap.org/#map=11/42.55308/-111.09375
1:39:14 INF [archive] - features: [ 125M 6% 132k/s ] 128G tiles: [ 1.8M 7.9k/s ] 1.8G
cpus: 11 gc: 4% heap: 18G/32G direct: 18M postGC: 18G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/444/746 (z11 22%) https://www.openstreetmap.org/#map=11/43.83453/-101.95313
1:39:24 INF [archive] - features: [ 127M 6% 238k/s ] 128G tiles: [ 1.9M 5.8k/s ] 1.8G
cpus: 11 gc: 6% heap: 22G/32G direct: 18M postGC: 18G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/483/726 (z11 24%) https://www.openstreetmap.org/#map=11/46.31658/-95.09766
1:39:34 INF [archive] - features: [ 129M 6% 133k/s ] 128G tiles: [ 1.9M 3.9k/s ] 1.9G
cpus: 11 gc: 5% heap: 18G/32G direct: 18M postGC: 18G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/511/1163 (z11 25%) https://www.openstreetmap.org/#map=11/-23.72501/-90.17578
1:39:44 INF [archive] - features: [ 130M 6% 123k/s ] 128G tiles: [ 1.9M 3.2k/s ] 1.9G
cpus: 10.9 gc: 2% heap: 22G/32G direct: 18M postGC: 18G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/533/730 (z11 26%) https://www.openstreetmap.org/#map=11/45.82880/-86.30859
1:39:54 INF [archive] - features: [ 131M 6% 128k/s ] 128G tiles: [ 2M 2.2k/s ] 1.9G
cpus: 11 gc: 4% heap: 19G/32G direct: 18M postGC: 18G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/549/1353 (z11 27%) https://www.openstreetmap.org/#map=11/-49.95122/-83.49609
1:40:04 INF [archive] - features: [ 132M 6% 82k/s ] 128G tiles: [ 2M 1.3k/s ] 1.9G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 18G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/558/802 (z11 27%) https://www.openstreetmap.org/#map=11/36.31513/-81.91406
1:40:14 INF [archive] - features: [ 133M 6% 60k/s ] 128G tiles: [ 2M 879/s ] 2G
cpus: 11 gc: 2% heap: 22G/32G direct: 18M postGC: 18G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/564/798 (z11 28%) https://www.openstreetmap.org/#map=11/36.87962/-80.85938
1:40:24 INF [archive] - features: [ 134M 6% 88k/s ] 128G tiles: [ 2M 1.7k/s ] 2G
cpus: 11 gc: 3% heap: 21G/32G direct: 18M postGC: 19G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 96% 96% 96% 96% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/576/746 (z11 28%) https://www.openstreetmap.org/#map=11/43.83453/-78.75000
1:40:34 INF [archive] - features: [ 135M 6% 95k/s ] 128G tiles: [ 2M 1.8k/s ] 2G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 19G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/588/1004 (z11 29%) https://www.openstreetmap.org/#map=11/3.51342/-76.64063
1:40:44 INF [archive] - features: [ 135M 7% 82k/s ] 128G tiles: [ 2M 1.9k/s ] 2G
cpus: 11 gc: 3% heap: 20G/32G direct: 18M postGC: 19G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/600/743 (z11 29%) https://www.openstreetmap.org/#map=11/44.21371/-74.53125
1:40:54 INF [archive] - features: [ 136M 7% 83k/s ] 128G tiles: [ 2.1M 1.8k/s ] 2G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 19G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/612/1318 (z11 30%) https://www.openstreetmap.org/#map=11/-45.82880/-72.42188
1:41:04 INF [archive] - features: [ 137M 7% 64k/s ] 128G tiles: [ 2.1M 524/s ] 2.1G
cpus: 10.9 gc: 5% heap: 24G/32G direct: 18M postGC: 19G
read( 0%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/615/764 (z11 30%) https://www.openstreetmap.org/#map=11/41.50858/-71.89453
1:41:14 INF [archive] - features: [ 137M 7% 62k/s ] 128G tiles: [ 2.1M 152/s ] 2.1G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 19G
read( 0%) -> (1.4k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/616/765 (z11 30%) https://www.openstreetmap.org/#map=11/41.37681/-71.71875
1:41:24 INF [archive] - features: [ 138M 7% 49k/s ] 128G tiles: [ 2.1M 0/s ] 2.1G
cpus: 10.9 gc: 2% heap: 24G/32G direct: 18M postGC: 19G
read( 0%) -> (1.4k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/616/765 (z11 30%) https://www.openstreetmap.org/#map=11/41.37681/-71.71875
1:41:34 INF [archive] - features: [ 139M 7% 73k/s ] 128G tiles: [ 2.1M 0/s ] 2.1G
cpus: 10.9 gc: 3% heap: 21G/32G direct: 18M postGC: 19G
read( 0%) -> (1.3k/1.6k) -> encode(97% 96% 97% 97% 96% 97% 96% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/616/765 (z11 30%) https://www.openstreetmap.org/#map=11/41.37681/-71.71875
1:41:44 INF [archive] - features: [ 139M 7% 71k/s ] 128G tiles: [ 2.2M 14k/s ] 2.2G
cpus: 11.1 gc: 6% heap: 21G/32G direct: 18M postGC: 20G
read( 8%) -> (1.5k/1.6k) -> encode(93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(12%)
last tile: 11/705/1187 (z11 34%) https://www.openstreetmap.org/#map=11/-27.52776/-56.07422
1:41:54 INF [archive] - features: [ 140M 7% 101k/s ] 128G tiles: [ 2.3M 5.7k/s ] 2.2G
cpus: 11 gc: 3% heap: 24G/32G direct: 18M postGC: 20G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/741/1597 (z11 36%) https://www.openstreetmap.org/#map=11/-70.43680/-49.74609
1:42:04 INF [archive] - features: [ 142M 7% 113k/s ] 128G tiles: [ 2.3M 3.8k/s ] 2.2G
cpus: 10.9 gc: 4% heap: 20G/32G direct: 18M postGC: 20G
read( 3%) -> (1.5k/1.6k) -> encode(95% 96% 96% 95% 95% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/768/1505 (z11 38%) https://www.openstreetmap.org/#map=11/-64.24459/-45.00000
1:42:14 INF [archive] - features: [ 143M 7% 126k/s ] 128G tiles: [ 2.3M 3.5k/s ] 2.2G
cpus: 10.9 gc: 5% heap: 23G/32G direct: 18M postGC: 20G
read( 1%) -> (1.3k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/792/1142 (z11 39%) https://www.openstreetmap.org/#map=11/-20.30342/-40.78125
1:42:24 INF [archive] - features: [ 145M 7% 244k/s ] 128G tiles: [ 2.7M 32k/s ] 2.3G
cpus: 11 gc: 5% heap: 22G/32G direct: 18M postGC: 21G
read( 9%) -> (1.5k/1.6k) -> encode(95% 95% 95% 93% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 8%)
last tile: 11/1002/753 (z11 49%) https://www.openstreetmap.org/#map=11/42.94034/-3.86719
1:42:34 INF [archive] - features: [ 148M 7% 289k/s ] 128G tiles: [ 2.7M 3k/s ] 2.3G
cpus: 10.9 gc: 8% heap: 21G/32G direct: 18M postGC: 21G
read( 6%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1022/777 (z11 50%) https://www.openstreetmap.org/#map=11/39.77477/-0.35156
1:42:44 INF [archive] - features: [ 150M 7% 181k/s ] 128G tiles: [ 2.7M 1.7k/s ] 2.3G
cpus: 10.9 gc: 7% heap: 21G/32G direct: 18M postGC: 21G
read( 3%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1033/766 (z11 50%) https://www.openstreetmap.org/#map=11/41.24477/1.58203
1:42:54 INF [archive] - features: [ 152M 7% 209k/s ] 128G tiles: [ 2.7M 2.7k/s ] 2.4G
cpus: 11 gc: 6% heap: 22G/32G direct: 18M postGC: 21G
read( 6%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1051/718 (z11 51%) https://www.openstreetmap.org/#map=11/47.27923/4.74609
1:43:04 INF [archive] - features: [ 153M 7% 121k/s ] 128G tiles: [ 2.7M 627/s ] 2.4G
cpus: 11.1 gc: 4% heap: 14G/32G direct: 18M postGC: 3.1G
read( 3%) -> (1.5k/1.6k) -> encode(92% 90% 92% 91% 94% 92% 89% 94% 88% 94% 92%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1055/600 (z11 52%) https://www.openstreetmap.org/#map=11/59.53432/5.44922
1:43:14 INF [archive] - features: [ 154M 7% 111k/s ] 128G tiles: [ 2.8M 1k/s ] 2.4G
cpus: 11 gc: 3% heap: 5.1G/32G direct: 18M postGC: 3.3G
read( 4%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1062/666 (z11 52%) https://www.openstreetmap.org/#map=11/53.12041/6.67969
1:43:24 INF [archive] - features: [ 156M 7% 109k/s ] 128G tiles: [ 2.8M 301/s ] 2.4G
cpus: 11 gc: 3% heap: 12G/32G direct: 18M postGC: 3.4G
read( 1%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1064/732 (z11 52%) https://www.openstreetmap.org/#map=11/45.58329/7.03125
1:43:34 INF [archive] - features: [ 157M 8% 125k/s ] 128G tiles: [ 2.8M 940/s ] 2.4G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 3.6G
read( 4%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1070/615 (z11 52%) https://www.openstreetmap.org/#map=11/58.17070/8.08594
1:43:44 INF [archive] - features: [ 158M 8% 115k/s ] 128G tiles: [ 2.8M 922/s ] 2.4G
cpus: 11 gc: 4% heap: 7.8G/32G direct: 18M postGC: 3.8G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1076/629 (z11 53%) https://www.openstreetmap.org/#map=11/56.84897/9.14063
1:43:54 INF [archive] - features: [ 159M 8% 104k/s ] 128G tiles: [ 2.8M 615/s ] 2.5G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 4G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1080/593 (z11 53%) https://www.openstreetmap.org/#map=11/60.15244/9.84375
1:44:04 INF [archive] - features: [ 160M 8% 85k/s ] 128G tiles: [ 2.8M 910/s ] 2.5G
cpus: 11 gc: 4% heap: 4.5G/32G direct: 18M postGC: 4.2G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1086/586 (z11 53%) https://www.openstreetmap.org/#map=11/60.75916/10.89844
1:44:14 INF [archive] - features: [ 161M 8% 71k/s ] 128G tiles: [ 2.8M 601/s ] 2.5G
cpus: 11 gc: 3% heap: 10G/32G direct: 18M postGC: 4.2G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1090/612 (z11 53%) https://www.openstreetmap.org/#map=11/58.44773/11.60156
1:44:24 INF [archive] - features: [ 161M 8% 72k/s ] 128G tiles: [ 2.8M 451/s ] 2.5G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 4.3G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1093/587 (z11 53%) https://www.openstreetmap.org/#map=11/60.67318/12.12891
1:44:34 INF [archive] - features: [ 162M 8% 62k/s ] 128G tiles: [ 2.8M 301/s ] 2.5G
cpus: 11 gc: 2% heap: 10G/32G direct: 18M postGC: 4.4G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 97% 97% 98% 97% 98% 97% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1095/553 (z11 53%) https://www.openstreetmap.org/#map=11/63.47014/12.48047
1:44:44 INF [archive] - features: [ 162M 8% 49k/s ] 128G tiles: [ 2.8M 442/s ] 2.5G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 4.5G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1098/554 (z11 54%) https://www.openstreetmap.org/#map=11/63.39152/13.00781
1:44:54 INF [archive] - features: [ 163M 8% 41k/s ] 128G tiles: [ 2.8M 292/s ] 2.5G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 4.5G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1100/555 (z11 54%) https://www.openstreetmap.org/#map=11/63.31268/13.35938
1:45:04 INF [archive] - features: [ 163M 8% 48k/s ] 128G tiles: [ 2.8M 585/s ] 2.6G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 4.6G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1104/595 (z11 54%) https://www.openstreetmap.org/#map=11/59.97701/14.06250
1:45:14 INF [archive] - features: [ 164M 8% 42k/s ] 128G tiles: [ 2.8M 299/s ] 2.6G
cpus: 10.9 gc: 3% heap: 19G/32G direct: 18M postGC: 4.8G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1106/579 (z11 54%) https://www.openstreetmap.org/#map=11/61.35461/14.41406
1:45:24 INF [archive] - features: [ 164M 8% 45k/s ] 128G tiles: [ 2.8M 0/s ] 2.6G
cpus: 10.9 gc: 3% heap: 7G/32G direct: 18M postGC: 4.7G
read( 0%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1106/579 (z11 54%) https://www.openstreetmap.org/#map=11/61.35461/14.41406
1:45:35 INF [archive] - features: [ 165M 8% 52k/s ] 128G tiles: [ 2.8M 1.1k/s ] 2.6G
cpus: 11 gc: 1% heap: 14G/32G direct: 18M postGC: 4.8G
read( 3%) -> (1.5k/1.6k) -> encode(98% 99% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1114/608 (z11 54%) https://www.openstreetmap.org/#map=11/58.81374/15.82031
1:45:45 INF [archive] - features: [ 166M 8% 80k/s ] 128G tiles: [ 2.8M 861/s ] 2.6G
cpus: 11 gc: 3% heap: 6.3G/32G direct: 18M postGC: 4.9G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1120/755 (z11 55%) https://www.openstreetmap.org/#map=11/42.68244/16.87500
1:45:55 INF [archive] - features: [ 166M 8% 88k/s ] 128G tiles: [ 2.8M 1k/s ] 2.6G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 5G
read( 2%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 98%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1127/773 (z11 55%) https://www.openstreetmap.org/#map=11/40.31304/18.10547
1:46:05 INF [archive] - features: [ 167M 8% 89k/s ] 128G tiles: [ 2.9M 710/s ] 2.7G
cpus: 11 gc: 3% heap: 5.2G/32G direct: 18M postGC: 5.2G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1132/1019 (z11 55%) https://www.openstreetmap.org/#map=11/0.87887/18.98438
1:46:15 INF [archive] - features: [ 168M 8% 76k/s ] 128G tiles: [ 2.9M 614/s ] 2.7G
cpus: 11 gc: 2% heap: 11G/32G direct: 18M postGC: 5.2G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 98% 98% 97% 98% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1136/754 (z11 55%) https://www.openstreetmap.org/#map=11/42.81152/19.68750
1:46:25 INF [archive] - features: [ 169M 8% 83k/s ] 128G tiles: [ 2.9M 2.1k/s ] 2.7G
cpus: 11 gc: 2% heap: 19G/32G direct: 18M postGC: 5.4G
read( 4%) -> (1.5k/1.6k) -> encode(98% 98% 97% 98% 98% 97% 98% 98% 97% 98% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1151/747 (z11 56%) https://www.openstreetmap.org/#map=11/43.70759/22.32422
1:46:35 INF [archive] - features: [ 170M 8% 62k/s ] 128G tiles: [ 2.9M 735/s ] 2.7G
cpus: 11 gc: 3% heap: 11G/32G direct: 18M postGC: 5.4G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1156/745 (z11 56%) https://www.openstreetmap.org/#map=11/43.96119/23.20313
1:46:45 INF [archive] - features: [ 170M 8% 77k/s ] 128G tiles: [ 2.9M 877/s ] 2.7G
cpus: 11 gc: 2% heap: 5.5G/32G direct: 18M postGC: 5.5G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 98% 98% 97% 97% 98% 98% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1162/733 (z11 57%) https://www.openstreetmap.org/#map=11/45.46013/24.25781
1:46:55 INF [archive] - features: [ 171M 8% 73k/s ] 128G tiles: [ 2.9M 1.4k/s ] 2.8G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 5.6G
read( 3%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1172/658 (z11 57%) https://www.openstreetmap.org/#map=11/53.95609/26.01563
1:47:05 INF [archive] - features: [ 172M 8% 114k/s ] 128G tiles: [ 2.9M 1.7k/s ] 2.8G
cpus: 11 gc: 3% heap: 5.9G/32G direct: 18M postGC: 5.8G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1184/1175 (z11 58%) https://www.openstreetmap.org/#map=11/-25.64153/28.12500
1:47:15 INF [archive] - features: [ 173M 8% 55k/s ] 128G tiles: [ 2.9M 1k/s ] 2.8G
cpus: 11 gc: 2% heap: 14G/32G direct: 18M postGC: 5.9G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 98% 98% 97% 97% 97% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1191/648 (z11 58%) https://www.openstreetmap.org/#map=11/54.97761/29.35547
1:47:25 INF [archive] - features: [ 174M 8% 110k/s ] 128G tiles: [ 3M 2.1k/s ] 2.9G
cpus: 11 gc: 2% heap: 6.8G/32G direct: 18M postGC: 6G
read( 3%) -> (1.5k/1.6k) -> encode(97% 98% 98% 98% 97% 97% 97% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1205/657 (z11 59%) https://www.openstreetmap.org/#map=11/54.05939/31.81641
1:47:35 INF [archive] - features: [ 175M 8% 79k/s ] 128G tiles: [ 3M 1.6k/s ] 2.9G
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 6.1G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1216/658 (z11 59%) https://www.openstreetmap.org/#map=11/53.95609/33.75000
1:47:45 INF [archive] - features: [ 176M 8% 116k/s ] 128G tiles: [ 3M 2.2k/s ] 2.9G
cpus: 11 gc: 3% heap: 7G/32G direct: 18M postGC: 6.3G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1231/653 (z11 60%) https://www.openstreetmap.org/#map=11/54.47004/36.38672
1:47:55 INF [archive] - features: [ 177M 9% 163k/s ] 128G tiles: [ 3M 3.5k/s ] 3G
cpus: 11 gc: 4% heap: 14G/32G direct: 18M postGC: 6.5G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1254/778 (z11 61%) https://www.openstreetmap.org/#map=11/39.63954/40.42969
1:48:05 INF [archive] - features: [ 178M 9% 63k/s ] 128G tiles: [ 3.1M 2.1k/s ] 3G
cpus: 11 gc: 4% heap: 7.2G/32G direct: 18M postGC: 6.6G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1268/658 (z11 62%) https://www.openstreetmap.org/#map=11/53.95609/42.89063
1:48:15 INF [archive] - features: [ 179M 9% 105k/s ] 128G tiles: [ 3.1M 2.8k/s ] 3G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 6.7G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1287/790 (z11 63%) https://www.openstreetmap.org/#map=11/37.99616/46.23047
1:48:25 INF [archive] - features: [ 181M 9% 137k/s ] 128G tiles: [ 3.2M 6.8k/s ] 3.1G
cpus: 11 gc: 3% heap: 8.6G/32G direct: 18M postGC: 6.9G
read( 4%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 4%)
last tile: 11/1334/814 (z11 65%) https://www.openstreetmap.org/#map=11/34.59704/54.49219
1:48:35 INF [archive] - features: [ 181M 9% 83k/s ] 128G tiles: [ 3.2M 1.9k/s ] 3.1G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 7G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 11/1348/680 (z11 66%) https://www.openstreetmap.org/#map=11/51.61802/56.95313
1:48:45 INF [archive] - features: [ 183M 9% 167k/s ] 128G tiles: [ 3.3M 11k/s ] 3.1G
cpus: 11 gc: 3% heap: 9.7G/32G direct: 18M postGC: 7.2G
read( 4%) -> (1.4k/1.6k) -> encode(97% 97% 96% 96% 97% 97% 97% 96% 96% 97% 97%) -> (1.6k/1.6k) -> write( 5%)
last tile: 11/1425/816 (z11 70%) https://www.openstreetmap.org/#map=11/34.30714/70.48828
1:48:55 INF [archive] - features: [ 185M 9% 183k/s ] 128G tiles: [ 3.4M 9.8k/s ] 3.2G
cpus: 11 gc: 5% heap: 16G/32G direct: 18M postGC: 7.5G
read( 6%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 94% 95% 95% 94% 95% 95%) -> (1.6k/1.6k) -> write( 6%)
last tile: 11/1492/858 (z11 73%) https://www.openstreetmap.org/#map=11/27.99440/82.26563
1:49:05 INF [archive] - features: [ 185M 9% 56k/s ] 128G tiles: [ 3.4M 2.3k/s ] 3.2G
cpus: 11 gc: 5% heap: 9.4G/32G direct: 18M postGC: 7.6G
read( 2%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1509/743 (z11 74%) https://www.openstreetmap.org/#map=11/44.21371/85.25391
1:49:15 INF [archive] - features: [ 186M 9% 63k/s ] 128G tiles: [ 3.4M 130/s ] 3.2G
cpus: 11 gc: 2% heap: 16G/32G direct: 18M postGC: 7.6G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 11/1510/863 (z11 74%) https://www.openstreetmap.org/#map=11/27.21556/85.42969
1:49:25 INF [archive] - features: [ 189M 9% 266k/s ] 128G tiles: [ 3.6M 15k/s ] 3.3G
cpus: 11.1 gc: 3% heap: 10G/32G direct: 18M postGC: 7.9G
read( 5%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 8%)
last tile: 11/1625/853 (z11 79%) https://www.openstreetmap.org/#map=11/28.76766/105.64453
1:49:35 INF [archive] - features: [ 192M 9% 315k/s ] 128G tiles: [ 3.6M 6.5k/s ] 3.4G
cpus: 11 gc: 4% heap: 18G/32G direct: 18M postGC: 8G
read( 1%) -> (1.5k/1.6k) -> encode(95% 96% 96% 96% 95% 95% 95% 95% 95% 95% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1674/889 (z11 82%) https://www.openstreetmap.org/#map=11/23.07973/114.25781
1:49:45 INF [archive] - features: [ 194M 9% 253k/s ] 128G tiles: [ 3.7M 5.2k/s ] 3.4G
cpus: 11 gc: 3% heap: 14G/32G direct: 18M postGC: 8.1G
read( 1%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1713/941 (z11 84%) https://www.openstreetmap.org/#map=11/14.43468/121.11328
1:49:55 INF [archive] - features: [ 196M 9% 162k/s ] 128G tiles: [ 3.7M 5.6k/s ] 3.4G
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 8.1G
read( 1%) -> (1.5k/1.6k) -> encode(97% 98% 98% 98% 98% 98% 97% 97% 97% 97% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1755/803 (z11 86%) https://www.openstreetmap.org/#map=11/36.17336/128.49609
1:50:05 INF [archive] - features: [ 197M 9% 94k/s ] 128G tiles: [ 3.8M 3.5k/s ] 3.5G
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 8.2G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 2%)
last tile: 11/1781/816 (z11 87%) https://www.openstreetmap.org/#map=11/34.30714/133.06641
1:50:15 INF [archive] - features: [ 199M 10% 169k/s ] 128G tiles: [ 3.8M 5.3k/s ] 3.5G
cpus: 11 gc: 2% heap: 12G/32G direct: 18M postGC: 8.3G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1820/775 (z11 89%) https://www.openstreetmap.org/#map=11/40.04444/139.92188
1:50:25 INF [archive] - features: [ 200M 10% 118k/s ] 128G tiles: [ 3.9M 4.8k/s ] 3.5G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 8.3G
read( 0%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 3%)
last tile: 11/1854/1132 (z11 91%) https://www.openstreetmap.org/#map=11/-18.64625/145.89844
1:50:35 INF [archive] - features: [ 201M 10% 118k/s ] 128G tiles: [ 4.1M 24k/s ] 3.5G
cpus: 11 gc: 2% heap: 15G/32G direct: 18M postGC: 8.4G
read( 1%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 7%)
last tile: 11/2004/1955 (z11 98%) https://www.openstreetmap.org/#map=11/-83.42021/172.26563
1:50:39 INF [archive:write] - Finished z11 in 12m10s cpu:2h13m29s gc:25s avg:11, now starting z12
1:50:45 INF [archive] - features: [ 204M 10% 299k/s ] 128G tiles: [ 6M 191k/s ] 3.6G
cpus: 11.3 gc: 7% heap: 9.6G/32G direct: 18M postGC: 9.5G
read(20%) -> (1.5k/1.6k) -> encode(93% 92% 93% 93% 91% 93% 93% 92% 92% 90% 93%) -> (1.6k/1.6k) -> write(30%)
last tile: 12/506/1658 (z12 12%) https://www.openstreetmap.org/#map=12/32.39852/-135.52734
1:50:55 INF [archive] - features: [ 206M 10% 161k/s ] 128G tiles: [ 6.5M 46k/s ] 3.7G
cpus: 11.1 gc: 10% heap: 10G/32G direct: 18M postGC: 10G
read( 9%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(11%)
last tile: 12/655/1408 (z12 16%) https://www.openstreetmap.org/#map=12/48.92250/-122.43164
1:51:05 INF [archive] - features: [ 208M 10% 269k/s ] 128G tiles: [ 6.8M 26k/s ] 3.8G
cpus: 11 gc: 9% heap: 19G/32G direct: 18M postGC: 10G
read( 7%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/745/2295 (z12 18%) https://www.openstreetmap.org/#map=12/-21.20746/-114.52148
1:51:15 INF [archive] - features: [ 210M 10% 161k/s ] 128G tiles: [ 6.9M 12k/s ] 3.8G
cpus: 11 gc: 8% heap: 19G/32G direct: 18M postGC: 10G
read( 4%) -> (1.5k/1.6k) -> encode(92% 92% 91% 92% 91% 91% 92% 92% 92% 91% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/786/1660 (z12 19%) https://www.openstreetmap.org/#map=12/32.24997/-110.91797
1:51:25 INF [archive] - features: [ 213M 10% 290k/s ] 128G tiles: [ 7.3M 34k/s ] 3.9G
cpus: 11.1 gc: 7% heap: 19G/32G direct: 18M postGC: 11G
read( 9%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(11%)
last tile: 12/902/1439 (z12 22%) https://www.openstreetmap.org/#map=12/47.10004/-100.72266
1:51:35 INF [archive] - features: [ 217M 10% 383k/s ] 128G tiles: [ 7.5M 22k/s ] 4G
cpus: 11.1 gc: 10% heap: 20G/32G direct: 18M postGC: 11G
read(10%) -> (1.5k/1.6k) -> encode(90% 89% 90% 90% 90% 90% 90% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/981/1469 (z12 24%) https://www.openstreetmap.org/#map=12/45.27489/-93.77930
1:51:45 INF [archive] - features: [ 218M 11% 160k/s ] 128G tiles: [ 7.6M 11k/s ] 4G
cpus: 11 gc: 10% heap: 22G/32G direct: 18M postGC: 12G
read( 6%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 89% 90%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/1022/2248 (z12 25%) https://www.openstreetmap.org/#map=12/-17.30869/-90.17578
1:51:55 INF [archive] - features: [ 220M 11% 155k/s ] 128G tiles: [ 7.7M 10k/s ] 4.1G
cpus: 11 gc: 6% heap: 12G/32G direct: 18M postGC: 12G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/1062/1608 (z12 26%) https://www.openstreetmap.org/#map=12/36.03133/-86.66016
1:52:05 INF [archive] - features: [ 222M 11% 160k/s ] 128G tiles: [ 7.8M 8.8k/s ] 4.1G
cpus: 11 gc: 5% heap: 17G/32G direct: 18M postGC: 12G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1093/2261 (z12 27%) https://www.openstreetmap.org/#map=12/-18.39623/-83.93555
1:52:15 INF [archive] - features: [ 223M 11% 129k/s ] 128G tiles: [ 7.9M 5.6k/s ] 4.2G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 12G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1113/1624 (z12 27%) https://www.openstreetmap.org/#map=12/34.88593/-82.17773
1:52:25 INF [archive] - features: [ 224M 11% 76k/s ] 128G tiles: [ 7.9M 3.4k/s ] 4.2G
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 12G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1125/1600 (z12 27%) https://www.openstreetmap.org/#map=12/36.59789/-81.12305
1:52:35 INF [archive] - features: [ 225M 11% 124k/s ] 128G tiles: [ 7.9M 4.9k/s ] 4.2G
cpus: 11 gc: 2% heap: 13G/32G direct: 18M postGC: 13G
read( 3%) -> (1.5k/1.6k) -> encode(98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1142/1588 (z12 28%) https://www.openstreetmap.org/#map=12/37.43997/-79.62891
1:52:45 INF [archive] - features: [ 227M 11% 180k/s ] 128G tiles: [ 8M 9.5k/s ] 4.3G
cpus: 11 gc: 4% heap: 14G/32G direct: 18M postGC: 13G
read( 5%) -> (1.5k/1.6k) -> encode(96% 95% 96% 95% 96% 96% 96% 96% 96% 95% 95%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/1174/1512 (z12 29%) https://www.openstreetmap.org/#map=12/42.55308/-76.81641
1:52:55 INF [archive] - features: [ 228M 11% 127k/s ] 128G tiles: [ 8.1M 6.8k/s ] 4.3G
cpus: 11 gc: 5% heap: 15G/32G direct: 18M postGC: 13G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1197/1928 (z12 29%) https://www.openstreetmap.org/#map=12/10.48781/-74.79492
1:53:05 INF [archive] - features: [ 229M 11% 139k/s ] 128G tiles: [ 8.2M 5.5k/s ] 4.4G
cpus: 11 gc: 4% heap: 21G/32G direct: 18M postGC: 13G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1215/2628 (z12 30%) https://www.openstreetmap.org/#map=12/-45.33670/-73.21289
1:53:15 INF [archive] - features: [ 230M 11% 82k/s ] 128G tiles: [ 8.2M 4.9k/s ] 4.4G
cpus: 11 gc: 3% heap: 25G/32G direct: 18M postGC: 13G
read( 2%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1231/1960 (z12 30%) https://www.openstreetmap.org/#map=12/7.71099/-71.80664
1:53:25 INF [archive] - features: [ 231M 11% 93k/s ] 128G tiles: [ 8.2M 43/s ] 4.4G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 13G
read( 0%) -> (1.4k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1231/1526 (z12 30%) https://www.openstreetmap.org/#map=12/41.64008/-71.80664
1:53:35 INF [archive] - features: [ 232M 11% 126k/s ] 128G tiles: [ 8.2M 293/s ] 4.4G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 13G
read( 0%) -> (1.3k/1.6k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 0%)
last tile: 12/1232/1526 (z12 30%) https://www.openstreetmap.org/#map=12/41.64008/-71.71875
1:53:45 INF [archive] - features: [ 234M 11% 114k/s ] 128G tiles: [ 8.5M 28k/s ] 4.5G
cpus: 11.1 gc: 3% heap: 16G/32G direct: 18M postGC: 14G
read( 5%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 96% 97% 96% 97% 97% 97% 96%) -> (1.6k/1.6k) -> write(14%)
last tile: 12/1330/2162 (z12 32%) https://www.openstreetmap.org/#map=12/-9.96885/-63.10547
1:53:55 INF [archive] - features: [ 235M 11% 187k/s ] 128G tiles: [ 8.7M 22k/s ] 4.6G
cpus: 11 gc: 4% heap: 16G/32G direct: 18M postGC: 14G
read( 1%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/1397/2005 (z12 34%) https://www.openstreetmap.org/#map=12/3.77656/-57.21680
1:54:05 INF [archive] - features: [ 237M 11% 167k/s ] 128G tiles: [ 8.9M 17k/s ] 4.6G
cpus: 11 gc: 2% heap: 18G/32G direct: 18M postGC: 14G
read( 2%) -> (1.5k/1.6k) -> encode(98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/1452/2341 (z12 35%) https://www.openstreetmap.org/#map=12/-24.92629/-52.38281
1:54:15 INF [archive] - features: [ 240M 12% 252k/s ] 128G tiles: [ 9.1M 18k/s ] 4.7G
cpus: 11 gc: 4% heap: 20G/32G direct: 18M postGC: 14G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/1515/2323 (z12 37%) https://www.openstreetmap.org/#map=12/-23.48340/-46.84570
1:54:25 INF [archive] - features: [ 241M 12% 104k/s ] 128G tiles: [ 9.1M 6.3k/s ] 4.7G
cpus: 10.9 gc: 5% heap: 15G/32G direct: 18M postGC: 14G
read( 3%) -> (1.4k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/1538/2745 (z12 38%) https://www.openstreetmap.org/#map=12/-52.10651/-44.82422
1:54:35 INF [archive] - features: [ 243M 12% 209k/s ] 128G tiles: [ 9.3M 13k/s ] 4.7G
cpus: 11 gc: 4% heap: 20G/32G direct: 18M postGC: 15G
read( 4%) -> (1.3k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 95% 95% 96% 95% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/1585/3019 (z12 39%) https://www.openstreetmap.org/#map=12/-64.58618/-40.69336
1:54:45 INF [archive] - features: [ 248M 12% 497k/s ] 128G tiles: [ 10M 120k/s ] 4.9G
cpus: 11.2 gc: 10% heap: 19G/32G direct: 18M postGC: 16G
read(24%) -> (1.5k/1.6k) -> encode(88% 88% 90% 89% 89% 89% 89% 89% 88% 87% 88%) -> (1.6k/1.6k) -> write(20%)
last tile: 12/1982/1866 (z12 48%) https://www.openstreetmap.org/#map=12/15.79225/-5.80078
1:54:55 INF [archive] - features: [ 252M 12% 383k/s ] 128G tiles: [ 10M 12k/s ] 4.9G
cpus: 11.1 gc: 9% heap: 3.9G/32G direct: 18M postGC: 3G
read( 7%) -> (1.5k/1.6k) -> encode(89% 90% 88% 87% 89% 90% 87% 89% 91% 87% 88%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2024/1444 (z12 49%) https://www.openstreetmap.org/#map=12/46.80006/-2.10938
1:55:05 INF [archive] - features: [ 256M 12% 421k/s ] 128G tiles: [ 10M 7.9k/s ] 5G
cpus: 11 gc: 4% heap: 5.8G/32G direct: 18M postGC: 3.5G
read( 8%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 95% 95% 96% 95% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2050/1505 (z12 50%) https://www.openstreetmap.org/#map=12/43.00465/0.17578
1:55:15 INF [archive] - features: [ 259M 12% 294k/s ] 128G tiles: [ 10M 8.2k/s ] 5G
cpus: 11 gc: 7% heap: 13G/32G direct: 18M postGC: 3.8G
read( 7%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 92% 92% 93% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2077/1519 (z12 51%) https://www.openstreetmap.org/#map=12/42.09822/2.54883
1:55:25 INF [archive] - features: [ 263M 13% 372k/s ] 128G tiles: [ 10M 7.9k/s ] 5.1G
cpus: 11 gc: 8% heap: 19G/32G direct: 18M postGC: 4.3G
read( 8%) -> (1.5k/1.6k) -> encode(92% 91% 92% 92% 92% 92% 92% 92% 92% 91% 92%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2103/1345 (z12 51%) https://www.openstreetmap.org/#map=12/52.42922/4.83398
1:55:35 INF [archive] - features: [ 265M 13% 207k/s ] 128G tiles: [ 10M 2.1k/s ] 5.1G
cpus: 10.9 gc: 8% heap: 10G/32G direct: 18M postGC: 4.6G
read( 3%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2110/1456 (z12 52%) https://www.openstreetmap.org/#map=12/46.07323/5.44922
1:55:45 INF [archive] - features: [ 267M 13% 209k/s ] 128G tiles: [ 10M 4k/s ] 5.2G
cpus: 11 gc: 6% heap: 20G/32G direct: 18M postGC: 4.9G
read( 7%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2123/1258 (z12 52%) https://www.openstreetmap.org/#map=12/56.84897/6.59180
1:55:55 INF [archive] - features: [ 268M 13% 139k/s ] 128G tiles: [ 10M 1.5k/s ] 5.2G
cpus: 11 gc: 5% heap: 15G/32G direct: 18M postGC: 5.1G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2128/1456 (z12 52%) https://www.openstreetmap.org/#map=12/46.07323/7.03125
1:56:05 INF [archive] - features: [ 270M 13% 159k/s ] 128G tiles: [ 11M 2.7k/s ] 5.2G
cpus: 11 gc: 4% heap: 10G/32G direct: 18M postGC: 5.3G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2137/1326 (z12 52%) https://www.openstreetmap.org/#map=12/53.43572/7.82227
1:56:15 INF [archive] - features: [ 272M 13% 206k/s ] 128G tiles: [ 11M 2.4k/s ] 5.2G
cpus: 11 gc: 4% heap: 23G/32G direct: 18M postGC: 5.5G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2145/1255 (z12 52%) https://www.openstreetmap.org/#map=12/56.99288/8.52539
1:56:25 INF [archive] - features: [ 273M 13% 175k/s ] 128G tiles: [ 11M 2.4k/s ] 5.3G
cpus: 11 gc: 6% heap: 16G/32G direct: 18M postGC: 5.8G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2153/1478 (z12 53%) https://www.openstreetmap.org/#map=12/44.71551/9.22852
1:56:35 INF [archive] - features: [ 275M 13% 190k/s ] 128G tiles: [ 11M 3.3k/s ] 5.3G
cpus: 11 gc: 6% heap: 9.8G/32G direct: 18M postGC: 6.1G
read( 6%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2164/1140 (z12 53%) https://www.openstreetmap.org/#map=12/62.10388/10.19531
1:56:45 INF [archive] - features: [ 277M 13% 168k/s ] 128G tiles: [ 11M 2.7k/s ] 5.4G
cpus: 11 gc: 5% heap: 23G/32G direct: 18M postGC: 6.3G
read( 5%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2173/1171 (z12 53%) https://www.openstreetmap.org/#map=12/60.80206/10.98633
1:56:55 INF [archive] - features: [ 278M 13% 140k/s ] 128G tiles: [ 11M 2k/s ] 5.4G
cpus: 11 gc: 5% heap: 17G/32G direct: 18M postGC: 6.5G
read( 3%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2180/1184 (z12 53%) https://www.openstreetmap.org/#map=12/60.23981/11.60156
1:57:05 INF [archive] - features: [ 280M 13% 131k/s ] 128G tiles: [ 11M 2k/s ] 5.4G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 6.6G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.5k/1.6k) -> write( 2%)
last tile: 12/2187/1101 (z12 53%) https://www.openstreetmap.org/#map=12/63.66576/12.21680
1:57:15 INF [archive] - features: [ 281M 13% 110k/s ] 128G tiles: [ 11M 2k/s ] 5.5G
cpus: 11 gc: 4% heap: 9.1G/32G direct: 18M postGC: 6.8G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2194/1515 (z12 54%) https://www.openstreetmap.org/#map=12/42.35854/12.83203
1:57:25 INF [archive] - features: [ 282M 14% 110k/s ] 128G tiles: [ 11M 1.1k/s ] 5.5G
cpus: 11 gc: 3% heap: 22G/32G direct: 18M postGC: 6.9G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2198/1190 (z12 54%) https://www.openstreetmap.org/#map=12/59.97701/13.18359
1:57:35 INF [archive] - features: [ 283M 14% 67k/s ] 128G tiles: [ 11M 1.1k/s ] 5.5G
cpus: 11 gc: 3% heap: 17G/32G direct: 18M postGC: 7.1G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2202/1113 (z12 54%) https://www.openstreetmap.org/#map=12/63.19402/13.53516
1:57:46 INF [archive] - features: [ 283M 14% 66k/s ] 128G tiles: [ 11M 1.4k/s ] 5.5G
cpus: 11 gc: 3% heap: 13G/32G direct: 18M postGC: 7.1G
read( 2%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 1%)
last tile: 12/2207/1471 (z12 54%) https://www.openstreetmap.org/#map=12/45.15105/13.97461
1:57:56 INF [archive] - features: [ 284M 14% 90k/s ] 128G tiles: [ 11M 1.4k/s ] 5.5G
cpus: 11 gc: 2% heap: 24G/32G direct: 18M postGC: 7.3G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2212/1150 (z12 54%) https://www.openstreetmap.org/#map=12/61.68987/14.41406
1:58:06 INF [archive] - features: [ 285M 14% 94k/s ] 128G tiles: [ 11M 2.2k/s ] 5.6G
cpus: 11 gc: 3% heap: 19G/32G direct: 18M postGC: 7.4G
read( 4%) -> (1.5k/1.6k) -> encode(96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2220/1171 (z12 54%) https://www.openstreetmap.org/#map=12/60.80206/15.11719
1:58:16 INF [archive] - features: [ 286M 14% 85k/s ] 128G tiles: [ 11M 1.9k/s ] 5.6G
cpus: 11 gc: 3% heap: 16G/32G direct: 18M postGC: 7.6G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2227/1272 (z12 54%) https://www.openstreetmap.org/#map=12/56.17002/15.73242
1:58:26 INF [archive] - features: [ 287M 14% 117k/s ] 128G tiles: [ 11M 2.5k/s ] 5.6G
cpus: 11 gc: 3% heap: 12G/32G direct: 18M postGC: 7.7G
read( 3%) -> (1.5k/1.6k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/2236/1497 (z12 55%) https://www.openstreetmap.org/#map=12/43.51669/16.52344
1:58:36 INF [archive] - features: [ 289M 14% 157k/s ] 128G tiles: [ 11M 4.5k/s ] 5.7G
cpus: 11 gc: 3% heap: 8.1G/32G direct: 18M postGC: 7.9G
read( 4%) -> (1.5k/1.6k) -> encode(97% 96% 97% 96% 97% 97% 96% 96% 97% 96% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2252/1544 (z12 55%) https://www.openstreetmap.org/#map=12/40.44695/17.92969
1:58:46 INF [archive] - features: [ 291M 14% 170k/s ] 128G tiles: [ 11M 4.5k/s ] 5.7G
cpus: 11 gc: 4% heap: 19G/32G direct: 18M postGC: 8.1G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2268/1433 (z12 55%) https://www.openstreetmap.org/#map=12/47.45781/19.33594
1:58:56 INF [archive] - features: [ 292M 14% 139k/s ] 128G tiles: [ 11M 5k/s ] 5.8G
cpus: 11 gc: 5% heap: 12G/32G direct: 18M postGC: 8.4G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2286/2125 (z12 56%) https://www.openstreetmap.org/#map=12/-6.75190/20.91797
1:59:06 INF [archive] - features: [ 293M 14% 154k/s ] 128G tiles: [ 11M 4.5k/s ] 5.8G
cpus: 11 gc: 4% heap: 8.6G/32G direct: 18M postGC: 8.6G
read( 4%) -> (1.5k/1.6k) -> encode(95% 96% 95% 95% 95% 96% 95% 95% 96% 95% 95%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2302/1446 (z12 56%) https://www.openstreetmap.org/#map=12/46.67959/22.32422
1:59:16 INF [archive] - features: [ 295M 14% 120k/s ] 128G tiles: [ 11M 3.8k/s ] 5.9G
cpus: 11 gc: 4% heap: 22G/32G direct: 18M postGC: 8.7G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2315/97 (z12 57%) https://www.openstreetmap.org/#map=12/84.25839/23.46680
1:59:26 INF [archive] - features: [ 296M 14% 146k/s ] 128G tiles: [ 11M 4.3k/s ] 5.9G
cpus: 11 gc: 3% heap: 18G/32G direct: 18M postGC: 8.8G
read( 4%) -> (1.5k/1.6k) -> encode(96% 96% 97% 97% 96% 97% 97% 96% 96% 96% 97%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2331/1460 (z12 57%) https://www.openstreetmap.org/#map=12/45.82880/24.87305
1:59:36 INF [archive] - features: [ 298M 14% 187k/s ] 128G tiles: [ 11M 7.2k/s ] 6G
cpus: 11 gc: 4% heap: 13G/32G direct: 18M postGC: 9.1G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/2356/1237 (z12 58%) https://www.openstreetmap.org/#map=12/57.84475/27.07031
1:59:46 INF [archive] - features: [ 300M 14% 159k/s ] 128G tiles: [ 11M 4.3k/s ] 6G
cpus: 11 gc: 4% heap: 26G/32G direct: 18M postGC: 9.3G
read( 3%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 3%)
last tile: 12/2371/2215 (z12 58%) https://www.openstreetmap.org/#map=12/-14.51978/28.38867
1:59:56 INF [archive] - features: [ 301M 14% 114k/s ] 128G tiles: [ 11M 5k/s ] 6.1G
cpus: 11.2 gc: 4% heap: 17G/32G direct: 18M postGC: 3.2G
read( 4%) -> (1.5k/1.6k) -> encode(89% 90% 94% 94% 92% 91% 91% 91% 92% 91% 93%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2388/2063 (z12 58%) https://www.openstreetmap.org/#map=12/-1.31824/29.88281
2:00:06 INF [archive] - features: [ 304M 15% 278k/s ] 128G tiles: [ 11M 7.5k/s ] 6.1G
cpus: 11.1 gc: 4% heap: 8G/32G direct: 18M postGC: 3.5G
read( 6%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/2413/1324 (z12 59%) https://www.openstreetmap.org/#map=12/53.54031/32.08008
2:00:16 INF [archive] - features: [ 306M 15% 265k/s ] 128G tiles: [ 11M 7.1k/s ] 6.2G
cpus: 11 gc: 5% heap: 14G/32G direct: 18M postGC: 3.8G
read( 4%) -> (1.5k/1.6k) -> encode(95% 95% 95% 94% 94% 94% 94% 94% 95% 95% 95%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/2437/1315 (z12 59%) https://www.openstreetmap.org/#map=12/54.00777/34.18945
2:00:26 INF [archive] - features: [ 309M 15% 281k/s ] 128G tiles: [ 11M 9.2k/s ] 6.3G
cpus: 11 gc: 6% heap: 4.1G/32G direct: 18M postGC: 4.1G
read( 5%) -> (1.5k/1.6k) -> encode(94% 94% 94% 93% 93% 93% 94% 93% 94% 93% 93%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/2468/1383 (z12 60%) https://www.openstreetmap.org/#map=12/50.34546/36.91406
2:00:36 INF [archive] - features: [ 312M 15% 285k/s ] 128G tiles: [ 12M 12k/s ] 6.4G
cpus: 11 gc: 6% heap: 10G/32G direct: 18M postGC: 4.5G
read( 6%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/2509/1568 (z12 61%) https://www.openstreetmap.org/#map=12/38.82259/40.51758
2:00:46 INF [archive] - features: [ 313M 15% 124k/s ] 128G tiles: [ 12M 10k/s ] 6.4G
cpus: 11 gc: 6% heap: 19G/32G direct: 18M postGC: 4.6G
read( 4%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/2544/160 (z12 62%) https://www.openstreetmap.org/#map=12/83.67694/43.59375
2:00:56 INF [archive] - features: [ 316M 15% 235k/s ] 128G tiles: [ 12M 9k/s ] 6.5G
cpus: 11 gc: 5% heap: 10G/32G direct: 18M postGC: 4.9G
read( 4%) -> (1.4k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 94% 94% 95%) -> (1.6k/1.6k) -> write( 4%)
last tile: 12/2575/1642 (z12 63%) https://www.openstreetmap.org/#map=12/33.57801/46.31836
2:01:06 INF [archive] - features: [ 318M 15% 201k/s ] 128G tiles: [ 12M 20k/s ] 6.6G
cpus: 11.1 gc: 4% heap: 19G/32G direct: 18M postGC: 5.2G
read( 9%) -> (1.5k/1.6k) -> encode(95% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 9%)
last tile: 12/2648/1324 (z12 65%) https://www.openstreetmap.org/#map=12/53.54031/52.73438
2:01:16 INF [archive] - features: [ 319M 15% 172k/s ] 128G tiles: [ 12M 23k/s ] 6.6G
cpus: 11 gc: 7% heap: 10G/32G direct: 18M postGC: 5.6G
read( 5%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/2734/1256 (z12 67%) https://www.openstreetmap.org/#map=12/56.94497/60.29297
2:01:26 INF [archive] - features: [ 322M 15% 255k/s ] 128G tiles: [ 13M 32k/s ] 6.7G
cpus: 11.1 gc: 8% heap: 16G/32G direct: 18M postGC: 5.9G
read( 7%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write(10%)
last tile: 12/2850/1634 (z12 70%) https://www.openstreetmap.org/#map=12/34.16182/70.48828
2:01:36 INF [archive] - features: [ 326M 16% 433k/s ] 128G tiles: [ 13M 32k/s ] 6.8G
cpus: 11.1 gc: 8% heap: 18G/32G direct: 18M postGC: 6.6G
read(13%) -> (1.5k/1.6k) -> encode(90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write(12%)
last tile: 12/2965/1542 (z12 72%) https://www.openstreetmap.org/#map=12/40.58058/80.59570
2:01:46 INF [archive] - features: [ 328M 16% 144k/s ] 128G tiles: [ 13M 11k/s ] 6.9G
cpus: 11 gc: 10% heap: 22G/32G direct: 18M postGC: 6.9G
read( 4%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/3007/1361 (z12 73%) https://www.openstreetmap.org/#map=12/51.56341/84.28711
2:01:56 INF [archive] - features: [ 329M 16% 100k/s ] 128G tiles: [ 13M 3.4k/s ] 6.9G
cpus: 10.9 gc: 7% heap: 8.3G/32G direct: 18M postGC: 7G
read( 2%) -> (1.4k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
last tile: 12/3020/1459 (z12 74%) https://www.openstreetmap.org/#map=12/45.89001/85.42969
2:02:06 INF [archive] - features: [ 331M 16% 219k/s ] 128G tiles: [ 13M 36k/s ] 7G
cpus: 11.1 gc: 4% heap: 8.5G/32G direct: 18M postGC: 7.5G
read(10%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 95% 95% 95% 96% 96% 93%) -> (1.6k/1.6k) -> write(11%)
last tile: 12/3163/2254 (z12 77%) https://www.openstreetmap.org/#map=12/-17.81146/97.99805
2:02:16 INF [archive] - features: [ 335M 16% 437k/s ] 128G tiles: [ 14M 23k/s ] 7.1G
cpus: 11.1 gc: 8% heap: 21G/32G direct: 18M postGC: 8G
read( 8%) -> (1.5k/1.6k) -> encode(92% 91% 92% 92% 92% 92% 91% 92% 92% 92% 91%) -> (1.6k/1.6k) -> write( 8%)
last tile: 12/3257/1726 (z12 80%) https://www.openstreetmap.org/#map=12/27.21556/106.25977
2:02:26 INF [archive] - features: [ 340M 16% 446k/s ] 128G tiles: [ 14M 23k/s ] 7.2G
cpus: 11 gc: 11% heap: 13G/32G direct: 18M postGC: 8.5G
read( 7%) -> (1.5k/1.6k) -> encode(89% 88% 89% 89% 89% 88% 88% 88% 88% 89% 87%) -> (1.6k/1.6k) -> write( 7%)
last tile: 12/3351/1783 (z12 82%) https://www.openstreetmap.org/#map=12/22.67485/114.52148
2:02:36 INF [archive] - features: [ 343M 16% 371k/s ] 128G tiles: [ 14M 17k/s ] 7.2G
cpus: 11 gc: 9% heap: 23G/32G direct: 18M postGC: 8.9G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 90% 91% 90% 91% 91% 90% 91% 89% 91%) -> (1.6k/1.6k) -> write( 7%)
last tile: 12/3417/1767 (z12 83%) https://www.openstreetmap.org/#map=12/23.96618/120.32227
2:02:46 INF [archive] - features: [ 347M 17% 329k/s ] 128G tiles: [ 14M 22k/s ] 7.3G
cpus: 11 gc: 11% heap: 16G/32G direct: 18M postGC: 9.4G
read( 7%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 88% 89% 89%) -> (1.6k/1.6k) -> write( 7%)
last tile: 12/3506/1957 (z12 86%) https://www.openstreetmap.org/#map=12/7.97220/128.14453
2:02:56 INF [archive] - features: [ 349M 17% 236k/s ] 128G tiles: [ 14M 13k/s ] 7.4G
cpus: 11.1 gc: 8% heap: 5.7G/32G direct: 18M postGC: 9.6G
read( 3%) -> (1.5k/1.6k) -> encode(89% 91% 90% 86% 88% 90% 90% 91% 90% 91% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/3559/1641 (z12 87%) https://www.openstreetmap.org/#map=12/33.65121/132.80273
2:03:06 INF [archive] - features: [ 353M 17% 407k/s ] 128G tiles: [ 15M 17k/s ] 7.4G
cpus: 11.2 gc: 4% heap: 2.2G/32G direct: 18M postGC: 2.1G
read( 3%) -> (1.5k/1.6k) -> encode(93% 95% 95% 93% 93% 94% 93% 94% 93% 93% 95%) -> (1.6k/1.6k) -> write( 6%)
last tile: 12/3625/1594 (z12 89%) https://www.openstreetmap.org/#map=12/37.02010/138.60352
2:03:16 INF [archive] - features: [ 357M 17% 376k/s ] 128G tiles: [ 15M 13k/s ] 7.5G
cpus: 11 gc: 5% heap: 6.1G/32G direct: 18M postGC: 2.3G
read( 3%) -> (1.5k/1.6k) -> encode(94% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 5%)
last tile: 12/3673/1448 (z12 90%) https://www.openstreetmap.org/#map=12/46.55886/142.82227
2:03:26 INF [archive] - features: [ 360M 17% 308k/s ] 128G tiles: [ 16M 97k/s ] 7.6G
cpus: 11.1 gc: 4% heap: 9.3G/32G direct: 18M postGC: 2.6G
read( 3%) -> (1.5k/1.6k) -> encode(93% 95% 95% 96% 95% 95% 94% 95% 95% 95% 94%) -> (1.6k/1.6k) -> write(20%)
last tile: 12/3985/3522 (z12 97%) https://www.openstreetmap.org/#map=12/-78.09830/170.24414
2:03:32 INF [archive:write] - Finished z12 in 12m53s cpu:2h22m3s gc:42s avg:11, now starting z13
2:03:36 INF [archive] - features: [ 367M 18% 676k/s ] 128G tiles: [ 19M 376k/s ] 7.7G
cpus: 10.5 gc: 8% heap: 4.6G/32G direct: 18M postGC: 3G
read( 8%) -> (0/1.6k) -> encode(85% 84% 84% 84% 84% 84% 85% 84% 84% 84% 83%) -> (1.6k/1.6k) -> write(44%)
last tile: 13/424/7573 (z13 5%) https://www.openstreetmap.org/#map=13/-82.05182/-161.36719
2:03:46 INF [archive] - features: [ 373M 18% 595k/s ] 128G tiles: [ 25M 572k/s ] 7.9G
cpus: 10.8 gc: 10% heap: 4.3G/32G direct: 18M postGC: 3.6G
read(24%) -> (1.5k/1.6k) -> encode(82% 81% 80% 82% 82% 75% 83% 80% 82% 81% 82%) -> (1.6k/1.6k) -> write(71%)
last tile: 13/1298/2911 (z13 16%) https://www.openstreetmap.org/#map=13/46.10371/-122.95898
2:03:56 INF [archive] - features: [ 379M 18% 606k/s ] 128G tiles: [ 26M 85k/s ] 8G
cpus: 11.1 gc: 9% heap: 11G/32G direct: 18M postGC: 4.2G
read( 9%) -> (1.5k/1.6k) -> encode(91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write(16%)
last tile: 13/1443/2792 (z13 18%) https://www.openstreetmap.org/#map=13/49.61071/-116.58691
2:04:06 INF [archive] - features: [ 383M 18% 461k/s ] 128G tiles: [ 27M 83k/s ] 8.2G
cpus: 11.1 gc: 13% heap: 5.1G/32G direct: 18M postGC: 5G
read(10%) -> (1.5k/1.6k) -> encode(87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87%) -> (1.6k/1.6k) -> write(18%)
last tile: 13/1589/3718 (z13 19%) https://www.openstreetmap.org/#map=13/16.38339/-110.17090
2:04:16 INF [archive] - features: [ 391M 19% 730k/s ] 128G tiles: [ 28M 121k/s ] 8.4G
cpus: 11.2 gc: 11% heap: 8.8G/32G direct: 18M postGC: 5.6G
read(16%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 86% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(23%)
last tile: 13/1799/2888 (z13 22%) https://www.openstreetmap.org/#map=13/46.80006/-100.94238
2:04:26 INF [archive] - features: [ 401M 19% 1M/s ] 128G tiles: [ 29M 71k/s ] 8.5G
cpus: 11.2 gc: 10% heap: 15G/32G direct: 18M postGC: 6.8G
read(16%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90%) -> (1.6k/1.6k) -> write(16%)
last tile: 13/1925/6365 (z13 23%) https://www.openstreetmap.org/#map=13/-70.09553/-95.40527
2:04:36 INF [archive] - features: [ 408M 20% 639k/s ] 128G tiles: [ 29M 62k/s ] 8.7G
cpus: 11.1 gc: 12% heap: 12G/32G direct: 18M postGC: 7.8G
read(13%) -> (1.5k/1.6k) -> encode(87% 88% 87% 88% 88% 88% 88% 88% 88% 87% 88%) -> (1.6k/1.6k) -> write(16%)
last tile: 13/2039/3023 (z13 25%) https://www.openstreetmap.org/#map=13/42.58544/-90.39551
2:04:46 INF [archive] - features: [ 411M 20% 344k/s ] 128G tiles: [ 30M 29k/s ] 8.8G
cpus: 11 gc: 13% heap: 9.3G/32G direct: 18M postGC: 8.3G
read( 7%) -> (1.5k/1.6k) -> encode(87% 86% 87% 87% 87% 87% 87% 87% 87% 86% 87%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/2093/3001 (z13 26%) https://www.openstreetmap.org/#map=13/43.29320/-88.02246
2:04:56 INF [archive] - features: [ 415M 20% 439k/s ] 128G tiles: [ 30M 36k/s ] 8.9G
cpus: 11 gc: 11% heap: 16G/32G direct: 18M postGC: 8.9G
read( 9%) -> (1.5k/1.6k) -> encode(87% 87% 89% 89% 88% 89% 89% 87% 89% 89% 89%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/2159/3070 (z13 26%) https://www.openstreetmap.org/#map=13/41.04622/-85.12207
2:05:06 INF [archive] - features: [ 420M 20% 411k/s ] 128G tiles: [ 30M 28k/s ] 9G
cpus: 11 gc: 11% heap: 24G/32G direct: 18M postGC: 9.4G
read( 9%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/2212/3021 (z13 27%) https://www.openstreetmap.org/#map=13/42.65012/-82.79297
2:05:16 INF [archive] - features: [ 422M 20% 287k/s ] 128G tiles: [ 31M 16k/s ] 9G
cpus: 11 gc: 12% heap: 21G/32G direct: 18M postGC: 9.9G
read( 7%) -> (1.5k/1.6k) -> encode(87% 87% 86% 86% 86% 88% 87% 85% 88% 85% 87%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/2242/3185 (z13 27%) https://www.openstreetmap.org/#map=13/37.12529/-81.47461
2:05:26 INF [archive] - features: [ 426M 20% 349k/s ] 128G tiles: [ 31M 22k/s ] 9.1G
cpus: 11.1 gc: 6% heap: 4G/32G direct: 18M postGC: 2.6G
read( 9%) -> (1.5k/1.6k) -> encode(93% 94% 93% 92% 94% 94% 92% 91% 91% 93% 93%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/2282/3214 (z13 28%) https://www.openstreetmap.org/#map=13/36.10238/-79.71680
2:05:36 INF [archive] - features: [ 431M 21% 502k/s ] 128G tiles: [ 31M 39k/s ] 9.3G
cpus: 11.1 gc: 8% heap: 7.7G/32G direct: 18M postGC: 3.3G
read(12%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write(12%)
last tile: 13/2350/3118 (z13 29%) https://www.openstreetmap.org/#map=13/39.43619/-76.72852
2:05:46 INF [archive] - features: [ 435M 21% 374k/s ] 128G tiles: [ 31M 30k/s ] 9.4G
cpus: 11 gc: 11% heap: 6.3G/32G direct: 18M postGC: 3.8G
read( 6%) -> (1.5k/1.6k) -> encode(89% 88% 88% 88% 89% 89% 89% 88% 88% 89% 88%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/2402/3058 (z13 29%) https://www.openstreetmap.org/#map=13/41.44273/-74.44336
2:05:56 INF [archive] - features: [ 438M 21% 330k/s ] 128G tiles: [ 32M 25k/s ] 9.5G
cpus: 11 gc: 11% heap: 10G/32G direct: 18M postGC: 4.2G
read( 6%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/2445/5953 (z13 30%) https://www.openstreetmap.org/#map=13/-62.93523/-72.55371
2:06:06 INF [archive] - features: [ 440M 21% 165k/s ] 128G tiles: [ 32M 10k/s ] 9.5G
cpus: 11 gc: 8% heap: 17G/32G direct: 18M postGC: 4.4G
read( 2%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/2463/3642 (z13 30%) https://www.openstreetmap.org/#map=13/19.55979/-71.76270
2:06:16 INF [archive] - features: [ 444M 21% 393k/s ] 128G tiles: [ 32M 48k/s ] 9.6G
cpus: 11.1 gc: 5% heap: 19G/32G direct: 18M postGC: 4.8G
read( 6%) -> (1.5k/1.6k) -> encode(94% 95% 95% 95% 95% 95% 95% 94% 95% 95% 94%) -> (1.6k/1.6k) -> write(14%)
last tile: 13/2554/3276 (z13 31%) https://www.openstreetmap.org/#map=13/33.87042/-67.76367
2:06:26 INF [archive] - features: [ 447M 21% 384k/s ] 128G tiles: [ 33M 63k/s ] 9.8G
cpus: 11.1 gc: 7% heap: 21G/32G direct: 18M postGC: 5.2G
read( 7%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(18%)
last tile: 13/2667/2953 (z13 33%) https://www.openstreetmap.org/#map=13/44.80912/-62.79785
2:06:36 INF [archive] - features: [ 452M 22% 488k/s ] 128G tiles: [ 34M 104k/s ] 9.9G
cpus: 11.2 gc: 10% heap: 19G/32G direct: 18M postGC: 5.5G
read(12%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 89% 89% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write(23%)
last tile: 13/2828/4954 (z13 35%) https://www.openstreetmap.org/#map=13/-35.24562/-55.72266
2:06:46 INF [archive] - features: [ 457M 22% 430k/s ] 128G tiles: [ 35M 79k/s ] 10G
cpus: 11.1 gc: 10% heap: 20G/32G direct: 18M postGC: 5.5G
read(10%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(18%)
last tile: 13/2957/4679 (z13 36%) https://www.openstreetmap.org/#map=13/-24.80668/-50.05371
2:06:56 INF [archive] - features: [ 461M 22% 447k/s ] 128G tiles: [ 35M 42k/s ] 10G
cpus: 11 gc: 10% heap: 22G/32G direct: 18M postGC: 5.5G
read( 7%) -> (1.4k/1.6k) -> encode(89% 90% 90% 89% 90% 89% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/3034/4644 (z13 37%) https://www.openstreetmap.org/#map=13/-23.40276/-46.66992
2:07:06 INF [archive] - features: [ 464M 22% 262k/s ] 128G tiles: [ 36M 46k/s ] 10G
cpus: 11 gc: 11% heap: 9.2G/32G direct: 18M postGC: 5.5G
read( 5%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(11%)
last tile: 13/3118/2322 (z13 38%) https://www.openstreetmap.org/#map=13/61.22796/-42.97852
2:07:16 INF [archive] - features: [ 467M 22% 293k/s ] 128G tiles: [ 36M 50k/s ] 10G
cpus: 11 gc: 7% heap: 11G/32G direct: 18M postGC: 5.6G
read( 2%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/3205/5015 (z13 39%) https://www.openstreetmap.org/#map=13/-37.40507/-39.15527
2:07:26 INF [archive] - features: [ 478M 23% 1.1M/s ] 128G tiles: [ 41M 429k/s ] 10G
cpus: 11.5 gc: 8% heap: 8.5G/32G direct: 18M postGC: 6.5G
read(30%) -> (1.5k/1.6k) -> encode(90% 88% 91% 90% 91% 89% 89% 91% 90% 89% 88%) -> (1.6k/1.6k) -> write(58%)
last tile: 13/3921/3088 (z13 48%) https://www.openstreetmap.org/#map=13/40.44695/-7.69043
2:07:36 INF [archive] - features: [ 486M 23% 737k/s ] 128G tiles: [ 41M 63k/s ] 10G
cpus: 11.2 gc: 7% heap: 7.6G/32G direct: 18M postGC: 7.6G
read(15%) -> (1.5k/1.6k) -> encode(92% 93% 92% 92% 92% 92% 91% 93% 92% 93% 93%) -> (1.6k/1.6k) -> write(14%)
last tile: 13/4027/2677 (z13 49%) https://www.openstreetmap.org/#map=13/52.77619/-3.03223
2:07:46 INF [archive] - features: [ 492M 24% 657k/s ] 128G tiles: [ 41M 26k/s ] 10G
cpus: 11 gc: 9% heap: 22G/32G direct: 18M postGC: 8.1G
read(11%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 89% 89% 90% 90% 90% 91% 90%) -> (1.5k/1.6k) -> write( 7%)
last tile: 13/4072/4077 (z13 50%) https://www.openstreetmap.org/#map=13/0.83493/-1.05469
2:07:56 INF [archive] - features: [ 498M 24% 608k/s ] 128G tiles: [ 42M 27k/s ] 10G
cpus: 11.1 gc: 12% heap: 5.7G/32G direct: 18M postGC: 8.9G
read(11%) -> (1.5k/1.6k) -> encode(87% 87% 87% 88% 88% 87% 87% 88% 88% 88% 87%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/4118/2964 (z13 50%) https://www.openstreetmap.org/#map=13/44.46515/0.96680
2:08:06 INF [archive] - features: [ 504M 24% 578k/s ] 128G tiles: [ 42M 30k/s ] 11G
cpus: 11.2 gc: 7% heap: 6G/32G direct: 18M postGC: 2.8G
read(12%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 93% 93% 92%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/4169/3254 (z13 51%) https://www.openstreetmap.org/#map=13/34.66936/3.20801
2:08:16 INF [archive] - features: [ 510M 24% 562k/s ] 128G tiles: [ 42M 23k/s ] 11G
cpus: 11 gc: 12% heap: 5.2G/32G direct: 18M postGC: 3.6G
read(12%) -> (1.5k/1.6k) -> encode(87% 88% 88% 88% 88% 87% 88% 87% 88% 88% 87%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/4209/2706 (z13 51%) https://www.openstreetmap.org/#map=13/51.99841/4.96582
2:08:26 INF [archive] - features: [ 514M 25% 365k/s ] 128G tiles: [ 42M 12k/s ] 11G
cpus: 11 gc: 10% heap: 18G/32G direct: 18M postGC: 3.9G
read( 7%) -> (1.5k/1.6k) -> encode(90% 90% 90% 89% 90% 90% 90% 90% 90% 89% 90%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4229/2925 (z13 52%) https://www.openstreetmap.org/#map=13/45.67548/5.84473
2:08:36 INF [archive] - features: [ 518M 25% 393k/s ] 128G tiles: [ 42M 12k/s ] 11G
cpus: 11 gc: 10% heap: 9.5G/32G direct: 18M postGC: 4.5G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4250/2918 (z13 52%) https://www.openstreetmap.org/#map=13/45.89001/6.76758
2:08:46 INF [archive] - features: [ 520M 25% 242k/s ] 128G tiles: [ 43M 4.2k/s ] 11G
cpus: 10.9 gc: 9% heap: 5.1G/32G direct: 18M postGC: 4.8G
read( 4%) -> (1.4k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 2%)
last tile: 13/4257/2965 (z13 52%) https://www.openstreetmap.org/#map=13/44.43378/7.07520
2:08:56 INF [archive] - features: [ 523M 25% 337k/s ] 128G tiles: [ 43M 12k/s ] 11G
cpus: 11.1 gc: 6% heap: 15G/32G direct: 18M postGC: 5.2G
read(10%) -> (1.5k/1.6k) -> encode(94% 93% 94% 94% 94% 94% 93% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4278/2414 (z13 52%) https://www.openstreetmap.org/#map=13/59.22093/7.99805
2:09:06 INF [archive] - features: [ 527M 25% 411k/s ] 128G tiles: [ 43M 10k/s ] 11G
cpus: 11 gc: 9% heap: 6.2G/32G direct: 18M postGC: 5.7G
read( 8%) -> (1.5k/1.6k) -> encode(91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4295/2447 (z13 52%) https://www.openstreetmap.org/#map=13/58.47072/8.74512
2:09:17 INF [archive] - features: [ 531M 25% 345k/s ] 128G tiles: [ 43M 11k/s ] 11G
cpus: 11 gc: 9% heap: 12G/32G direct: 18M postGC: 6.2G
read( 9%) -> (1.5k/1.6k) -> encode(91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4314/2416 (z13 53%) https://www.openstreetmap.org/#map=13/59.17593/9.58008
2:09:27 INF [archive] - features: [ 535M 26% 432k/s ] 128G tiles: [ 43M 13k/s ] 11G
cpus: 11 gc: 10% heap: 12G/32G direct: 18M postGC: 6.7G
read(10%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/4336/2361 (z13 53%) https://www.openstreetmap.org/#map=13/60.39215/10.54688
2:09:37 INF [archive] - features: [ 538M 26% 319k/s ] 128G tiles: [ 43M 10k/s ] 11G
cpus: 11 gc: 10% heap: 12G/32G direct: 18M postGC: 7.2G
read( 8%) -> (1.5k/1.6k) -> encode(89% 89% 90% 90% 89% 90% 89% 90% 90% 90% 89%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4354/2342 (z13 53%) https://www.openstreetmap.org/#map=13/60.80206/11.33789
Mar 21, 2023 3:43:28 PM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
2:09:47 INF [archive] - features: [ 541M 26% 296k/s ] 128G tiles: [ 43M 10k/s ] 11G
cpus: 11 gc: 9% heap: 12G/32G direct: 18M postGC: 7.6G
read( 8%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4372/2404 (z13 53%) https://www.openstreetmap.org/#map=13/59.44508/12.12891
2:09:57 INF [archive] - features: [ 544M 26% 253k/s ] 128G tiles: [ 43M 8.6k/s ] 11G
cpus: 11 gc: 7% heap: 14G/32G direct: 18M postGC: 7.9G
read( 7%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4387/2416 (z13 54%) https://www.openstreetmap.org/#map=13/59.17593/12.78809
2:10:07 INF [archive] - features: [ 547M 26% 258k/s ] 128G tiles: [ 43M 7.9k/s ] 11G
cpus: 11 gc: 7% heap: 14G/32G direct: 18M postGC: 8.2G
read( 6%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4401/2218 (z13 54%) https://www.openstreetmap.org/#map=13/63.35213/13.40332
2:10:17 INF [archive] - features: [ 548M 26% 130k/s ] 128G tiles: [ 43M 5k/s ] 11G
cpus: 11 gc: 6% heap: 17G/32G direct: 18M postGC: 8.4G
read( 4%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write( 3%)
last tile: 13/4410/2344 (z13 54%) https://www.openstreetmap.org/#map=13/60.75916/13.79883
2:10:27 INF [archive] - features: [ 549M 26% 138k/s ] 128G tiles: [ 44M 6k/s ] 11G
cpus: 11 gc: 4% heap: 21G/32G direct: 18M postGC: 8.6G
read( 4%) -> (1.5k/1.6k) -> encode(96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4421/3031 (z13 54%) https://www.openstreetmap.org/#map=13/42.32606/14.28223
2:10:37 INF [archive] - features: [ 551M 26% 191k/s ] 128G tiles: [ 44M 7.1k/s ] 12G
cpus: 11 gc: 4% heap: 23G/32G direct: 18M postGC: 8.8G
read( 5%) -> (1.5k/1.6k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96%) -> (1.6k/1.6k) -> write( 4%)
last tile: 13/4434/2922 (z13 54%) https://www.openstreetmap.org/#map=13/45.76752/14.85352
2:10:47 INF [archive] - features: [ 553M 27% 198k/s ] 128G tiles: [ 44M 8.7k/s ] 12G
cpus: 11 gc: 5% heap: 10G/32G direct: 18M postGC: 9.1G
read( 5%) -> (1.5k/1.6k) -> encode(94% 95% 94% 95% 95% 95% 95% 95% 94% 95% 94%) -> (1.6k/1.6k) -> write( 5%)
last tile: 13/4450/2405 (z13 54%) https://www.openstreetmap.org/#map=13/59.42273/15.55664
2:10:57 INF [archive] - features: [ 555M 27% 218k/s ] 128G tiles: [ 44M 10k/s ] 12G
cpus: 11 gc: 5% heap: 17G/32G direct: 18M postGC: 9.4G
read( 6%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/4470/2995 (z13 55%) https://www.openstreetmap.org/#map=13/43.48481/16.43555
2:11:07 INF [archive] - features: [ 559M 27% 352k/s ] 128G tiles: [ 44M 19k/s ] 12G
cpus: 11 gc: 6% heap: 20G/32G direct: 18M postGC: 9.8G
read( 8%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/4507/2819 (z13 55%) https://www.openstreetmap.org/#map=13/48.83580/18.06152
2:11:17 INF [archive] - features: [ 562M 27% 364k/s ] 128G tiles: [ 44M 20k/s ] 12G
cpus: 11 gc: 9% heap: 20G/32G direct: 18M postGC: 10G
read( 8%) -> (1.5k/1.6k) -> encode(90% 90% 90% 91% 90% 90% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write( 7%)
last tile: 13/4545/3007 (z13 55%) https://www.openstreetmap.org/#map=13/43.10098/19.73145
2:11:27 INF [archive] - features: [ 566M 27% 357k/s ] 128G tiles: [ 44M 22k/s ] 12G
cpus: 11 gc: 11% heap: 11G/32G direct: 18M postGC: 10G
read( 9%) -> (1.5k/1.6k) -> encode(89% 88% 88% 89% 89% 88% 88% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/4588/5096 (z13 56%) https://www.openstreetmap.org/#map=13/-40.17887/21.62109
2:11:37 INF [archive] - features: [ 569M 27% 294k/s ] 128G tiles: [ 45M 17k/s ] 12G
cpus: 11 gc: 9% heap: 20G/32G direct: 18M postGC: 11G
read( 7%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/4621/4189 (z13 56%) https://www.openstreetmap.org/#map=13/-4.08345/23.07129
2:11:47 INF [archive] - features: [ 572M 27% 331k/s ] 128G tiles: [ 45M 20k/s ] 12G
cpus: 11 gc: 10% heap: 13G/32G direct: 18M postGC: 11G
read( 8%) -> (1.5k/1.6k) -> encode(89% 90% 89% 90% 90% 90% 90% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 9%)
last tile: 13/4659/2135 (z13 57%) https://www.openstreetmap.org/#map=13/64.94216/24.74121
2:11:57 INF [archive] - features: [ 576M 28% 418k/s ] 128G tiles: [ 45M 27k/s ] 12G
cpus: 11 gc: 9% heap: 19G/32G direct: 18M postGC: 12G
read( 8%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/4709/2742 (z13 57%) https://www.openstreetmap.org/#map=13/51.01375/26.93848
2:12:07 INF [archive] - features: [ 581M 28% 426k/s ] 128G tiles: [ 45M 21k/s ] 12G
cpus: 11.1 gc: 11% heap: 10G/32G direct: 18M postGC: 2.4G
read( 7%) -> (1.5k/1.6k) -> encode(85% 88% 84% 88% 86% 86% 86% 85% 84% 88% 87%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/4747/280 (z13 58%) https://www.openstreetmap.org/#map=13/83.86762/28.60840
2:12:17 INF [archive] - features: [ 584M 28% 310k/s ] 128G tiles: [ 45M 16k/s ] 13G
cpus: 11.1 gc: 3% heap: 4.8G/32G direct: 18M postGC: 2.7G
read( 8%) -> (1.5k/1.6k) -> encode(97% 97% 96% 97% 96% 97% 96% 97% 96% 97% 96%) -> (1.6k/1.6k) -> write( 8%)
last tile: 13/4777/2414 (z13 58%) https://www.openstreetmap.org/#map=13/59.22093/29.92676
2:12:27 INF [archive] - features: [ 591M 28% 698k/s ] 128G tiles: [ 46M 26k/s ] 13G
cpus: 11.1 gc: 8% heap: 3.6G/32G direct: 18M postGC: 3.4G
read(12%) -> (1.5k/1.6k) -> encode(92% 91% 91% 92% 92% 92% 91% 92% 91% 91% 92%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/4824/2754 (z13 59%) https://www.openstreetmap.org/#map=13/50.68080/31.99219
2:12:37 INF [archive] - features: [ 597M 29% 579k/s ] 128G tiles: [ 46M 29k/s ] 13G
cpus: 11.1 gc: 11% heap: 4.3G/32G direct: 18M postGC: 4.2G
read(10%) -> (1.5k/1.6k) -> encode(88% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/4876/2358 (z13 60%) https://www.openstreetmap.org/#map=13/60.45722/34.27734
2:12:47 INF [archive] - features: [ 603M 29% 595k/s ] 128G tiles: [ 46M 33k/s ] 13G
cpus: 11.1 gc: 10% heap: 17G/32G direct: 18M postGC: 4.8G
read( 9%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 89% 89% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(11%)
last tile: 13/4934/3170 (z13 60%) https://www.openstreetmap.org/#map=13/37.64903/36.82617
2:12:57 INF [archive] - features: [ 609M 29% 603k/s ] 128G tiles: [ 47M 42k/s ] 13G
cpus: 11.1 gc: 12% heap: 10G/32G direct: 18M postGC: 5.4G
read(10%) -> (1.5k/1.6k) -> encode(88% 88% 87% 88% 88% 88% 87% 88% 87% 87% 88%) -> (1.6k/1.6k) -> write(13%)
last tile: 13/5007/3086 (z13 61%) https://www.openstreetmap.org/#map=13/40.51380/40.03418
2:13:07 INF [archive] - features: [ 612M 29% 343k/s ] 128G tiles: [ 47M 47k/s ] 13G
cpus: 11.1 gc: 12% heap: 12G/32G direct: 18M postGC: 5.8G
read( 9%) -> (1.5k/1.6k) -> encode(87% 88% 88% 87% 88% 87% 88% 87% 88% 88% 87%) -> (1.6k/1.6k) -> write(15%)
last tile: 13/5089/3196 (z13 62%) https://www.openstreetmap.org/#map=13/36.73888/43.63770
2:13:17 INF [archive] - features: [ 617M 30% 454k/s ] 128G tiles: [ 48M 34k/s ] 13G
cpus: 11 gc: 11% heap: 13G/32G direct: 18M postGC: 6G
read( 6%) -> (1.3k/1.6k) -> encode(88% 89% 89% 87% 89% 88% 87% 88% 89% 88% 88%) -> (1.6k/1.6k) -> write(10%)
last tile: 13/5150/3130 (z13 63%) https://www.openstreetmap.org/#map=13/39.02772/46.31836
2:13:27 INF [archive] - features: [ 622M 30% 521k/s ] 128G tiles: [ 48M 68k/s ] 14G
cpus: 11.1 gc: 9% heap: 12G/32G direct: 18M postGC: 6.5G
read( 9%) -> (1.5k/1.6k) -> encode(91% 91% 91% 89% 91% 91% 91% 91% 91% 91% 90%) -> (1.6k/1.6k) -> write(18%)
last tile: 13/5275/3225 (z13 64%) https://www.openstreetmap.org/#map=13/35.71084/51.81152
2:13:37 INF [archive] - features: [ 627M 30% 546k/s ] 128G tiles: [ 49M 115k/s ] 14G
cpus: 11.2 gc: 9% heap: 8.7G/32G direct: 18M postGC: 6.4G
read(11%) -> (1.5k/1.6k) -> encode(90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write(24%)
last tile: 13/5494/2584 (z13 67%) https://www.openstreetmap.org/#map=13/55.17887/61.43555
2:13:47 INF [archive] - features: [ 633M 30% 594k/s ] 128G tiles: [ 51M 137k/s ] 14G
cpus: 11.3 gc: 11% heap: 11G/32G direct: 18M postGC: 7.2G
read(19%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 88% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(27%)
last tile: 13/5749/3220 (z13 70%) https://www.openstreetmap.org/#map=13/35.88905/72.64160
2:13:57 INF [archive] - features: [ 643M 31% 964k/s ] 128G tiles: [ 51M 62k/s ] 14G
cpus: 11.1 gc: 11% heap: 8.3G/32G direct: 18M postGC: 8.3G
read(15%) -> (1.5k/1.6k) -> encode(88% 89% 89% 89% 89% 89% 89% 89% 88% 89% 89%) -> (1.5k/1.6k) -> write(16%)
last tile: 13/5865/2373 (z13 72%) https://www.openstreetmap.org/#map=13/60.13056/77.73926
2:14:07 INF [archive] - features: [ 651M 31% 758k/s ] 128G tiles: [ 52M 58k/s ] 14G
cpus: 11.2 gc: 11% heap: 7.9G/32G direct: 18M postGC: 2G
read(11%) -> (1.5k/1.6k) -> encode(86% 88% 88% 86% 89% 88% 88% 89% 87% 87% 89%) -> (1.6k/1.6k) -> write(15%)
last tile: 13/5978/3463 (z13 73%) https://www.openstreetmap.org/#map=13/26.78485/82.70508
2:14:17 INF [archive] - features: [ 654M 31% 364k/s ] 128G tiles: [ 52M 42k/s ] 14G
cpus: 11.1 gc: 3% heap: 8.2G/32G direct: 18M postGC: 2.3G
read( 7%) -> (1.5k/1.6k) -> encode(97% 97% 96% 97% 97% 97% 96% 97% 97% 97% 96%) -> (1.6k/1.6k) -> write(13%)
last tile: 13/6062/2875 (z13 74%) https://www.openstreetmap.org/#map=13/47.18971/86.39648
2:14:27 INF [archive] - features: [ 657M 32% 263k/s ] 128G tiles: [ 53M 19k/s ] 14G
cpus: 11 gc: 6% heap: 7.4G/32G direct: 18M postGC: 2.6G
read( 4%) -> (1.3k/1.6k) -> encode(93% 94% 93% 94% 94% 93% 93% 94% 94% 94% 93%) -> (1.6k/1.6k) -> write( 6%)
last tile: 13/6102/5251 (z13 74%) https://www.openstreetmap.org/#map=13/-45.18204/88.15430
2:14:37 INF [archive] - features: [ 665M 32% 804k/s ] 128G tiles: [ 54M 134k/s ] 15G
cpus: 11.4 gc: 10% heap: 8.4G/32G direct: 18M postGC: 3.9G
read(24%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(29%)
last tile: 13/6390/3661 (z13 78%) https://www.openstreetmap.org/#map=13/18.77112/100.81055
2:14:47 INF [archive] - features: [ 675M 32% 1M/s ] 128G tiles: [ 55M 58k/s ] 15G
cpus: 11.2 gc: 11% heap: 5.6G/32G direct: 18M postGC: 5.1G
read(15%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(15%)
last tile: 13/6517/3386 (z13 80%) https://www.openstreetmap.org/#map=13/29.76438/106.39160
2:14:57 INF [archive] - features: [ 686M 33% 1.1M/s ] 128G tiles: [ 55M 78k/s ] 15G
cpus: 11.2 gc: 8% heap: 17G/32G direct: 18M postGC: 6G
read(18%) -> (1.5k/1.6k) -> encode(90% 91% 90% 91% 91% 91% 91% 91% 91% 91% 92%) -> (1.6k/1.6k) -> write(17%)
last tile: 13/6681/3566 (z13 82%) https://www.openstreetmap.org/#map=13/22.67485/113.59863
2:15:07 INF [archive] - features: [ 694M 33% 730k/s ] 128G tiles: [ 56M 65k/s ] 15G
cpus: 11.1 gc: 10% heap: 24G/32G direct: 18M postGC: 6.9G
read(11%) -> (1.5k/1.6k) -> encode(90% 89% 89% 89% 89% 90% 89% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write(16%)
last tile: 13/6813/3401 (z13 83%) https://www.openstreetmap.org/#map=13/29.19053/119.39941
2:15:17 INF [archive] - features: [ 702M 34% 817k/s ] 128G tiles: [ 57M 83k/s ] 15G
cpus: 11.2 gc: 11% heap: 14G/32G direct: 18M postGC: 7.3G
read(12%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(18%)
last tile: 13/6984/3172 (z13 85%) https://www.openstreetmap.org/#map=13/37.57941/126.91406
2:15:27 INF [archive] - features: [ 707M 34% 553k/s ] 128G tiles: [ 57M 63k/s ] 15G
cpus: 11.1 gc: 11% heap: 18G/32G direct: 18M postGC: 7.3G
read(12%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(16%)
last tile: 13/7114/3534 (z13 87%) https://www.openstreetmap.org/#map=13/23.96618/132.62695
2:15:37 INF [archive] - features: [ 715M 34% 747k/s ] 128G tiles: [ 58M 64k/s ] 16G
cpus: 11.1 gc: 11% heap: 16G/32G direct: 18M postGC: 7.3G
read(14%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(14%)
last tile: 13/7243/450 (z13 88%) https://www.openstreetmap.org/#map=13/83.01554/138.29590
2:15:47 INF [archive] - features: [ 723M 35% 785k/s ] 128G tiles: [ 59M 63k/s ] 16G
cpus: 11.1 gc: 9% heap: 9.7G/32G direct: 18M postGC: 6.8G
read( 7%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 89%) -> (1.6k/1.6k) -> write(14%)
last tile: 13/7368/5370 (z13 90%) https://www.openstreetmap.org/#map=13/-48.74895/143.78906
2:15:57 INF [archive] - features: [ 730M 35% 768k/s ] 128G tiles: [ 62M 330k/s ] 16G
cpus: 11.5 gc: 5% heap: 17G/32G direct: 18M postGC: 6.7G
read(11%) -> (778/1.6k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write(50%)
last tile: 13/7912/1476 (z13 97%) https://www.openstreetmap.org/#map=13/74.72962/167.69531
2:16:01 INF [archive:write] - Finished z13 in 12m29s cpu:2h18m22s gc:1m7s avg:11.1, now starting z14
2:16:07 INF [archive] - features: [ 744M 36% 1.3M/s ] 128G tiles: [ 73M 1.1M/s ] 16G
cpus: 5.9 gc: 2% heap: 15G/32G direct: 18M postGC: 6.6G
read(14%) -> (0/1.6k) -> encode(41% 41% 41% 42% 40% 42% 44% 41% 41% 42% 41%) -> (1.6k/1.6k) -> write(93%)
last tile: 14/564/2043 (z14 3%) https://www.openstreetmap.org/#map=14/79.19196/-167.60742
2:16:17 INF [archive] - features: [ 758M 36% 1.4M/s ] 128G tiles: [ 86M 1.2M/s ] 16G
cpus: 4.3 gc: 2% heap: 18G/32G direct: 18M postGC: 6.6G
read(17%) -> (0/1.6k) -> encode(27% 24% 26% 27% 26% 29% 27% 28% 26% 27% 26%) -> (1.6k/1.6k) -> write(98%)
last tile: 14/1430/9236 (z14 9%) https://www.openstreetmap.org/#map=14/-22.35008/-148.57910
2:16:27 INF [archive] - features: [ 772M 37% 1.3M/s ] 128G tiles: [ 97M 1.1M/s ] 17G
cpus: 6 gc: 3% heap: 12G/32G direct: 18M postGC: 6.7G
read(17%) -> (1/1.6k) -> encode(41% 40% 43% 43% 41% 42% 40% 41% 39% 43% 43%) -> (1.6k/1.6k) -> write(97%)
last tile: 14/2334/6774 (z14 14%) https://www.openstreetmap.org/#map=14/29.72622/-128.71582
2:16:37 INF [archive] - features: [ 786M 38% 1.4M/s ] 128G tiles: [ 101M 367k/s ] 17G
cpus: 11.5 gc: 7% heap: 12G/32G direct: 18M postGC: 7.3G
read(31%) -> (1.5k/1.6k) -> encode(91% 90% 91% 91% 90% 86% 88% 88% 91% 90% 91%) -> (1.6k/1.6k) -> write(53%)
last tile: 14/2639/12972 (z14 16%) https://www.openstreetmap.org/#map=14/-71.82884/-122.01416
2:16:47 INF [archive] - features: [ 800M 38% 1.3M/s ] 128G tiles: [ 103M 204k/s ] 17G
cpus: 11.4 gc: 7% heap: 13G/32G direct: 18M postGC: 7.7G
read(21%) -> (1.5k/1.6k) -> encode(93% 93% 93% 92% 90% 92% 92% 92% 90% 92% 90%) -> (1.6k/1.6k) -> write(36%)
last tile: 14/2812/6371 (z14 17%) https://www.openstreetmap.org/#map=14/37.10777/-118.21289
2:16:51 WAR [archive:encode] - {x=2873 y=6626 z=14} 1140kb uncompressed
2:16:57 INF [archive] - features: [ 815M 39% 1.5M/s ] 128G tiles: [ 106M 275k/s ] 18G
cpus: 11.5 gc: 7% heap: 13G/32G direct: 18M postGC: 7.8G
read(22%) -> (1.4k/1.6k) -> encode(93% 93% 90% 91% 93% 92% 92% 92% 93% 92% 93%) -> (1.6k/1.6k) -> write(46%)
last tile: 14/3054/6642 (z14 19%) https://www.openstreetmap.org/#map=14/32.21280/-112.89551
2:17:07 INF [archive] - features: [ 828M 40% 1.2M/s ] 128G tiles: [ 107M 185k/s ] 18G
cpus: 11.3 gc: 6% heap: 17G/32G direct: 18M postGC: 7.8G
read(12%) -> (539/1.6k) -> encode(94% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(33%)
last tile: 14/3217/7507 (z14 20%) https://www.openstreetmap.org/#map=14/14.88109/-109.31396
2:17:17 INF [archive] - features: [ 842M 40% 1.4M/s ] 128G tiles: [ 112M 406k/s ] 19G
cpus: 11.7 gc: 6% heap: 20G/32G direct: 18M postGC: 7.7G
read(29%) -> (1.4k/1.6k) -> encode(92% 92% 94% 93% 92% 93% 88% 88% 91% 92% 92%) -> (1.5k/1.6k) -> write(67%)
last tile: 14/3571/7235 (z14 22%) https://www.openstreetmap.org/#map=14/20.57108/-101.53564
2:17:27 INF [archive] - features: [ 857M 41% 1.4M/s ] 128G tiles: [ 114M 203k/s ] 19G
cpus: 11.5 gc: 10% heap: 9.8G/32G direct: 18M postGC: 9.3G
read(26%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(38%)
last tile: 14/3752/6204 (z14 23%) https://www.openstreetmap.org/#map=14/39.97712/-97.55859
2:17:37 INF [archive] - features: [ 873M 42% 1.5M/s ] 128G tiles: [ 115M 139k/s ] 19G
cpus: 11.4 gc: 9% heap: 6.6G/32G direct: 18M postGC: 10G
read(22%) -> (1.5k/1.6k) -> encode(89% 91% 90% 91% 91% 91% 89% 90% 91% 90% 90%) -> (1.5k/1.6k) -> write(28%)
last tile: 14/3877/5850 (z14 24%) https://www.openstreetmap.org/#map=14/45.67548/-94.81201
2:17:47 INF [archive] - features: [ 885M 42% 1.1M/s ] 128G tiles: [ 116M 150k/s ] 20G
cpus: 11.1 gc: 11% heap: 4.8G/32G direct: 18M postGC: 3.2G
read(20%) -> (1.5k/1.6k) -> encode(84% 88% 84% 83% 87% 88% 86% 85% 86% 86% 83%) -> (1.6k/1.6k) -> write(31%)
last tile: 14/4015/6002 (z14 25%) https://www.openstreetmap.org/#map=14/43.29320/-91.77979
2:17:57 INF [archive] - features: [ 896M 43% 1.1M/s ] 128G tiles: [ 118M 108k/s ] 20G
cpus: 11.3 gc: 12% heap: 6.5G/32G direct: 18M postGC: 4.5G
read(19%) -> (1.5k/1.6k) -> encode(87% 88% 88% 88% 88% 87% 88% 87% 88% 88% 88%) -> (1.6k/1.6k) -> write(23%)
last tile: 14/4115/7216 (z14 25%) https://www.openstreetmap.org/#map=14/20.96144/-89.58252
2:18:07 INF [archive] - features: [ 909M 44% 1.3M/s ] 128G tiles: [ 119M 113k/s ] 20G
cpus: 11.3 gc: 10% heap: 18G/32G direct: 18M postGC: 5G
read(21%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(24%)
last tile: 14/4220/7544 (z14 26%) https://www.openstreetmap.org/#map=14/14.09396/-87.27539
2:18:17 INF [archive] - features: [ 920M 44% 1.1M/s ] 128G tiles: [ 120M 111k/s ] 20G
cpus: 11.2 gc: 12% heap: 8.6G/32G direct: 18M postGC: 5.8G
read(19%) -> (1.4k/1.6k) -> encode(87% 88% 88% 88% 87% 88% 87% 88% 88% 88% 86%) -> (1.5k/1.6k) -> write(23%)
last tile: 14/4321/7721 (z14 26%) https://www.openstreetmap.org/#map=14/10.29330/-85.05615
2:18:27 INF [archive] - features: [ 933M 45% 1.2M/s ] 128G tiles: [ 121M 82k/s ] 21G
cpus: 11.2 gc: 12% heap: 7G/32G direct: 18M postGC: 7G
read(18%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/4398/7642 (z14 27%) https://www.openstreetmap.org/#map=14/11.99634/-83.36426
2:18:37 INF [archive] - features: [ 945M 45% 1.2M/s ] 128G tiles: [ 122M 88k/s ] 21G
cpus: 11.3 gc: 11% heap: 18G/32G direct: 18M postGC: 7.7G
read(21%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 88% 89% 89%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/4478/6340 (z14 27%) https://www.openstreetmap.org/#map=14/37.64903/-81.60645
2:18:47 INF [archive] - features: [ 958M 46% 1.2M/s ] 128G tiles: [ 122M 74k/s ] 21G
cpus: 11.2 gc: 11% heap: 20G/32G direct: 18M postGC: 8.2G
read(21%) -> (1.5k/1.6k) -> encode(88% 89% 88% 88% 88% 89% 88% 87% 88% 89% 88%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/4544/6010 (z14 28%) https://www.openstreetmap.org/#map=14/43.16512/-80.15625
2:18:57 INF [archive] - features: [ 971M 47% 1.3M/s ] 128G tiles: [ 123M 98k/s ] 21G
cpus: 11.2 gc: 11% heap: 22G/32G direct: 18M postGC: 8.8G
read(20%) -> (1.5k/1.6k) -> encode(88% 89% 88% 89% 88% 88% 88% 86% 88% 86% 89%) -> (1.6k/1.6k) -> write(23%)
last tile: 14/4630/6015 (z14 28%) https://www.openstreetmap.org/#map=14/43.08494/-78.26660
2:19:07 INF [archive] - features: [ 986M 47% 1.4M/s ] 128G tiles: [ 124M 95k/s ] 22G
cpus: 11.3 gc: 10% heap: 23G/32G direct: 18M postGC: 9.7G
read(21%) -> (1.5k/1.6k) -> encode(89% 89% 88% 89% 89% 89% 89% 89% 89% 88% 89%) -> (1.6k/1.6k) -> write(23%)
last tile: 14/4714/6370 (z14 29%) https://www.openstreetmap.org/#map=14/37.12529/-76.42090
2:19:17 INF [archive] - features: [ 998M 48% 1.2M/s ] 128G tiles: [ 125M 107k/s ] 22G
cpus: 11.2 gc: 10% heap: 15G/32G direct: 18M postGC: 10G
read(19%) -> (1.5k/1.6k) -> encode(89% 90% 90% 88% 89% 89% 89% 89% 89% 90% 89%) -> (1.6k/1.6k) -> write(24%)
last tile: 14/4807/9241 (z14 29%) https://www.openstreetmap.org/#map=14/-22.45165/-74.37744
2:19:27 INF [archive] - features: [ 1B 49% 1.2M/s ] 128G tiles: [ 126M 77k/s ] 22G
cpus: 11.2 gc: 11% heap: 12G/32G direct: 18M postGC: 11G
read(19%) -> (1.5k/1.6k) -> encode(86% 88% 87% 87% 88% 88% 88% 88% 87% 87% 88%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/4872/10195 (z14 30%) https://www.openstreetmap.org/#map=14/-40.22922/-72.94922
2:19:38 INF [archive] - features: [ 1B 49% 810k/s ] 128G tiles: [ 127M 64k/s ] 22G
cpus: 11.2 gc: 13% heap: 4.9G/32G direct: 18M postGC: 1.8G
read(12%) -> (1.4k/1.6k) -> encode(87% 84% 86% 87% 85% 87% 87% 85% 85% 85% 85%) -> (1.6k/1.6k) -> write(18%)
last tile: 14/4929/6279 (z14 30%) https://www.openstreetmap.org/#map=14/38.70266/-71.69678
2:19:48 INF [archive] - features: [ 1B 49% 975k/s ] 128G tiles: [ 128M 106k/s ] 23G
cpus: 11.4 gc: 5% heap: 14G/32G direct: 18M postGC: 2.6G
read(12%) -> (1.5k/1.6k) -> encode(95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95%) -> (1.6k/1.6k) -> write(26%)
last tile: 14/5034/5915 (z14 31%) https://www.openstreetmap.org/#map=14/44.66865/-69.38965
2:19:58 INF [archive] - features: [ 1B 50% 980k/s ] 128G tiles: [ 130M 222k/s ] 23G
cpus: 11.5 gc: 8% heap: 4G/32G direct: 18M postGC: 2.5G
read(15%) -> (1.5k/1.6k) -> encode(92% 92% 91% 92% 92% 92% 92% 91% 91% 92% 90%) -> (1.6k/1.6k) -> write(43%)
last tile: 14/5245/9295 (z14 32%) https://www.openstreetmap.org/#map=14/-23.54385/-64.75342
2:20:08 INF [archive] - features: [ 1B 50% 1.1M/s ] 128G tiles: [ 133M 337k/s ] 23G
cpus: 11.7 gc: 6% heap: 6.6G/32G direct: 18M postGC: 2.5G
read(18%) -> (1.4k/1.6k) -> encode(94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94%) -> (1.6k/1.6k) -> write(56%)
last tile: 14/5519/6179 (z14 34%) https://www.openstreetmap.org/#map=14/40.39676/-58.73291
2:20:18 INF [archive] - features: [ 1B 51% 1M/s ] 128G tiles: [ 137M 315k/s ] 24G
cpus: 11.6 gc: 7% heap: 11G/32G direct: 18M postGC: 2.5G
read(19%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write(53%)
last tile: 14/5767/6943 (z14 35%) https://www.openstreetmap.org/#map=14/26.45090/-53.28369
2:20:28 INF [archive] - features: [ 1B 51% 740k/s ] 128G tiles: [ 139M 198k/s ] 24G
cpus: 11.4 gc: 9% heap: 10G/32G direct: 18M postGC: 2.6G
read(16%) -> (1.4k/1.6k) -> encode(90% 91% 90% 90% 90% 90% 91% 91% 91% 90% 91%) -> (1.6k/1.6k) -> write(36%)
last tile: 14/5937/9391 (z14 36%) https://www.openstreetmap.org/#map=14/-25.46311/-49.54834
2:20:38 INF [archive] - features: [ 1B 52% 1.1M/s ] 128G tiles: [ 141M 207k/s ] 24G
cpus: 11.4 gc: 9% heap: 7.2G/32G direct: 18M postGC: 2.5G
read(19%) -> (1.5k/1.6k) -> encode(90% 90% 91% 91% 90% 91% 91% 90% 90% 91% 90%) -> (1.6k/1.6k) -> write(38%)
last tile: 14/6129/9067 (z14 37%) https://www.openstreetmap.org/#map=14/-18.87510/-45.32959
2:20:48 INF [archive] - features: [ 1B 52% 727k/s ] 128G tiles: [ 143M 224k/s ] 24G
cpus: 11.4 gc: 8% heap: 2.5G/32G direct: 18M postGC: 2.5G
read(15%) -> (1.5k/1.6k) -> encode(91% 91% 91% 91% 89% 91% 91% 91% 91% 91% 91%) -> (1.6k/1.6k) -> write(38%)
last tile: 14/6328/9318 (z14 39%) https://www.openstreetmap.org/#map=14/-24.00633/-40.95703
2:20:55 WAR [archive:encode] - {x=6435 y=8361 z=14} 1349kb uncompressed
2:20:58 INF [archive] - features: [ 1B 53% 1M/s ] 128G tiles: [ 146M 314k/s ] 25G
cpus: 11 gc: 6% heap: 17G/32G direct: 18M postGC: 2.4G
read(11%) -> (0/1.6k) -> encode(89% 90% 91% 89% 89% 91% 90% 90% 88% 89% 90%) -> (1.6k/1.6k) -> write(42%)
last tile: 14/6599/8519 (z14 40%) https://www.openstreetmap.org/#map=14/-7.16630/-35.00244
2:21:08 INF [archive] - features: [ 1.1B 54% 1.7M/s ] 128G tiles: [ 157M 1.1M/s ] 25G
cpus: 6.1 gc: 3% heap: 16G/32G direct: 18M postGC: 2.5G
read(24%) -> (0/1.6k) -> encode(43% 42% 43% 41% 42% 42% 42% 41% 42% 41% 41%) -> (1.6k/1.6k) -> write(97%)
last tile: 14/7543/9290 (z14 46%) https://www.openstreetmap.org/#map=14/-23.44309/-14.26025
2:21:18 INF [archive] - features: [ 1.1B 54% 1.6M/s ] 128G tiles: [ 161M 405k/s ] 25G
cpus: 11.2 gc: 8% heap: 13G/32G direct: 18M postGC: 2.8G
read(35%) -> (1.5k/1.6k) -> encode(86% 87% 84% 87% 87% 88% 88% 85% 87% 88% 85%) -> (1.6k/1.6k) -> write(57%)
last tile: 14/7871/6628 (z14 48%) https://www.openstreetmap.org/#map=14/32.47270/-7.05322
2:21:28 INF [archive] - features: [ 1.1B 55% 1.4M/s ] 128G tiles: [ 163M 172k/s ] 26G
cpus: 11.3 gc: 11% heap: 5.6G/32G direct: 18M postGC: 4.3G
read(26%) -> (1.5k/1.6k) -> encode(89% 86% 89% 88% 87% 89% 88% 89% 89% 88% 87%) -> (1.6k/1.6k) -> write(32%)
last tile: 14/8014/6157 (z14 49%) https://www.openstreetmap.org/#map=14/40.76390/-3.91113
2:21:38 INF [archive] - features: [ 1.1B 56% 1.4M/s ] 128G tiles: [ 164M 86k/s ] 26G
cpus: 11.2 gc: 12% heap: 5.9G/32G direct: 18M postGC: 5.9G
read(23%) -> (1.5k/1.6k) -> encode(87% 88% 88% 87% 87% 87% 88% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/8087/5256 (z14 49%) https://www.openstreetmap.org/#map=14/54.05939/-2.30713
2:21:48 INF [archive] - features: [ 1.1B 57% 1.5M/s ] 128G tiles: [ 164M 54k/s ] 26G
cpus: 11.2 gc: 11% heap: 9.7G/32G direct: 18M postGC: 6.4G
read(22%) -> (1.5k/1.6k) -> encode(89% 89% 88% 89% 89% 88% 89% 88% 89% 87% 89%) -> (1.6k/1.6k) -> write(15%)
last tile: 14/8133/5427 (z14 50%) https://www.openstreetmap.org/#map=14/51.79503/-1.29639
2:21:58 INF [archive] - features: [ 1.1B 57% 1.8M/s ] 128G tiles: [ 165M 63k/s ] 27G
cpus: 11.2 gc: 9% heap: 18G/32G direct: 18M postGC: 7.2G
read(25%) -> (1.5k/1.6k) -> encode(91% 90% 90% 90% 90% 91% 90% 90% 91% 90% 91%) -> (1.6k/1.6k) -> write(16%)
last tile: 14/8186/6036 (z14 50%) https://www.openstreetmap.org/#map=14/42.74701/-0.13184
2:22:08 INF [archive] - features: [ 1.2B 58% 1.7M/s ] 128G tiles: [ 166M 74k/s ] 27G
cpus: 11.2 gc: 12% heap: 10G/32G direct: 18M postGC: 8G
read(23%) -> (1.5k/1.6k) -> encode(87% 88% 87% 87% 88% 87% 87% 87% 87% 86% 88%) -> (1.6k/1.6k) -> write(18%)
last tile: 14/8248/5869 (z14 50%) https://www.openstreetmap.org/#map=14/45.38302/1.23047
2:22:18 INF [archive] - features: [ 1.2B 59% 1.6M/s ] 128G tiles: [ 166M 68k/s ] 27G
cpus: 11.2 gc: 10% heap: 11G/32G direct: 18M postGC: 8.6G
read(24%) -> (1.5k/1.6k) -> encode(89% 90% 90% 89% 89% 89% 89% 89% 89% 88% 90%) -> (1.6k/1.6k) -> write(17%)
last tile: 14/8306/6231 (z14 51%) https://www.openstreetmap.org/#map=14/39.52099/2.50488
2:22:28 INF [archive] - features: [ 1.2B 60% 2M/s ] 128G tiles: [ 167M 82k/s ] 28G
cpus: 11.2 gc: 10% heap: 14G/32G direct: 18M postGC: 9.3G
read(27%) -> (1.5k/1.6k) -> encode(88% 88% 89% 88% 89% 89% 88% 89% 87% 87% 89%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/8376/5789 (z14 51%) https://www.openstreetmap.org/#map=14/46.60417/4.04297
2:22:38 INF [archive] - features: [ 1.2B 61% 1.7M/s ] 128G tiles: [ 168M 46k/s ] 28G
cpus: 11.2 gc: 11% heap: 13G/32G direct: 18M postGC: 10G
read(24%) -> (1.5k/1.6k) -> encode(88% 87% 87% 88% 88% 87% 88% 88% 88% 87% 88%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/8415/5381 (z14 51%) https://www.openstreetmap.org/#map=14/52.41582/4.89990
2:22:48 INF [archive] - features: [ 1.2B 61% 1.4M/s ] 128G tiles: [ 168M 38k/s ] 28G
cpus: 11.1 gc: 10% heap: 25G/32G direct: 18M postGC: 11G
read(20%) -> (1.5k/1.6k) -> encode(89% 90% 89% 89% 88% 89% 89% 89% 89% 88% 89%) -> (1.5k/1.6k) -> write(12%)
last tile: 14/8447/5326 (z14 52%) https://www.openstreetmap.org/#map=14/53.14677/5.60303
2:22:58 INF [archive] - features: [ 1.2B 62% 1.3M/s ] 128G tiles: [ 168M 33k/s ] 29G
cpus: 11.2 gc: 11% heap: 13G/32G direct: 18M postGC: 2.3G
read(20%) -> (1.5k/1.6k) -> encode(89% 89% 87% 89% 88% 89% 88% 86% 87% 88% 87%) -> (1.6k/1.6k) -> write(11%)
last tile: 14/8475/5323 (z14 52%) https://www.openstreetmap.org/#map=14/53.18629/6.21826
2:23:08 INF [archive] - features: [ 1.3B 63% 1.4M/s ] 128G tiles: [ 169M 38k/s ] 29G
cpus: 11.1 gc: 12% heap: 13G/32G direct: 18M postGC: 3.6G
read(20%) -> (1.5k/1.6k) -> encode(87% 88% 87% 87% 88% 87% 87% 88% 87% 88% 87%) -> (1.5k/1.6k) -> write(12%)
last tile: 14/8507/5388 (z14 52%) https://www.openstreetmap.org/#map=14/52.32191/6.92139
2:23:18 INF [archive] - features: [ 1.3B 63% 775k/s ] 128G tiles: [ 169M 12k/s ] 29G
cpus: 11 gc: 13% heap: 4.4G/32G direct: 18M postGC: 4.4G
read(12%) -> (1.3k/1.6k) -> encode(87% 87% 87% 86% 86% 86% 86% 86% 86% 86% 86%) -> (1.6k/1.6k) -> write( 6%)
last tile: 14/8518/5872 (z14 52%) https://www.openstreetmap.org/#map=14/45.33670/7.16309
2:23:28 INF [archive] - features: [ 1.3B 64% 1.1M/s ] 128G tiles: [ 169M 33k/s ] 29G
cpus: 11.1 gc: 12% heap: 4.8G/32G direct: 18M postGC: 4.7G
read(21%) -> (1.5k/1.6k) -> encode(88% 88% 88% 88% 86% 88% 88% 87% 88% 88% 88%) -> (1.6k/1.6k) -> write(12%)
last tile: 14/8547/7856 (z14 52%) https://www.openstreetmap.org/#map=14/7.36247/7.80029
2:23:38 INF [archive] - features: [ 1.3B 64% 1.3M/s ] 128G tiles: [ 170M 40k/s ] 30G
cpus: 11.2 gc: 11% heap: 10G/32G direct: 18M postGC: 5.7G
read(22%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 88% 89%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/8580/4831 (z14 52%) https://www.openstreetmap.org/#map=14/59.18719/8.52539
2:23:48 INF [archive] - features: [ 1.3B 65% 1.5M/s ] 128G tiles: [ 170M 34k/s ] 30G
cpus: 11.2 gc: 12% heap: 11G/32G direct: 18M postGC: 6.6G
read(23%) -> (1.5k/1.6k) -> encode(88% 87% 88% 88% 88% 88% 88% 88% 88% 88% 87%) -> (1.6k/1.6k) -> write(12%)
last tile: 14/8609/5929 (z14 53%) https://www.openstreetmap.org/#map=14/44.44947/9.16260
2:23:58 INF [archive] - features: [ 1.3B 66% 1.2M/s ] 128G tiles: [ 170M 32k/s ] 30G
cpus: 11.1 gc: 10% heap: 18G/32G direct: 18M postGC: 7.4G
read(21%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 88% 89% 89% 89% 88% 87% 89%) -> (1.5k/1.6k) -> write(12%)
last tile: 14/8636/5945 (z14 53%) https://www.openstreetmap.org/#map=14/44.19796/9.75586
2:24:08 INF [archive] - features: [ 1.3B 67% 1.6M/s ] 128G tiles: [ 171M 41k/s ] 30G
cpus: 11.2 gc: 11% heap: 16G/32G direct: 18M postGC: 8.8G
read(24%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 87% 89% 88% 89% 89% 89% 89%) -> (1.5k/1.6k) -> write(14%)
last tile: 14/8671/5961 (z14 53%) https://www.openstreetmap.org/#map=14/43.94537/10.52490
2:24:18 INF [archive] - features: [ 1.4B 67% 1.3M/s ] 128G tiles: [ 171M 37k/s ] 31G
cpus: 11.1 gc: 12% heap: 10G/32G direct: 18M postGC: 10G
read(21%) -> (1.5k/1.6k) -> encode(86% 88% 88% 87% 87% 88% 87% 87% 87% 88% 87%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/8703/4581 (z14 53%) https://www.openstreetmap.org/#map=14/61.88723/11.22803
2:24:28 INF [archive] - features: [ 1.4B 68% 1.2M/s ] 128G tiles: [ 172M 37k/s ] 31G
cpus: 11.1 gc: 12% heap: 11G/32G direct: 18M postGC: 11G
read(20%) -> (1.5k/1.6k) -> encode(88% 88% 87% 88% 86% 88% 87% 88% 88% 88% 85%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/8735/4593 (z14 53%) https://www.openstreetmap.org/#map=14/61.76273/11.93115
2:24:38 INF [archive] - features: [ 1.4B 68% 1.1M/s ] 128G tiles: [ 172M 34k/s ] 31G
cpus: 11.2 gc: 11% heap: 7.5G/32G direct: 18M postGC: 2.2G
read(19%) -> (1.5k/1.6k) -> encode(88% 86% 86% 87% 86% 88% 88% 87% 88% 87% 86%) -> (1.5k/1.6k) -> write(13%)
last tile: 14/8765/4789 (z14 53%) https://www.openstreetmap.org/#map=14/59.65664/12.59033
2:24:48 INF [archive] - features: [ 1.4B 69% 1M/s ] 128G tiles: [ 172M 37k/s ] 32G
cpus: 11.2 gc: 10% heap: 15G/32G direct: 18M postGC: 3.2G
read(18%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.5k/1.6k) -> write(13%)
last tile: 14/8798/4460 (z14 54%) https://www.openstreetmap.org/#map=14/63.11464/13.31543
2:24:58 INF [archive] - features: [ 1.4B 69% 718k/s ] 128G tiles: [ 173M 22k/s ] 32G
cpus: 11.1 gc: 13% heap: 7.3G/32G direct: 18M postGC: 4.1G
read(13%) -> (1.4k/1.6k) -> encode(87% 86% 87% 87% 87% 87% 87% 87% 87% 87% 87%) -> (1.6k/1.6k) -> write( 9%)
last tile: 14/8818/5843 (z14 54%) https://www.openstreetmap.org/#map=14/45.78285/13.75488
2:25:08 INF [archive] - features: [ 1.4B 69% 455k/s ] 128G tiles: [ 173M 20k/s ] 32G
cpus: 11 gc: 12% heap: 10G/32G direct: 18M postGC: 4.6G
read(11%) -> (1.5k/1.6k) -> encode(87% 87% 88% 87% 88% 88% 88% 88% 88% 87% 87%) -> (1.6k/1.6k) -> write(10%)
last tile: 14/8837/5856 (z14 54%) https://www.openstreetmap.org/#map=14/45.58329/14.17236
2:25:18 INF [archive] - features: [ 1.4B 70% 743k/s ] 128G tiles: [ 173M 28k/s ] 32G
cpus: 11.1 gc: 11% heap: 20G/32G direct: 18M postGC: 5.3G
read(14%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.5k/1.6k) -> write(11%)
last tile: 14/8863/5909 (z14 54%) https://www.openstreetmap.org/#map=14/44.76234/14.74365
2:25:28 INF [archive] - features: [ 1.4B 70% 774k/s ] 128G tiles: [ 173M 32k/s ] 32G
cpus: 11 gc: 14% heap: 6.3G/32G direct: 18M postGC: 6.2G
read(15%) -> (1.5k/1.6k) -> encode(84% 86% 86% 85% 86% 86% 86% 84% 85% 86% 86%) -> (1.6k/1.6k) -> write(13%)
last tile: 14/8894/8393 (z14 54%) https://www.openstreetmap.org/#map=14/-4.41214/15.42480
2:25:38 INF [archive] - features: [ 1.4B 71% 822k/s ] 128G tiles: [ 174M 35k/s ] 32G
cpus: 11.1 gc: 12% heap: 6.6G/32G direct: 18M postGC: 6.6G
read(14%) -> (1.5k/1.6k) -> encode(88% 86% 88% 88% 88% 87% 87% 87% 88% 87% 88%) -> (1.6k/1.6k) -> write(14%)
last tile: 14/8928/6381 (z14 54%) https://www.openstreetmap.org/#map=14/36.93233/16.17188
2:25:48 INF [archive] - features: [ 1.4B 71% 1.2M/s ] 128G tiles: [ 174M 54k/s ] 33G
cpus: 11.2 gc: 10% heap: 19G/32G direct: 18M postGC: 6.8G
read(20%) -> (1.5k/1.6k) -> encode(89% 90% 90% 90% 89% 89% 88% 88% 90% 89% 89%) -> (1.6k/1.6k) -> write(18%)
last tile: 14/8981/12163 (z14 55%) https://www.openstreetmap.org/#map=14/-65.39430/17.33643
2:25:58 INF [archive] - features: [ 1.4B 72% 1.4M/s ] 128G tiles: [ 175M 63k/s ] 33G
cpus: 11.2 gc: 11% heap: 13G/32G direct: 18M postGC: 8.1G
read(21%) -> (1.5k/1.6k) -> encode(89% 87% 89% 89% 89% 89% 89% 88% 89% 88% 86%) -> (1.5k/1.6k) -> write(18%)
last tile: 14/9041/5234 (z14 55%) https://www.openstreetmap.org/#map=14/54.34215/18.65479
2:26:08 INF [archive] - features: [ 1.5B 72% 1.2M/s ] 128G tiles: [ 175M 59k/s ] 33G
cpus: 11.1 gc: 11% heap: 14G/32G direct: 18M postGC: 9.4G
read(19%) -> (1.5k/1.6k) -> encode(89% 88% 88% 88% 88% 89% 88% 87% 87% 89% 88%) -> (1.5k/1.6k) -> write(17%)
last tile: 14/9098/10760 (z14 56%) https://www.openstreetmap.org/#map=14/-49.03787/19.90723
2:26:18 INF [archive] - features: [ 1.5B 73% 1.3M/s ] 128G tiles: [ 176M 70k/s ] 34G
cpus: 11.2 gc: 11% heap: 13G/32G direct: 18M postGC: 10G
read(22%) -> (1.5k/1.6k) -> encode(88% 88% 89% 88% 89% 88% 88% 89% 88% 86% 87%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/9165/5535 (z14 56%) https://www.openstreetmap.org/#map=14/50.30338/21.37939
2:26:28 INF [archive] - features: [ 1.5B 74% 1.1M/s ] 128G tiles: [ 177M 62k/s ] 34G
cpus: 11.3 gc: 9% heap: 11G/32G direct: 18M postGC: 2.9G
read(18%) -> (1.5k/1.6k) -> encode(88% 89% 88% 89% 89% 89% 88% 88% 90% 88% 89%) -> (1.6k/1.6k) -> write(19%)
last tile: 14/9225/6160 (z14 56%) https://www.openstreetmap.org/#map=14/40.71396/22.69775
2:26:38 INF [archive] - features: [ 1.5B 74% 1.1M/s ] 128G tiles: [ 177M 66k/s ] 34G
cpus: 11.2 gc: 12% heap: 7G/32G direct: 18M postGC: 4.1G
read(18%) -> (1.5k/1.6k) -> encode(88% 88% 88% 86% 88% 88% 88% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/9288/10137 (z14 57%) https://www.openstreetmap.org/#map=14/-39.24927/24.08203
2:26:48 INF [archive] - features: [ 1.5B 75% 1M/s ] 128G tiles: [ 178M 74k/s ] 35G
cpus: 11.3 gc: 11% heap: 10G/32G direct: 18M postGC: 5.2G
read(17%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(22%)
last tile: 14/9357/4479 (z14 57%) https://www.openstreetmap.org/#map=14/62.92524/25.59814
2:26:58 INF [archive] - features: [ 1.5B 75% 1.2M/s ] 128G tiles: [ 179M 85k/s ] 35G
cpus: 11.2 gc: 10% heap: 12G/32G direct: 18M postGC: 6.1G
read(20%) -> (1.5k/1.6k) -> encode(89% 89% 89% 87% 89% 89% 89% 89% 89% 89% 88%) -> (1.6k/1.6k) -> write(24%)
last tile: 14/9437/4716 (z14 58%) https://www.openstreetmap.org/#map=14/60.45722/27.35596
2:27:08 INF [archive] - features: [ 1.5B 76% 1.4M/s ] 128G tiles: [ 180M 66k/s ] 35G
cpus: 11.2 gc: 12% heap: 9.4G/32G direct: 18M postGC: 7.3G
read(20%) -> (1.5k/1.6k) -> encode(87% 88% 88% 88% 87% 88% 88% 88% 88% 88% 87%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/9497/8825 (z14 58%) https://www.openstreetmap.org/#map=14/-13.77407/28.67432
2:27:18 INF [archive] - features: [ 1.5B 76% 1.1M/s ] 128G tiles: [ 180M 54k/s ] 36G
cpus: 11.2 gc: 11% heap: 17G/32G direct: 18M postGC: 8.2G
read(19%) -> (1.5k/1.6k) -> encode(88% 88% 86% 88% 88% 88% 86% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(20%)
last tile: 14/9546/6301 (z14 58%) https://www.openstreetmap.org/#map=14/38.32442/29.75098
2:27:28 INF [archive] - features: [ 1.6B 77% 1.6M/s ] 128G tiles: [ 181M 59k/s ] 36G
cpus: 11.2 gc: 11% heap: 15G/32G direct: 18M postGC: 9.5G
read(22%) -> (1.5k/1.6k) -> encode(89% 87% 88% 88% 89% 88% 88% 89% 88% 89% 89%) -> (1.5k/1.6k) -> write(19%)
last tile: 14/9599/8029 (z14 59%) https://www.openstreetmap.org/#map=14/3.57921/30.91553
2:27:38 INF [archive] - features: [ 1.6B 78% 1.7M/s ] 128G tiles: [ 182M 80k/s ] 36G
cpus: 11.2 gc: 12% heap: 15G/32G direct: 18M postGC: 10G
read(24%) -> (1.5k/1.6k) -> encode(87% 87% 87% 86% 87% 87% 87% 87% 88% 87% 87%) -> (1.6k/1.6k) -> write(22%)
last tile: 14/9671/5359 (z14 59%) https://www.openstreetmap.org/#map=14/52.70968/32.49756
2:27:48 INF [archive] - features: [ 1.6B 79% 1.7M/s ] 128G tiles: [ 182M 76k/s ] 37G
cpus: 11.2 gc: 10% heap: 16G/32G direct: 18M postGC: 12G
read(23%) -> (1.5k/1.6k) -> encode(90% 89% 89% 89% 89% 90% 90% 89% 90% 89% 90%) -> (1.5k/1.6k) -> write(22%)
last tile: 14/9740/5184 (z14 59%) https://www.openstreetmap.org/#map=14/54.97761/34.01367
2:27:58 INF [archive] - features: [ 1.6B 80% 1.6M/s ] 128G tiles: [ 183M 77k/s ] 37G
cpus: 11.2 gc: 11% heap: 14G/32G direct: 18M postGC: 13G
read(22%) -> (1.5k/1.6k) -> encode(88% 88% 88% 87% 87% 88% 87% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(22%)
last tile: 14/9809/5076 (z14 60%) https://www.openstreetmap.org/#map=14/56.31654/35.52979
2:28:08 INF [archive] - features: [ 1.6B 80% 1.5M/s ] 128G tiles: [ 184M 88k/s ] 37G
cpus: 11.1 gc: 12% heap: 7.9G/32G direct: 18M postGC: 2.1G
read(23%) -> (1.5k/1.6k) -> encode(85% 85% 86% 86% 86% 83% 86% 84% 83% 81% 85%) -> (1.5k/1.6k) -> write(24%)
last tile: 14/9888/8447 (z14 60%) https://www.openstreetmap.org/#map=14/-5.59412/37.26563
2:28:18 INF [archive] - features: [ 1.6B 81% 1.5M/s ] 128G tiles: [ 185M 99k/s ] 38G
cpus: 11.2 gc: 11% heap: 6.7G/32G direct: 18M postGC: 3.7G
read(22%) -> (1.5k/1.6k) -> encode(87% 88% 89% 89% 89% 88% 89% 88% 88% 88% 88%) -> (1.6k/1.6k) -> write(24%)
last tile: 14/9976/6280 (z14 61%) https://www.openstreetmap.org/#map=14/38.68551/39.19922
2:28:28 INF [archive] - features: [ 1.7B 82% 1.2M/s ] 128G tiles: [ 187M 149k/s ] 38G
cpus: 11.4 gc: 10% heap: 5.6G/32G direct: 18M postGC: 4.2G
read(19%) -> (1.5k/1.6k) -> encode(90% 89% 89% 90% 89% 90% 89% 90% 89% 89% 89%) -> (1.6k/1.6k) -> write(33%)
last tile: 14/10109/11330 (z14 62%) https://www.openstreetmap.org/#map=14/-56.58369/42.12158
2:28:39 INF [archive] - features: [ 1.7B 82% 1.1M/s ] 128G tiles: [ 188M 152k/s ] 38G
cpus: 11.4 gc: 11% heap: 6.3G/32G direct: 18M postGC: 4.6G
read(19%) -> (1.5k/1.6k) -> encode(89% 89% 89% 89% 89% 89% 88% 89% 89% 89% 89%) -> (1.6k/1.6k) -> write(33%)
last tile: 14/10245/6282 (z14 63%) https://www.openstreetmap.org/#map=14/38.65120/45.10986
2:28:49 INF [archive] - features: [ 1.7B 83% 1.1M/s ] 128G tiles: [ 189M 130k/s ] 39G
cpus: 11.2 gc: 11% heap: 6G/32G direct: 18M postGC: 5G
read(17%) -> (1.5k/1.6k) -> encode(88% 89% 87% 89% 88% 89% 89% 89% 86% 89% 89%) -> (1.6k/1.6k) -> write(29%)
last tile: 14/10366/5184 (z14 63%) https://www.openstreetmap.org/#map=14/54.97761/47.76855
2:28:59 INF [archive] - features: [ 1.7B 84% 1.3M/s ] 128G tiles: [ 191M 206k/s ] 39G
cpus: 11.4 gc: 7% heap: 18G/32G direct: 18M postGC: 4.8G
read(17%) -> (1.5k/1.6k) -> encode(93% 93% 92% 93% 93% 93% 92% 93% 93% 91% 92%) -> (1.6k/1.6k) -> write(38%)
last tile: 14/10560/1533 (z14 64%) https://www.openstreetmap.org/#map=14/81.10341/52.03125
2:29:09 INF [archive] - features: [ 1.7B 84% 1.4M/s ] 128G tiles: [ 195M 356k/s ] 39G
cpus: 11.7 gc: 7% heap: 7.8G/32G direct: 18M postGC: 4.7G
read(23%) -> (1.5k/1.6k) -> encode(92% 93% 90% 93% 93% 92% 90% 93% 93% 91% 93%) -> (1.6k/1.6k) -> write(60%)
last tile: 14/10910/8740 (z14 67%) https://www.openstreetmap.org/#map=14/-11.95335/59.72168
2:29:19 INF [archive] - features: [ 1.7B 85% 1.4M/s ] 128G tiles: [ 200M 449k/s ] 40G
cpus: 11.7 gc: 6% heap: 13G/32G direct: 18M postGC: 4.9G
read(24%) -> (1.3k/1.6k) -> encode(90% 91% 92% 94% 94% 94% 93% 92% 94% 94% 89%) -> (1.6k/1.6k) -> write(69%)
last tile: 14/11342/6519 (z14 69%) https://www.openstreetmap.org/#map=14/34.47034/69.21387
2:29:29 INF [archive] - features: [ 1.7B 86% 1.2M/s ] 128G tiles: [ 202M 266k/s ] 40G
cpus: 11.5 gc: 9% heap: 13G/32G direct: 18M postGC: 5.2G
read(27%) -> (1.5k/1.6k) -> encode(88% 90% 89% 90% 91% 91% 91% 91% 91% 89% 87%) -> (1.6k/1.6k) -> write(48%)
last tile: 14/11589/5233 (z14 71%) https://www.openstreetmap.org/#map=14/54.35496/74.64111
2:29:39 INF [archive] - features: [ 1.7B 86% 1.5M/s ] 128G tiles: [ 204M 167k/s ] 40G
cpus: 11.4 gc: 10% heap: 11G/32G direct: 18M postGC: 6.1G
read(24%) -> (1.5k/1.6k) -> encode(89% 90% 89% 89% 88% 90% 89% 90% 89% 88% 90%) -> (1.6k/1.6k) -> write(35%)
last tile: 14/11747/6751 (z14 72%) https://www.openstreetmap.org/#map=14/30.16413/78.11279
2:29:49 INF [archive] - features: [ 1.8B 87% 1.6M/s ] 128G tiles: [ 205M 161k/s ] 41G
cpus: 11.3 gc: 11% heap: 7G/32G direct: 18M postGC: 6.8G
read(23%) -> (1.5k/1.6k) -> encode(88% 88% 86% 88% 86% 88% 88% 88% 89% 89% 88%) -> (1.6k/1.6k) -> write(34%)
last tile: 14/11909/5476 (z14 73%) https://www.openstreetmap.org/#map=14/51.12421/81.67236
2:29:59 INF [archive] - features: [ 1.8B 88% 1M/s ] 128G tiles: [ 207M 152k/s ] 41G
cpus: 11.3 gc: 9% heap: 17G/32G direct: 18M postGC: 6.8G
read(19%) -> (1.5k/1.6k) -> encode(89% 91% 89% 91% 91% 91% 89% 89% 91% 91% 91%) -> (1.6k/1.6k) -> write(33%)
last tile: 14/12065/5452 (z14 74%) https://www.openstreetmap.org/#map=14/51.45401/85.10010
2:30:09 INF [archive] - features: [ 1.8B 88% 707k/s ] 128G tiles: [ 208M 74k/s ] 41G
cpus: 11.1 gc: 10% heap: 10G/32G direct: 18M postGC: 6.8G
read( 9%) -> (1.2k/1.6k) -> encode(90% 89% 90% 90% 90% 89% 89% 89% 89% 90% 90%) -> (1.6k/1.6k) -> write(16%)
last tile: 14/12142/6897 (z14 74%) https://www.openstreetmap.org/#map=14/27.35225/86.79199
2:30:19 INF [archive] - features: [ 1.8B 88% 492k/s ] 128G tiles: [ 209M 80k/s ] 41G
cpus: 11.1 gc: 9% heap: 22G/32G direct: 18M postGC: 6.8G
read(12%) -> (1.5k/1.6k) -> encode(91% 91% 90% 91% 91% 89% 89% 91% 89% 91% 90%) -> (1.6k/1.6k) -> write(21%)
last tile: 14/12227/12261 (z14 75%) https://www.openstreetmap.org/#map=14/-66.27570/88.65967
2:30:25 WAR [archive:encode] - {x=12386 y=7204 z=14} 1149kb uncompressed
2:30:29 INF [archive] - features: [ 1.8B 89% 2.1M/s ] 128G tiles: [ 212M 310k/s ] 42G
cpus: 11.6 gc: 7% heap: 13G/32G direct: 18M postGC: 6.7G
read(27%) -> (1.3k/1.6k) -> encode(92% 92% 90% 92% 92% 93% 93% 93% 91% 93% 92%) -> (1.4k/1.6k) -> write(54%)
last tile: 14/12571/6942 (z14 77%) https://www.openstreetmap.org/#map=14/26.47057/96.21826
2:30:39 INF [archive] - features: [ 1.8B 90% 1.6M/s ] 128G tiles: [ 214M 230k/s ] 42G
cpus: 11.4 gc: 9% heap: 12G/32G direct: 18M postGC: 7.7G
read(31%) -> (1.5k/1.6k) -> encode(89% 91% 89% 90% 90% 87% 89% 88% 91% 91% 90%) -> (1.6k/1.6k) -> write(42%)
last tile: 14/12834/7247 (z14 78%) https://www.openstreetmap.org/#map=14/20.32402/101.99707
2:30:49 INF [archive] - features: [ 1.8B 91% 1.4M/s ] 128G tiles: [ 215M 151k/s ] 43G
cpus: 11.3 gc: 12% heap: 16G/32G direct: 18M postGC: 9.4G
read(26%) -> (1.5k/1.6k) -> encode(86% 86% 88% 88% 87% 87% 85% 87% 87% 88% 87%) -> (1.6k/1.6k) -> write(32%)
last tile: 14/13008/6901 (z14 79%) https://www.openstreetmap.org/#map=14/27.27416/105.82031
2:30:59 INF [archive] - features: [ 1.9B 92% 2.1M/s ] 128G tiles: [ 217M 113k/s ] 43G
cpus: 11.3 gc: 7% heap: 19G/32G direct: 18M postGC: 10G
read(25%) -> (1.5k/1.6k) -> encode(92% 92% 93% 92% 92% 92% 92% 92% 92% 93% 93%) -> (1.5k/1.6k) -> write(25%)
last tile: 14/13132/7551 (z14 80%) https://www.openstreetmap.org/#map=14/13.94473/108.54492
2:31:09 INF [archive] - features: [ 1.9B 93% 2.4M/s ] 128G tiles: [ 219M 196k/s ] 43G
cpus: 11.5 gc: 10% heap: 16G/32G direct: 18M postGC: 11G
read(31%) -> (1.5k/1.6k) -> encode(89% 89% 88% 89% 88% 90% 90% 89% 90% 90% 90%) -> (1.6k/1.6k) -> write(37%)
last tile: 14/13345/7104 (z14 81%) https://www.openstreetmap.org/#map=14/23.24135/113.22510
2:31:19 INF [archive] - features: [ 1.9B 94% 1.5M/s ] 128G tiles: [ 220M 163k/s ] 44G
cpus: 11.3 gc: 12% heap: 13G/32G direct: 18M postGC: 13G
read(23%) -> (1.5k/1.6k) -> encode(87% 87% 86% 88% 88% 88% 87% 87% 88% 88% 88%) -> (1.6k/1.6k) -> write(33%)
last tile: 14/13517/6397 (z14 83%) https://www.openstreetmap.org/#map=14/36.65079/117.00439
2:31:29 INF [archive] - features: [ 1.9B 95% 1.5M/s ] 128G tiles: [ 222M 158k/s ] 44G
cpus: 11.3 gc: 11% heap: 25G/32G direct: 18M postGC: 14G
read(25%) -> (1.5k/1.6k) -> encode(89% 87% 89% 87% 89% 88% 89% 85% 89% 88% 89%) -> (1.6k/1.6k) -> write(32%)
last tile: 14/13685/12238 (z14 84%) https://www.openstreetmap.org/#map=14/-66.07155/120.69580
2:31:39 INF [archive] - features: [ 1.9B 95% 2M/s ] 128G tiles: [ 224M 210k/s ] 44G
cpus: 11.4 gc: 12% heap: 2.4G/32G direct: 18M postGC: 2.5G
read(24%) -> (1.5k/1.6k) -> encode(87% 82% 86% 86% 85% 87% 85% 87% 87% 85% 86%) -> (1.6k/1.6k) -> write(39%)
last tile: 14/13910/6054 (z14 85%) https://www.openstreetmap.org/#map=14/42.45589/125.63965
2:31:49 INF [archive] - features: [ 2B 96% 1.3M/s ] 128G tiles: [ 226M 248k/s ] 45G
cpus: 11.5 gc: 10% heap: 3.3G/32G direct: 18M postGC: 3.3G
read(22%) -> (1.5k/1.6k) -> encode(89% 90% 90% 90% 89% 90% 90% 89% 90% 90% 90%) -> (1.6k/1.6k) -> write(43%)
last tile: 14/14172/6615 (z14 86%) https://www.openstreetmap.org/#map=14/32.71336/131.39648
2:31:59 INF [archive] - features: [ 2B 97% 1.5M/s ] 128G tiles: [ 229M 230k/s ] 45G
cpus: 11.6 gc: 10% heap: 7.8G/32G direct: 18M postGC: 3.4G
read(27%) -> (1.4k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(40%)
last tile: 14/14411/6399 (z14 88%) https://www.openstreetmap.org/#map=14/36.61553/136.64795
2:32:09 INF [archive] - features: [ 2B 98% 1.8M/s ] 128G tiles: [ 230M 158k/s ] 45G
cpus: 11.5 gc: 9% heap: 14G/32G direct: 18M postGC: 3.9G
read(28%) -> (1.5k/1.6k) -> encode(90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write(30%)
last tile: 14/14570/6431 (z14 89%) https://www.openstreetmap.org/#map=14/36.04910/140.14160
2:32:19 INF [archive] - features: [ 2B 99% 1.5M/s ] 128G tiles: [ 233M 269k/s ] 46G
cpus: 11.5 gc: 8% heap: 15G/32G direct: 18M postGC: 3.7G
read(18%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 92% 91% 92% 92% 92% 91% 92%) -> (1.6k/1.6k) -> write(46%)
last tile: 14/14836/10404 (z14 91%) https://www.openstreetmap.org/#map=14/-43.64403/145.98633
2:32:29 INF [archive] - features: [ 2B 99% 1.4M/s ] 128G tiles: [ 240M 722k/s ] 46G
cpus: 9.5 gc: 6% heap: 6.5G/32G direct: 18M postGC: 3.7G
read(18%) -> (0/1.6k) -> encode(72% 73% 72% 72% 73% 68% 73% 73% 72% 73% 72%) -> (1.6k/1.6k) -> write(80%)
last tile: 14/15466/377 (z14 94%) https://www.openstreetmap.org/#map=14/84.28252/159.82910
2:32:39 INF [archive] - features: [ 2B 100% 1.5M/s ] 128G tiles: [ 251M 1M/s ] 46G
cpus: 6.8 gc: 4% heap: 10G/32G direct: 18M postGC: 3.8G
read(22%) -> (0/1.6k) -> encode(47% 49% 50% 47% 46% 50% 49% 47% 47% 47% 48%) -> (1.5k/1.6k) -> write(94%)
last tile: 14/16217/13354 (z14 99%) https://www.openstreetmap.org/#map=14/-74.27166/176.33057
2:32:41 DEB [archive:write] - Shallow tiles written: 253,893,686
2:32:41 DEB [archive:write] - Tile data written: 32,407,327 (87% omitted)
2:32:41 DEB [archive:write] - Unique tile hashes: 675,356
2:32:41 INF [archive:write] - Finished z14 in 16m40s cpu:3h2m55s gc:1m37s avg:11
2:32:41 INF [archive] - features: [ 2B 100% 647k/s ] 128G tiles: [ 253M 1.3M/s ] 46G
cpus: 3.2 gc: 0% heap: 12G/32G direct: 18M postGC: 3.8G
read( -%) -> (0/1.6k) -> encode( -% -% -% -% -% -% -% -% -% -% -%) -> (0/1.6k) -> write( -%)
last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
2:32:41 DEB [archive] - Tile stats:
2:32:41 DEB [archive] - z0 avg:34k max:34k
2:32:41 DEB [archive] - z1 avg:21k max:36k
2:32:41 DEB [archive] - z2 avg:14k max:36k
2:32:41 DEB [archive] - z3 avg:12k max:72k
2:32:41 DEB [archive] - z4 avg:14k max:219k
2:32:41 DEB [archive] - z5 avg:13k max:339k
2:32:41 DEB [archive] - z6 avg:10k max:401k
2:32:41 DEB [archive] - z7 avg:7.1k max:374k
2:32:41 DEB [archive] - z8 avg:4.4k max:328k
2:32:41 DEB [archive] - z9 avg:2.6k max:292k
2:32:41 DEB [archive] - z10 avg:1.5k max:300k
2:32:41 DEB [archive] - z11 avg:707 max:206k
2:32:41 DEB [archive] - z12 avg:379 max:142k
2:32:41 DEB [archive] - z13 avg:232 max:119k
2:32:41 DEB [archive] - z14 avg:223 max:1.3M
2:32:41 DEB [archive] - all avg:246 max:1.3M
2:32:41 DEB [archive] - # features: 2,084,643,421
2:32:41 DEB [archive] - # tiles: 253,893,686
2:32:41 INF [archive] - Finished in 1h15m8s cpu:13h47m35s gc:4m37s avg:11
2:32:41 INF [archive] - read 1x(8% 6m7s sys:1m5s wait:1h4m1s)
2:32:41 INF [archive] - encode 11x(92% 1h9m25s sys:7s wait:36s)
2:32:41 INF [archive] - write 1x(11% 8m sys:1m17s wait:1h3m14s)
2:32:41 INF - Finished in 2h32m41s cpu:26h58m19s gc:6m51s avg:10.6
2:32:41 INF - FINISHED!
2:32:41 INF -
2:32:41 INF - ----------------------------------------
2:32:41 INF - overall 2h32m41s cpu:26h58m19s gc:6m51s avg:10.6
2:32:41 INF - osm_pass1 7m16s cpu:1h12m36s gc:8s avg:10
2:32:41 INF - read 1x(1% 5s sys:3s wait:6m39s)
2:32:41 INF - process 11x(89% 6m28s sys:12s block:5s)
2:32:41 INF - osm_pass2 1h2m19s cpu:10h46m4s gc:1m14s avg:10.4
2:32:41 INF - read 1x(0% 3s sys:1s wait:1h1m40s done:33s)
2:32:41 INF - process 11x(91% 56m49s sys:28s block:3s)
2:32:41 INF - write 1x(15% 9m3s sys:2m10s wait:53m6s)
2:32:41 INF - ocean 2m13s cpu:23m15s gc:7s avg:10.5
2:32:41 INF - read 1x(12% 16s wait:1m48s done:3s)
2:32:41 INF - process 11x(87% 1m56s wait:7s)
2:32:41 INF - write 1x(19% 26s sys:8s wait:1m45s)
2:32:41 INF - sort 5m34s cpu:48m36s gc:44s avg:8.7
2:32:41 INF - worker 5x(39% 2m9s sys:20s wait:58s done:3s)
2:32:41 INF - archive 1h15m8s cpu:13h47m35s gc:4m37s avg:11
2:32:41 INF - read 1x(8% 6m7s sys:1m5s wait:1h4m1s)
2:32:41 INF - encode 11x(92% 1h9m25s sys:7s wait:36s)
2:32:41 INF - write 1x(11% 8m sys:1m17s wait:1h3m14s)
2:32:41 INF - ----------------------------------------
2:32:41 INF - archive 46GB
2:32:41 INF - features 128GB
Elapsed Time: 9171 seconds
end mbtiles ##################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment