diff --git a/PLANET.md b/PLANET.md
index a8896ec7..01231676 100644
--- a/PLANET.md
+++ b/PLANET.md
@@ -1,8 +1,8 @@
# Generating a Map of the World
To generate a map of the world using the built-in [basemap profile](planetiler-basemap), you will need a machine with
-Java 16 or later installed and at least 10x as much disk space and 1.5x as much RAM as the `planet.osm.pbf` file you
-start from. All testing has been done using Digital Ocean droplets with dedicated
+Java 16 or later installed and at least 10x as much disk space and at least 0.5x as much RAM as the `planet.osm.pbf`
+file you start from. All testing has been done using Digital Ocean droplets with dedicated
vCPUs ([referral link](https://m.do.co/c/a947e99aab25)) and OpenJDK 17 installed through `apt`. Planetiler splits work
among available CPUs so the more you have, the less time it takes.
@@ -28,23 +28,41 @@ First decide where to get the `planet.osm.pbf` file:
Download the [latest release](https://github.com/onthegomap/planetiler/releases/latest) of `planetiler.jar`.
-Then run `java -Xms100g -Xmx100g -jar planetiler.jar` (replacing `100g` with 1.5x the `planet.osm.pbf` size)
-with these options:
+If your system has at least 1.5x as much memory as the input OSM file size, run this command to store node location
+cache in-memory:
-- `--bounds=world` to set bounding box to the entire planet
-- `--nodemap-type=sparsearray` to store node locations in a sparse array instead of a sorted table - `sortedtable` is
- more efficient when there are large gaps in ID spaces (i.e. extracts) and `sparsearray` is more efficient with no/few
- ID gaps (planet, or renumbered extracts).
-- `--nodemap-storage=ram` to store all node locations in RAM instead of a memory-mapped file - when using `ram` give the
- JVM 1.5x the input file size instead of 0.5x when using `mmap`
-- `--download` to fetch [other data sources](NOTICE.md#data) automatically
-- One of these to point planetiler at your data source:
- - `--osm-path=path/to/planet.osm.pbf` to point Planetiler at a file you downloaded
- - `--osm-url=http://url/of/planet.osm.pbf` to download automatically
- - `--osm-url=s3:211011` to download a specific snapshot from the AWS Registry of Open Data or `--osm-url=s3:latest` to
- download the latest snapshot
- - `--area=planet` to use the file in `./data/sources/planet.osm.pbf` or download the latest snapshot from AWS S3
- mirror if missing.
+```bash
+java -Xmx110g \
+ `# return unused heap memory to the OS` \
+ -XX:MaxHeapFreeRatio=40 \
+ -jar planetiler.jar \
+ `# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
+ --area=planet --bounds=planet --download \
+ `# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
+ --download-threads=10 --download-chunk-size-mb=1000 \
+ `# Also download name translations from wikidata` \
+ --fetch-wikidata \
+ --mbtiles=output.mbtiles \
+ `# Store temporary node locations in memory` \
+ --nodemap-type=array --storage=ram
+```
+
+If your system has less than 1.5x as much memory as the input OSM file size, run this command to store node location
+cache in a temporary memory-mapped file by setting `--storage=mmap` and `-Xmx20g` to reduce the JVM's memory usage.
+
+```bash
+java -Xmx20g \
+ -jar planetiler.jar \
+ `# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
+ --area=planet --bounds=planet --download \
+ `# Accelerate the download by fetching the 10 1GB chunks at a time in parallel` \
+ --download-threads=10 --download-chunk-size-mb=1000 \
+ `# Also download name translations from wikidata` \
+ --fetch-wikidata \
+ --mbtiles=output.mbtiles \
+ `# Store temporary node locations at fixed positions in a memory-mapped file` \
+ --nodemap-type=array --storage=mmap
+```
Run with `--help` to see all available arguments.
@@ -69,8 +87,7 @@ Then I added a script `runworld.sh` to run with 100GB of RAM:
```bash
#!/usr/bin/env bash
set -e
-java -Xmx100g -Xms100g \
- -XX:OnOutOfMemoryError="kill -9 %p" \
+java -Xmx100g \
-jar planetiler.jar \
`# Download the latest planet.osm.pbf from s3://osm-pds bucket` \
--area=planet --bounds=world --download \
diff --git a/README.md b/README.md
index 6659b5af..9dd80264 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ To generate a map of an area using the [basemap profile](planetiler-basemap), yo
- Java 16+ (see [CONTIRBUTING.md](CONTRIBUTING.md)) or [Docker](https://docs.docker.com/get-docker/)
- at least 1GB of free disk space plus 5-10x the size of the `.osm.pbf` file
-- at least 1.5x as much free RAM as the input `.osm.pbf` file size
+- at least 0.5x as much free RAM as the input `.osm.pbf` file size
#### To build the map:
@@ -116,15 +116,23 @@ See the [planetiler-examples](planetiler-examples) project.
## Benchmarks
-Some example runtimes (excluding downloading resources):
+Some example runtimes for the Basemap OpenMapTiles-compatible profile (excluding downloading resources):
-| Input | Profile | Machine | Time | mbtiles size | Logs |
-|-------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|----------------------------------------------------------|---------------------------|--------------|--------------------------------------------------------------------------------------------------------------------------------|
-| s3://osm-pds/2021/planet-211011.osm.pbf (65GB) | Basemap | DO 16cpu 128GB | 3h9m cpu:42h1m avg:13.3 | 99GB | [logs](planet-logs/v0.1.0-planet-do-16cpu-128gb.txt), [VisualVM Profile](planet-logs/v0.1.0-planet-do-16cpu-128gb.nps) |
-| [Daylight Distribution v1.6](https://daylightmap.org/2021/09/29/daylight-v16-released.html) with ML buildings and admin boundaries (67GB) | Basemap | DO 16cpu 128GB | 3h13m cpu:43h40m avg:13.5 | 101GB | [logs](planet-logs/v0.1.0-daylight-do-16cpu-128gb.txt) |
-| s3://osm-pds/2021/planet-211011.osm.pbf (65GB) | Basemap (without z13 building merge) | Linode 50cpu 128GB | 1h9m cpu:24h36m avg:21.2 | 97GB | [logs](planet-logs/v0.1.0-planet-linode-50cpu-128gb.txt), [VisualVM Profile](planet-logs/v0.1.0-planet-linode-50cpu-128gb.nps) |
-| s3://osm-pds/2021/planet-220214.osm.pbf (67GB) | Basemap v0.3.0 (without z13 building merge) | r6g.16xlarge (64cpu/512GB) with ramdisk and write to EFS | 1h1m cpu:24h33m avg:24.3 | 104GB | [logs](planet-logs/v0.3.0-planet-r6g-64cpu-512gb-ramdisk.txt) |
-| s3://osm-pds/2021/planet-220307.osm.pbf (67GB) | Basemap v0.3.0 (without z13 building merge) | c5ad.16xlarge (64cpu/128GB) | 47m cpu:26h53m avg:34.2 | 97GB | [logs](planet-logs/v0.3.0-planet-c5ad-128gb.txt) |
+| Input | Version | Machine | Time | mbtiles size | Logs |
+|-------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------------------------|-----------------------------------|--------------|------------------------------------------------------------------------------------------------------------------------|
+| s3://osm-pds/2021/planet-220307.osm.pbf (67GB) | 0.4.0 | c6gd.4xlarge (16cpu/32GB) | 2h43m cpu:34h53m avg:12.8 | 103GB | [logs](planet-logs/v0.4.0-planet-c6gd-32gb.txt) |
+| s3://osm-pds/2021/planet-220307.osm.pbf (67GB) | 0.4.0 | c6gd.8xlarge (32cpu/64GB) | 1h30m cpu:35h23 avg:23.5 | 103GB | [logs](planet-logs/v0.4.0-planet-c6gd-64gb.txt) |
+| s3://osm-pds/2021/planet-220307.osm.pbf (67GB) | 0.4.0 | c6gd.16xlarge (64cpu/128GB) | 1h1m cpu:38h39m gc:3m39s avg:38.1 | 103GB | [logs](planet-logs/v0.4.0-planet-c6gd-128gb.txt) |
+| s3://osm-pds/2021/planet-211011.osm.pbf (65GB) | 0.1.0 | DO 16cpu 128GB | 3h9m cpu:42h1m avg:13.3 | 99GB | [logs](planet-logs/v0.1.0-planet-do-16cpu-128gb.txt), [VisualVM Profile](planet-logs/v0.1.0-planet-do-16cpu-128gb.nps) |
+| [Daylight Distribution v1.6](https://daylightmap.org/2021/09/29/daylight-v16-released.html) with ML buildings and admin boundaries (67GB) | 0.1.0 | DO 16cpu 128GB | 3h13m cpu:43h40m avg:13.5 | 101GB | [logs](planet-logs/v0.1.0-daylight-do-16cpu-128gb.txt) |
+
+**Without z13 building merge:**
+
+| Input | Version | Machine | Time | mbtiles size | Logs |
+|------------------------------------------------|---------|----------------------------------------------------------|--------------------------|--------------|--------------------------------------------------------------------------------------------------------------------------------|
+| s3://osm-pds/2021/planet-220307.osm.pbf (67GB) | 0.4.0 | c6gd.16xlarge (64cpu/128GB) | 47m cpu:24h36m avg:31.4 | 97GB | [logs](planet-logs/v0.4.0-planet-c6gd-128gb-no-z13-building-merge.txt) |
+| s3://osm-pds/2021/planet-220214.osm.pbf (67GB) | 0.3.0 | r6g.16xlarge (64cpu/512GB) with ramdisk and write to EFS | 1h1m cpu:24h33m avg:24.3 | 104GB | [logs](planet-logs/v0.3.0-planet-r6g-64cpu-512gb-ramdisk.txt) |
+| s3://osm-pds/2021/planet-211011.osm.pbf (65GB) | 0.1.0 | Linode 50cpu 128GB | 1h9m cpu:24h36m avg:21.2 | 97GB | [logs](planet-logs/v0.1.0-planet-linode-50cpu-128gb.txt), [VisualVM Profile](planet-logs/v0.1.0-planet-linode-50cpu-128gb.nps) |
## Alternatives
diff --git a/planet-logs/v0.4.0-planet-c6gd-128gb-no-z13-building-merge.txt b/planet-logs/v0.4.0-planet-c6gd-128gb-no-z13-building-merge.txt
new file mode 100644
index 00000000..ed482daa
--- /dev/null
+++ b/planet-logs/v0.4.0-planet-c6gd-128gb-no-z13-building-merge.txt
@@ -0,0 +1,1274 @@
+
+0:00:00 DEB - argument: config=null (path to config file)
+0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
+0:00:00 INF - Using in-memory stats
+0:00:00 INF [overall] -
+0:00:00 INF [overall] - Starting...
+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=ram (default storage type for temporary data, one of [ram, mmap, direct])
+0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
+0:00:00 DEB - argument: threads=64 (num threads)
+0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
+0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
+0:00:00 DEB - argument: maxzoom=14 (maximum zoom level (limit 14))
+0:00:00 DEB - argument: defer_mbtiles_index_creation=false (skip adding index to mbtiles file)
+0:00:00 DEB - argument: optimize_db=false (optimize mbtiles after writing)
+0:00:00 DEB - argument: emit_tiles_in_order=true (emit tiles in index order)
+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: 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=ram (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=ram (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=100 (Size of file chunks to download in parallel in megabytes)
+0:00:00 DEB - argument: download_threads=1 (Number of parallel threads to use when downloading each file)
+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=false (Read OSM blocks from disk in worker threads)
+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=false (download sources)
+0:00:00 DEB - argument: temp_node_db=data/tmp/node.db (temp node db location)
+0:00:00 DEB - argument: temp_multipolygon_db=data/tmp/multipolygon.db (temp multipolygon db location)
+0:00:00 DEB - argument: temp_feature_db=data/tmp/feature.db (temp feature db location)
+0:00:00 DEB - argument: only_fetch_wikidata=false (fetch wikidata translations then quit)
+0:00:00 DEB - argument: fetch_wikidata=false (fetch wikidata translations then continue)
+0:00:00 DEB - argument: use_wikidata=true (use wikidata translations)
+0:00:00 DEB - argument: wikidata_cache=data/sources/wikidata_names.json (wikidata cache file)
+0:00:00 DEB - argument: lake_centerlines_path=data/sources/lake_centerline.shp.zip (lake_centerlines shapefile path)
+0:00:00 DEB - argument: free_lake_centerlines_after_read=false (delete lake_centerlines input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: water_polygons_path=data/sources/water-polygons-split-3857.zip (water_polygons shapefile path)
+0:00:00 DEB - argument: free_water_polygons_after_read=false (delete water_polygons input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: natural_earth_path=data/sources/natural_earth_vector.sqlite.zip (natural_earth sqlite db path)
+0:00:00 DEB - argument: free_natural_earth_after_read=false (delete natural_earth input file after reading to make space for output (reduces peak disk usage))
+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: mbtiles=data/output.mbtiles (mbtiles output file)
+0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
+0:00:00 DEB - argument: languages=am,ar,az,be,bg,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fi,fr,fy,ga,gd,he,hi,hr,hu,hy,id,is,it,ja,ja_kana,ja_rm,ja-Latn,ja-Hira,ka,kk,kn,ko,ko-Latn,ku,la,lb,lt,lv,mk,mt,ml,nl,no,oc,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,zh (languages to use)
+0:00:00 DEB - argument: only_layers= (Include only certain layers)
+0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
+0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
+0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
+0:00:00 DEB - argument: building_merge_z13=false (building layer: merge nearby buildings at z13)
+0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
+0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
+0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
+0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
+0:00:00 DEB - argument: mbtiles_name=OpenMapTiles ('name' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_attribution=© OpenMapTiles © OpenStreetMap contributors ('attribution' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_version=3.13.0 ('version' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_type=baselayer ('type' attribute for mbtiles metadata)
+0:00:00 DEB - argument: help=false (show arguments then exit)
+0:00:00 INF - Building BasemapProfile profile into data/output.mbtiles in these phases:
+0:00:00 INF - lake_centerlines: Process features in data/sources/lake_centerline.shp.zip
+0:00:00 INF - water_polygons: Process features in data/sources/water-polygons-split-3857.zip
+0:00:00 INF - natural_earth: Process features in data/sources/natural_earth_vector.sqlite.zip
+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 - sort: Sort rendered features by tile ID
+0:00:00 INF - mbtiles: Encode each tile and write to data/output.mbtiles
+0:00:00 INF - error loading /data/data/sources/wikidata_names.json: java.nio.file.NoSuchFileException: data/sources/wikidata_names.json
+0:00:00 DEB - ✓ 223G storage on /data (/dev/nvme1n1) requested for read phase disk, 1.8T available
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - ✓ 335G storage on /data (/dev/nvme1n1) requested for write phase disk, 1.8T available
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - - 111G used for mbtiles output
+0:00:00 DEB - ✓ 106G JVM heap requested for read phase, 118G available
+0:00:00 DEB - - 76G used for array node location cache (switch to sparsearray to reduce size)
+0:00:00 DEB - - 10G used for multipolygon way geometries
+0:00:00 DEB - - 20G used for temporary profile storage
+0:00:00 DEB - ✓ 0 temporary files and 14G of free memory for OS to cache them
+0:00:00 INF - Using merge sort feature map, chunk size=922mb workers=64
+0:00:01 INF - dataFileCache open start
+0:00:01 INF [lake_centerlines] -
+0:00:01 INF [lake_centerlines] - Starting...
+0:00:03 INF [lake_centerlines] - read: [ 51k 100% 30k/s ] write: [ 0 0/s ] 0
+ cpus: 2.8 gc: 1% heap: 418M/118G direct: 73k postGC: 135M
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:00:03 INF [lake_centerlines] - Finished in 2s cpu:5s avg:3
+0:00:03 INF [lake_centerlines] - read 1x(84% 1s)
+0:00:03 INF [lake_centerlines] - process 64x(1% 0s wait:2s)
+0:00:03 INF [lake_centerlines] - write 1x(0% 0s wait:2s)
+0:00:03 INF [water_polygons] -
+0:00:03 INF [water_polygons] - Starting...
+0:00:13 INF [water_polygons] - read: [ 3k 21% 308/s ] write: [ 18M 1.8M/s ] 1G
+ cpus: 45.4 gc: 5% heap: 13G/118G direct: 54M postGC: 2.6G
+ read(94%) -> (0/1k) -> process(62% 72% 54% 86% 75% 78% 89% 76% 51% 52% 54% 87% 64% 45% 56% 59% 61% 72% 64% 59% 58% 58% 61% 66% 87% 53% 70% 58% 72% 55% 55% 65% 51% 60% 67% 64% 73% 61% 56% 45% 74% 62% 62% 62% 65% 77% 62% 58% 61% 66% 73% 57% 62% 84% 41% 60% 66% 62% 43% 58% 45% 78% 73% 68%) -> (31k/115k) -> write(43%)
+0:00:23 INF [water_polygons] - read: [ 7k 49% 391/s ] write: [ 51M 3.3M/s ] 2.7G
+ cpus: 45 gc: 3% heap: 5.8G/118G direct: 54M postGC: 2.1G
+ read(71%) -> (1k/1k) -> process(81% 70% 53% 62% 68% 66% 58% 80% 56% 80% 84% 74% 78% 94% 60% 49% 90% 55% 58% 70% 64% 63% 65% 68% 69% 59% 66% 48% 58% 59% 60% 60% 62% 73% 58% 54% 69% 56% 80% 58% 69% 66% 81% 59% 59% 95% 54% 59% 55% 58% 58% 76% 58% 56% 53% 66% 60% 86% 70% 69% 65% 82% 54% 65%) -> (109k/115k) -> write(67%)
+0:00:33 INF [water_polygons] - read: [ 9.3k 65% 232/s ] write: [ 104M 5.3M/s ] 5.1G
+ cpus: 5.9 gc: 0% heap: 7.7G/118G direct: 54M postGC: 1.6G
+ read( 0%) -> (1k/1k) -> process(18% 6% 6% 6% 7% 6% 6% 35% 6% 10% 6% 6% 6% 13% 6% 6% 8% 6% 6% 6% 6% 6% 7% 7% 7% 6% 7% 7% 7% 6% 7% 7% 6% 7% 6% 7% 7% 7% 18% 7% 7% 7% 8% 6% 6% 7% 7% 7% 7% 6% 7% 7% 6% 7% 6% 6% 7% 7% 6% 6% 7% 7% 6% 8%) -> (113k/115k) -> write(100%)
+0:00:43 INF [water_polygons] - read: [ 11k 81% 233/s ] write: [ 158M 5.3M/s ] 7.4G
+ cpus: 5.2 gc: 0% heap: 6.7G/118G direct: 54M postGC: 1.6G
+ read( 1%) -> (1k/1k) -> process( 9% 6% 6% 6% 7% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 7% 7% 7% 6% 7% 6% 6% 6% 6% 7% 7% 7% 7% 7% 6% 6% 6% 7% 6% 7% 6% 7% 7% 7% 6% 7% 6% 7% 6% 7% 7% 6% 6% 6% 6% 7% 7% 7% 6% 6% 7% 8%) -> (113k/115k) -> write(100%)
+0:00:53 INF [water_polygons] - read: [ 13k 97% 231/s ] write: [ 211M 5.2M/s ] 9.8G
+ cpus: 5.1 gc: 0% heap: 5.2G/118G direct: 54M postGC: 1.6G
+ read( -%) -> (467/1k) -> process( 8% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 7% 6% 7% 6% 7% 6% 6% 7% 7% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 7% 6% 6% 6% 6% 6% 6% 7% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 9%) -> (113k/115k) -> write(100%)
+0:00:55 INF [water_polygons] - read: [ 14k 100% 218/s ] write: [ 222M 5.3M/s ] 10G
+ cpus: 5.2 gc: 0% heap: 19G/118G direct: 54M postGC: 1.6G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:00:55 INF [water_polygons] - Finished in 52s cpu:18m avg:20.7
+0:00:55 INF [water_polygons] - read 1x(32% 17s sys:1s wait:30s done:4s)
+0:00:55 INF [water_polygons] - process 64x(29% 15s wait:36s)
+0:00:55 INF [water_polygons] - write 1x(83% 43s sys:5s wait:8s)
+0:00:55 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/natearth.sqlite
+0:01:00 INF [natural_earth] -
+0:01:00 INF [natural_earth] - Starting...
+0:01:10 INF [natural_earth] - read: [ 339k 97% 33k/s ] write: [ 1k 99/s ] 10G
+ cpus: 2.6 gc: 0% heap: 3G/118G direct: 54M postGC: 1.6G
+ read(98%) -> (0/1k) -> process( 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 2% 1% 1% 1% 1% 2% 2% 1% 1% 1% 1% 2% 1% 1% 10% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (28k/115k) -> write( 0%)
+0:01:11 INF [natural_earth] - read: [ 349k 100% 19k/s ] write: [ 33k 66k/s ] 10G
+ cpus: 2.5 gc: 0% heap: 3.4G/118G direct: 54M postGC: 1.6G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:01:11 INF [natural_earth] - Finished in 11s cpu:28s avg:2.6
+0:01:11 INF [natural_earth] - read 1x(93% 10s sys:2s)
+0:01:11 INF [natural_earth] - process 64x(2% 0.2s wait:10s)
+0:01:11 INF [natural_earth] - write 1x(0% 0s wait:10s)
+0:01:11 INF [osm_pass1] -
+0:01:11 INF [osm_pass1] - Starting...
+0:01:21 INF [osm_pass1] - nodes: [ 1B 109M/s ] 12G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.3k 238/s ]
+ cpus: 57.6 gc: 7% heap: 36G/118G direct: 60M postGC: 18G hppc: 1.2k
+ read(62%) -> (127/190) -> process(87% 83% 86% 88% 88% 89% 85% 85% 83% 88% 86% 87% 85% 85% 85% 88% 84% 88% 86% 86% 84% 86% 85% 86% 84% 86% 85% 87% 86% 86% 83% 86% 86% 84% 88% 83% 86% 86% 85% 84% 82% 86% 84% 84% 85% 85% 86% 89% 86% 85% 85% 85% 85% 84% 85% 83% 84% 84% 87% 86% 85% 85% 81%)
+0:01:31 INF [osm_pass1] - nodes: [ 2.4B 138M/s ] 26G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.8k 249/s ]
+ cpus: 58 gc: 10% heap: 36G/118G direct: 60M postGC: 35G hppc: 1.2k
+ read(60%) -> (127/190) -> process(80% 86% 85% 83% 85% 85% 81% 85% 85% 84% 86% 82% 87% 82% 87% 81% 86% 83% 85% 87% 88% 86% 87% 84% 80% 86% 85% 86% 86% 83% 86% 88% 86% 88% 86% 86% 84% 80% 84% 85% 83% 86% 83% 84% 83% 86% 87% 85% 85% 83% 82% 82% 82% 86% 85% 82% 86% 84% 86% 82% 86% 86% 84%)
+0:01:41 INF [osm_pass1] - nodes: [ 3.8B 136M/s ] 40G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.9k 200/s ]
+ cpus: 56.8 gc: 10% heap: 65G/118G direct: 60M postGC: 53G hppc: 1.2k
+ read(62%) -> (125/190) -> process(85% 83% 81% 83% 81% 84% 82% 80% 83% 80% 86% 84% 86% 83% 85% 85% 80% 82% 84% 85% 78% 82% 83% 85% 84% 85% 82% 88% 84% 88% 80% 84% 84% 83% 84% 87% 79% 84% 78% 85% 82% 80% 80% 84% 83% 84% 78% 81% 83% 84% 85% 83% 83% 85% 84% 82% 83% 83% 82% 81% 84% 84% 84%)
+0:01:51 INF [osm_pass1] - nodes: [ 5.2B 134M/s ] 53G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.8k 193/s ]
+ cpus: 56.3 gc: 13% heap: 91G/118G direct: 60M postGC: 89G hppc: 1.2k
+ read(60%) -> (115/190) -> process(78% 80% 81% 82% 78% 82% 80% 81% 80% 80% 82% 80% 81% 82% 81% 78% 79% 80% 81% 81% 80% 79% 79% 80% 80% 80% 78% 80% 84% 81% 81% 81% 77% 80% 81% 80% 82% 81% 81% 79% 83% 80% 79% 80% 80% 82% 82% 79% 79% 82% 77% 78% 81% 80% 78% 79% 82% 79% 77% 78% 81% 82% 79%)
+0:02:01 INF [osm_pass1] - nodes: [ 6.5B 132M/s ] 66G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 186/s ]
+ cpus: 54.3 gc: 19% heap: 88G/118G direct: 60M postGC: 88G hppc: 1.2k
+ read(47%) -> (118/190) -> process(69% 68% 70% 67% 71% 68% 72% 72% 72% 71% 68% 72% 70% 73% 71% 71% 72% 70% 70% 70% 70% 70% 72% 72% 70% 71% 72% 70% 71% 69% 72% 71% 66% 71% 68% 72% 72% 71% 68% 67% 72% 73% 73% 72% 68% 70% 68% 72% 70% 70% 72% 70% 69% 72% 72% 71% 70% 71% 72% 72% 71% 69% 72%)
+0:02:09 INF [osm_pass1:process] - Finished nodes: 7,546,573,682 (131M/s) in 58s cpu:53m43s gc:8s avg:56
+0:02:11 INF [osm_pass1] - nodes: [ 7.5B 99M/s ] 76G ways: [ 9M 892k/s ] rels: [ 0 0/s ] blocks: [ 12k 148/s ]
+ cpus: 46.4 gc: 22% heap: 103G/118G direct: 60M postGC: 103G hppc: 1.2k
+ read(32%) -> (126/190) -> process(56% 56% 54% 54% 55% 54% 55% 57% 56% 55% 59% 57% 54% 58% 56% 55% 54% 58% 57% 55% 55% 54% 56% 57% 57% 60% 57% 55% 59% 59% 59% 55% 57% 55% 55% 55% 56% 59% 56% 57% 56% 59% 54% 60% 58% 55% 54% 56% 56% 58% 57% 56% 56% 57% 55% 56% 55% 56% 58% 56% 55% 57% 56%)
+0:02:21 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 64M 5.5M/s ] rels: [ 0 0/s ] blocks: [ 12k 57/s ]
+ cpus: 34.3 gc: 24% heap: 91G/118G direct: 10M postGC: 89G hppc: 1.2k
+ read(12%) -> (127/190) -> process(14% 15% 15% 13% 13% 14% 16% 16% 16% 17% 14% 16% 17% 15% 10% 27% 17% 17% 16% 10% 18% 16% 16% 15% 18% 14% 17% 14% 12% 12% 16% 12% 20% 15% 17% 20% 14% 16% 15% 16% 16% 16% 15% 14% 15% 14% 17% 21% 12% 16% 12% 16% 15% 14% 19% 14% 14% 18% 18% 17% 14% 14% 15%)
+0:02:31 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 144M 8M/s ] rels: [ 0 0/s ] blocks: [ 13k 67/s ]
+ cpus: 24.6 gc: 17% heap: 104G/118G direct: 10M postGC: 103G hppc: 1.2k
+ read(13%) -> (127/190) -> process(17% 16% 19% 20% 20% 24% 21% 20% 18% 22% 18% 21% 22% 16% 17% 19% 18% 18% 21% 19% 18% 20% 19% 17% 17% 17% 19% 21% 23% 18% 23% 20% 22% 18% 20% 21% 21% 20% 20% 18% 18% 21% 21% 20% 20% 18% 18% 17% 21% 17% 19% 21% 18% 18% 23% 22% 17% 19% 22% 20% 19% 21% 21%)
+0:02:41 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 245M 10M/s ] rels: [ 0 0/s ] blocks: [ 14k 82/s ]
+ cpus: 28.9 gc: 21% heap: 104G/118G direct: 10M postGC: 104G hppc: 1.2k
+ read(15%) -> (127/190) -> process(20% 20% 22% 25% 22% 24% 21% 21% 21% 23% 22% 21% 21% 19% 25% 23% 24% 23% 20% 23% 23% 21% 23% 18% 22% 20% 30% 22% 22% 23% 26% 22% 27% 21% 24% 21% 22% 23% 23% 26% 22% 25% 24% 19% 23% 21% 26% 22% 23% 21% 22% 20% 24% 22% 23% 24% 21% 19% 20% 22% 30% 24% 22%)
+0:02:51 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 357M 11M/s ] rels: [ 0 0/s ] blocks: [ 15k 84/s ]
+ cpus: 30 gc: 22% heap: 107G/118G direct: 10M postGC: 107G hppc: 1.2k
+ read(14%) -> (127/190) -> process(20% 20% 21% 24% 23% 25% 25% 24% 18% 22% 20% 24% 22% 22% 22% 20% 23% 23% 26% 27% 26% 22% 22% 21% 22% 21% 22% 25% 23% 24% 27% 24% 24% 23% 22% 25% 24% 22% 27% 25% 25% 25% 22% 21% 24% 22% 23% 21% 24% 22% 22% 21% 22% 22% 22% 19% 21% 21% 23% 24% 24% 22% 22%)
+0:03:01 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 478M 11M/s ] rels: [ 0 0/s ] blocks: [ 16k 85/s ]
+ cpus: 30.6 gc: 26% heap: 105G/118G direct: 10M postGC: 105G hppc: 1.2k
+ read(11%) -> (127/190) -> process(23% 23% 24% 20% 20% 20% 21% 25% 26% 21% 24% 21% 21% 21% 23% 21% 24% 23% 22% 22% 21% 19% 20% 21% 21% 25% 19% 21% 19% 24% 21% 25% 21% 23% 20% 25% 23% 21% 20% 22% 21% 22% 25% 22% 21% 20% 24% 19% 24% 24% 21% 21% 21% 22% 25% 24% 24% 22% 21% 22% 20% 24% 21%)
+0:03:11 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 585M 10M/s ] rels: [ 0 0/s ] blocks: [ 16k 76/s ]
+ cpus: 30.2 gc: 31% heap: 99G/118G direct: 10M postGC: 97G hppc: 1.2k
+ read(11%) -> (127/190) -> process(18% 23% 19% 22% 22% 20% 18% 20% 22% 19% 23% 17% 18% 23% 20% 24% 22% 18% 21% 20% 18% 18% 22% 22% 21% 19% 19% 20% 21% 18% 20% 23% 19% 20% 18% 19% 19% 21% 21% 17% 19% 19% 18% 22% 17% 21% 17% 22% 20% 17% 22% 21% 19% 20% 21% 20% 18% 19% 19% 22% 19% 17% 17%)
+0:03:21 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 701M 11M/s ] rels: [ 0 0/s ] blocks: [ 17k 83/s ]
+ cpus: 29.1 gc: 23% heap: 112G/118G direct: 10M postGC: 111G hppc: 1.2k
+ read(11%) -> (127/190) -> process(22% 19% 23% 20% 23% 20% 22% 18% 25% 21% 21% 21% 25% 20% 24% 19% 19% 24% 21% 19% 22% 21% 21% 21% 22% 20% 21% 22% 26% 26% 21% 26% 25% 21% 21% 19% 23% 25% 23% 21% 21% 21% 20% 20% 24% 21% 22% 19% 24% 24% 21% 20% 22% 21% 21% 21% 21% 26% 20% 19% 19% 25% 22%)
+0:03:31 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 829M 12M/s ] rels: [ 0 0/s ] blocks: [ 18k 88/s ]
+ cpus: 32.2 gc: 27% heap: 112G/118G direct: 10M postGC: 110G hppc: 1.2k
+ read(12%) -> (126/190) -> process(22% 24% 22% 24% 24% 24% 22% 22% 22% 24% 22% 24% 22% 21% 23% 20% 25% 22% 21% 24% 24% 24% 20% 24% 23% 22% 25% 24% 24% 24% 23% 24% 22% 20% 22% 22% 24% 24% 22% 23% 24% 21% 22% 23% 22% 23% 22% 23% 23% 20% 21% 25% 23% 22% 24% 22% 21% 23% 24% 24% 22% 22% 23%)
+0:03:33 INF [osm_pass1:process] - Finished ways: 841,994,745 (10M/s) in 1m24s cpu:41m52s gc:20s avg:30
+0:03:41 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 1.2M/s ] rels: [ 7.5M 750k/s ] blocks: [ 18k 19/s ]
+ cpus: 14.1 gc: 8% heap: 96G/118G direct: 3.9M postGC: 92G hppc: 719M
+ read( -%) -> (0/190) -> process(12% 13% 19% 10% 16% 12% 13% 22% 10% 10% 14% 12% 17% 13% 17% 11% 13% 11% 14% 14% 15% 22% 13% 11% 12% 20% 9% 8% 11% 12% -% 15% 10% 10% 23% 16% 9% 13% 10% 15% 8% 12% 18% 18% 11% 13% 16% 14% 10% 11% 9% 9% 11% 12% 11% 10% 10% 12% 11% 14% 13% 11% 11%)
+0:03:44 INF [osm_pass1:process] - Finished relations: 9,718,612 (904k/s) in 11s cpu:1m21s avg:7.5
+0:03:44 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 0/s ] rels: [ 9.7M 891k/s ] blocks: [ 18k 25/s ]
+ cpus: 4.4 gc: 2% heap: 94G/118G direct: 3.9M postGC: 92G hppc: 1G
+ read( -%) -> (0/190) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:03:44 DEB [osm_pass1] - Processed 18,767 blocks:
+0:03:44 DEB [osm_pass1] - nodes: 7,546,573,682 (131M/s) in 58s cpu:53m43s gc:8s avg:56
+0:03:44 DEB [osm_pass1] - ways: 841,994,745 (10M/s) in 1m24s cpu:41m52s gc:20s avg:30
+0:03:44 DEB [osm_pass1] - relations: 9,718,612 (904k/s) in 11s cpu:1m21s avg:7.5
+0:03:44 INF [osm_pass1] - Finished in 2m33s cpu:1h37m43s gc:28s avg:38.4
+0:03:44 INF [osm_pass1] - read 1x(28% 42s sys:34s wait:1m10s done:11s)
+0:03:44 INF [osm_pass1] - process 63x(42% 1m4s sys:7s block:59s done:1s)
+0:03:44 INF [osm_pass2] -
+0:03:44 INF [osm_pass2] - Starting...
+0:03:54 INF [osm_pass2] - nodes: [ 233M 3% 23M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 244M 2.1M/s ] 12G blocks: [ 524 3% 52/s ]
+ cpus: 46.9 gc: 7% heap: 98G/118G direct: 10M postGC: 89G relInfo: 1G mpGeoms: 297
+ read(17%) -> (33/96) -> process(68% 46% 68% 68% 59% 42% 48% 65% 59% 55% 63% 66% 54% 71% 73% 68% 48% 57% 66% 46% 47% 70% 67% 71% 58% 65% 63% 66% 71% 69% 69% 65% 68% 66% 62% 68% 66% 45% 59% 68% 67% 70% 70% 67% 65% 69% 69% 68% 71% 64% 64% 72% 64% 65% 71% 70% 56% 57% 65% 70% 59% 70% 68%) -> (99k/114k) -> write(78%)
+0:04:04 INF [osm_pass2] - nodes: [ 486M 6% 25M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 268M 2.4M/s ] 15G blocks: [ 1k 6% 51/s ]
+ cpus: 46.5 gc: 8% heap: 103G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(14%) -> (33/96) -> process(41% 57% 69% 54% 60% 65% 60% 69% 71% 68% 71% 36% 42% 62% 76% 58% 66% 69% 49% 50% 52% 73% 63% 69% 65% 39% 59% 73% 70% 72% 71% 54% 75% 70% 39% 44% 65% 69% 52% 71% 61% 66% 75% 50% 73% 54% 65% 63% 76% 68% 63% 68% 38% 69% 66% 68% 69% 61% 69% 71% 68% 71% 65%) -> (36k/114k) -> write(90%)
+0:04:14 INF [osm_pass2] - nodes: [ 825M 11% 33M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 284M 1.5M/s ] 17G blocks: [ 1.8k 10% 76/s ]
+ cpus: 55.8 gc: 10% heap: 100G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(24%) -> (33/96) -> process(76% 78% 79% 78% 80% 80% 78% 79% 81% 78% 79% 80% 78% 78% 76% 77% 81% 79% 78% 79% 79% 80% 79% 77% 80% 80% 75% 79% 79% 78% 76% 79% 78% 80% 77% 78% 80% 77% 78% 80% 79% 78% 80% 77% 80% 81% 79% 79% 79% 80% 79% 80% 77% 79% 80% 77% 79% 78% 77% 79% 79% 78% 78%) -> (86k/114k) -> write(61%)
+0:04:24 INF [osm_pass2] - nodes: [ 1.1B 15% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 301M 1.6M/s ] 19G blocks: [ 2.5k 13% 68/s ]
+ cpus: 54.4 gc: 9% heap: 99G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(19%) -> (33/96) -> process(81% 80% 82% 82% 81% 78% 80% 83% 80% 80% 80% 39% 80% 81% 79% 81% 80% 81% 78% 80% 80% 82% 40% 82% 82% 79% 82% 80% 81% 81% 81% 82% 40% 76% 81% 77% 37% 80% 82% 81% 81% 80% 81% 79% 82% 80% 39% 81% 80% 81% 77% 82% 79% 78% 40% 82% 82% 81% 83% 79% 80% 79% 79%) -> (28k/114k) -> write(64%)
+0:04:34 INF [osm_pass2] - nodes: [ 1.4B 19% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 311M 1M/s ] 20G blocks: [ 3.1k 17% 61/s ]
+ cpus: 49.9 gc: 8% heap: 100G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(14%) -> (33/96) -> process(76% 75% 81% 77% 77% 79% 79% 78% 77% 74% 74% 10% 80% 80% 77% 75% 69% 70% 79% 79% 75% 78% 10% 77% 80% 76% 80% 77% 79% 77% 81% 72% 11% 80% 77% 74% 12% 78% 77% 75% 78% 69% 76% 78% 75% 76% 10% 73% 75% 74% 80% 76% 76% 76% 10% 75% 76% 79% 78% 80% 80% 75% 76%) -> (32k/114k) -> write(39%)
+0:04:44 INF [osm_pass2] - nodes: [ 1.7B 23% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 322M 1.1M/s ] 21G blocks: [ 3.6k 20% 54/s ]
+ cpus: 46.8 gc: 8% heap: 94G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(12%) -> (33/96) -> process(64% 77% 76% 65% 73% 76% 62% 71% 72% 73% 73% 10% 75% 72% 72% 71% 76% 75% 71% 42% 72% 73% 9% 75% 69% 75% 8% 71% 72% 71% 76% 71% 9% 77% 78% 72% 10% 68% 65% 74% 75% 80% 71% 76% 67% 73% 9% 64% 74% 78% 73% 65% 67% 77% 62% 74% 72% 69% 78% 59% 72% 79% 71%) -> (29k/114k) -> write(40%)
+0:04:54 INF [osm_pass2] - nodes: [ 2B 27% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 338M 1.5M/s ] 22G blocks: [ 4.2k 22% 55/s ]
+ cpus: 48.7 gc: 9% heap: 94G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(12%) -> (33/96) -> process(70% 75% 71% 67% 71% 81% 70% 75% 75% 76% 74% 10% 73% 71% 78% 74% 71% 75% 75% 79% 78% 81% 9% 76% 72% 74% 8% 71% 72% 75% 54% 72% 10% 78% 70% 70% 10% 80% 78% 79% 75% 72% 78% 78% 71% 75% 10% 73% 73% 70% 76% 81% 76% 80% 69% 80% 78% 70% 69% 77% 75% 68% 82%) -> (47k/114k) -> write(56%)
+0:05:04 INF [osm_pass2] - nodes: [ 2.3B 31% 30M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 358M 2M/s ] 23G blocks: [ 4.7k 25% 48/s ]
+ cpus: 50.3 gc: 9% heap: 95G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read(10%) -> (32/96) -> process(75% 81% 80% 65% 72% 74% 79% 72% 74% 70% 78% 13% 78% 75% 78% 74% 75% 74% 76% 72% 78% 77% 12% 81% 67% 81% 10% 69% 74% 77% 76% 69% 12% 78% 76% 74% 51% 76% 77% 74% 57% 75% 72% 73% 76% 77% 58% 76% 79% 76% 77% 67% 71% 79% 71% 79% 78% 73% 75% 74% 83% 78% 68%) -> (34k/114k) -> write(71%)
+0:05:14 INF [osm_pass2] - nodes: [ 2.6B 36% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 369M 1M/s ] 24G blocks: [ 5.1k 28% 47/s ]
+ cpus: 48.9 gc: 8% heap: 96G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read(10%) -> (33/96) -> process(78% 72% 68% 75% 70% 71% 76% 77% 74% 73% 72% 12% 77% 59% 74% 74% 77% 75% 68% 70% 79% 78% 11% 76% 76% 74% 10% 79% 80% 77% 70% 78% 12% 65% 77% 73% 75% 77% 76% 63% 73% 73% 71% 73% 73% 75% 75% 76% 81% 73% 81% 74% 5% 53% 76% 73% 71% 75% 69% 75% 73% 74% 80%) -> (32k/114k) -> write(37%)
+0:05:24 INF [osm_pass2] - nodes: [ 2.9B 39% 30M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 378M 984k/s ] 25G blocks: [ 5.6k 30% 44/s ]
+ cpus: 46.3 gc: 8% heap: 91G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(66% 70% 69% 68% 75% 58% 68% 69% 68% 76% 73% 37% 77% 64% 74% 72% 71% 19% 70% 69% 71% 75% 10% 72% 70% 67% 8% 72% 69% 71% 69% 76% 8% 70% 76% 75% 66% 68% 78% 64% 70% 68% 69% 73% 76% 65% 66% 68% 52% 74% 66% 62% 68% 69% 63% 72% 54% 77% 67% 66% 61% 71% 69%) -> (32k/114k) -> write(35%)
+0:05:34 INF [osm_pass2] - nodes: [ 3.2B 44% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 387M 849k/s ] 26G blocks: [ 6k 32% 45/s ]
+ cpus: 47.8 gc: 8% heap: 97G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(72% 75% 76% 72% 73% 67% 69% 80% 68% 67% 68% 78% 65% 70% 72% 74% 77% 73% 72% 68% 70% 69% 13% 71% 68% 74% 10% 75% 72% 71% 72% 62% 12% 77% 75% 68% 66% 71% 69% 73% 72% 69% 72% 69% 70% 77% 71% 65% 8% 70% 78% 69% 72% 70% 70% 71% 66% 72% 75% 69% 64% 70% 74%) -> (29k/114k) -> write(31%)
+0:05:44 INF [osm_pass2] - nodes: [ 3.5B 47% 26M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 397M 1M/s ] 27G blocks: [ 6.4k 34% 38/s ]
+ cpus: 41.9 gc: 8% heap: 91G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 7%) -> (33/96) -> process(73% 69% 70% 62% 67% 59% 66% 57% 67% 68% 70% 51% 56% 54% 63% 63% 64% 57% 57% 63% 58% 36% 8% 67% 54% 61% 21% 62% 63% 71% 69% 65% 8% 57% 61% 66% 68% 67% 58% 59% 62% 39% 56% 53% 64% 64% 73% 68% 13% 63% 57% 68% 56% 68% 56% 63% 67% 69% 63% 66% 64% 64% 53%) -> (30k/114k) -> write(36%)
+0:05:54 INF [osm_pass2] - nodes: [ 3.8B 51% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 406M 885k/s ] 28G blocks: [ 6.8k 37% 42/s ]
+ cpus: 45.1 gc: 8% heap: 98G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 8%) -> (32/96) -> process(67% 70% 65% 60% 73% 73% 73% 58% 71% 67% 73% 63% 69% 53% 69% 69% 64% 66% 66% 65% 61% 61% 69% 65% 71% 68% 67% 56% 61% 68% 58% 73% 10% 69% 67% 47% 71% 65% 68% 59% 61% 10% 62% 65% 59% 69% 65% 64% 57% 72% 55% 62% 68% 59% 62% 61% 59% 60% 70% 64% 77% 68% 68%) -> (31k/114k) -> write(32%)
+0:06:04 INF [osm_pass2] - nodes: [ 4.1B 54% 25M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 413M 705k/s ] 29G blocks: [ 7.2k 39% 35/s ]
+ cpus: 38.1 gc: 6% heap: 99G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read( 6%) -> (33/96) -> process(47% 51% 47% 56% 67% 48% 63% 49% 62% 57% 57% 47% 58% 48% 48% 59% 54% 56% 34% 66% 65% 63% 45% 52% 65% 61% 53% 48% 64% 43% 47% 56% 8% 54% 49% 48% 49% 59% 56% 69% 46% 51% 63% 48% 64% 62% 57% 61% 48% 54% 53% 55% 43% 50% 65% 58% 57% 49% 43% 49% 71% 59% 50%) -> (31k/114k) -> write(25%)
+0:06:14 INF [osm_pass2] - nodes: [ 4.3B 58% 26M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 422M 918k/s ] 30G blocks: [ 7.6k 41% 38/s ]
+ cpus: 40.2 gc: 7% heap: 103G/118G direct: 10M postGC: 93G relInfo: 1G mpGeoms: 297
+ read( 7%) -> (33/96) -> process(60% 63% 46% 48% 54% 51% 54% 43% 48% 58% 68% 53% 59% 62% 51% 45% 57% 53% 63% 57% 48% 67% 63% 62% 42% 58% 67% 63% 69% 66% 66% 64% 8% 47% 56% 50% 64% 65% 55% 55% 46% 55% 52% 58% 58% 53% 47% 55% 55% 59% 50% 68% 68% 65% 62% 63% 67% 53% 55% 50% 60% 57% 55%) -> (31k/114k) -> write(31%)
+0:06:24 INF [osm_pass2] - nodes: [ 4.6B 62% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 431M 866k/s ] 31G blocks: [ 8.1k 43% 46/s ]
+ cpus: 49.6 gc: 8% heap: 100G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(68% 72% 75% 76% 77% 74% 68% 69% 70% 72% 74% 68% 73% 68% 74% 76% 70% 66% 74% 75% 63% 72% 55% 72% 72% 76% 63% 69% 73% 68% 69% 67% 20% 75% 68% 78% 69% 77% 64% 67% 75% 68% 70% 72% 68% 72% 71% 68% 69% 71% 78% 79% 73% 66% 66% 70% 76% 75% 61% 67% 72% 79% 80%) -> (31k/114k) -> write(31%)
+0:06:34 INF [osm_pass2] - nodes: [ 5B 67% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 439M 821k/s ] 31G blocks: [ 8.5k 46% 46/s ]
+ cpus: 49.1 gc: 9% heap: 97G/118G direct: 10M postGC: 93G relInfo: 1G mpGeoms: 297
+ read(10%) -> (32/96) -> process(70% 59% 71% 78% 69% 70% 69% 68% 65% 66% 68% 73% 70% 67% 62% 74% 72% 61% 64% 66% 65% 71% 60% 66% 73% 68% 64% 63% 69% 71% 71% 74% 78% 65% 68% 71% 73% 67% 63% 66% 74% 67% 67% 69% 68% 70% 75% 67% 69% 70% 71% 57% 59% 67% 73% 71% 77% 67% 64% 75% 71% 76% 71%) -> (32k/114k) -> write(30%)
+0:06:44 INF [osm_pass2] - nodes: [ 5.3B 71% 35M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 448M 845k/s ] 32G blocks: [ 9k 48% 51/s ]
+ cpus: 54.4 gc: 9% heap: 98G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(75% 78% 78% 76% 75% 78% 82% 74% 80% 74% 76% 74% 74% 67% 77% 80% 75% 75% 78% 76% 66% 74% 80% 81% 66% 78% 82% 78% 79% 72% 73% 77% 73% 80% 79% 80% 76% 76% 76% 81% 73% 81% 77% 79% 79% 77% 76% 82% 79% 81% 79% 79% 72% 72% 79% 70% 83% 76% 81% 79% 78% 64% 74%) -> (33k/114k) -> write(33%)
+0:06:54 INF [osm_pass2] - nodes: [ 5.7B 76% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 459M 1.1M/s ] 33G blocks: [ 9.5k 51% 46/s ]
+ cpus: 50.7 gc: 9% heap: 102G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(70% 68% 79% 60% 81% 71% 71% 76% 73% 69% 67% 60% 75% 66% 67% 71% 74% 78% 71% 75% 70% 73% 73% 78% 72% 72% 51% 66% 71% 74% 62% 66% 78% 71% 68% 76% 68% 58% 73% 72% 71% 70% 61% 75% 75% 72% 67% 79% 75% 79% 73% 79% 72% 72% 69% 74% 76% 72% 78% 81% 76% 61% 74%) -> (30k/114k) -> write(42%)
+0:07:04 INF [osm_pass2] - nodes: [ 6B 81% 37M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 470M 1M/s ] 34G blocks: [ 10k 54% 52/s ]
+ cpus: 56.8 gc: 10% heap: 95G/118G direct: 10M postGC: 93G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(78% 78% 80% 81% 77% 83% 80% 81% 80% 78% 77% 82% 80% 78% 79% 78% 80% 82% 79% 81% 79% 84% 81% 83% 82% 78% 79% 81% 80% 80% 80% 83% 77% 76% 81% 82% 79% 80% 81% 82% 80% 78% 75% 84% 79% 76% 82% 81% 81% 81% 81% 74% 81% 81% 80% 81% 79% 81% 79% 78% 81% 76% 81%) -> (27k/114k) -> write(41%)
+0:07:14 INF [osm_pass2] - nodes: [ 6.4B 85% 36M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 479M 907k/s ] 35G blocks: [ 10k 56% 50/s ]
+ cpus: 55.2 gc: 9% heap: 97G/118G direct: 10M postGC: 93G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(79% 78% 78% 81% 76% 76% 77% 71% 80% 76% 78% 76% 79% 77% 80% 74% 82% 79% 78% 79% 79% 73% 76% 77% 81% 78% 81% 76% 79% 81% 81% 77% 83% 75% 84% 73% 77% 78% 82% 76% 75% 78% 78% 82% 76% 76% 76% 81% 81% 78% 79% 75% 74% 81% 81% 79% 75% 79% 80% 81% 75% 81% 78%) -> (34k/114k) -> write(35%)
+0:07:24 INF [osm_pass2] - nodes: [ 6.8B 90% 35M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 492M 1.3M/s ] 36G blocks: [ 11k 59% 51/s ]
+ cpus: 56.4 gc: 10% heap: 90G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(80% 78% 79% 79% 74% 78% 78% 77% 73% 81% 78% 78% 79% 82% 80% 80% 81% 83% 81% 83% 80% 82% 81% 79% 83% 74% 76% 82% 75% 77% 82% 78% 77% 79% 80% 82% 74% 79% 77% 80% 73% 80% 71% 80% 80% 78% 81% 79% 75% 78% 81% 83% 80% 81% 80% 78% 83% 80% 78% 80% 76% 79% 73%) -> (29k/114k) -> write(50%)
+0:07:34 INF [osm_pass2] - nodes: [ 6.9B 93% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 499M 678k/s ] 37G blocks: [ 11k 60% 25/s ]
+ cpus: 28 gc: 5% heap: 93G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 4%) -> (32/96) -> process(49% 47% 76% 4% 10% 49% 63% 5% 30% 53% 19% 59% 62% 4% 65% 4% 50% 77% 52% 15% 34% 32% 38% 15% 21% 44% 4% 62% 3% 5% 48% 65% 6% 59% 57% 56% 52% 41% 8% 29% 5% 58% 5% 51% 67% 49% 29% 62% 68% 45% 38% 40% 45% 45% 61% 28% 65% 70% 5% 63% 69% 25% 19%) -> (30k/114k) -> write(22%)
+0:07:44 INF [osm_pass2] - nodes: [ 7.1B 95% 16M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 504M 531k/s ] 37G blocks: [ 11k 62% 23/s ]
+ cpus: 25.6 gc: 5% heap: 98G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 4%) -> (33/96) -> process(35% 19% 70% 5% 56% 61% 56% 4% 16% 42% 27% 12% 45% 13% 35% 56% 60% 41% 39% 29% 59% 20% 59% 47% 4% 56% 3% 30% 48% 36% 45% 44% 25% 20% 38% 55% 21% 53% 62% 52% 8% 52% 4% 56% 32% 6% 32% 57% 54% 56% 25% 43% 18% 58% 37% 17% 30% 37% 3% 56% 43% 17% 30%) -> (34k/114k) -> write(17%)
+0:07:54 INF [osm_pass2] - nodes: [ 7.3B 97% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 508M 406k/s ] 38G blocks: [ 11k 63% 26/s ]
+ cpus: 28.8 gc: 5% heap: 95G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read( 4%) -> (33/96) -> process(55% 47% 60% 49% 71% 34% 67% 4% 52% 61% 4% 16% 54% 59% 57% 36% 52% 40% 5% 54% 38% 60% 49% 50% 25% 31% 3% 43% 58% 48% 50% 14% 39% 19% 32% 60% 24% 56% 5% 21% 55% 53% 4% 65% 57% 40% 55% 8% 55% 41% 18% 64% 59% 65% 60% 38% 38% 56% 4% 34% 65% 6% 22%) -> (30k/114k) -> write(13%)
+0:08:01 DEB [osm_pass2:process] - Sorting long long multimap...
+0:08:04 INF [osm_pass2:process] - Finished nodes: 7,546,573,682 (29M/s) in 4m20s cpu:3h19m37s gc:21s avg:46.1
+0:08:04 INF [osm_pass2] - nodes: [ 7.5B 100% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 514M 583k/s ] 38G blocks: [ 12k 65% 30/s ]
+ cpus: 33.1 gc: 7% heap: 98G/118G direct: 10M postGC: 93G relInfo: 1G mpGeoms: 297
+ read( 6%) -> (33/96) -> process(55% 46% 44% 44% 39% 32% 41% 13% 46% 45% 35% 51% 42% 45% 57% 57% 34% 53% 6% 52% 48% 45% 48% 45% 42% 47% 43% 38% 45% 42% 51% 46% 67% 55% 51% 42% 45% 53% 46% 40% 35% 43% 21% 46% 42% 46% 41% 50% 58% 50% 47% 38% 46% 51% 55% 51% 48% 42% 33% 37% 41% 11% 51%) -> (34k/114k) -> write(20%)
+0:08:07 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:56s avg:9.4
+0:08:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 2.7M 0% 274k/s ] rels: [ 0 0% 0/s ] features: [ 532M 1.7M/s ] 40G blocks: [ 12k 65% <1/s ]
+ cpus: 23.1 gc: 1% heap: 94G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 30M
+ read( 0%) -> (33/96) -> process(31% 32% 31% 27% 31% 32% 32% 31% 28% 30% 29% 30% 31% 31% 31% 30% 29% 30% 32% 30% 31% 31% 31% 28% 27% 30% 29% 31% 30% 33% 30% 32% 59% 30% 31% 30% 28% 30% 32% 33% 33% 32% 30% 26% 32% 33% 31% 34% 30% 35% 29% 30% 30% 30% 29% 27% 26% 31% 31% 31% 31% 29% 30%) -> (102k/114k) -> write(65%)
+0:08:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 6.9M 1% 414k/s ] rels: [ 0 0% 0/s ] features: [ 558M 2.6M/s ] 42G blocks: [ 12k 65% 5/s ]
+ cpus: 25 gc: 3% heap: 101G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 69M
+ read( 1%) -> (33/96) -> process(33% 34% 34% 28% 32% 31% 35% 33% 28% 34% 32% 33% 33% 33% 38% 31% 33% 32% 37% 33% 32% 34% 32% 31% 30% 30% 33% 32% 32% 34% 32% 35% 31% 31% 34% 29% 28% 32% 30% 34% 33% 34% 34% 28% 36% 33% 47% 33% 35% 34% 31% 36% 30% 31% 31% 28% 28% 31% 33% 32% 33% 33% 35%) -> (103k/114k) -> write(96%)
+0:08:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 11M 1% 439k/s ] rels: [ 0 0% 0/s ] features: [ 584M 2.6M/s ] 45G blocks: [ 12k 65% 5/s ]
+ cpus: 25.7 gc: 4% heap: 96G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 102M
+ read( 1%) -> (33/96) -> process(33% 34% 36% 33% 33% 30% 32% 32% 32% 33% 33% 35% 32% 32% 35% 32% 30% 32% 33% 29% 34% 33% 32% 30% 32% 34% 29% 30% 30% 35% 31% 31% 32% 29% 40% 30% 33% 33% 35% 30% 32% 32% 36% 35% 33% 34% 28% 34% 32% 31% 33% 36% 31% 31% 36% 31% 32% 31% 32% 32% 33% 33% 35%) -> (101k/114k) -> write(96%)
+0:08:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 15M 2% 433k/s ] rels: [ 0 0% 0/s ] features: [ 610M 2.5M/s ] 47G blocks: [ 12k 66% 3/s ]
+ cpus: 29.5 gc: 4% heap: 91G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 187M
+ read( 1%) -> (33/96) -> process(33% 40% 35% 39% 42% 39% 41% 41% 42% 32% 39% 39% 42% 36% 40% 44% 43% 39% 33% 34% 39% 34% 34% 39% 40% 43% 45% 34% 34% 34% 40% 41% 38% 40% 42% 38% 43% 40% 32% 31% 41% 31% 40% 39% 35% 41% 48% 41% 37% 37% 42% 35% 40% 31% 51% 39% 40% 31% 32% 34% 45% 38% 39%) -> (97k/114k) -> write(95%)
+0:08:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 20M 2% 470k/s ] rels: [ 0 0% 0/s ] features: [ 635M 2.5M/s ] 49G blocks: [ 12k 66% 5/s ]
+ cpus: 34.8 gc: 6% heap: 103G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 310M
+ read( 1%) -> (33/96) -> process(50% 47% 43% 53% 45% 45% 41% 40% 45% 51% 47% 44% 51% 47% 43% 45% 43% 44% 46% 46% 45% 46% 44% 51% 44% 46% 66% 48% 46% 44% 51% 45% 40% 49% 44% 45% 47% 47% 44% 45% 47% 43% 45% 48% 46% 43% 46% 39% 48% 47% 45% 46% 44% 45% 52% 43% 49% 53% 52% 47% 46% 56% 45%) -> (96k/114k) -> write(94%)
+0:09:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 25M 3% 533k/s ] rels: [ 0 0% 0/s ] features: [ 659M 2.3M/s ] 52G blocks: [ 12k 66% 6/s ]
+ cpus: 40.9 gc: 8% heap: 89G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 436M
+ read( 2%) -> (33/96) -> process(55% 67% 51% 54% 48% 51% 57% 61% 54% 51% 51% 53% 60% 68% 50% 52% 62% 61% 52% 48% 57% 51% 49% 58% 47% 51% 54% 50% 51% 49% 60% 49% 47% 53% 45% 51% 50% 50% 48% 48% 52% 53% 57% 61% 51% 50% 66% 57% 48% 52% 53% 51% 53% 47% 47% 49% 64% 67% 50% 49% 51% 67% 57%) -> (80k/114k) -> write(92%)
+0:09:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 31M 4% 576k/s ] rels: [ 0 0% 0/s ] features: [ 683M 2.3M/s ] 54G blocks: [ 12k 66% 6/s ]
+ cpus: 44.5 gc: 7% heap: 102G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 598M
+ read( 2%) -> (33/96) -> process(55% 56% 58% 56% 52% 59% 79% 81% 60% 61% 56% 59% 78% 59% 59% 55% 78% 60% 57% 57% 52% 56% 55% 57% 56% 55% 66% 57% 58% 62% 80% 55% 58% 56% 58% 57% 56% 63% 56% 55% 60% 55% 55% 55% 57% 59% 79% 59% 76% 55% 60% 55% 58% 55% 54% 57% 78% 61% 58% 55% 55% 55% 63%) -> (90k/114k) -> write(93%)
+0:09:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 38M 5% 722k/s ] rels: [ 0 0% 0/s ] features: [ 705M 2.2M/s ] 56G blocks: [ 12k 67% 7/s ]
+ cpus: 49.5 gc: 8% heap: 94G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 722M
+ read( 2%) -> (33/96) -> process(71% 67% 69% 51% 71% 44% 82% 83% 72% 42% 36% 42% 78% 68% 68% 43% 83% 72% 72% 71% 69% 72% 72% 44% 68% 61% 75% 70% 70% 59% 84% 73% 70% 69% 69% 66% 71% 47% 64% 57% 72% 55% 70% 69% 73% 69% 82% 70% 78% 71% 68% 71% 72% 36% 70% 39% 83% 71% 71% 58% 70% 70% 69%) -> (85k/114k) -> write(92%)
+0:09:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 48M 6% 1M/s ] rels: [ 0 0% 0/s ] features: [ 726M 2.1M/s ] 57G blocks: [ 12k 67% 9/s ]
+ cpus: 51.9 gc: 9% heap: 96G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 822M
+ read( 3%) -> (33/96) -> process(78% 76% 77% 46% 77% 62% 76% 80% 75% 40% 33% 42% 76% 76% 75% 36% 76% 76% 77% 75% 75% 76% 76% 46% 77% 75% 74% 77% 76% 77% 76% 76% 76% 76% 76% 54% 77% 52% 77% 69% 76% 39% 76% 75% 75% 77% 75% 76% 76% 76% 78% 76% 76% 33% 77% 41% 76% 76% 76% 75% 76% 77% 75%) -> (76k/114k) -> write(90%)
+0:09:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 57M 7% 884k/s ] rels: [ 0 0% 0/s ] features: [ 748M 2.1M/s ] 59G blocks: [ 12k 68% 8/s ]
+ cpus: 52.6 gc: 8% heap: 91G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 964M
+ read( 3%) -> (33/96) -> process(75% 74% 75% 72% 68% 70% 67% 71% 71% 72% 67% 72% 73% 72% 71% 70% 71% 71% 70% 73% 66% 72% 71% 71% 72% 68% 68% 72% 71% 74% 72% 69% 74% 72% 72% 71% 72% 73% 71% 72% 73% 72% 71% 74% 71% 73% 73% 68% 69% 70% 70% 70% 69% 69% 70% 69% 67% 75% 78% 72% 72% 69% 75%) -> (57k/114k) -> write(90%)
+0:09:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 65M 8% 801k/s ] rels: [ 0 0% 0/s ] features: [ 769M 2.1M/s ] 61G blocks: [ 12k 68% 7/s ]
+ cpus: 53.2 gc: 8% heap: 95G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1G
+ read( 2%) -> (33/96) -> process(80% 73% 70% 71% 69% 68% 71% 70% 68% 71% 70% 68% 71% 69% 69% 70% 67% 67% 70% 76% 68% 69% 75% 74% 76% 71% 68% 75% 66% 70% 78% 69% 72% 71% 74% 69% 69% 73% 68% 73% 73% 77% 74% 70% 69% 72% 74% 71% 71% 70% 71% 70% 68% 66% 71% 67% 70% 70% 77% 70% 70% 68% 74%) -> (85k/114k) -> write(88%)
+0:10:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 74M 9% 810k/s ] rels: [ 0 0% 0/s ] features: [ 791M 2.1M/s ] 63G blocks: [ 12k 69% 8/s ]
+ cpus: 50.8 gc: 10% heap: 91G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.2G
+ read( 2%) -> (33/96) -> process(72% 68% 69% 66% 67% 66% 69% 68% 71% 70% 67% 72% 70% 67% 68% 69% 70% 70% 69% 67% 70% 69% 71% 68% 68% 68% 66% 67% 65% 68% 70% 66% 68% 69% 66% 66% 69% 67% 67% 69% 68% 66% 71% 67% 67% 69% 70% 67% 69% 68% 68% 66% 71% 68% 65% 68% 68% 66% 70% 67% 67% 68% 68%) -> (44k/114k) -> write(90%)
+0:10:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 82M 10% 868k/s ] rels: [ 0 0% 0/s ] features: [ 815M 2.3M/s ] 64G blocks: [ 12k 69% 7/s ]
+ cpus: 45.3 gc: 7% heap: 91G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.2G
+ read( 2%) -> (33/96) -> process(60% 61% 59% 64% 60% 61% 61% 64% 57% 61% 61% 59% 57% 64% 62% 60% 61% 58% 60% 63% 60% 61% 57% 57% 65% 58% 58% 57% 58% 61% 58% 60% 61% 59% 61% 60% 60% 59% 61% 61% 64% 62% 63% 61% 58% 61% 59% 59% 64% 60% 59% 61% 60% 61% 59% 62% 60% 55% 57% 59% 59% 59% 61%) -> (70k/114k) -> write(92%)
+0:10:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 91M 11% 864k/s ] rels: [ 0 0% 0/s ] features: [ 838M 2.3M/s ] 66G blocks: [ 13k 70% 7/s ]
+ cpus: 45.6 gc: 8% heap: 94G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.3G
+ read( 2%) -> (33/96) -> process(59% 59% 60% 59% 59% 61% 59% 59% 61% 60% 61% 59% 58% 57% 59% 61% 61% 60% 57% 60% 62% 60% 61% 60% 62% 56% 64% 57% 58% 60% 60% 60% 58% 58% 56% 58% 60% 58% 58% 61% 58% 59% 59% 57% 59% 61% 56% 61% 59% 61% 60% 60% 59% 61% 60% 60% 62% 60% 59% 61% 61% 61% 58%) -> (96k/114k) -> write(92%)
+0:10:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 100M 12% 851k/s ] rels: [ 0 0% 0/s ] features: [ 860M 2.2M/s ] 68G blocks: [ 13k 70% 6/s ]
+ cpus: 49 gc: 8% heap: 102G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 1.4G
+ read( 2%) -> (33/96) -> process(67% 67% 64% 66% 68% 65% 64% 65% 67% 66% 65% 65% 67% 63% 65% 62% 65% 66% 66% 64% 66% 65% 66% 62% 67% 65% 65% 66% 66% 69% 64% 65% 67% 66% 63% 67% 63% 65% 64% 63% 63% 65% 62% 67% 66% 66% 68% 67% 66% 66% 65% 66% 66% 65% 67% 65% 63% 67% 65% 65% 65% 64% 64%) -> (90k/114k) -> write(91%)
+0:10:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 108M 13% 885k/s ] rels: [ 0 0% 0/s ] features: [ 883M 2.2M/s ] 70G blocks: [ 13k 70% 7/s ]
+ cpus: 47.8 gc: 8% heap: 92G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 1.6G
+ read( 2%) -> (33/96) -> process(63% 63% 65% 62% 61% 64% 64% 62% 62% 65% 63% 65% 61% 60% 62% 61% 61% 64% 63% 61% 63% 62% 62% 64% 62% 63% 63% 64% 65% 61% 64% 62% 61% 63% 63% 60% 63% 64% 64% 63% 62% 62% 64% 64% 65% 63% 60% 62% 62% 63% 64% 64% 63% 60% 64% 63% 59% 62% 65% 61% 61% 66% 65%) -> (75k/114k) -> write(91%)
+0:10:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 117M 14% 891k/s ] rels: [ 0 0% 0/s ] features: [ 907M 2.3M/s ] 72G blocks: [ 13k 71% 6/s ]
+ cpus: 45.4 gc: 7% heap: 95G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.7G
+ read( 2%) -> (33/96) -> process(60% 58% 62% 61% 60% 58% 60% 59% 61% 60% 60% 62% 60% 60% 61% 61% 62% 59% 59% 62% 61% 68% 60% 60% 59% 61% 59% 62% 61% 59% 62% 61% 61% 61% 61% 60% 59% 61% 61% 59% 61% 61% 61% 62% 58% 61% 60% 61% 62% 62% 61% 63% 60% 60% 61% 59% 60% 59% 60% 61% 60% 60% 59%) -> (91k/114k) -> write(92%)
+0:11:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 126M 15% 851k/s ] rels: [ 0 0% 0/s ] features: [ 930M 2.3M/s ] 73G blocks: [ 13k 71% 7/s ]
+ cpus: 44.6 gc: 7% heap: 101G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 1.8G
+ read( 2%) -> (33/96) -> process(58% 58% 60% 57% 57% 57% 60% 59% 58% 57% 56% 58% 59% 58% 60% 59% 61% 60% 58% 59% 60% 62% 59% 56% 60% 56% 59% 60% 59% 57% 58% 60% 59% 61% 60% 60% 58% 60% 61% 58% 57% 57% 60% 61% 57% 59% 59% 58% 57% 56% 60% 59% 58% 55% 58% 59% 58% 57% 60% 58% 55% 58% 58%) -> (95k/114k) -> write(92%)
+0:11:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 134M 16% 853k/s ] rels: [ 0 0% 0/s ] features: [ 953M 2.2M/s ] 75G blocks: [ 13k 71% 7/s ]
+ cpus: 47.2 gc: 8% heap: 100G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.9G
+ read( 2%) -> (33/96) -> process(63% 61% 61% 61% 63% 62% 64% 68% 63% 61% 64% 63% 64% 63% 68% 60% 63% 64% 60% 63% 63% 63% 63% 61% 64% 63% 64% 62% 62% 66% 65% 62% 64% 62% 61% 63% 61% 64% 66% 63% 67% 62% 62% 64% 61% 64% 62% 63% 61% 61% 63% 64% 63% 65% 63% 63% 64% 64% 62% 63% 61% 61% 63%) -> (91k/114k) -> write(91%)
+0:11:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 143M 17% 874k/s ] rels: [ 0 0% 0/s ] features: [ 975M 2.2M/s ] 77G blocks: [ 13k 72% 7/s ]
+ cpus: 48.6 gc: 8% heap: 99G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2G
+ read( 2%) -> (33/96) -> process(64% 66% 62% 65% 62% 65% 63% 68% 62% 64% 64% 65% 66% 65% 67% 65% 63% 63% 64% 61% 63% 63% 63% 61% 65% 64% 65% 65% 63% 63% 62% 62% 65% 65% 63% 64% 63% 66% 70% 63% 63% 65% 64% 62% 66% 68% 62% 65% 65% 63% 67% 62% 61% 62% 62% 63% 63% 61% 65% 63% 62% 63% 61%) -> (92k/114k) -> write(91%)
+0:11:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 152M 18% 892k/s ] rels: [ 0 0% 0/s ] features: [ 998M 2.2M/s ] 79G blocks: [ 13k 72% 6/s ]
+ cpus: 47.1 gc: 9% heap: 95G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.1G
+ read( 2%) -> (33/96) -> process(63% 62% 63% 64% 65% 61% 63% 63% 61% 61% 61% 61% 62% 61% 63% 61% 62% 64% 63% 63% 64% 63% 63% 64% 64% 63% 62% 62% 60% 63% 60% 62% 64% 63% 62% 62% 61% 64% 61% 62% 62% 62% 63% 61% 62% 61% 62% 63% 61% 63% 63% 61% 61% 62% 62% 60% 62% 63% 63% 63% 63% 60% 63%) -> (91k/114k) -> write(90%)
+0:11:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 162M 19% 964k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.2M/s ] 80G blocks: [ 13k 73% 7/s ]
+ cpus: 48.8 gc: 8% heap: 101G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.2G
+ read( 2%) -> (33/96) -> process(65% 65% 64% 64% 65% 64% 65% 64% 63% 63% 64% 63% 64% 63% 66% 63% 63% 64% 67% 65% 64% 63% 64% 64% 63% 66% 65% 64% 64% 63% 64% 64% 65% 63% 66% 64% 64% 65% 63% 66% 64% 63% 65% 64% 65% 63% 63% 66% 63% 63% 65% 60% 62% 67% 64% 65% 63% 65% 65% 66% 62% 63% 63%) -> (91k/114k) -> write(91%)
+0:11:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 171M 20% 893k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.2M/s ] 82G blocks: [ 13k 73% 7/s ]
+ cpus: 48.4 gc: 8% heap: 95G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.3G
+ read( 2%) -> (33/96) -> process(61% 65% 63% 64% 63% 63% 63% 63% 62% 62% 63% 61% 62% 66% 65% 59% 63% 63% 65% 65% 66% 62% 64% 64% 66% 63% 64% 63% 64% 63% 65% 62% 64% 63% 66% 64% 65% 63% 63% 60% 63% 63% 64% 63% 63% 63% 65% 64% 64% 63% 64% 67% 64% 64% 64% 63% 62% 66% 64% 63% 66% 65% 63%) -> (93k/114k) -> write(91%)
+0:12:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 180M 21% 916k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.2M/s ] 84G blocks: [ 13k 73% 7/s ]
+ cpus: 48.9 gc: 8% heap: 101G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.4G
+ read( 2%) -> (33/96) -> process(65% 66% 70% 64% 65% 66% 64% 65% 65% 63% 68% 65% 65% 70% 65% 65% 63% 65% 64% 65% 65% 64% 64% 64% 64% 64% 65% 66% 66% 64% 65% 65% 65% 63% 65% 64% 64% 64% 65% 65% 65% 64% 65% 64% 63% 62% 60% 64% 65% 64% 70% 66% 67% 64% 65% 65% 65% 64% 66% 65% 74% 67% 63%) -> (89k/114k) -> write(91%)
+0:12:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 190M 23% 987k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.2M/s ] 85G blocks: [ 13k 74% 8/s ]
+ cpus: 49.3 gc: 9% heap: 100G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.5G
+ read( 2%) -> (33/96) -> process(65% 64% 64% 64% 64% 66% 62% 66% 65% 66% 66% 63% 65% 65% 64% 63% 64% 63% 63% 67% 64% 65% 67% 65% 64% 64% 66% 64% 63% 64% 64% 64% 64% 64% 64% 63% 64% 65% 65% 63% 63% 66% 65% 64% 65% 65% 64% 64% 65% 64% 63% 65% 66% 64% 63% 65% 64% 63% 63% 66% 64% 67% 66%) -> (89k/114k) -> write(90%)
+0:12:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 200M 24% 973k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.2M/s ] 87G blocks: [ 13k 74% 7/s ]
+ cpus: 50.3 gc: 8% heap: 104G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.6G
+ read( 2%) -> (33/96) -> process(65% 69% 66% 65% 66% 65% 68% 66% 66% 65% 67% 71% 67% 64% 68% 68% 67% 67% 67% 67% 64% 68% 67% 67% 66% 67% 65% 67% 67% 67% 65% 64% 68% 69% 67% 66% 65% 63% 66% 67% 65% 67% 69% 65% 64% 65% 68% 68% 65% 64% 69% 64% 65% 68% 67% 64% 66% 64% 67% 65% 68% 66% 65%) -> (89k/114k) -> write(91%)
+0:12:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 211M 25% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.1M/s ] 88G blocks: [ 14k 75% 9/s ]
+ cpus: 52.9 gc: 9% heap: 98G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.8G
+ read( 2%) -> (33/96) -> process(70% 72% 67% 72% 69% 71% 72% 72% 69% 70% 69% 67% 71% 69% 71% 68% 72% 66% 71% 72% 70% 71% 70% 72% 72% 70% 73% 71% 69% 70% 67% 70% 72% 71% 71% 72% 71% 69% 71% 70% 71% 72% 72% 68% 70% 69% 73% 70% 70% 70% 69% 68% 74% 71% 73% 72% 69% 71% 69% 71% 71% 68% 72%) -> (89k/114k) -> write(89%)
+0:12:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 222M 26% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.1M/s ] 90G blocks: [ 14k 75% 9/s ]
+ cpus: 52.5 gc: 9% heap: 97G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.9G
+ read( 2%) -> (33/96) -> process(70% 70% 72% 73% 67% 69% 69% 70% 69% 69% 68% 68% 69% 68% 68% 67% 70% 70% 73% 69% 70% 67% 67% 69% 70% 71% 70% 67% 69% 67% 68% 68% 71% 70% 70% 69% 69% 69% 73% 69% 69% 70% 71% 68% 69% 70% 67% 66% 69% 70% 66% 70% 70% 71% 71% 69% 68% 69% 66% 70% 69% 68% 70%) -> (89k/114k) -> write(90%)
+0:12:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 232M 28% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.1M/s ] 91G blocks: [ 14k 76% 8/s ]
+ cpus: 51.6 gc: 9% heap: 99G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3G
+ read( 2%) -> (33/96) -> process(69% 68% 67% 69% 68% 67% 69% 67% 67% 69% 68% 69% 67% 68% 67% 69% 69% 69% 68% 67% 70% 70% 68% 66% 67% 67% 67% 68% 68% 70% 68% 66% 68% 67% 69% 68% 69% 67% 67% 69% 69% 65% 67% 69% 67% 68% 72% 70% 70% 70% 69% 69% 68% 67% 69% 68% 68% 67% 66% 68% 67% 68% 67%) -> (91k/114k) -> write(91%)
+0:13:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 242M 29% 967k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.1M/s ] 93G blocks: [ 14k 76% 7/s ]
+ cpus: 50.4 gc: 9% heap: 94G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 3.1G
+ read( 2%) -> (33/96) -> process(64% 65% 66% 66% 67% 67% 68% 66% 66% 65% 66% 64% 66% 66% 66% 65% 67% 67% 68% 67% 67% 66% 65% 64% 67% 67% 66% 65% 69% 66% 66% 66% 68% 67% 66% 66% 66% 65% 65% 67% 67% 67% 67% 65% 66% 66% 67% 65% 66% 66% 67% 67% 66% 66% 65% 65% 65% 67% 66% 67% 68% 68% 66%) -> (48k/114k) -> write(90%)
+0:13:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 251M 30% 958k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 95G blocks: [ 14k 77% 7/s ]
+ cpus: 50.7 gc: 9% heap: 93G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 3.2G
+ read( 2%) -> (33/96) -> process(68% 65% 63% 67% 67% 67% 68% 68% 68% 68% 68% 66% 67% 65% 68% 67% 68% 66% 67% 69% 66% 66% 65% 67% 67% 66% 67% 66% 66% 67% 69% 65% 67% 63% 68% 67% 67% 66% 66% 67% 68% 64% 66% 66% 68% 66% 66% 66% 66% 69% 67% 67% 66% 66% 67% 67% 68% 67% 68% 68% 67% 66% 66%) -> (58k/114k) -> write(91%)
+0:13:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 262M 31% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 96G blocks: [ 14k 77% 7/s ]
+ cpus: 51.2 gc: 8% heap: 97G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.4G
+ read( 2%) -> (33/96) -> process(68% 71% 67% 67% 69% 68% 69% 67% 69% 70% 69% 69% 67% 68% 68% 68% 70% 68% 67% 68% 67% 69% 67% 68% 67% 67% 68% 68% 67% 68% 69% 68% 67% 67% 67% 67% 67% 68% 68% 69% 67% 68% 68% 69% 68% 67% 68% 67% 66% 66% 68% 69% 68% 67% 67% 70% 68% 66% 70% 68% 67% 68% 70%) -> (88k/114k) -> write(91%)
+0:13:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 273M 32% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.1M/s ] 98G blocks: [ 14k 77% 8/s ]
+ cpus: 52.1 gc: 9% heap: 98G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 3.5G
+ read( 2%) -> (33/96) -> process(68% 69% 69% 68% 68% 68% 71% 69% 70% 68% 69% 69% 67% 67% 71% 69% 71% 70% 66% 71% 69% 67% 71% 68% 71% 70% 72% 66% 69% 70% 66% 66% 69% 68% 70% 70% 70% 66% 67% 68% 69% 69% 68% 71% 68% 68% 70% 66% 69% 66% 67% 69% 66% 69% 69% 69% 69% 65% 70% 72% 68% 68% 67%) -> (91k/114k) -> write(90%)
+0:13:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 284M 34% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.1M/s ] 99G blocks: [ 14k 78% 9/s ]
+ cpus: 52.2 gc: 9% heap: 94G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 3.7G
+ read( 2%) -> (33/96) -> process(66% 69% 68% 67% 69% 68% 69% 68% 70% 71% 67% 68% 69% 69% 66% 67% 66% 69% 69% 68% 69% 71% 68% 65% 69% 68% 70% 69% 69% 69% 69% 68% 69% 70% 68% 69% 67% 70% 66% 69% 69% 68% 68% 66% 67% 67% 70% 68% 68% 68% 68% 68% 69% 68% 66% 70% 69% 67% 70% 70% 70% 68% 67%) -> (60k/114k) -> write(90%)
+0:13:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 295M 35% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.2M/s ] 101G blocks: [ 14k 78% 7/s ]
+ cpus: 50.6 gc: 8% heap: 99G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 3.8G
+ read( 2%) -> (33/96) -> process(67% 67% 65% 69% 65% 66% 67% 67% 69% 66% 68% 66% 67% 68% 68% 65% 64% 68% 66% 67% 66% 67% 68% 68% 68% 65% 67% 66% 65% 68% 66% 66% 69% 67% 67% 68% 66% 69% 66% 68% 64% 66% 66% 67% 65% 67% 65% 67% 65% 67% 67% 70% 67% 68% 66% 67% 68% 66% 67% 65% 67% 66% 66%) -> (92k/114k) -> write(91%)
+0:14:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 306M 36% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.1M/s ] 102G blocks: [ 14k 79% 8/s ]
+ cpus: 51.8 gc: 9% heap: 104G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 3.9G
+ read( 2%) -> (33/96) -> process(71% 69% 68% 68% 70% 69% 67% 68% 69% 68% 68% 66% 71% 69% 66% 66% 69% 70% 65% 68% 68% 70% 68% 69% 69% 70% 68% 68% 67% 68% 69% 67% 70% 70% 69% 67% 67% 66% 69% 68% 69% 66% 70% 69% 68% 68% 70% 68% 67% 69% 65% 70% 67% 68% 67% 67% 70% 69% 68% 68% 74% 68% 69%) -> (89k/114k) -> write(91%)
+0:14:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 316M 38% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.1M/s ] 104G blocks: [ 14k 79% 8/s ]
+ cpus: 51.8 gc: 9% heap: 100G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.1G
+ read( 2%) -> (33/96) -> process(71% 70% 70% 69% 67% 68% 67% 69% 70% 67% 67% 68% 69% 68% 69% 67% 68% 67% 68% 68% 70% 69% 68% 67% 69% 68% 67% 67% 69% 68% 66% 66% 70% 69% 66% 66% 69% 66% 71% 67% 68% 67% 66% 68% 65% 66% 67% 70% 67% 69% 69% 68% 66% 71% 68% 65% 69% 70% 69% 68% 65% 67% 67%) -> (90k/114k) -> write(90%)
+0:14:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 328M 39% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.1M/s ] 105G blocks: [ 14k 80% 7/s ]
+ cpus: 53 gc: 9% heap: 95G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.2G
+ read( 2%) -> (33/96) -> process(69% 71% 72% 69% 68% 68% 71% 68% 72% 66% 70% 67% 71% 69% 67% 65% 71% 69% 70% 69% 71% 70% 69% 69% 70% 70% 70% 68% 69% 70% 69% 70% 70% 68% 71% 68% 66% 68% 71% 68% 68% 69% 69% 68% 65% 68% 71% 70% 69% 68% 71% 75% 72% 69% 69% 71% 68% 71% 67% 68% 70% 69% 68%) -> (51k/114k) -> write(90%)
+0:14:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 340M 40% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.1M/s ] 107G blocks: [ 15k 80% 8/s ]
+ cpus: 51.9 gc: 9% heap: 100G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.3G
+ read( 2%) -> (33/96) -> process(69% 71% 66% 70% 69% 67% 69% 71% 68% 66% 67% 69% 68% 69% 67% 68% 68% 70% 69% 67% 70% 67% 66% 66% 66% 68% 68% 68% 67% 65% 68% 69% 67% 69% 69% 67% 67% 67% 67% 66% 68% 68% 67% 68% 66% 68% 68% 68% 66% 68% 68% 70% 69% 64% 70% 68% 66% 69% 67% 68% 68% 66% 67%) -> (89k/114k) -> write(90%)
+0:14:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 350M 42% 1M/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.1M/s ] 108G blocks: [ 15k 81% 9/s ]
+ cpus: 51.6 gc: 10% heap: 98G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.4G
+ read( 2%) -> (33/96) -> process(69% 65% 69% 67% 66% 65% 69% 68% 68% 65% 65% 68% 67% 67% 63% 68% 67% 69% 70% 70% 67% 67% 68% 62% 69% 69% 70% 70% 68% 68% 70% 66% 67% 69% 66% 67% 67% 68% 70% 69% 67% 70% 67% 68% 65% 68% 70% 67% 64% 67% 67% 69% 67% 67% 68% 68% 65% 74% 68% 67% 66% 69% 62%) -> (87k/114k) -> write(89%)
+0:14:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 362M 43% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.1M/s ] 110G blocks: [ 15k 81% 8/s ]
+ cpus: 52.6 gc: 10% heap: 97G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.5G
+ read( 2%) -> (33/96) -> process(69% 66% 68% 71% 68% 71% 69% 67% 72% 69% 69% 67% 68% 70% 69% 69% 70% 67% 69% 68% 71% 71% 65% 69% 65% 70% 67% 70% 69% 70% 69% 69% 68% 71% 67% 70% 67% 69% 72% 68% 69% 71% 68% 70% 70% 70% 70% 69% 70% 70% 70% 66% 69% 69% 68% 69% 68% 73% 66% 69% 67% 71% 68%) -> (91k/114k) -> write(89%)
+0:15:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 374M 44% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.1M/s ] 111G blocks: [ 15k 81% 7/s ]
+ cpus: 53 gc: 9% heap: 102G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.6G
+ read( 1%) -> (33/96) -> process(69% 68% 72% 71% 68% 71% 68% 71% 70% 70% 72% 70% 71% 70% 70% 69% 70% 69% 71% 71% 72% 70% 72% 71% 72% 68% 70% 71% 69% 72% 67% 68% 66% 68% 74% 69% 67% 68% 72% 72% 68% 68% 72% 70% 71% 70% 70% 70% 71% 67% 68% 71% 71% 70% 71% 71% 70% 72% 69% 69% 70% 70% 69%) -> (90k/114k) -> write(90%)
+0:15:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 385M 46% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.1M/s ] 112G blocks: [ 15k 82% 9/s ]
+ cpus: 52 gc: 10% heap: 101G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 4.8G
+ read( 2%) -> (33/96) -> process(67% 67% 67% 70% 68% 68% 66% 69% 69% 67% 66% 69% 66% 66% 64% 66% 68% 70% 69% 66% 69% 68% 66% 70% 63% 68% 67% 67% 68% 66% 69% 67% 69% 68% 65% 66% 67% 67% 66% 68% 69% 66% 67% 67% 67% 65% 68% 66% 64% 68% 68% 69% 65% 66% 67% 69% 68% 68% 68% 66% 65% 68% 68%) -> (55k/114k) -> write(87%)
+0:15:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 397M 47% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.1M/s ] 114G blocks: [ 15k 82% 8/s ]
+ cpus: 53.3 gc: 10% heap: 95G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5G
+ read( 2%) -> (33/96) -> process(71% 70% 70% 70% 68% 70% 71% 70% 70% 69% 69% 70% 70% 68% 70% 70% 68% 69% 70% 72% 67% 68% 67% 71% 67% 73% 71% 72% 72% 71% 68% 70% 71% 72% 70% 69% 67% 71% 69% 68% 70% 72% 72% 71% 70% 68% 72% 72% 69% 68% 69% 68% 68% 68% 67% 70% 70% 70% 71% 71% 71% 67% 70%) -> (61k/114k) -> write(89%)
+0:15:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 410M 49% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.1M/s ] 115G blocks: [ 15k 83% 7/s ]
+ cpus: 52.6 gc: 9% heap: 94G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5G
+ read( 1%) -> (33/96) -> process(70% 68% 69% 70% 70% 70% 70% 68% 68% 68% 69% 68% 69% 72% 70% 68% 67% 71% 67% 67% 69% 71% 68% 67% 69% 67% 70% 70% 71% 68% 69% 69% 67% 69% 67% 70% 69% 66% 68% 68% 70% 71% 71% 69% 67% 68% 63% 67% 68% 69% 69% 68% 70% 67% 70% 68% 68% 70% 67% 70% 69% 69% 67%) -> (55k/114k) -> write(90%)
+0:15:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 422M 50% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.1M/s ] 117G blocks: [ 15k 83% 10/s ]
+ cpus: 53.5 gc: 10% heap: 103G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.1G
+ read( 2%) -> (33/96) -> process(68% 70% 68% 70% 71% 71% 72% 70% 70% 70% 71% 72% 69% 68% 67% 67% 68% 69% 72% 69% 69% 66% 69% 69% 70% 73% 71% 68% 68% 70% 73% 67% 69% 68% 69% 71% 70% 70% 68% 67% 69% 69% 67% 69% 71% 71% 70% 70% 69% 68% 72% 68% 70% 69% 71% 69% 71% 70% 68% 70% 71% 70% 68%) -> (81k/114k) -> write(88%)
+0:15:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 435M 52% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.1M/s ] 118G blocks: [ 15k 84% 7/s ]
+ cpus: 52.2 gc: 9% heap: 97G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5.2G
+ read( 1%) -> (33/96) -> process(68% 70% 67% 68% 69% 68% 69% 69% 67% 69% 65% 67% 69% 67% 69% 68% 69% 67% 69% 65% 69% 67% 70% 69% 70% 69% 65% 68% 68% 66% 70% 68% 67% 66% 69% 70% 69% 67% 65% 69% 68% 70% 69% 69% 68% 69% 69% 67% 70% 69% 70% 70% 64% 70% 69% 69% 67% 68% 67% 69% 68% 66% 66%) -> (92k/114k) -> write(90%)
+0:16:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 447M 53% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.2M/s ] 119G blocks: [ 15k 84% 8/s ]
+ cpus: 51.7 gc: 9% heap: 98G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5.3G
+ read( 2%) -> (33/96) -> process(69% 67% 68% 69% 68% 68% 68% 68% 69% 68% 68% 68% 68% 67% 68% 65% 68% 68% 65% 64% 69% 70% 68% 65% 66% 69% 66% 67% 67% 66% 69% 70% 69% 68% 70% 67% 68% 69% 67% 69% 67% 68% 69% 67% 67% 66% 68% 66% 68% 64% 66% 68% 68% 65% 68% 66% 69% 68% 69% 67% 68% 67% 66%) -> (86k/114k) -> write(90%)
+0:16:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 459M 55% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.1M/s ] 121G blocks: [ 15k 85% 9/s ]
+ cpus: 52.2 gc: 10% heap: 101G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.4G
+ read( 2%) -> (32/96) -> process(67% 68% 66% 68% 67% 67% 66% 67% 66% 66% 68% 67% 66% 68% 66% 67% 68% 68% 65% 68% 65% 65% 65% 70% 69% 66% 68% 69% 66% 66% 66% 67% 65% 66% 68% 67% 66% 68% 66% 66% 66% 67% 65% 66% 68% 66% 69% 66% 67% 67% 70% 66% 66% 67% 69% 65% 67% 66% 66% 67% 69% 64% 68%) -> (92k/114k) -> write(89%)
+0:16:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 471M 56% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.1M/s ] 122G blocks: [ 15k 85% 7/s ]
+ cpus: 51.8 gc: 10% heap: 101G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5.5G
+ read( 1%) -> (33/96) -> process(66% 67% 68% 65% 67% 68% 67% 67% 69% 65% 67% 69% 68% 68% 67% 66% 68% 67% 68% 67% 69% 64% 66% 69% 70% 67% 67% 68% 66% 65% 67% 67% 69% 67% 65% 65% 66% 69% 65% 69% 69% 70% 67% 68% 66% 65% 67% 67% 67% 68% 68% 68% 69% 66% 67% 65% 66% 69% 68% 70% 67% 67% 66%) -> (93k/114k) -> write(90%)
+0:16:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 484M 58% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.1M/s ] 124G blocks: [ 16k 86% 8/s ]
+ cpus: 52.6 gc: 10% heap: 102G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.6G
+ read( 1%) -> (33/96) -> process(68% 67% 67% 71% 70% 68% 66% 69% 70% 68% 68% 70% 68% 67% 69% 70% 67% 71% 69% 69% 68% 69% 68% 67% 67% 66% 68% 69% 70% 69% 71% 69% 69% 70% 67% 70% 67% 65% 68% 70% 68% 65% 68% 67% 67% 66% 70% 69% 71% 67% 68% 68% 70% 69% 69% 68% 67% 67% 69% 69% 69% 69% 68%) -> (91k/114k) -> write(89%)
+0:16:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 497M 59% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.1M/s ] 125G blocks: [ 16k 86% 8/s ]
+ cpus: 52.2 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.7G
+ read( 2%) -> (33/96) -> process(68% 66% 68% 67% 66% 70% 67% 68% 67% 68% 68% 69% 68% 65% 66% 68% 64% 68% 66% 66% 68% 67% 66% 67% 67% 64% 65% 66% 67% 66% 67% 67% 67% 68% 66% 68% 67% 71% 68% 67% 65% 68% 68% 68% 67% 66% 69% 66% 70% 65% 67% 65% 67% 67% 67% 69% 66% 67% 66% 68% 65% 68% 66%) -> (89k/114k) -> write(89%)
+0:16:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 510M 61% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.1M/s ] 126G blocks: [ 16k 87% 9/s ]
+ cpus: 52.4 gc: 10% heap: 101G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.8G
+ read( 2%) -> (33/96) -> process(69% 69% 68% 69% 71% 68% 67% 67% 66% 67% 66% 70% 66% 67% 69% 67% 65% 66% 67% 67% 70% 68% 69% 67% 69% 64% 66% 66% 68% 69% 68% 68% 66% 70% 70% 65% 67% 71% 67% 67% 68% 65% 67% 69% 68% 67% 68% 68% 67% 65% 70% 67% 68% 64% 68% 69% 68% 67% 68% 67% 69% 70% 67%) -> (90k/114k) -> write(89%)
+0:17:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 522M 62% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.1M/s ] 128G blocks: [ 16k 87% 7/s ]
+ cpus: 52.9 gc: 9% heap: 100G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.9G
+ read( 1%) -> (33/96) -> process(70% 71% 70% 68% 68% 70% 67% 67% 70% 67% 68% 68% 69% 69% 69% 71% 69% 68% 71% 69% 66% 69% 69% 69% 70% 69% 69% 69% 71% 70% 69% 68% 70% 73% 69% 69% 69% 68% 70% 67% 68% 68% 68% 69% 69% 73% 69% 71% 68% 70% 70% 71% 70% 66% 70% 67% 69% 67% 70% 70% 69% 67% 66%) -> (64k/114k) -> write(90%)
+0:17:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 535M 64% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.1M/s ] 129G blocks: [ 16k 87% 8/s ]
+ cpus: 52.4 gc: 10% heap: 104G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.9G
+ read( 2%) -> (33/96) -> process(68% 69% 68% 68% 66% 67% 69% 68% 66% 67% 68% 70% 67% 66% 66% 66% 67% 68% 70% 69% 67% 64% 65% 66% 66% 68% 67% 67% 66% 69% 66% 68% 69% 69% 67% 65% 69% 67% 69% 70% 65% 69% 64% 68% 68% 67% 67% 69% 67% 67% 67% 64% 68% 66% 68% 66% 70% 68% 69% 66% 66% 68% 67%) -> (79k/114k) -> write(89%)
+0:17:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 546M 65% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.1M/s ] 130G blocks: [ 16k 88% 8/s ]
+ cpus: 53 gc: 10% heap: 97G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.1G
+ read( 2%) -> (33/96) -> process(69% 70% 70% 70% 70% 69% 71% 69% 69% 69% 69% 72% 71% 72% 68% 70% 69% 69% 69% 69% 70% 69% 70% 67% 70% 66% 67% 69% 70% 68% 69% 72% 70% 68% 71% 67% 74% 70% 71% 69% 67% 69% 69% 70% 71% 67% 72% 72% 71% 70% 70% 67% 68% 70% 72% 68% 66% 70% 69% 68% 70% 68% 68%) -> (59k/114k) -> write(88%)
+0:17:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 557M 66% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.2M/s ] 132G blocks: [ 16k 88% 8/s ]
+ cpus: 51.7 gc: 9% heap: 97G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.1G
+ read( 2%) -> (33/96) -> process(67% 67% 68% 67% 68% 64% 66% 67% 66% 64% 69% 69% 67% 68% 65% 67% 68% 69% 68% 67% 67% 68% 68% 69% 67% 64% 68% 69% 67% 67% 67% 67% 67% 67% 66% 68% 69% 65% 66% 68% 65% 68% 69% 68% 68% 67% 66% 67% 67% 67% 67% 67% 67% 65% 64% 69% 67% 68% 66% 68% 69% 66% 68%) -> (93k/114k) -> write(90%)
+0:17:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 568M 68% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 133G blocks: [ 16k 89% 8/s ]
+ cpus: 52.2 gc: 9% heap: 98G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 6.3G
+ read( 2%) -> (33/96) -> process(70% 69% 68% 67% 70% 67% 68% 67% 70% 72% 68% 70% 69% 72% 68% 67% 66% 67% 68% 69% 69% 69% 67% 70% 69% 67% 68% 67% 69% 66% 68% 67% 71% 70% 67% 70% 65% 68% 66% 67% 68% 68% 69% 66% 69% 69% 67% 67% 66% 68% 68% 69% 67% 71% 68% 66% 67% 70% 67% 71% 67% 69% 70%) -> (62k/114k) -> write(90%)
+0:17:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 580M 69% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 135G blocks: [ 16k 89% 8/s ]
+ cpus: 52.2 gc: 9% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.4G
+ read( 1%) -> (33/96) -> process(67% 69% 67% 70% 69% 67% 70% 69% 68% 67% 67% 67% 67% 70% 71% 68% 68% 69% 68% 67% 68% 69% 65% 67% 67% 68% 66% 67% 67% 67% 66% 71% 69% 68% 71% 68% 65% 71% 68% 71% 67% 67% 68% 67% 68% 67% 68% 68% 67% 68% 70% 70% 67% 68% 69% 69% 69% 71% 69% 68% 69% 70% 68%) -> (92k/114k) -> write(90%)
+0:18:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 592M 70% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 136G blocks: [ 16k 90% 8/s ]
+ cpus: 51.9 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.5G
+ read( 2%) -> (33/96) -> process(65% 67% 64% 67% 68% 67% 68% 69% 63% 67% 65% 66% 69% 68% 67% 69% 66% 69% 67% 68% 68% 68% 67% 67% 67% 67% 66% 67% 65% 66% 71% 66% 69% 66% 66% 68% 66% 67% 68% 67% 67% 66% 68% 68% 67% 65% 68% 69% 67% 67% 66% 67% 66% 66% 65% 66% 66% 68% 67% 70% 66% 66% 66%) -> (94k/114k) -> write(89%)
+0:18:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 604M 72% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 138G blocks: [ 16k 90% 8/s ]
+ cpus: 50.5 gc: 9% heap: 103G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.6G
+ read( 2%) -> (33/96) -> process(65% 68% 66% 66% 66% 66% 66% 63% 66% 67% 66% 66% 68% 65% 67% 68% 65% 67% 65% 67% 67% 65% 65% 66% 67% 66% 66% 67% 66% 65% 65% 64% 67% 66% 66% 66% 63% 64% 66% 65% 65% 65% 63% 63% 64% 66% 65% 65% 67% 66% 66% 62% 66% 66% 66% 64% 66% 69% 65% 65% 65% 65% 63%) -> (90k/114k) -> write(90%)
+0:18:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 616M 73% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 139G blocks: [ 17k 91% 8/s ]
+ cpus: 51.6 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6.7G
+ read( 2%) -> (32/96) -> process(67% 64% 67% 67% 64% 65% 65% 68% 67% 66% 63% 65% 65% 66% 66% 62% 67% 67% 67% 65% 65% 64% 66% 68% 67% 68% 69% 66% 67% 67% 64% 66% 65% 66% 67% 66% 68% 68% 67% 64% 66% 66% 67% 65% 66% 66% 66% 67% 64% 68% 68% 63% 69% 71% 64% 66% 69% 68% 66% 69% 66% 68% 67%) -> (92k/114k) -> write(89%)
+0:18:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 627M 75% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 141G blocks: [ 17k 91% 7/s ]
+ cpus: 51.7 gc: 10% heap: 100G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 6.9G
+ read( 1%) -> (33/96) -> process(64% 68% 68% 70% 66% 68% 68% 71% 70% 64% 68% 66% 69% 66% 68% 71% 70% 69% 67% 66% 70% 66% 65% 69% 69% 70% 67% 66% 67% 68% 66% 64% 67% 65% 68% 68% 64% 65% 65% 68% 70% 68% 67% 66% 67% 68% 68% 66% 65% 66% 69% 68% 69% 69% 69% 72% 64% 66% 67% 67% 69% 68% 66%) -> (88k/114k) -> write(89%)
+0:18:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 638M 76% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 142G blocks: [ 17k 91% 8/s ]
+ cpus: 53 gc: 10% heap: 103G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7G
+ read( 2%) -> (33/96) -> process(68% 74% 68% 69% 73% 68% 70% 69% 69% 69% 66% 70% 68% 70% 67% 70% 69% 67% 68% 74% 68% 69% 68% 68% 69% 67% 71% 67% 70% 69% 67% 68% 66% 67% 68% 64% 67% 69% 67% 68% 70% 70% 70% 69% 65% 66% 67% 69% 68% 67% 68% 69% 70% 68% 63% 69% 67% 68% 71% 70% 68% 69% 66%) -> (91k/114k) -> write(89%)
+0:18:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 650M 77% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 144G blocks: [ 17k 92% 8/s ]
+ cpus: 53.5 gc: 10% heap: 100G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 7.2G
+ read( 1%) -> (33/96) -> process(68% 68% 66% 69% 70% 79% 76% 71% 70% 69% 71% 70% 69% 67% 69% 69% 69% 69% 70% 74% 68% 72% 71% 68% 69% 72% 69% 70% 68% 69% 67% 71% 66% 68% 70% 71% 71% 68% 66% 68% 71% 68% 71% 68% 67% 71% 69% 69% 70% 69% 69% 67% 69% 70% 68% 74% 69% 68% 69% 69% 68% 70% 69%) -> (92k/114k) -> write(89%)
+0:19:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 663M 79% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 145G blocks: [ 17k 92% 8/s ]
+ cpus: 51.7 gc: 10% heap: 104G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.3G
+ read( 1%) -> (33/96) -> process(66% 67% 66% 66% 69% 66% 66% 67% 68% 65% 65% 67% 66% 66% 64% 67% 67% 69% 69% 66% 68% 66% 64% 70% 66% 67% 67% 63% 64% 68% 67% 66% 65% 66% 67% 67% 64% 69% 69% 65% 66% 67% 64% 67% 66% 63% 67% 65% 66% 68% 67% 68% 66% 66% 67% 66% 68% 68% 66% 65% 66% 67% 66%) -> (67k/114k) -> write(89%)
+0:19:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 675M 80% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 147G blocks: [ 17k 93% 9/s ]
+ cpus: 50.9 gc: 10% heap: 97G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 7.4G
+ read( 2%) -> (33/96) -> process(65% 65% 64% 68% 66% 68% 63% 63% 68% 66% 64% 65% 69% 67% 66% 70% 64% 65% 63% 65% 70% 67% 68% 66% 66% 64% 67% 61% 66% 65% 64% 67% 65% 64% 62% 67% 66% 66% 67% 68% 67% 66% 64% 64% 64% 66% 65% 60% 64% 65% 60% 64% 65% 67% 65% 62% 64% 66% 67% 64% 65% 67% 66%) -> (59k/114k) -> write(89%)
+0:19:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 687M 82% 1.1M/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 148G blocks: [ 17k 93% 7/s ]
+ cpus: 52.7 gc: 10% heap: 102G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.5G
+ read( 1%) -> (33/96) -> process(68% 68% 68% 67% 66% 67% 66% 68% 68% 66% 65% 72% 77% 67% 67% 77% 69% 66% 66% 67% 79% 68% 67% 69% 67% 69% 69% 68% 69% 66% 64% 67% 65% 68% 65% 67% 67% 67% 65% 67% 67% 68% 64% 66% 67% 70% 66% 68% 69% 69% 66% 69% 66% 68% 65% 67% 67% 68% 67% 65% 65% 67% 67%) -> (91k/114k) -> write(89%)
+0:19:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 699M 83% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 149G blocks: [ 17k 94% 8/s ]
+ cpus: 52.7 gc: 10% heap: 98G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 7.6G
+ read( 2%) -> (33/96) -> process(68% 69% 67% 65% 69% 67% 68% 69% 66% 67% 68% 68% 68% 69% 64% 71% 70% 67% 66% 71% 69% 66% 66% 67% 67% 68% 67% 65% 66% 67% 67% 67% 69% 71% 68% 68% 69% 69% 68% 66% 68% 68% 69% 69% 68% 68% 67% 71% 66% 68% 68% 67% 67% 61% 68% 68% 68% 67% 71% 70% 67% 67% 68%) -> (60k/114k) -> write(88%)
+0:19:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 712M 85% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.1M/s ] 151G blocks: [ 17k 94% 8/s ]
+ cpus: 53.1 gc: 10% heap: 98G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 7.7G
+ read( 1%) -> (33/96) -> process(68% 67% 69% 71% 69% 71% 69% 70% 68% 67% 72% 67% 70% 70% 68% 68% 69% 71% 70% 70% 65% 70% 68% 71% 68% 69% 70% 69% 70% 68% 69% 67% 68% 67% 71% 68% 69% 70% 70% 67% 69% 67% 70% 68% 70% 68% 69% 67% 67% 67% 72% 67% 69% 66% 69% 68% 67% 71% 70% 69% 69% 69% 71%) -> (84k/114k) -> write(88%)
+0:19:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 724M 86% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 152G blocks: [ 17k 95% 8/s ]
+ cpus: 53.1 gc: 10% heap: 99G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.9G
+ read( 1%) -> (33/96) -> process(70% 69% 68% 65% 72% 69% 68% 68% 68% 70% 67% 69% 68% 67% 69% 67% 67% 71% 64% 67% 67% 69% 68% 68% 66% 69% 69% 68% 71% 69% 70% 67% 70% 69% 69% 70% 69% 68% 70% 66% 70% 71% 70% 66% 69% 66% 69% 67% 72% 66% 69% 70% 71% 66% 70% 68% 68% 69% 69% 69% 69% 70% 72%) -> (91k/114k) -> write(89%)
+0:20:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 737M 88% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.2M/s ] 154G blocks: [ 17k 95% 9/s ]
+ cpus: 52.8 gc: 10% heap: 101G/118G direct: 10M postGC: 98G relInfo: 971M mpGeoms: 7.9G
+ read( 2%) -> (33/96) -> process(68% 69% 67% 66% 69% 69% 68% 69% 68% 69% 68% 70% 66% 64% 69% 67% 67% 68% 68% 70% 70% 68% 70% 70% 67% 66% 69% 67% 70% 70% 72% 68% 67% 65% 67% 70% 66% 69% 67% 65% 68% 69% 65% 65% 67% 69% 67% 65% 65% 67% 67% 66% 69% 67% 70% 67% 67% 66% 69% 66% 65% 67% 68%) -> (100k/114k) -> write(88%)
+0:20:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 750M 89% 1.3M/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.2M/s ] 155G blocks: [ 17k 96% 8/s ]
+ cpus: 53.2 gc: 11% heap: 100G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8G
+ read( 1%) -> (33/96) -> process(69% 72% 71% 68% 68% 68% 71% 69% 72% 70% 67% 67% 68% 66% 67% 71% 66% 69% 70% 67% 68% 70% 70% 71% 68% 70% 72% 71% 71% 70% 71% 68% 68% 68% 68% 69% 67% 68% 69% 63% 70% 68% 69% 67% 68% 68% 66% 68% 65% 68% 68% 71% 66% 69% 70% 69% 70% 66% 69% 67% 67% 68% 68%) -> (59k/114k) -> write(88%)
+0:20:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 763M 91% 1.3M/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.1M/s ] 156G blocks: [ 18k 96% 10/s ]
+ cpus: 53.2 gc: 11% heap: 103G/118G direct: 10M postGC: 98G relInfo: 971M mpGeoms: 8.1G
+ read( 2%) -> (33/96) -> process(70% 68% 67% 70% 70% 71% 69% 71% 67% 68% 70% 70% 67% 68% 69% 68% 71% 63% 66% 66% 67% 70% 67% 71% 65% 67% 69% 68% 67% 68% 71% 69% 67% 69% 67% 71% 68% 70% 70% 68% 66% 69% 68% 70% 66% 68% 67% 70% 65% 69% 68% 69% 69% 69% 67% 65% 68% 67% 70% 68% 68% 71% 67%) -> (92k/114k) -> write(88%)
+0:20:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 776M 92% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.1M/s ] 158G blocks: [ 18k 97% 8/s ]
+ cpus: 54.1 gc: 11% heap: 97G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.2G
+ read( 1%) -> (33/96) -> process(72% 72% 68% 69% 69% 68% 72% 69% 68% 71% 71% 71% 71% 68% 68% 70% 70% 69% 71% 67% 70% 70% 69% 71% 67% 70% 68% 71% 72% 68% 68% 68% 71% 65% 68% 69% 70% 68% 71% 70% 73% 68% 67% 72% 68% 69% 71% 67% 67% 68% 67% 72% 71% 67% 71% 70% 71% 70% 69% 68% 68% 69% 67%) -> (63k/114k) -> write(88%)
+0:20:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 788M 94% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.1M/s ] 159G blocks: [ 18k 97% 8/s ]
+ cpus: 53.6 gc: 10% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.3G
+ read( 1%) -> (33/96) -> process(69% 68% 68% 69% 68% 69% 68% 68% 71% 66% 70% 67% 69% 69% 70% 68% 67% 71% 68% 67% 68% 71% 68% 67% 69% 70% 72% 68% 67% 72% 68% 67% 68% 70% 66% 69% 68% 69% 71% 67% 72% 69% 68% 66% 71% 67% 70% 70% 70% 68% 69% 67% 71% 70% 68% 73% 70% 69% 71% 67% 67% 68% 65%) -> (93k/114k) -> write(88%)
+0:20:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 801M 95% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.1M/s ] 160G blocks: [ 18k 98% 8/s ]
+ cpus: 54.8 gc: 11% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.4G
+ read( 2%) -> (33/96) -> process(68% 70% 71% 69% 69% 73% 72% 69% 69% 71% 71% 70% 69% 69% 73% 70% 72% 71% 73% 70% 71% 71% 68% 67% 69% 72% 71% 73% 70% 70% 73% 70% 69% 73% 69% 69% 72% 74% 71% 72% 68% 70% 70% 69% 68% 71% 70% 69% 66% 71% 69% 73% 70% 71% 70% 74% 67% 72% 70% 68% 70% 72% 70%) -> (91k/114k) -> write(87%)
+0:21:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 814M 97% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.1M/s ] 162G blocks: [ 18k 98% 8/s ]
+ cpus: 54.8 gc: 11% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.5G
+ read( 1%) -> (33/96) -> process(71% 71% 71% 72% 71% 71% 70% 68% 70% 66% 70% 69% 69% 72% 71% 69% 68% 72% 69% 69% 70% 71% 73% 71% 72% 72% 71% 72% 69% 69% 71% 69% 68% 67% 71% 70% 71% 70% 74% 70% 72% 68% 72% 72% 71% 72% 68% 68% 69% 70% 71% 69% 70% 71% 69% 71% 70% 70% 70% 68% 72% 69% 71%) -> (89k/114k) -> write(86%)
+0:21:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 827M 98% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.1M/s ] 163G blocks: [ 18k 98% 9/s ]
+ cpus: 55.2 gc: 11% heap: 101G/118G direct: 10M postGC: 98G relInfo: 971M mpGeoms: 8.6G
+ read( 2%) -> (33/96) -> process(67% 72% 70% 68% 72% 69% 71% 69% 72% 67% 73% 71% 71% 74% 72% 69% 70% 72% 68% 68% 72% 71% 71% 69% 73% 72% 72% 70% 71% 73% 73% 72% 70% 70% 69% 69% 72% 71% 72% 69% 71% 71% 72% 69% 69% 71% 72% 71% 71% 72% 69% 71% 72% 70% 72% 69% 72% 72% 72% 70% 71% 71% 72%) -> (90k/114k) -> write(86%)
+0:21:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 839M 100% 1.2M/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2M/s ] 164G blocks: [ 18k 99% 7/s ]
+ cpus: 54.1 gc: 10% heap: 104G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 9.1G
+ read( 2%) -> (33/96) -> process(71% 63% 71% 71% 68% 71% 69% 69% 71% 70% 71% 73% 70% 67% 69% 58% 69% 71% 67% 72% 70% 72% 72% 73% 72% 73% 70% 70% 74% 70% 70% 73% 71% 74% 72% 69% 67% 73% 59% 68% 77% 71% 71% 70% 71% 70% 58% 73% 71% 69% 72% 72% 72% 71% 67% 72% 59% 71% 72% 70% 72% 70% 69%) -> (50k/114k) -> write(85%)
+0:21:30 INF [osm_pass2:process] - Finished ways: 841,994,745 (1M/s) in 13m30s cpu:11h8m20s gc:1m12s avg:49.5
+0:21:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 226k/s ] rels: [ 420k 4% 41k/s ] features: [ 2.3B 615k/s ] 165G blocks: [ 18k 99% 5/s ]
+ cpus: 50.3 gc: 5% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 9.1G
+ read( 1%) -> (33/96) -> process(58% 54% 58% 58% 57% 69% 85% 55% 73% 81% 83% 83% 57% 54% 83% 56% 83% 56% 58% 59% 82% 60% 66% 61% 79% 76% 75% 64% 77% 89% 57% 68% 65% 60% 69% 60% 71% 88% 53% 59% 60% 75% 54% 67% 75% 73% 55% 79% 64% 65% 81% 81% 69% 83% 54% 59% 56% 81% 69% 56% 89% 76% 61%) -> (35k/114k) -> write(26%)
+0:21:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 983k 10% 56k/s ] features: [ 2.3B 967k/s ] 167G blocks: [ 18k 99% <1/s ]
+ cpus: 62.4 gc: 3% heap: 100G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(94% 95% 88% 91% 90% 96% 91% 92% 94% 91% 86% 90% 91% 92% 90% 90% 90% 94% 89% 94% 95% 94% 90% 93% 93% 90% 89% 91% 91% 94% 93% 89% 90% 88% 92% 91% 91% 92% 91% 90% 88% 93% 90% 89% 89% 89% 91% 93% 91% 85% 88% 86% 89% 89% 90% 85% 87% 91% 90% 91% 88% 87% 91%) -> (27k/114k) -> write(29%)
+0:21:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.5M 16% 58k/s ] features: [ 2.3B 681k/s ] 168G blocks: [ 18k 99% 0/s ]
+ cpus: 62.4 gc: 3% heap: 104G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(89% 93% 95% 92% 87% 94% 91% 90% 91% 92% 95% 92% 92% 90% 94% 95% 90% 93% 93% 95% 95% 95% 92% 90% 91% 90% 89% 94% 90% 94% 88% 91% 87% 90% 90% 93% 92% 93% 91% 88% 88% 87% 92% 94% 87% 88% 90% 90% 87% 87% 92% 88% 91% 90% 90% 91% 84% 86% 89% 87% 92% 90% 91%) -> (34k/114k) -> write(23%)
+0:22:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.1M 22% 57k/s ] features: [ 2.3B 877k/s ] 169G blocks: [ 18k 99% <1/s ]
+ cpus: 62.4 gc: 3% heap: 101G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(90% 88% 95% 88% 93% 92% 94% 92% 95% 88% 85% 88% 94% 90% 92% 93% 95% 87% 94% 93% 93% 93% 89% 89% 92% 91% 90% 93% 92% 90% 88% 89% 91% 91% 92% 89% 94% 92% 95% 93% 92% 92% 90% 88% 92% 88% 94% 85% 89% 87% 92% 91% 91% 88% 91% 87% 92% 88% 94% 89% 88% 92% 93%) -> (29k/114k) -> write(27%)
+0:22:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.7M 28% 56k/s ] features: [ 2.3B 423k/s ] 170G blocks: [ 18k 99% <1/s ]
+ cpus: 62.2 gc: 4% heap: 104G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(93% 93% 92% 94% 92% 92% 89% 94% 91% 91% 92% 90% 94% 82% 90% 88% 89% 92% 94% 90% 88% 89% 91% 87% 92% 92% 86% 91% 91% 83% 86% 94% 92% 92% 91% 87% 85% 90% 86% 88% 85% 90% 94% 91% 85% 92% 85% 92% 92% 89% 91% 89% 94% 93% 92% 92% 87% 88% 88% 86% 84% 93% 93%) -> (29k/114k) -> write(20%)
+0:22:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.3M 34% 60k/s ] features: [ 2.3B 412k/s ] 171G blocks: [ 18k 99% 1/s ]
+ cpus: 61.3 gc: 8% heap: 98G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(86% 89% 87% 86% 89% 87% 86% 85% 87% 88% 87% 89% 86% 88% 88% 83% 86% 90% 87% 90% 85% 83% 87% 84% 85% 85% 90% 85% 84% 88% 88% 88% 86% 87% 88% 87% 90% 88% 84% 83% 85% 89% 85% 87% 86% 89% 89% 83% 82% 86% 88% 85% 88% 86% 85% 81% 86% 83% 87% 87% 85% 89% 86%) -> (34k/114k) -> write(19%)
+0:22:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.9M 41% 65k/s ] features: [ 2.3B 428k/s ] 172G blocks: [ 18k 99% <1/s ]
+ cpus: 61.7 gc: 6% heap: 102G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(87% 88% 88% 87% 92% 89% 90% 87% 86% 88% 91% 87% 88% 87% 92% 88% 87% 90% 88% 89% 81% 90% 86% 90% 87% 88% 87% 86% 85% 86% 89% 86% 85% 82% 87% 86% 87% 86% 84% 90% 86% 87% 92% 86% 86% 89% 86% 89% 91% 86% 86% 85% 87% 85% 88% 90% 86% 84% 87% 86% 83% 88% 85%) -> (36k/114k) -> write(19%)
+0:22:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.6M 48% 68k/s ] features: [ 2.3B 611k/s ] 173G blocks: [ 18k 99% 1/s ]
+ cpus: 61.1 gc: 8% heap: 98G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(88% 81% 83% 87% 81% 88% 85% 87% 87% 87% 89% 86% 84% 85% 83% 85% 84% 84% 82% 82% 88% 89% 83% 88% 85% 87% 85% 82% 86% 86% 89% 89% 84% 83% 85% 88% 80% 82% 84% 85% 84% 82% 85% 83% 85% 85% 82% 87% 86% 84% 83% 85% 79% 85% 84% 84% 81% 87% 90% 85% 84% 87% 87%) -> (30k/114k) -> write(23%)
+0:22:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.3M 55% 73k/s ] features: [ 2.3B 916k/s ] 176G blocks: [ 18k 100% <1/s ]
+ cpus: 61.7 gc: 6% heap: 104G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (28/96) -> process(88% 89% 87% 90% 92% 87% 89% 88% 88% 86% 89% 89% 91% 88% 90% 85% 84% 82% 92% 85% 88% 88% 88% 89% 88% 88% 89% 84% 89% 92% 87% 89% 84% 86% 85% 84% 90% 87% 82% 93% 84% 81% 89% 83% 89% 89% 92% 82% 86% 85% 88% 89% 89% 85% 87% 86% 90% 85% 86% 89% 86% 82% 88%) -> (36k/114k) -> write(32%)
+0:23:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.1M 63% 73k/s ] features: [ 2.3B 497k/s ] 177G blocks: [ 18k 100% <1/s ]
+ cpus: 61.9 gc: 5% heap: 98G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (23/96) -> process(88% 87% 89% 93% 89% 90% 89% 88% 90% 84% 91% 92% 86% 93% 92% 90% 85% 91% 86% 89% 90% 92% 88% 84% 91% 85% 84% 88% 90% 88% 85% 85% 89% 89% 91% 88% 87% 87% 90% 85% 89% 89% 92% 87% 87% 91% 85% 89% 86% 88% 87% 89% 89% 85% 86% 86% 85% 90% 91% 86% 88% 86% 87%) -> (34k/114k) -> write(21%)
+0:23:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.8M 71% 72k/s ] features: [ 2.3B 384k/s ] 178G blocks: [ 18k 100% 1/s ]
+ cpus: 61.9 gc: 5% heap: 102G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (10/96) -> process(92% 87% 87% 87% 86% 91% 89% 90% 90% 88% 85% 91% 86% 89% 85% 90% 91% 88% 91% 85% 91% 86% 90% 90% 85% 86% 86% 89% 90% 90% 88% 91% 85% 86% 84% 85% 82% 90% 84% 86% 89% 90% 86% 87% 86% 87% 90% 87% 89% 89% 89% 92% 88% 87% 88% 91% 89% 88% 89% 87% 88% 88% 88%) -> (36k/114k) -> write(18%)
+0:23:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.6M 78% 76k/s ] features: [ 2.3B 380k/s ] 179G blocks: [ 18k 100% 1/s ]
+ cpus: 61.7 gc: 6% heap: 95G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(92% 91% 87% 87% 91% 87% 88% 86% 88% 86% 89% 90% 86% 88% 91% 90% 89% 84% 91% 92% 88% 91% 89% 89% 90% 88% 87% 87% 90% 88% 88% 91% 90% 84% 83% 86% 89% 85% 92% 89% 86% 87% 86% 88% 87% 86% 88% 86% 86% 86% 86% 86% 88% 83% 89% 87% 94% 88% 89% 85% 83% 87% 85%) -> (32k/114k) -> write(18%)
+0:23:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.4M 86% 77k/s ] features: [ 2.3B 439k/s ] 180G blocks: [ 18k 100% 1/s ]
+ cpus: 62.5 gc: 3% heap: 96G/118G direct: 4M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(93% 87% 91% 89% 96% 90% 90% 90% 92% 91% 92% 95% 94% 94% 93% 93% 95% 93% 86% 95% 89% 93% 94% 93% 91% 90% 93% 96% 95% 95% 94% 87% 92% 91% 86% 90% 86% 89% 89% 90% 91% 89% 95% 90% 86% 89% 89% 90% 93% 88% 96% 91% 89% 92% 91% 91% 94% 93% 88% 91% 88% 88% 91%) -> (33k/114k) -> write(20%)
+0:23:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.2M 95% 80k/s ] features: [ 2.3B 367k/s ] 181G blocks: [ 18k 100% 1/s ]
+ cpus: 62.3 gc: 3% heap: 100G/118G direct: 4M postGC: 93G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(92% 95% 90% 86% 95% 95% 93% 91% 91% 94% 92% 92% 92% 91% 88% 88% 95% 91% 90% 91% 90% 90% 96% 90% 91% 93% 93% 93% 90% 92% 94% 89% 92% 96% 93% 95% 91% 87% 93% 93% 91% 91% 88% 93% 95% 89% 94% 92% 93% 95% 93% 93% 93% 95% 91% 93% 90% 87% 89% 93% 90% 94% 92%) -> (36k/114k) -> write(18%)
+0:23:54 INF [osm_pass2:process] - Finished relations: 9,718,612 (67k/s) in 2m24s cpu:2h28m12s gc:7s avg:61.9
+0:23:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.7M 100% 68k/s ] features: [ 2.3B 320k/s ] 181G blocks: [ 18k 100% 4/s ]
+ cpus: 55.5 gc: 2% heap: 92G/118G direct: 3.9M postGC: 92G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/114k) -> write( -%)
+0:23:55 DEB [osm_pass2] - Processed 18,767 blocks:
+0:23:55 DEB [osm_pass2] - nodes: 7,546,573,682 (29M/s) in 4m20s cpu:3h19m37s gc:21s avg:46.1
+0:23:55 DEB [osm_pass2] - ways: 841,994,745 (1M/s) in 13m30s cpu:11h8m20s gc:1m12s avg:49.5
+0:23:55 DEB [osm_pass2] - relations: 9,718,612 (67k/s) in 2m24s cpu:2h28m12s gc:7s avg:61.9
+0:23:55 INF [osm_pass2] - Finished in 20m11s cpu:16h55m20s gc:1m39s avg:50.3
+0:23:55 INF [osm_pass2] - read 1x(3% 41s sys:32s wait:17m43s done:1m4s)
+0:23:55 INF [osm_pass2] - process 63x(68% 13m38s block:1m12s wait:3m23s)
+0:23:55 INF [osm_pass2] - write 1x(71% 14m18s sys:1m34s wait:4m25s)
+0:23:55 INF [boundaries] -
+0:23:55 INF [boundaries] - Starting...
+0:23:55 INF [boundaries] - Creating polygons for 218 boundaries
+0:24:04 INF [boundaries] - Finished creating 218 country polygons
+0:24:10 WAR [boundaries] - no left or right country for border between OSM country relations: [449220] around https://www.openstreetmap.org/#map=10/24.37468/118.13815
+0:24:12 INF [boundaries] - Finished in 18s cpu:23s avg:1.3
+0:24:12 INF - Deleting node.db to make room for output file
+0:24:12 INF [sort] -
+0:24:12 INF [sort] - Starting...
+0:24:22 INF [sort] - chunks: [ 12 / 332 4% ] 179G
+ cpus: 13.7 gc: 7% heap: 13G/118G direct: 5.2M postGC: 13G
+ -> (256/397) -> worker(43% 42% 42% 43% 42% 43% 42% 43% 43% 41% 42% 42% 32% 31% 32% 31% 31% 29% 11% 10% 10% 9% 9% 7% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:24:32 INF [sort] - chunks: [ 24 / 332 7% ] 180G
+ cpus: 17.3 gc: 8% heap: 24G/118G direct: 6.4M postGC: 24G
+ -> (244/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 12% 13% 12% 13% 12% 14% 31% 31% 32% 32% 33% 40% 59% 59% 58% 58% 57% 56% 42% 42% 41% 41% 40% 40% 28% 26% 26% 26% 25% 24% 13% 11% 10% 9% 9% 8% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:24:42 INF [sort] - chunks: [ 39 / 332 12% ] 181G
+ cpus: 19.3 gc: 4% heap: 35G/118G direct: 7M postGC: 34G
+ -> (229/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 20% 23% 20% 11% 12% 12% 26% 32% 35% 36% 31% 43% 50% 47% 48% 51% 51% 39% 56% 56% 45% 53% 48% 48% 46% 41% 40% 47% 47% 44% 13% 9% 10% 10% 7% 8% 0% 0% 0% 0%)
+0:24:52 INF [sort] - chunks: [ 58 / 332 17% ] 180G
+ cpus: 13.5 gc: 3% heap: 20G/118G direct: 7.2M postGC: 23G
+ -> (210/397) -> worker(10% 15% 41% 20% 10% 10% 0% 0% 1% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 3% 0% 12% 15% 14% 14% 13% 28% 30% 21% 19% 22% 46% 49% 48% 49% 51% 52% 55% 47% 44% 32%)
+0:25:02 INF [sort] - chunks: [ 71 / 332 21% ] 180G
+ cpus: 21.3 gc: 9% heap: 22G/118G direct: 7.2M postGC: 22G
+ -> (197/397) -> worker(55% 54% 18% 45% 61% 56% 69% 64% 74% 62% 64% 61% 57% 35% 47% 34% 53% 34% 30% 23% 14% 19% 15% 13% 0% 0% 0% 11% 3% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 0% 11% 12% 13% 35%)
+0:25:12 INF [sort] - chunks: [ 89 / 332 27% ] 180G
+ cpus: 24.3 gc: 5% heap: 28G/118G direct: 7.2M postGC: 30G
+ -> (179/397) -> worker( 0% 0% 0% 0% 0% 0% 11% 14% 7% 0% 16% 21% 29% 55% 44% 53% 38% 53% 53% 61% 71% 64% 72% 71% 70% 65% 76% 73% 77% 77% 64% 57% 54% 32% 38% 28% 4% 17% 15% 3% 7% 37% 0% 6% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:25:22 INF [sort] - chunks: [ 105 / 332 32% ] 181G
+ cpus: 15 gc: 5% heap: 17G/118G direct: 7.2M postGC: 14G
+ -> (163/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 12% 14% 3% 0% 0% 0% 14% 15% 15% 31% 27% 35% 65% 52% 57% 68% 61% 26% 45% 62% 48% 36% 37% 37% 21% 12% 11% 19% 36% 12% 10% 0% 0% 1% 0% 0% 0% 0% 0% 0%)
+0:25:33 INF [sort] - chunks: [ 121 / 332 36% ] 180G
+ cpus: 20.7 gc: 8% heap: 22G/118G direct: 7.2M postGC: 22G
+ -> (147/397) -> worker(15% 22% 34% 24% 7% 8% 1% 0% 3% 6% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 0% 0% 33% 0% 23% 35% 33% 35% 50% 57% 58% 55% 35% 59% 59% 72% 70% 62% 69% 72% 63% 56% 53% 33%)
+0:25:43 INF [sort] - chunks: [ 136 / 332 41% ] 180G
+ cpus: 19 gc: 7% heap: 22G/118G direct: 7.2M postGC: 22G
+ -> (132/397) -> worker(55% 47% 29% 44% 62% 58% 71% 69% 68% 64% 61% 59% 58% 36% 49% 40% 55% 47% 37% 25% 14% 22% 6% 8% 0% 0% 3% 7% 0% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 3% 0% 8% 13% 13% 30%)
+0:25:53 INF [sort] - chunks: [ 154 / 332 46% ] 181G
+ cpus: 19.2 gc: 6% heap: 19G/118G direct: 7.2M postGC: 18G
+ -> (114/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 10% 11% 12% 34% 14% 26% 15% 16% 33% 47% 58% 51% 57% 59% 53% 51% 63% 57% 60% 71% 54% 38% 34% 22% 21% 23% 4% 17% 12% 3% 5% 27% 0% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:26:03 INF [sort] - chunks: [ 172 / 332 52% ] 181G
+ cpus: 19.6 gc: 8% heap: 23G/118G direct: 7.2M postGC: 22G
+ -> (96/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 21% 20% 0% 0% 10% 0% 22% 31% 37% 48% 49% 50% 68% 50% 51% 67% 66% 43% 71% 57% 72% 38% 63% 45% 30% 13% 6% 25% 43% 14% 19% 1% 4% 9% 0% 0% 0% 0% 0% 0%)
+0:26:13 INF [sort] - chunks: [ 187 / 332 56% ] 181G
+ cpus: 22.3 gc: 8% heap: 26G/118G direct: 7.2M postGC: 25G
+ -> (81/397) -> worker(33% 36% 58% 51% 18% 23% 6% 4% 12% 12% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 2% 0% 0% 37% 6% 24% 47% 60% 66% 50% 26% 59% 59% 71% 69% 65% 66% 68% 63% 62% 61% 52%)
+0:26:23 INF [sort] - chunks: [ 204 / 332 61% ] 180G
+ cpus: 21.3 gc: 6% heap: 22G/118G direct: 7.2M postGC: 19G
+ -> (64/397) -> worker(42% 39% 7% 23% 56% 50% 63% 70% 62% 59% 74% 72% 69% 41% 66% 56% 61% 59% 48% 36% 31% 31% 11% 20% 0% 1% 10% 15% 4% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 22%)
+0:26:33 INF [sort] - chunks: [ 220 / 332 66% ] 180G
+ cpus: 20.1 gc: 9% heap: 21G/118G direct: 7.2M postGC: 18G
+ -> (48/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 4% 21% 6% 16% 13% 13% 19% 25% 36% 35% 59% 50% 64% 68% 63% 56% 65% 65% 61% 57% 49% 43% 37% 33% 12% 31% 21% 9% 17% 48% 1% 21% 7% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:26:43 INF [sort] - chunks: [ 236 / 332 71% ] 181G
+ cpus: 21.5 gc: 8% heap: 22G/118G direct: 7.2M postGC: 22G
+ -> (32/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 7% 1% 0% 0% 0% 0% 7% 8% 14% 19% 23% 34% 60% 39% 52% 61% 55% 14% 71% 51% 65% 51% 70% 67% 48% 34% 22% 42% 56% 39% 42% 16% 17% 27% 14% 7% 10% 4% 0% 0%)
+0:26:53 INF [sort] - chunks: [ 254 / 332 77% ] 180G
+ cpus: 19.2 gc: 7% heap: 20G/118G direct: 7.2M postGC: 18G
+ -> (14/397) -> worker(41% 48% 63% 55% 31% 34% 21% 18% 24% 29% 13% 11% 10% 0% 6% 0% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 2% 0% 0% 23% 2% 5% 25% 38% 47% 32% 12% 35% 31% 55% 49% 44% 56% 60% 52% 66% 66% 60%)
+0:27:03 INF [sort] - chunks: [ 271 / 332 82% ] 180G
+ cpus: 24.3 gc: 7% heap: 24G/118G direct: 7M postGC: 22G
+ -> (0/397) -> worker(34% 19% 11% 17% 45% 43% 54% 58% 51% 47% 66% 69% -% 66% -% 73% -% 80% 69% 51% 41% 47% 28% 31% 3% 7% 19% 29% 11% 15% 4% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 7% 14%)
+0:27:13 INF [sort] - chunks: [ 287 / 332 86% ] 181G
+ cpus: 23.6 gc: 7% heap: 21G/118G direct: 6.2M postGC: 24G
+ -> (0/397) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 79% 74% 62% 57% 56% 24% 47% 38% 22% 31% 70% 15% 42% 17% 3% 11% 7% 0% 0% 0% 0% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:27:23 INF [sort] - chunks: [ 307 / 332 92% ] 179G
+ cpus: 19.6 gc: 6% heap: 20G/118G direct: 5.2M postGC: 23G
+ -> (0/397) -> worker( 0% 0% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 34% 54% -% 54% 64% 22% 32% 35% 11% 10% 13% 6% 5% 0%)
+0:27:33 INF [sort] - chunks: [ 320 / 332 96% ] 180G
+ cpus: 6.9 gc: 5% heap: 12G/118G direct: 4.6M postGC: 11G
+ -> (0/397) -> worker(29% 29% 27% 26% 23% 30% 11% 8% 19% 19% 6% 3% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:27:39 INF [sort] - chunks: [ 332 / 332 100% ] 181G
+ cpus: 2.3 gc: 0% heap: 13G/118G direct: 3.9M postGC: 12G
+ -> (0/397) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:27:39 INF [sort] - Finished in 3m27s cpu:1h3m59s gc:13s avg:18.6
+0:27:39 INF [sort] - worker 64x(17% 35s sys:3s wait:2m17s done:19s)
+0:27:39 INF - read:1203s write:802s sort:1221s
+0:27:39 INF [mbtiles] -
+0:27:39 INF [mbtiles] - Starting...
+0:27:39 DEB [mbtiles:write] - Execute mbtiles: create table metadata (name text, value text);
+0:27:39 DEB [mbtiles:write] - Execute mbtiles: create unique index name on metadata (name);
+0:27:39 DEB [mbtiles:write] - Execute mbtiles: create table tiles (zoom_level integer, tile_column integer, tile_row, tile_data blob);
+0:27:39 DEB [mbtiles:write] - Execute mbtiles: create unique index tile_index on tiles (zoom_level, tile_column, tile_row)
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: name=OpenMapTiles
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: format=pbf
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: attribution=© OpenMapTiles © OpenStreetMap contributors
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: version=3.13.0
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: type=baselayer
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: center=0,0,0
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: minzoom=0
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: maxzoom=14
+0:27:39 DEB [mbtiles:write] - Set mbtiles metadata: json={"vector_layers":[{"id":"aerodrome_label","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","ele":"Number","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","iata":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","icao":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":8,"maxzoom":14},{"id":"aeroway","fields":{"ref":"String","class":"String"},"minzoom":10,"maxzoom":14},{"id":"boundary","fields":{"adm0_r":"String","disputed":"Number","admin_level":"Number","disputed_name":"String","maritime":"Number","adm0_l":"String","claimed_by":"String"},"minzoom":0,"maxzoom":14},{"id":"building","fields":{"colour":"String","render_height":"Number","render_min_height":"Number","hide_3d":"Boolean"},"minzoom":13,"maxzoom":14},{"id":"housenumber","fields":{"housenumber":"String"},"minzoom":14,"maxzoom":14},{"id":"landcover","fields":{"subclass":"String","class":"String","_numpoints":"Number"},"minzoom":0,"maxzoom":14},{"id":"landuse","fields":{"class":"String"},"minzoom":4,"maxzoom":14},{"id":"mountain_peak","fields":{"name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","rank":"Number","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","customary_ft":"Number","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":7,"maxzoom":14},{"id":"park","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":4,"maxzoom":14},{"id":"place","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","capital":"Number","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:ru":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","iso_a2":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"poi","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","level":"Number","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","indoor":"Number","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","layer":"Number","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","subclass":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":12,"maxzoom":14},{"id":"transportation","fields":{"brunnel":"String","access":"String","expressway":"Number","bicycle":"String","surface":"String","level":"Number","ramp":"Number","mtb_scale":"String","toll":"Number","layer":"Number","oneway":"Number","network":"String","horse":"String","service":"String","subclass":"String","indoor":"Number","class":"String","foot":"String"},"minzoom":4,"maxzoom":14},{"id":"transportation_name","fields":{"name_int":"String","level":"Number","name:nonlatin":"String","route_5":"String","route_4":"String","route_3":"String","route_2":"String","route_1":"String","layer":"Number","network":"String","ref":"String","route_6":"String","name_de":"String","name":"String","subclass":"String","ref_length":"Number","indoor":"Number","class":"String","name_en":"String","name:latin":"String"},"minzoom":6,"maxzoom":14},{"id":"water","fields":{"brunnel":"String","intermittent":"Number","class":"String"},"minzoom":0,"maxzoom":14},{"id":"water_name","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","intermittent":"Number","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:ca":"String","name:sq":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:ru":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"waterway","fields":{"name:fy":"String","name_int":"String","name:oc":"String","name:bs":"String","name:sk":"String","name:nonlatin":"String","name:ka":"String","intermittent":"Number","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:ca":"String","name:sq":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:fi":"String","name:ru":"String","name:be":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","brunnel":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","_relid":"Number","name:cy":"String","name:lb":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:de":"String","name:hi":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":3,"maxzoom":14}]}
+0:27:40 INF [mbtiles:write] - Starting z0
+0:27:40 INF [mbtiles:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
+0:27:40 INF [mbtiles:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
+0:27:40 INF [mbtiles:write] - Finished z2 in 0s cpu:0s avg:0, now starting z3
+0:27:40 INF [mbtiles:write] - Finished z3 in 0s cpu:0.9s avg:34.5, now starting z4
+0:27:41 INF [mbtiles:write] - Finished z4 in 1s cpu:39s avg:27.3, now starting z5
+0:27:42 INF [mbtiles:write] - Finished z5 in 0.5s cpu:12s avg:25.6, now starting z6
+0:27:44 INF [mbtiles:write] - Finished z6 in 2s cpu:42s avg:19.1, now starting z7
+0:27:49 INF [mbtiles] - features: [ 18M 1% 1.8M/s ] 181G tiles: [ 11k 1.1k/s ] 92M
+ cpus: 24.9 gc: 11% heap: 3.9G/118G direct: 4M postGC: 1.3G
+ read(83%) -> (0/5.9k) -> encode(16% 26% 31% 30% 31% 33% 48% 34% 22% 47% 26% 36% 34% 34% 42% 26% 31% 33% 49% 23% 20% 27% 28% 34% 40% 21% 38% 19% 17% 25% 12% 24% 33% 31% 35% 19% 45% 25% 32% 40% 21% 25% 22% 17% 18% 25% 24% 17% 28% 31% 26% 19% 18% 42% 26% 23% 20% 24% 30% 14% 25% 25% 14% 17%) -> (350/5.9k) -> write( 3%)
+ last tile: 7/51/66 (z7 40%) https://www.openstreetmap.org/#map=7/-5.61599/-36.56250
+0:27:53 INF [mbtiles:write] - Finished z7 in 9s cpu:3m25s avg:23.9, now starting z8
+0:27:59 INF [mbtiles] - features: [ 34M 1% 1.6M/s ] 181G tiles: [ 49k 3.8k/s ] 260M
+ cpus: 27.6 gc: 8% heap: 10G/118G direct: 4M postGC: 1.6G
+ read(86%) -> (1/5.9k) -> encode(51% 21% 34% 22% 39% 44% 47% 38% 32% 39% 37% 43% 44% 18% 31% 41% 24% 35% 28% 31% 41% 41% 17% 52% 48% 54% 19% 46% 24% 47% 49% 28% 54% 34% 31% 40% 44% 35% 39% 38% 22% 28% 41% 23% 55% 26% 24% 40% 40% 22% 24% 34% 38% 44% 39% 65% 43% 42% 29% 36% 56% 30% 40% 36%) -> (242/5.9k) -> write( 4%)
+ last tile: 8/136/126 (z8 53%) https://www.openstreetmap.org/#map=8/2.81137/11.25000
+0:28:06 INF [mbtiles:write] - Finished z8 in 14s cpu:6m5s avg:26.4, now starting z9
+0:28:09 INF [mbtiles] - features: [ 54M 2% 1.9M/s ] 181G tiles: [ 126k 7.6k/s ] 474M
+ cpus: 29.3 gc: 2% heap: 26G/118G direct: 4M postGC: 2G
+ read(97%) -> (0/5.9k) -> encode(37% 37% 36% 29% 31% 39% 48% 46% 48% 53% 44% 43% 35% 44% 54% 67% 38% 41% 49% 41% 45% 33% 43% 58% 32% 37% 51% 30% 50% 51% 47% 39% 36% 37% 53% 49% 43% 51% 56% 48% 58% 35% 18% 42% 34% 42% 32% 54% 54% 40% 26% 40% 45% 42% 32% 43% 35% 54% 44% 58% 48% 26% 47% 48%) -> (405/5.9k) -> write( 6%)
+ last tile: 9/119/181 (z9 23%) https://www.openstreetmap.org/#map=9/46.55886/-96.32813
+0:28:19 INF [mbtiles] - features: [ 68M 3% 1.4M/s ] 181G tiles: [ 194k 6.7k/s ] 773M
+ cpus: 51.8 gc: 4% heap: 14G/118G direct: 4M postGC: 1.9G
+ read(94%) -> (52/5.9k) -> encode(81% 76% 81% 83% 77% 72% 73% 81% 74% 76% 74% 72% 72% 75% 77% 73% 66% 87% 80% 75% 75% 75% 74% 74% 87% 73% 73% 79% 73% 77% 80% 76% 75% 77% 72% 84% 65% 79% 79% 86% 88% 78% 77% 75% 80% 74% 74% 75% 71% 82% 75% 81% 82% 76% 78% 70% 73% 75% 79% 84% 84% 72% 80% 78%) -> (429/5.9k) -> write( 9%)
+ last tile: 9/272/139 (z9 53%) https://www.openstreetmap.org/#map=9/63.23363/11.25000
+0:28:29 INF [mbtiles] - features: [ 83M 4% 1.5M/s ] 181G tiles: [ 220k 2.5k/s ] 1G
+ cpus: 45.6 gc: 4% heap: 16G/118G direct: 4M postGC: 2.1G
+ read(90%) -> (0/5.9k) -> encode(69% 63% 71% 75% 62% 65% 71% 79% 64% 61% 69% 72% 65% 62% 67% 60% 67% 58% 63% 62% 61% 92% 62% 63% 65% 71% 75% 55% 71% 64% 59% 75% 69% 79% 68% 68% 81% 63% 72% 62% 68% 71% 71% 68% 69% 61% 64% 66% 68% 66% 61% 61% 68% 65% 86% 55% 64% 63% 69% 65% 65% 70% 54% 55%) -> (527/5.9k) -> write( 9%)
+ last tile: 9/337/170 (z9 66%) https://www.openstreetmap.org/#map=9/51.61802/56.95313
+0:28:36 INF [mbtiles:write] - Finished z9 in 29s cpu:22m20s gc:1s avg:45.8, now starting z10
+0:28:39 INF [mbtiles] - features: [ 102M 4% 1.8M/s ] 181G tiles: [ 737k 51k/s ] 1.8G
+ cpus: 32.1 gc: 3% heap: 14G/118G direct: 4M postGC: 1.3G
+ read(96%) -> (0/5.9k) -> encode(48% 43% 41% 45% 45% 43% 46% 38% 52% 43% 60% 45% 41% 46% 53% 35% 54% 42% 44% 44% 32% 49% 55% 42% 42% 71% 52% 57% 43% 50% 44% 44% 39% 49% 46% 46% 40% 42% 42% 51% 43% 48% 47% 52% 44% 55% 41% 37% 65% 63% 37% 39% 52% 46% 54% 47% 46% 47% 41% 45% 50% 32% 41% 38%) -> (61/5.9k) -> write(24%)
+ last tile: 10/514/372 (z10 50%) https://www.openstreetmap.org/#map=10/44.08759/0.70313
+0:28:49 INF [mbtiles] - features: [ 122M 5% 1.9M/s ] 181G tiles: [ 908k 17k/s ] 2.6G
+ cpus: 29.2 gc: 1% heap: 4.5G/118G direct: 4M postGC: 1.3G
+ read(98%) -> (0/5.9k) -> encode(40% 50% 51% 51% 46% 41% 39% 37% 45% 35% 44% 41% 48% 42% 39% 41% 43% 44% 46% 44% 48% 49% 45% 46% 40% 43% 34% 41% 46% 32% 48% 42% 43% 41% 45% 44% 48% 49% 42% 51% 49% 45% 46% 44% 48% 45% 37% 39% 51% 47% 39% 33% 38% 40% 44% 42% 48% 45% 39% 36% 39% 50% 49% 36%) -> (13/5.9k) -> write(16%)
+ last tile: 10/730/337 (z10 71%) https://www.openstreetmap.org/#map=10/52.26816/76.64063
+0:28:56 INF [mbtiles:write] - Finished z10 in 20s cpu:8m19s avg:24.9, now starting z11
+0:28:59 INF [mbtiles] - features: [ 143M 6% 2.1M/s ] 181G tiles: [ 2M 112k/s ] 3.4G
+ cpus: 18.1 gc: 0% heap: 27G/118G direct: 4M postGC: 1.3G
+ read(99%) -> (0/5.9k) -> encode(23% 26% 35% 22% 27% 25% 24% 27% 30% 25% 24% 21% 28% 26% 23% 23% 27% 25% 22% 26% 31% 27% 25% 34% 29% 27% 24% 27% 21% 23% 20% 26% 30% 29% 29% 26% 26% 31% 26% 27% 28% 30% 23% 25% 27% 33% 29% 26% 30% 21% 20% 25% 27% 33% 29% 27% 23% 25% 22% 29% 27% 18% 21% 18%) -> (25/5.9k) -> write(36%)
+ last tile: 11/528/826 (z11 25%) https://www.openstreetmap.org/#map=11/32.84267/-87.18750
+0:29:09 INF [mbtiles] - features: [ 164M 7% 2M/s ] 181G tiles: [ 2.9M 86k/s ] 4.3G
+ cpus: 18.1 gc: 0% heap: 21G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(27% 20% 26% 21% 25% 30% 24% 26% 23% 28% 22% 27% 27% 25% 24% 24% 35% 26% 29% 26% 23% 19% 26% 23% 26% 28% 23% 30% 29% 25% 30% 29% 28% 27% 26% 30% 26% 26% 32% 26% 27% 22% 26% 21% 27% 26% 17% 24% 31% 25% 30% 29% 23% 25% 26% 23% 31% 22% 24% 31% 30% 27% 30% 26%) -> (67/5.9k) -> write(31%)
+ last tile: 11/1037/760 (z11 50%) https://www.openstreetmap.org/#map=11/42.03297/2.28516
+0:29:20 INF [mbtiles] - features: [ 184M 8% 1.9M/s ] 181G tiles: [ 3.1M 22k/s ] 5.1G
+ cpus: 22.5 gc: 0% heap: 13G/118G direct: 4M postGC: 1.3G
+ read(99%) -> (0/5.9k) -> encode(29% 34% 26% 31% 35% 37% 40% 38% 35% 23% 35% 29% 34% 25% 30% 34% 34% 20% 39% 33% 34% 31% 30% 34% 28% 36% 39% 38% 36% 32% 32% 26% 32% 34% 35% 34% 34% 33% 32% 42% 31% 37% 41% 32% 35% 36% 38% 31% 32% 31% 32% 34% 33% 20% 37% 36% 34% 34% 35% 28% 36% 29% 41% 36%) -> (45/5.9k) -> write(15%)
+ last tile: 11/1183/621 (z11 57%) https://www.openstreetmap.org/#map=11/57.61011/27.94922
+0:29:30 INF [mbtiles] - features: [ 203M 9% 1.8M/s ] 181G tiles: [ 3.8M 66k/s ] 6.1G
+ cpus: 21.7 gc: 0% heap: 18G/118G direct: 4M postGC: 1.3G
+ read(96%) -> (0/5.9k) -> encode(23% 34% 35% 30% 33% 31% 36% 34% 26% 30% 33% 27% 27% 33% 33% 31% 34% 37% 30% 37% 27% 29% 35% 45% 29% 31% 41% 33% 25% 33% 29% 35% 25% 36% 26% 36% 31% 27% 27% 38% 42% 36% 35% 35% 32% 31% 33% 24% 31% 20% 37% 32% 31% 33% 26% 33% 27% 26% 29% 34% 31% 29% 39% 30%) -> (19/5.9k) -> write(28%)
+ last tile: 11/1635/816 (z11 79%) https://www.openstreetmap.org/#map=11/34.30714/107.40234
+0:29:36 INF [mbtiles:write] - Finished z11 in 41s cpu:13m22s avg:19.8, now starting z12
+0:29:40 INF [mbtiles] - features: [ 225M 9% 2.1M/s ] 181G tiles: [ 5.9M 212k/s ] 6.8G
+ cpus: 16.3 gc: 1% heap: 13G/118G direct: 4M postGC: 2.4G
+ read(99%) -> (0/5.9k) -> encode(24% 24% 20% 30% 20% 24% 25% 26% 24% 24% 25% 19% 21% 25% 25% 20% 23% 30% 22% 25% 23% 24% 20% 21% 28% 20% 21% 25% 27% 25% 22% 25% 23% 22% 23% 24% 22% 16% 22% 19% 22% 18% 20% 22% 18% 19% 21% 23% 23% 21% 22% 23% 20% 24% 24% 24% 24% 24% 17% 24% 25% 21% 27% 24%) -> (1.4k/5.9k) -> write(52%)
+ last tile: 12/388/585 (z12 9%) https://www.openstreetmap.org/#map=12/77.89726/-145.89844
+0:29:50 INF [mbtiles] - features: [ 248M 10% 2.3M/s ] 181G tiles: [ 7.9M 201k/s ] 7.8G
+ cpus: 15.2 gc: 1% heap: 9G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(17% 21% 20% 24% 21% 21% 20% 23% 16% 24% 22% 24% 19% 17% 23% 21% 17% 24% 21% 23% 19% 22% 22% 24% 20% 24% 21% 21% 18% 19% 22% 19% 17% 22% 22% 22% 20% 23% 19% 22% 23% 20% 26% 20% 20% 20% 23% 16% 22% 19% 15% 23% 22% 21% 18% 23% 19% 19% 24% 21% 19% 26% 23% 18%) -> (10/5.9k) -> write(53%)
+ last tile: 12/1044/1501 (z12 25%) https://www.openstreetmap.org/#map=12/43.26121/-88.24219
+0:30:00 INF [mbtiles] - features: [ 271M 11% 2.2M/s ] 181G tiles: [ 8.5M 54k/s ] 8.5G
+ cpus: 15.4 gc: 0% heap: 17G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(21% 20% 24% 25% 20% 20% 22% 21% 22% 18% 23% 20% 17% 24% 25% 25% 23% 22% 23% 19% 23% 21% 20% 27% 25% 21% 23% 25% 27% 20% 18% 24% 18% 20% 21% 24% 22% 22% 27% 23% 21% 16% 25% 24% 16% 26% 22% 23% 21% 23% 21% 28% 22% 25% 21% 20% 20% 22% 20% 23% 22% 21% 22% 22%) -> (21/5.9k) -> write(20%)
+ last tile: 12/1228/2204 (z12 30%) https://www.openstreetmap.org/#map=12/-13.58192/-72.07031
+0:30:10 INF [mbtiles] - features: [ 294M 12% 2.2M/s ] 181G tiles: [ 10M 185k/s ] 9.3G
+ cpus: 16.7 gc: 0% heap: 24G/118G direct: 4M postGC: 1.3G
+ read(97%) -> (0/5.9k) -> encode(20% 28% 20% 22% 28% 25% 28% 29% 22% 25% 21% 31% 21% 21% 25% 27% 21% 21% 21% 25% 18% 27% 21% 27% 23% 26% 23% 26% 19% 24% 22% 23% 23% 26% 26% 20% 19% 20% 25% 26% 22% 26% 20% 27% 23% 23% 19% 23% 23% 24% 26% 26% 27% 24% 24% 24% 27% 23% 24% 20% 21% 25% 25% 25%) -> (534/5.9k) -> write(51%)
+ last tile: 12/1749/2533 (z12 42%) https://www.openstreetmap.org/#map=12/-39.16414/-26.27930
+0:30:20 INF [mbtiles] - features: [ 316M 13% 2.2M/s ] 181G tiles: [ 11M 105k/s ] 10G
+ cpus: 15.8 gc: 0% heap: 3.3G/118G direct: 4M postGC: 1.3G
+ read(99%) -> (0/5.9k) -> encode(25% 28% 25% 19% 24% 25% 25% 24% 20% 26% 24% 24% 21% 23% 22% 22% 17% 19% 21% 22% 26% 24% 23% 26% 22% 19% 16% 24% 21% 17% 19% 27% 23% 25% 19% 24% 26% 24% 23% 25% 24% 25% 22% 21% 25% 22% 23% 27% 14% 18% 19% 24% 22% 31% 20% 20% 15% 23% 22% 19% 16% 20% 21% 28%) -> (40/5.9k) -> write(30%)
+ last tile: 12/2074/1521 (z12 50%) https://www.openstreetmap.org/#map=12/41.96766/2.28516
+0:30:30 INF [mbtiles] - features: [ 338M 14% 2.2M/s ] 181G tiles: [ 11M 27k/s ] 10G
+ cpus: 15.5 gc: 0% heap: 14G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(24% 17% 23% 29% 21% 27% 24% 24% 21% 23% 23% 24% 23% 22% 21% 26% 23% 17% 22% 17% 26% 17% 23% 19% 24% 22% 22% 21% 22% 25% 25% 22% 16% 20% 21% 23% 23% 26% 24% 24% 21% 25% 23% 28% 21% 24% 28% 18% 19% 25% 21% 23% 21% 19% 22% 28% 25% 22% 22% 16% 24% 24% 19% 17%) -> (43/5.9k) -> write(12%)
+ last tile: 12/2161/2355 (z12 52%) https://www.openstreetmap.org/#map=12/-26.03704/9.93164
+0:30:40 INF [mbtiles] - features: [ 360M 15% 2.1M/s ] 181G tiles: [ 12M 30k/s ] 11G
+ cpus: 19.2 gc: 0% heap: 5G/118G direct: 4M postGC: 1.3G
+ read(99%) -> (0/5.9k) -> encode(33% 32% 33% 32% 30% 28% 29% 34% 26% 31% 29% 32% 22% 30% 29% 29% 27% 25% 29% 28% 29% 30% 21% 33% 27% 30% 29% 30% 26% 24% 25% 28% 26% 20% 29% 28% 29% 28% 25% 29% 29% 27% 23% 24% 26% 27% 29% 25% 22% 26% 26% 29% 32% 27% 30% 26% 31% 28% 33% 28% 24% 34% 25% 26%) -> (29/5.9k) -> write(15%)
+ last tile: 12/2261/1971 (z12 55%) https://www.openstreetmap.org/#map=12/6.75190/18.72070
+0:30:50 INF [mbtiles] - features: [ 381M 16% 2.1M/s ] 181G tiles: [ 12M 46k/s ] 12G
+ cpus: 20.1 gc: 0% heap: 24G/118G direct: 4M postGC: 1.3G
+ read(98%) -> (0/5.9k) -> encode(32% 34% 29% 23% 34% 30% 31% 38% 26% 31% 28% 32% 27% 33% 27% 32% 31% 24% 24% 27% 35% 27% 27% 37% 28% 28% 28% 28% 29% 33% 32% 24% 30% 28% 30% 20% 31% 32% 33% 31% 32% 32% 28% 31% 29% 24% 29% 27% 35% 27% 28% 29% 24% 25% 25% 34% 32% 29% 28% 40% 30% 24% 29% 28%) -> (35/5.9k) -> write(22%)
+ last tile: 12/2415/1293 (z12 58%) https://www.openstreetmap.org/#map=12/55.12865/32.25586
+0:31:00 INF [mbtiles] - features: [ 403M 17% 2.1M/s ] 181G tiles: [ 13M 94k/s ] 13G
+ cpus: 20.4 gc: 0% heap: 14G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(32% 29% 31% 28% 29% 32% 29% 30% 37% 33% 23% 29% 26% 31% 28% 32% 33% 26% 32% 35% 26% 25% 29% 34% 24% 27% 27% 30% 31% 36% 29% 29% 30% 26% 31% 33% 32% 27% 28% 34% 29% 28% 30% 29% 31% 29% 24% 26% 28% 26% 35% 30% 32% 28% 30% 28% 28% 25% 35% 33% 32% 31% 26% 31%) -> (48/5.9k) -> write(34%)
+ last tile: 12/2733/1277 (z12 66%) https://www.openstreetmap.org/#map=12/55.92459/60.20508
+0:31:10 INF [mbtiles] - features: [ 426M 18% 2.3M/s ] 181G tiles: [ 14M 141k/s ] 14G
+ cpus: 18.7 gc: 0% heap: 2.5G/118G direct: 4M postGC: 1.3G
+ read(99%) -> (0/5.9k) -> encode(25% 31% 26% 30% 27% 31% 27% 27% 22% 29% 32% 23% 23% 27% 29% 27% 28% 30% 26% 26% 23% 23% 30% 30% 25% 23% 24% 30% 24% 29% 31% 27% 27% 25% 31% 23% 25% 23% 27% 22% 29% 22% 25% 28% 26% 29% 33% 27% 26% 34% 25% 28% 27% 24% 23% 31% 22% 22% 27% 25% 31% 28% 25% 27%) -> (19/5.9k) -> write(44%)
+ last tile: 12/3240/1791 (z12 79%) https://www.openstreetmap.org/#map=12/22.02455/104.76563
+0:31:20 INF [mbtiles] - features: [ 449M 19% 2.3M/s ] 181G tiles: [ 15M 79k/s ] 14G
+ cpus: 16.1 gc: 0% heap: 27G/118G direct: 4M postGC: 1.2G
+ read(99%) -> (0/5.9k) -> encode(23% 21% 24% 25% 23% 27% 21% 25% 22% 23% 25% 25% 22% 25% 23% 24% 28% 20% 23% 26% 16% 23% 26% 24% 24% 21% 25% 22% 25% 19% 26% 22% 24% 25% 18% 22% 26% 25% 22% 19% 24% 26% 28% 23% 23% 24% 26% 20% 26% 23% 19% 25% 22% 23% 25% 21% 24% 22% 24% 19% 22% 20% 19% 25%) -> (55/5.9k) -> write(28%)
+ last tile: 12/3537/1670 (z12 86%) https://www.openstreetmap.org/#map=12/31.50363/130.86914
+0:31:27 INF [mbtiles:write] - Finished z12 in 1m51s cpu:31m37s avg:17.1, now starting z13
+0:31:30 INF [mbtiles] - features: [ 472M 20% 2.2M/s ] 181G tiles: [ 18M 307k/s ] 15G
+ cpus: 13.2 gc: 1% heap: 9.9G/118G direct: 4M postGC: 3G
+ read(93%) -> (0/5.9k) -> encode(20% 18% 21% 18% 15% 16% 18% 18% 16% 18% 18% 16% 17% 17% 16% 18% 15% 19% 16% 19% 16% 19% 19% 20% 17% 18% 19% 17% 18% 17% 17% 12% 16% 18% 18% 18% 14% 20% 17% 18% 19% 19% 16% 18% 19% 18% 16% 16% 16% 18% 16% 16% 18% 21% 15% 16% 19% 18% 16% 17% 20% 18% 20% 18%) -> (5.9k/5.9k) -> write(74%)
+ last tile: 13/158/4110 (z13 1%) https://www.openstreetmap.org/#map=13/-0.61522/-173.05664
+0:31:40 INF [mbtiles] - features: [ 487M 20% 1.5M/s ] 181G tiles: [ 22M 415k/s ] 16G
+ cpus: 13.4 gc: 7% heap: 16G/118G direct: 4M postGC: 5.6G
+ read(66%) -> (0/5.9k) -> encode(16% 18% 14% 15% 16% 14% 10% 14% 12% 15% 12% 13% 12% 13% 12% 13% 11% 15% 14% 12% 14% 11% 16% 13% 12% 15% 16% 15% 15% 19% 15% 13% 14% 14% 15% 10% 12% 15% 13% 12% 15% 14% 14% 18% 15% 17% 14% 14% 13% 14% 15% 15% 14% 13% 16% 12% 13% 15% 15% 11% 15% 13% 13% 12%) -> (5.6k/5.9k) -> write(93%)
+ last tile: 13/709/2127 (z13 8%) https://www.openstreetmap.org/#map=13/65.09065/-148.84277
+0:31:50 INF [mbtiles] - features: [ 509M 21% 2.2M/s ] 181G tiles: [ 26M 406k/s ] 17G
+ cpus: 17.6 gc: 4% heap: 17G/118G direct: 4M postGC: 10G
+ read(95%) -> (0/5.9k) -> encode(18% 25% 20% 20% 18% 24% 18% 25% 25% 25% 21% 23% 22% 20% 22% 23% 19% 24% 27% 25% 22% 27% 21% 22% 24% 20% 17% 17% 25% 19% 19% 17% 26% 26% 17% 20% 22% 21% 23% 24% 26% 21% 20% 24% 22% 23% 23% 17% 27% 22% 24% 27% 18% 19% 24% 18% 18% 22% 19% 24% 19% 17% 18% 19%) -> (5k/5.9k) -> write(96%)
+ last tile: 13/1345/3096 (z13 16%) https://www.openstreetmap.org/#map=13/40.17887/-120.89355
+0:32:00 INF [mbtiles] - features: [ 532M 22% 2.2M/s ] 181G tiles: [ 30M 363k/s ] 18G
+ cpus: 16.9 gc: 4% heap: 18G/118G direct: 4M postGC: 14G
+ read(95%) -> (0/5.9k) -> encode(19% 19% 27% 16% 23% 18% 21% 18% 20% 22% 18% 21% 13% 19% 22% 22% 20% 24% 23% 20% 19% 19% 24% 18% 22% 20% 18% 21% 19% 22% 20% 20% 21% 19% 23% 20% 21% 21% 23% 22% 18% 22% 21% 20% 18% 21% 16% 22% 22% 22% 22% 22% 21% 21% 22% 22% 22% 21% 23% 23% 15% 21% 23% 22%) -> (2.4k/5.9k) -> write(96%)
+ last tile: 13/1964/5473 (z13 23%) https://www.openstreetmap.org/#map=13/-51.64529/-93.69141
+0:32:10 INF [mbtiles] - features: [ 554M 23% 2.2M/s ] 181G tiles: [ 32M 230k/s ] 20G
+ cpus: 15.6 gc: 1% heap: 14G/118G direct: 4M postGC: 12G
+ read(96%) -> (0/5.9k) -> encode(26% 24% 21% 20% 20% 19% 20% 23% 27% 18% 22% 18% 22% 20% 18% 20% 20% 18% 24% 18% 20% 25% 21% 17% 22% 22% 22% 26% 20% 20% 20% 17% 25% 20% 22% 20% 25% 21% 24% 22% 22% 22% 22% 21% 18% 20% 19% 22% 20% 24% 22% 22% 18% 19% 24% 21% 18% 23% 20% 17% 23% 21% 21% 22%) -> (22/5.9k) -> write(69%)
+ last tile: 13/2366/2979 (z13 28%) https://www.openstreetmap.org/#map=13/43.99281/-76.02539
+0:32:20 INF [mbtiles] - features: [ 576M 24% 2.2M/s ] 181G tiles: [ 35M 230k/s ] 21G
+ cpus: 18.3 gc: 0% heap: 14G/118G direct: 4M postGC: 12G
+ read(99%) -> (0/5.9k) -> encode(24% 24% 25% 28% 28% 23% 29% 26% 31% 26% 29% 25% 29% 27% 27% 29% 24% 26% 27% 25% 25% 22% 28% 30% 27% 23% 28% 26% 24% 22% 24% 27% 29% 25% 26% 20% 28% 23% 29% 28% 25% 24% 24% 27% 24% 26% 26% 25% 27% 24% 26% 25% 27% 23% 26% 25% 28% 27% 23% 21% 27% 21% 26% 29%) -> (249/5.9k) -> write(69%)
+ last tile: 13/2730/72 (z13 33%) https://www.openstreetmap.org/#map=13/84.77053/-60.02930
+0:32:30 INF [mbtiles] - features: [ 599M 25% 2.2M/s ] 181G tiles: [ 39M 389k/s ] 22G
+ cpus: 16.4 gc: 1% heap: 41G/118G direct: 4M postGC: 12G
+ read(99%) -> (1/5.9k) -> encode(23% 26% 20% 26% 25% 24% 27% 21% 27% 18% 17% 19% 19% 19% 24% 24% 19% 21% 19% 20% 16% 25% 22% 26% 20% 22% 24% 25% 19% 22% 26% 26% 25% 22% 25% 19% 23% 20% 21% 19% 19% 20% 27% 23% 20% 19% 23% 21% 21% 26% 21% 22% 22% 23% 28% 27% 22% 18% 20% 20% 23% 21% 22% 19%) -> (2.2k/5.9k) -> write(99%)
+ last tile: 13/3259/2244 (z13 39%) https://www.openstreetmap.org/#map=13/62.83509/-36.78223
+0:32:40 INF [mbtiles] - features: [ 621M 26% 2.1M/s ] 181G tiles: [ 43M 411k/s ] 23G
+ cpus: 17.1 gc: 4% heap: 39G/118G direct: 4M postGC: 16G
+ read(96%) -> (0/5.9k) -> encode(27% 19% 22% 23% 21% 20% 20% 22% 21% 20% 20% 26% 22% 20% 22% 27% 22% 22% 24% 18% 19% 23% 23% 21% 21% 19% 17% 20% 21% 21% 20% 23% 16% 22% 20% 24% 25% 22% 24% 17% 24% 17% 22% 17% 22% 19% 23% 22% 18% 22% 22% 18% 20% 25% 21% 17% 25% 22% 19% 21% 19% 23% 20% 23%) -> (2.6k/5.9k) -> write(96%)
+ last tile: 13/3867/3396 (z13 47%) https://www.openstreetmap.org/#map=13/29.38218/-10.06348
+0:32:50 INF [mbtiles] - features: [ 643M 27% 2.1M/s ] 181G tiles: [ 45M 203k/s ] 24G
+ cpus: 16.4 gc: 2% heap: 28G/118G direct: 4M postGC: 15G
+ read(97%) -> (1/5.9k) -> encode(21% 18% 21% 20% 23% 19% 20% 23% 22% 19% 21% 24% 20% 23% 21% 21% 24% 22% 22% 19% 22% 24% 24% 26% 29% 24% 27% 19% 18% 24% 22% 21% 25% 22% 24% 19% 19% 23% 23% 24% 20% 17% 23% 25% 23% 24% 22% 21% 18% 25% 22% 20% 23% 20% 25% 23% 23% 25% 22% 20% 25% 19% 21% 22%) -> (25/5.9k) -> write(60%)
+ last tile: 13/4197/2883 (z13 51%) https://www.openstreetmap.org/#map=13/46.95026/4.43848
+0:33:00 INF [mbtiles] - features: [ 665M 28% 2.2M/s ] 181G tiles: [ 45M 58k/s ] 25G
+ cpus: 16 gc: 0% heap: 42G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(24% 25% 24% 18% 22% 22% 27% 24% 25% 23% 23% 23% 24% 21% 29% 23% 23% 18% 22% 21% 21% 26% 19% 25% 19% 26% 25% 20% 23% 24% 20% 24% 26% 25% 22% 21% 17% 21% 21% 24% 20% 25% 25% 27% 25% 19% 26% 24% 24% 23% 27% 21% 25% 17% 24% 20% 23% 21% 24% 25% 23% 24% 24% 25%) -> (8/5.9k) -> write(21%)
+ last tile: 13/4291/2771 (z13 52%) https://www.openstreetmap.org/#map=13/50.20503/8.56934
+0:33:10 INF [mbtiles] - features: [ 687M 29% 2.1M/s ] 181G tiles: [ 46M 51k/s ] 26G
+ cpus: 15.4 gc: 0% heap: 41G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(18% 25% 27% 26% 19% 22% 23% 26% 18% 22% 20% 25% 16% 26% 18% 23% 23% 22% 18% 19% 27% 21% 26% 20% 25% 27% 23% 22% 21% 23% 21% 21% 24% 22% 24% 19% 22% 23% 29% 19% 18% 17% 23% 22% 23% 20% 24% 25% 18% 18% 22% 25% 23% 22% 23% 21% 26% 21% 23% 23% 22% 24% 17% 18%) -> (33/5.9k) -> write(21%)
+ last tile: 13/4374/2317 (z13 53%) https://www.openstreetmap.org/#map=13/61.33354/12.21680
+0:33:20 INF [mbtiles] - features: [ 709M 30% 2.1M/s ] 181G tiles: [ 47M 74k/s ] 27G
+ cpus: 20 gc: 0% heap: 26G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(24% 27% 23% 33% 33% 27% 31% 29% 32% 28% 32% 28% 30% 28% 29% 23% 27% 25% 28% 32% 31% 35% 29% 28% 30% 28% 34% 31% 29% 34% 26% 35% 34% 30% 30% 26% 30% 33% 28% 22% 31% 28% 28% 33% 25% 33% 26% 29% 23% 30% 34% 25% 30% 32% 24% 27% 28% 31% 27% 31% 23% 30% 31% 25%) -> (28/5.9k) -> write(30%)
+ last tile: 13/4502/2976 (z13 54%) https://www.openstreetmap.org/#map=13/44.08759/17.84180
+0:33:30 INF [mbtiles] - features: [ 730M 31% 2.1M/s ] 181G tiles: [ 48M 108k/s ] 28G
+ cpus: 20 gc: 0% heap: 27G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(33% 29% 32% 26% 22% 26% 34% 31% 29% 28% 26% 26% 26% 33% 31% 26% 30% 33% 25% 28% 26% 23% 31% 28% 30% 24% 30% 28% 27% 29% 32% 24% 25% 28% 27% 31% 31% 34% 30% 28% 30% 30% 30% 30% 31% 25% 32% 26% 28% 26% 34% 30% 28% 27% 38% 27% 34% 26% 31% 34% 29% 26% 28% 26%) -> (47/5.9k) -> write(40%)
+ last tile: 13/4691/5599 (z13 57%) https://www.openstreetmap.org/#map=13/-54.95239/26.14746
+0:33:40 INF [mbtiles] - features: [ 753M 32% 2.2M/s ] 181G tiles: [ 49M 123k/s ] 29G
+ cpus: 20.3 gc: 0% heap: 27G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(28% 30% 32% 25% 29% 25% 27% 27% 29% 28% 29% 29% 29% 33% 31% 22% 29% 31% 26% 27% 24% 32% 25% 25% 31% 30% 32% 36% 30% 32% 29% 27% 31% 24% 31% 34% 27% 28% 30% 33% 27% 32% 27% 30% 34% 31% 34% 31% 35% 27% 37% 29% 29% 31% 27% 25% 30% 31% 29% 28% 30% 31% 28% 26%) -> (67/5.9k) -> write(44%)
+ last tile: 13/4898/2524 (z13 59%) https://www.openstreetmap.org/#map=13/56.65623/35.24414
+0:33:50 INF [mbtiles] - features: [ 775M 33% 2.2M/s ] 181G tiles: [ 51M 213k/s ] 30G
+ cpus: 20.3 gc: 0% heap: 20G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(25% 28% 31% 30% 29% 29% 32% 26% 31% 27% 32% 29% 25% 28% 34% 29% 26% 30% 29% 31% 29% 30% 26% 29% 30% 26% 30% 33% 22% 25% 27% 26% 27% 28% 29% 30% 24% 28% 30% 30% 34% 23% 31% 29% 25% 33% 29% 27% 29% 28% 33% 32% 31% 28% 33% 29% 34% 24% 32% 31% 29% 28% 32% 25%) -> (42/5.9k) -> write(66%)
+ last tile: 13/5261/3226 (z13 64%) https://www.openstreetmap.org/#map=13/35.67515/51.19629
+0:34:00 INF [mbtiles] - features: [ 798M 34% 2.2M/s ] 181G tiles: [ 55M 363k/s ] 32G
+ cpus: 19.1 gc: 1% heap: 31G/118G direct: 4M postGC: 16G
+ read(99%) -> (0/5.9k) -> encode(24% 28% 24% 26% 24% 26% 31% 30% 21% 27% 18% 28% 27% 25% 29% 26% 25% 23% 23% 27% 23% 34% 26% 26% 25% 23% 19% 22% 27% 25% 24% 27% 29% 28% 28% 25% 26% 30% 29% 25% 26% 23% 24% 31% 27% 25% 29% 28% 28% 24% 27% 32% 29% 26% 27% 33% 29% 27% 26% 23% 28% 24% 27% 29%) -> (201/5.9k) -> write(97%)
+ last tile: 13/5907/3825 (z13 72%) https://www.openstreetmap.org/#map=13/11.82434/79.58496
+0:34:10 INF [mbtiles] - features: [ 822M 35% 2.3M/s ] 181G tiles: [ 58M 312k/s ] 33G
+ cpus: 19.1 gc: 0% heap: 18G/118G direct: 4M postGC: 15G
+ read(99%) -> (0/5.9k) -> encode(27% 23% 26% 28% 28% 23% 24% 25% 33% 29% 32% 31% 26% 23% 25% 23% 26% 26% 27% 26% 25% 25% 30% 24% 33% 26% 28% 27% 29% 29% 19% 25% 28% 27% 25% 25% 24% 24% 26% 24% 25% 30% 28% 34% 29% 29% 28% 29% 30% 28% 26% 23% 24% 26% 25% 27% 26% 23% 24% 29% 28% 28% 23% 29%) -> (26/5.9k) -> write(86%)
+ last tile: 13/6527/3498 (z13 79%) https://www.openstreetmap.org/#map=13/25.40358/106.83105
+0:34:20 INF [mbtiles] - features: [ 845M 36% 2.3M/s ] 181G tiles: [ 60M 221k/s ] 34G
+ cpus: 17.4 gc: 0% heap: 44G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(24% 19% 28% 23% 21% 27% 24% 26% 24% 26% 24% 22% 24% 23% 24% 20% 23% 26% 26% 24% 23% 30% 21% 27% 28% 26% 25% 22% 28% 27% 27% 27% 23% 27% 22% 21% 27% 22% 21% 26% 25% 24% 26% 22% 22% 26% 33% 26% 19% 23% 25% 27% 27% 29% 29% 23% 22% 25% 25% 25% 29% 23% 22% 22%) -> (118/5.9k) -> write(64%)
+ last tile: 13/6964/3995 (z13 85%) https://www.openstreetmap.org/#map=13/4.43404/126.03516
+0:34:30 INF [mbtiles] - features: [ 869M 37% 2.3M/s ] 181G tiles: [ 63M 332k/s ] 35G
+ cpus: 17.5 gc: 0% heap: 39G/118G direct: 4M postGC: 15G
+ read(100%) -> (0/5.9k) -> encode(25% 27% 25% 23% 25% 24% 21% 25% 26% 24% 22% 20% 27% 20% 24% 25% 23% 23% 21% 25% 22% 29% 24% 22% 22% 27% 24% 28% 28% 27% 23% 27% 24% 25% 22% 22% 27% 23% 25% 22% 28% 25% 23% 24% 26% 26% 24% 26% 25% 23% 23% 24% 25% 24% 26% 21% 28% 23% 23% 24% 23% 25% 25% 22%) -> (1.8k/5.9k) -> write(87%)
+ last tile: 13/7568/249 (z13 92%) https://www.openstreetmap.org/#map=13/84.01144/152.57813
+0:34:40 INF [mbtiles] - features: [ 880M 37% 1M/s ] 181G tiles: [ 68M 433k/s ] 36G
+ cpus: 4.2 gc: 0% heap: 32G/118G direct: 4M postGC: 16G
+ read(45%) -> (0/5.9k) -> encode( 3% 4% 5% 3% 5% 3% 3% 5% 5% 3% 5% 6% 4% 5% 4% 2% 4% 6% 3% 6% 4% 3% 5% 3% 4% 4% 4% 4% 4% 4% 3% 3% 3% 3% 3% 4% 5% 4% 4% 4% 4% 3% 4% 3% 4% 4% 4% 4% 5% 4% 3% 3% 4% 4% 4% 4% 3% 4% 4% 4% 4% 4% 4% 6%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 13/8189/869 (z13 99%) https://www.openstreetmap.org/#map=13/80.37905/179.86816
+0:34:40 INF [mbtiles:write] - Finished z13 in 3m13s cpu:53m59s gc:3s avg:16.8, now starting z14
+0:34:50 INF [mbtiles] - features: [ 885M 37% 506k/s ] 181G tiles: [ 72M 462k/s ] 36G
+ cpus: 1.6 gc: 0% heap: 36G/118G direct: 4M postGC: 16G
+ read(21%) -> (0/5.9k) -> encode( 1% 0% 1% 1% 0% 0% 0% 1% 1% 1% 1% 1% 1% 0% 1% 0% 1% 1% 1% 1% 1% 0% 1% 0% 1% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 1% 0% 0% 1% 1% 1% 1% 0% 1% 1% 0% 1% 1% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/290/6895 (z14 1%) https://www.openstreetmap.org/#map=14/27.39128/-173.62793
+0:35:00 INF [mbtiles] - features: [ 891M 37% 569k/s ] 181G tiles: [ 77M 454k/s ] 37G
+ cpus: 2.2 gc: 0% heap: 43G/118G direct: 4M postGC: 16G
+ read(24%) -> (0/5.9k) -> encode( 1% 2% 2% 2% 1% 1% 1% 2% 2% 1% 1% 2% 2% 2% 2% 1% 2% 2% 2% 2% 1% 1% 1% 1% 1% 2% 1% 2% 1% 1% 1% 3% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 2% 1% 2% 1% 2% 2% 2% 3% 1% 2% 2% 1% 1% 2% 1% 1% 2% 2% 2% 2% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/574/5276 (z14 3%) https://www.openstreetmap.org/#map=14/53.80065/-167.38770
+0:35:10 INF [mbtiles] - features: [ 896M 38% 514k/s ] 181G tiles: [ 81M 446k/s ] 38G
+ cpus: 2.4 gc: 1% heap: 23G/118G direct: 4M postGC: 18G
+ read(22%) -> (0/5.9k) -> encode( 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 2% 1% 2% 1% 1% 1% 1% 1% 2% 1% 1% 1% 2% 1% 2% 1% 2% 1% 2% 1% 1% 1% 1% 2% 2% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/863/13029 (z14 5%) https://www.openstreetmap.org/#map=14/-72.21539/-161.03760
+0:35:20 INF [mbtiles] - features: [ 901M 38% 528k/s ] 181G tiles: [ 86M 448k/s ] 38G
+ cpus: 2.2 gc: 0% heap: 30G/118G direct: 4M postGC: 18G
+ read(23%) -> (0/5.9k) -> encode( 2% 1% 2% 2% 1% 2% 1% 1% 2% 2% 2% 1% 1% 1% 2% 2% 2% 1% 1% 2% 1% 1% 2% 1% 2% 1% 2% 2% 2% 1% 1% 1% 2% 2% 1% 2% 2% 1% 1% 1% 1% 3% 2% 1% 2% 1% 1% 2% 2% 2% 2% 2% 2% 1% 2% 1% 1% 1% 2% 2% 2% 1% 1% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/1168/12799 (z14 7%) https://www.openstreetmap.org/#map=14/-70.60532/-154.33594
+0:35:30 INF [mbtiles] - features: [ 906M 38% 495k/s ] 181G tiles: [ 90M 451k/s ] 39G
+ cpus: 2 gc: 0% heap: 36G/118G direct: 4M postGC: 18G
+ read(21%) -> (0/5.9k) -> encode( 1% 1% 2% 2% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 2% 1% 1% 1% 1% 1% 1% 1% 2% 2% 2% 2% 1% 2% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 2% 2% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/1497/10868 (z14 9%) https://www.openstreetmap.org/#map=14/-50.56928/-147.10693
+0:35:40 INF [mbtiles] - features: [ 911M 38% 545k/s ] 181G tiles: [ 95M 442k/s ] 39G
+ cpus: 3.1 gc: 1% heap: 21G/118G direct: 4M postGC: 18G
+ read(23%) -> (0/5.9k) -> encode( 2% 2% 1% 4% 3% 1% 1% 2% 4% 3% 2% 2% 2% 1% 2% 2% 4% 3% 2% 2% 4% 2% 3% 2% 2% 2% 2% 2% 3% 3% 3% 2% 3% 2% 3% 3% 4% 2% 2% 2% 3% 2% 2% 3% 2% 2% 3% 2% 3% 2% 3% 2% 3% 1% 2% 2% 3% 2% 3% 2% 3% 4% 2% 2%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/1830/2688 (z14 11%) https://www.openstreetmap.org/#map=14/76.18500/-139.79004
+0:35:50 INF [mbtiles] - features: [ 923M 39% 1.1M/s ] 181G tiles: [ 99M 438k/s ] 40G
+ cpus: 7 gc: 1% heap: 33G/118G direct: 4M postGC: 18G
+ read(46%) -> (0/5.9k) -> encode( 7% 9% 7% 9% 8% 7% 6% 5% 7% 11% 5% 8% 9% 9% 6% 9% 9% 7% 6% 8% 10% 7% 7% 9% 7% 7% 6% 8% 8% 9% 9% 8% 8% 9% 8% 11% 7% 7% 6% 6% 7% 10% 7% 7% 8% 8% 11% 8% 7% 9% 10% 7% 8% 6% 6% 9% 6% 7% 9% 6% 8% 7% 11% 8%) -> (5.8k/5.9k) -> write(99%)
+ last tile: 14/2173/9523 (z14 13%) https://www.openstreetmap.org/#map=14/-28.05259/-132.25342
+0:36:00 INF [mbtiles] - features: [ 945M 40% 2.2M/s ] 181G tiles: [ 104M 427k/s ] 41G
+ cpus: 14.8 gc: 4% heap: 38G/118G direct: 4M postGC: 22G
+ read(91%) -> (0/5.9k) -> encode(18% 20% 18% 18% 19% 18% 20% 16% 20% 15% 20% 17% 18% 18% 19% 16% 17% 18% 17% 20% 14% 16% 20% 14% 20% 14% 15% 18% 18% 18% 14% 17% 11% 17% 18% 17% 20% 19% 15% 16% 21% 13% 19% 17% 25% 18% 22% 17% 19% 23% 16% 20% 18% 17% 17% 22% 16% 17% 17% 19% 18% 14% 12% 17%) -> (5.8k/5.9k) -> write(96%)
+ last tile: 14/2522/8533 (z14 15%) https://www.openstreetmap.org/#map=14/-7.47141/-124.58496
+0:36:10 INF [mbtiles] - features: [ 968M 41% 2.3M/s ] 181G tiles: [ 107M 369k/s ] 42G
+ cpus: 16 gc: 4% heap: 30G/118G direct: 4M postGC: 28G
+ read(95%) -> (0/5.9k) -> encode(17% 20% 21% 15% 22% 15% 18% 17% 14% 23% 19% 15% 23% 20% 21% 21% 17% 18% 19% 14% 19% 17% 20% 19% 23% 16% 18% 23% 19% 19% 26% 22% 19% 18% 18% 24% 19% 20% 18% 18% 16% 22% 19% 16% 19% 18% 16% 20% 17% 21% 19% 25% 17% 18% 22% 22% 22% 19% 18% 21% 16% 22% 17% 18%) -> (4.9k/5.9k) -> write(96%)
+ last tile: 14/2829/11735 (z14 17%) https://www.openstreetmap.org/#map=14/-61.17503/-117.83936
+0:36:20 INF [mbtiles] - features: [ 990M 42% 2.1M/s ] 181G tiles: [ 111M 386k/s ] 43G
+ cpus: 16.7 gc: 4% heap: 41G/118G direct: 4M postGC: 33G
+ read(91%) -> (0/5.9k) -> encode(18% 25% 18% 23% 19% 16% 21% 17% 19% 19% 20% 22% 24% 19% 16% 19% 22% 23% 23% 20% 22% 21% 21% 25% 21% 23% 19% 23% 20% 21% 21% 17% 22% 27% 20% 20% 21% 21% 19% 24% 20% 25% 20% 23% 20% 21% 17% 20% 22% 21% 17% 21% 23% 23% 23% 20% 21% 17% 25% 15% 23% 17% 19% 19%) -> (5.9k/5.9k) -> write(96%)
+ last tile: 14/3161/6567 (z14 19%) https://www.openstreetmap.org/#map=14/33.59632/-110.54443
+0:36:30 INF [mbtiles] - features: [ 1B 43% 2.1M/s ] 181G tiles: [ 115M 391k/s ] 44G
+ cpus: 15.4 gc: 4% heap: 42G/118G direct: 4M postGC: 37G
+ read(90%) -> (0/5.9k) -> encode(18% 18% 21% 19% 20% 21% 13% 22% 21% 17% 18% 18% 20% 25% 19% 20% 20% 20% 18% 18% 19% 19% 14% 20% 21% 19% 20% 21% 22% 19% 17% 16% 21% 19% 18% 21% 17% 21% 17% 20% 16% 15% 16% 20% 21% 18% 17% 20% 22% 18% 18% 19% 18% 21% 20% 15% 20% 16% 17% 18% 19% 18% 19% 19%) -> (5.3k/5.9k) -> write(96%)
+ last tile: 14/3499/3806 (z14 21%) https://www.openstreetmap.org/#map=14/68.92681/-103.11768
+0:36:40 INF [mbtiles] - features: [ 1B 44% 2.2M/s ] 181G tiles: [ 119M 371k/s ] 45G
+ cpus: 16.2 gc: 4% heap: 43G/118G direct: 4M postGC: 42G
+ read(94%) -> (0/5.9k) -> encode(16% 22% 19% 16% 19% 20% 21% 18% 21% 21% 17% 21% 24% 16% 19% 19% 18% 20% 19% 22% 24% 23% 17% 20% 21% 20% 19% 20% 20% 19% 20% 18% 23% 20% 21% 21% 18% 22% 23% 21% 17% 22% 18% 19% 17% 19% 17% 22% 21% 20% 19% 21% 20% 22% 21% 16% 21% 22% 18% 20% 19% 20% 19% 22%) -> (4k/5.9k) -> write(96%)
+ last tile: 14/3824/8244 (z14 23%) https://www.openstreetmap.org/#map=14/-1.14250/-95.97656
+0:36:50 INF [mbtiles] - features: [ 1B 44% 2.2M/s ] 181G tiles: [ 122M 366k/s ] 47G
+ cpus: 15.4 gc: 3% heap: 17G/118G direct: 4M postGC: 4.7G
+ read(95%) -> (0/5.9k) -> encode(17% 16% 15% 15% 19% 19% 19% 22% 18% 15% 15% 20% 21% 16% 18% 17% 19% 17% 21% 18% 20% 17% 16% 17% 17% 22% 13% 20% 18% 19% 20% 17% 21% 16% 18% 24% 16% 20% 16% 21% 14% 19% 18% 19% 19% 17% 20% 19% 15% 16% 17% 24% 20% 20% 11% 16% 22% 19% 16% 17% 21% 23% 24% 14%) -> (2.1k/5.9k) -> write(96%)
+ last tile: 14/4158/7553 (z14 25%) https://www.openstreetmap.org/#map=14/13.90208/-88.63770
+0:37:00 INF [mbtiles] - features: [ 1B 45% 2.3M/s ] 181G tiles: [ 125M 293k/s ] 48G
+ cpus: 14.7 gc: 2% heap: 17G/118G direct: 4M postGC: 5.1G
+ read(98%) -> (0/5.9k) -> encode(19% 17% 18% 22% 23% 22% 20% 19% 19% 20% 21% 16% 22% 20% 16% 17% 20% 16% 19% 17% 20% 22% 18% 15% 17% 19% 19% 23% 22% 18% 17% 22% 17% 22% 17% 14% 17% 18% 17% 18% 23% 22% 18% 23% 17% 15% 20% 21% 19% 23% 19% 21% 15% 17% 17% 17% 20% 18% 23% 18% 21% 21% 20% 18%) -> (28/5.9k) -> write(81%)
+ last tile: 14/4423/6425 (z14 27%) https://www.openstreetmap.org/#map=14/36.15562/-82.81494
+0:37:10 INF [mbtiles] - features: [ 1.1B 46% 2.3M/s ] 181G tiles: [ 127M 147k/s ] 49G
+ cpus: 13.5 gc: 0% heap: 9.3G/118G direct: 4M postGC: 5.1G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 18% 15% 21% 19% 19% 21% 20% 20% 16% 19% 19% 19% 20% 22% 21% 17% 19% 16% 22% 16% 19% 21% 21% 17% 16% 17% 18% 17% 21% 17% 17% 21% 22% 18% 20% 17% 17% 20% 20% 19% 20% 21% 18% 16% 17% 19% 20% 22% 15% 17% 17% 19% 15% 20% 20% 21% 17% 16% 19% 21% 20% 18%) -> (21/5.9k) -> write(44%)
+ last tile: 14/4552/3476 (z14 27%) https://www.openstreetmap.org/#map=14/71.38514/-79.98047
+0:37:20 INF [mbtiles] - features: [ 1.1B 47% 2.3M/s ] 181G tiles: [ 128M 161k/s ] 50G
+ cpus: 13.5 gc: 0% heap: 11G/118G direct: 4M postGC: 5.1G
+ read(98%) -> (0/5.9k) -> encode(19% 22% 18% 20% 19% 19% 19% 20% 18% 18% 20% 23% 14% 21% 21% 18% 16% 19% 14% 19% 19% 20% 19% 18% 18% 18% 20% 16% 20% 20% 19% 21% 17% 22% 17% 19% 15% 18% 22% 16% 20% 13% 20% 16% 21% 22% 18% 16% 17% 15% 19% 19% 19% 19% 16% 22% 18% 25% 19% 20% 18% 18% 20% 19%) -> (17/5.9k) -> write(47%)
+ last tile: 14/4689/6493 (z14 28%) https://www.openstreetmap.org/#map=14/34.93999/-76.97021
+0:37:30 INF [mbtiles] - features: [ 1.1B 48% 2.4M/s ] 181G tiles: [ 130M 163k/s ] 51G
+ cpus: 13.7 gc: 0% heap: 12G/118G direct: 4M postGC: 5.1G
+ read(100%) -> (0/5.9k) -> encode(19% 18% 20% 16% 17% 16% 17% 16% 20% 20% 20% 18% 20% 19% 18% 20% 22% 20% 19% 20% 16% 18% 21% 18% 17% 20% 20% 24% 19% 15% 18% 21% 21% 23% 22% 18% 20% 20% 19% 19% 17% 19% 21% 19% 19% 18% 18% 21% 19% 18% 17% 18% 20% 19% 20% 20% 20% 18% 18% 17% 15% 22% 16% 18%) -> (16/5.9k) -> write(49%)
+ last tile: 14/4824/6162 (z14 29%) https://www.openstreetmap.org/#map=14/40.68064/-74.00391
+0:37:40 INF [mbtiles] - features: [ 1.1B 50% 2.5M/s ] 181G tiles: [ 131M 141k/s ] 52G
+ cpus: 13.6 gc: 0% heap: 7.9G/118G direct: 4M postGC: 5.1G
+ read(100%) -> (0/5.9k) -> encode(16% 20% 20% 17% 22% 19% 16% 18% 19% 18% 19% 16% 18% 16% 20% 23% 17% 18% 19% 22% 17% 18% 15% 22% 19% 22% 20% 19% 18% 18% 18% 27% 18% 20% 21% 15% 14% 20% 21% 20% 20% 18% 16% 17% 19% 20% 18% 23% 20% 20% 21% 18% 20% 22% 19% 15% 17% 19% 18% 16% 18% 17% 19% 23%) -> (26/5.9k) -> write(44%)
+ last tile: 14/4942/12169 (z14 30%) https://www.openstreetmap.org/#map=14/-65.44913/-71.41113
+0:37:50 INF [mbtiles] - features: [ 1.2B 51% 2.4M/s ] 181G tiles: [ 134M 286k/s ] 53G
+ cpus: 16.2 gc: 1% heap: 13G/118G direct: 4M postGC: 5.9G
+ read(99%) -> (0/5.9k) -> encode(17% 19% 19% 20% 21% 20% 20% 25% 21% 24% 20% 24% 27% 20% 25% 19% 19% 16% 23% 23% 21% 20% 23% 21% 23% 21% 20% 24% 25% 23% 20% 21% 26% 21% 22% 23% 20% 22% 25% 22% 23% 18% 23% 21% 27% 24% 24% 26% 21% 22% 22% 23% 22% 21% 23% 26% 24% 21% 22% 24% 21% 22% 22% 25%) -> (930/5.9k) -> write(79%)
+ last tile: 14/5197/7350 (z14 31%) https://www.openstreetmap.org/#map=14/18.18761/-65.80811
+0:38:00 INF [mbtiles] - features: [ 1.2B 52% 2.3M/s ] 181G tiles: [ 138M 378k/s ] 54G
+ cpus: 14.8 gc: 3% heap: 13G/118G direct: 4M postGC: 8.9G
+ read(96%) -> (0/5.9k) -> encode(16% 18% 19% 16% 20% 17% 20% 21% 19% 22% 20% 19% 18% 16% 15% 16% 22% 19% 13% 20% 18% 18% 17% 21% 16% 17% 15% 21% 14% 21% 17% 18% 15% 19% 21% 20% 18% 17% 20% 18% 20% 20% 19% 18% 18% 19% 18% 19% 16% 19% 15% 17% 17% 19% 20% 17% 16% 16% 18% 19% 17% 18% 15% 17%) -> (3.9k/5.9k) -> write(97%)
+ last tile: 14/5479/1460 (z14 33%) https://www.openstreetmap.org/#map=14/81.34808/-59.61182
+0:38:10 WAR [mbtiles:encode] - {x=6070 y=9294 z=14} 1000kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6070 y=9292 z=14} 1002kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6071 y=9291 z=14} 1010kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6071 y=9292 z=14} 1281kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6073 y=9297 z=14} 1064kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6074 y=9296 z=14} 1065kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6074 y=9297 z=14} 1203kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6074 y=9293 z=14} 1026kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6075 y=9297 z=14} 1092kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6075 y=9293 z=14} 1134kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6076 y=9293 z=14} 1108kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6077 y=9293 z=14} 985kb uncompressed
+0:38:10 WAR [mbtiles:encode] - {x=6079 y=9292 z=14} 1016kb uncompressed
+0:38:10 INF [mbtiles] - features: [ 1.2B 52% 2.1M/s ] 181G tiles: [ 142M 387k/s ] 55G
+ cpus: 13.9 gc: 4% heap: 21G/118G direct: 4M postGC: 13G
+ read(88%) -> (0/5.9k) -> encode(20% 13% 17% 16% 20% 11% 17% 16% 12% 17% 17% 20% 15% 19% 14% 17% 13% 18% 19% 12% 19% 17% 18% 13% 16% 20% 20% 14% 17% 14% 17% 17% 19% 15% 18% 17% 16% 14% 21% 16% 13% 18% 19% 14% 18% 17% 20% 13% 15% 17% 14% 13% 16% 14% 19% 14% 23% 20% 14% 17% 16% 10% 16% 15%) -> (5.7k/5.9k) -> write(96%)
+ last tile: 14/5742/11661 (z14 35%) https://www.openstreetmap.org/#map=14/-60.38129/-53.83301
+0:38:20 INF [mbtiles] - features: [ 1.2B 53% 1.2M/s ] 181G tiles: [ 146M 390k/s ] 56G
+ cpus: 9 gc: 3% heap: 24G/118G direct: 4M postGC: 17G
+ read(52%) -> (0/5.9k) -> encode( 7% 8% 11% 7% 7% 9% 13% 11% 7% 7% 12% 14% 10% 10% 9% 10% 11% 12% 11% 11% 9% 6% 10% 15% 13% 9% 10% 10% 6% 10% 10% 10% 10% 14% 8% 6% 10% 7% 8% 7% 11% 12% 6% 11% 10% 10% 6% 13% 8% 10% 5% 7% 12% 12% 8% 7% 5% 14% 12% 6% 9% 12% 6% 9%) -> (5.9k/5.9k) -> write(97%)
+ last tile: 14/6017/4763 (z14 36%) https://www.openstreetmap.org/#map=14/59.94401/-47.79053
+0:38:23 WAR [mbtiles:encode] - {x=6435 y=8363 z=14} 1049kb uncompressed
+0:38:23 WAR [mbtiles:encode] - {x=6435 y=8361 z=14} 1688kb uncompressed
+0:38:30 INF [mbtiles] - features: [ 1.2B 53% 914k/s ] 181G tiles: [ 150M 403k/s ] 57G
+ cpus: 5.2 gc: 2% heap: 26G/118G direct: 4M postGC: 19G
+ read(39%) -> (0/5.9k) -> encode( 7% 6% 5% 5% 4% 4% 4% 4% 6% 4% 7% 5% 5% 4% 6% 5% 3% 7% 4% 7% 3% 3% 4% 3% 5% 7% 6% 3% 3% 3% 2% 4% 5% 2% 5% 7% 5% 3% 6% 3% 4% 4% 5% 2% 4% 5% 3% 3% 8% 5% 5% 4% 5% 5% 4% 4% 2% 5% 3% 8% 4% 5% 7% 5%) -> (5.9k/5.9k) -> write(98%)
+ last tile: 14/6294/6430 (z14 38%) https://www.openstreetmap.org/#map=14/36.06686/-41.70410
+0:38:40 INF [mbtiles] - features: [ 1.2B 54% 554k/s ] 181G tiles: [ 154M 412k/s ] 58G
+ cpus: 2.5 gc: 1% heap: 24G/118G direct: 4M postGC: 21G
+ read(25%) -> (0/5.9k) -> encode( 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/6574/10982 (z14 40%) https://www.openstreetmap.org/#map=14/-52.13349/-35.55176
+0:38:50 INF [mbtiles] - features: [ 1.2B 54% 574k/s ] 181G tiles: [ 158M 421k/s ] 58G
+ cpus: 3.4 gc: 2% heap: 27G/118G direct: 4M postGC: 22G
+ read(26%) -> (0/5.9k) -> encode( 2% 3% 2% 2% 3% 1% 2% 3% 1% 2% 2% 3% 1% 2% 3% 2% 2% 2% 2% 2% 2% 3% 2% 2% 2% 2% 2% 2% 1% 2% 1% 1% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 3% 1% 2% 2% 2% 2% 2% 2% 1% 3% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2%) -> (5.9k/5.9k) -> write(98%)
+ last tile: 14/6873/9422 (z14 41%) https://www.openstreetmap.org/#map=14/-26.07652/-28.98193
+0:39:00 INF [mbtiles] - features: [ 1.2B 54% 900k/s ] 181G tiles: [ 163M 419k/s ] 59G
+ cpus: 5.1 gc: 2% heap: 29G/118G direct: 4M postGC: 25G
+ read(37%) -> (0/5.9k) -> encode( 3% 6% 5% 2% 3% 5% 5% 2% 3% 6% 5% 3% 5% 3% 4% 6% 7% 4% 5% 6% 4% 5% 4% 5% 4% 4% 4% 5% 6% 3% 4% 3% 3% 4% 5% 3% 4% 5% 4% 5% 6% 3% 3% 4% 3% 5% 6% 3% 4% 6% 6% 4% 5% 5% 5% 4% 4% 4% 5% 6% 4% 4% 3% 3%) -> (5.9k/5.9k) -> write(98%)
+ last tile: 14/7183/7339 (z14 43%) https://www.openstreetmap.org/#map=14/18.41708/-22.17041
+0:39:10 INF [mbtiles] - features: [ 1.3B 55% 1.6M/s ] 181G tiles: [ 167M 416k/s ] 60G
+ cpus: 10.2 gc: 3% heap: 29G/118G direct: 4M postGC: 29G
+ read(69%) -> (0/5.9k) -> encode(13% 12% 8% 13% 11% 15% 7% 13% 11% 15% 9% 11% 11% 14% 12% 9% 11% 10% 16% 9% 15% 11% 10% 13% 11% 14% 11% 9% 10% 13% 11% 10% 12% 13% 10% 11% 11% 14% 15% 14% 11% 15% 12% 13% 13% 13% 14% 13% 14% 11% 9% 10% 11% 9% 12% 10% 10% 12% 11% 11% 14% 8% 10% 12%) -> (5.6k/5.9k) -> write(97%)
+ last tile: 14/7494/486 (z14 45%) https://www.openstreetmap.org/#map=14/84.03889/-15.33691
+0:39:17 WAR [mbtiles:encode] - {x=7990 y=6392 z=14} 1284kb uncompressed
+0:39:20 INF [mbtiles] - features: [ 1.3B 56% 2.2M/s ] 181G tiles: [ 171M 399k/s ] 61G
+ cpus: 15.5 gc: 4% heap: 14G/118G direct: 4M postGC: 8.2G
+ read(95%) -> (0/5.9k) -> encode(16% 18% 15% 17% 16% 15% 19% 15% 16% 15% 20% 17% 16% 17% 16% 19% 19% 11% 18% 16% 21% 15% 20% 15% 15% 16% 15% 16% 20% 21% 21% 18% 16% 18% 19% 18% 17% 18% 22% 17% 18% 16% 19% 20% 20% 23% 18% 24% 18% 21% 17% 19% 15% 16% 22% 20% 17% 21% 21% 18% 18% 16% 19% 19%) -> (4.6k/5.9k) -> write(96%)
+ last tile: 14/7812/10503 (z14 47%) https://www.openstreetmap.org/#map=14/-45.19752/-8.34961
+0:39:31 INF [mbtiles] - features: [ 1.3B 57% 2.3M/s ] 181G tiles: [ 174M 354k/s ] 62G
+ cpus: 14.1 gc: 3% heap: 21G/118G direct: 4M postGC: 11G
+ read(97%) -> (0/5.9k) -> encode(19% 19% 13% 17% 17% 16% 17% 18% 18% 15% 17% 16% 15% 19% 16% 17% 16% 19% 20% 19% 17% 19% 19% 19% 16% 16% 9% 13% 19% 17% 16% 17% 19% 12% 13% 17% 18% 20% 14% 20% 16% 18% 19% 18% 17% 17% 20% 21% 19% 15% 16% 15% 16% 16% 18% 15% 15% 19% 17% 15% 16% 15% 15% 21%) -> (394/5.9k) -> write(97%)
+ last tile: 14/8102/11072 (z14 49%) https://www.openstreetmap.org/#map=14/-53.33087/-1.97754
+0:39:41 INF [mbtiles] - features: [ 1.3B 58% 2.4M/s ] 181G tiles: [ 175M 80k/s ] 63G
+ cpus: 11.7 gc: 0% heap: 20G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(17% 16% 19% 13% 16% 15% 14% 15% 18% 18% 18% 17% 16% 18% 18% 14% 14% 16% 16% 14% 18% 13% 20% 16% 15% 13% 15% 13% 17% 16% 18% 17% 18% 17% 17% 18% 17% 18% 15% 18% 11% 17% 15% 18% 19% 17% 17% 12% 18% 19% 17% 11% 14% 18% 19% 16% 18% 20% 17% 19% 13% 15% 18% 15%) -> (11/5.9k) -> write(26%)
+ last tile: 14/8168/5730 (z14 49%) https://www.openstreetmap.org/#map=14/47.48751/-0.52734
+0:39:42 WAR [mbtiles:encode] - {x=8174 y=6234 z=14} 1236kb uncompressed
+0:39:51 INF [mbtiles] - features: [ 1.4B 59% 2.4M/s ] 181G tiles: [ 176M 82k/s ] 64G
+ cpus: 11.6 gc: 0% heap: 11G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(19% 16% 17% 19% 16% 15% 14% 14% 19% 18% 18% 16% 13% 18% 15% 16% 17% 14% 14% 16% 19% 18% 18% 12% 15% 15% 14% 17% 19% 17% 19% 16% 17% 13% 16% 18% 15% 19% 19% 18% 18% 17% 16% 16% 16% 15% 17% 16% 14% 11% 13% 16% 15% 13% 14% 16% 15% 14% 19% 15% 17% 15% 17% 15%) -> (20/5.9k) -> write(27%)
+ last tile: 14/8236/5369 (z14 50%) https://www.openstreetmap.org/#map=14/52.57635/0.96680
+0:39:55 WAR [mbtiles:encode] - {x=8270 y=6129 z=14} 1036kb uncompressed
+0:39:57 WAR [mbtiles:encode] - {x=8290 y=6119 z=14} 1276kb uncompressed
+0:39:57 WAR [mbtiles:encode] - {x=8290 y=6118 z=14} 1320kb uncompressed
+0:39:58 WAR [mbtiles:encode] - {x=8292 y=6115 z=14} 1271kb uncompressed
+0:40:01 INF [mbtiles] - features: [ 1.4B 60% 2.5M/s ] 181G tiles: [ 177M 84k/s ] 65G
+ cpus: 11.5 gc: 0% heap: 13G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(16% 15% 14% 16% 18% 14% 12% 13% 14% 14% 20% 14% 15% 16% 17% 16% 16% 17% 15% 18% 19% 17% 16% 17% 18% 15% 19% 14% 17% 17% 15% 14% 19% 15% 18% 17% 13% 16% 17% 19% 14% 18% 13% 18% 15% 11% 20% 13% 18% 17% 15% 20% 13% 15% 17% 15% 15% 15% 12% 19% 17% 15% 18% 17%) -> (6/5.9k) -> write(27%)
+ last tile: 14/8306/5641 (z14 50%) https://www.openstreetmap.org/#map=14/48.79239/2.50488
+0:40:11 INF [mbtiles] - features: [ 1.4B 61% 2.5M/s ] 181G tiles: [ 178M 88k/s ] 65G
+ cpus: 11.2 gc: 0% heap: 11G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(15% 14% 14% 14% 15% 14% 18% 18% 14% 15% 14% 14% 17% 14% 15% 15% 18% 18% 17% 16% 16% 14% 17% 16% 13% 20% 14% 15% 16% 15% 12% 13% 16% 13% 17% 14% 17% 16% 16% 19% 17% 15% 16% 16% 15% 13% 15% 16% 18% 16% 17% 14% 19% 15% 14% 14% 15% 13% 18% 14% 15% 15% 15% 16%) -> (9/5.9k) -> write(27%)
+ last tile: 14/8380/5977 (z14 51%) https://www.openstreetmap.org/#map=14/43.69171/4.13086
+0:40:12 WAR [mbtiles:encode] - {x=8387 y=5406 z=14} 980kb uncompressed
+0:40:19 WAR [mbtiles:encode] - {x=8413 y=5384 z=14} 1143kb uncompressed
+0:40:19 WAR [mbtiles:encode] - {x=8414 y=5385 z=14} 1044kb uncompressed
+0:40:20 WAR [mbtiles:encode] - {x=8414 y=5384 z=14} 1159kb uncompressed
+0:40:21 INF [mbtiles] - features: [ 1.4B 62% 2.6M/s ] 181G tiles: [ 178M 46k/s ] 66G
+ cpus: 10.7 gc: 0% heap: 21G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(13% 17% 11% 13% 14% 16% 15% 14% 18% 14% 16% 15% 18% 18% 16% 14% 12% 15% 12% 17% 21% 16% 10% 14% 15% 16% 16% 13% 13% 18% 15% 13% 17% 14% 13% 13% 15% 12% 16% 17% 17% 15% 12% 13% 15% 15% 12% 14% 16% 20% 18% 12% 11% 13% 19% 16% 11% 16% 13% 12% 16% 17% 16% 14%) -> (10/5.9k) -> write(17%)
+ last tile: 14/8419/5739 (z14 51%) https://www.openstreetmap.org/#map=14/47.35371/4.98779
+0:40:31 INF [mbtiles] - features: [ 1.5B 63% 2.5M/s ] 181G tiles: [ 179M 48k/s ] 67G
+ cpus: 10.9 gc: 0% heap: 16G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(18% 17% 14% 14% 15% 12% 14% 15% 15% 15% 17% 14% 18% 17% 16% 15% 11% 15% 16% 14% 14% 16% 14% 16% 14% 15% 15% 13% 15% 12% 15% 14% 18% 16% 17% 15% 16% 15% 13% 16% 13% 12% 17% 16% 17% 15% 15% 16% 13% 17% 15% 14% 16% 14% 14% 19% 14% 17% 15% 12% 13% 14% 17% 17%) -> (15/5.9k) -> write(18%)
+ last tile: 14/8459/5412 (z14 51%) https://www.openstreetmap.org/#map=14/51.99841/5.86670
+0:40:41 INF [mbtiles] - features: [ 1.5B 64% 2.5M/s ] 181G tiles: [ 179M 50k/s ] 67G
+ cpus: 11 gc: 0% heap: 14G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(14% 16% 18% 17% 16% 16% 17% 14% 15% 12% 17% 14% 15% 15% 16% 13% 14% 17% 16% 13% 16% 13% 16% 15% 13% 13% 12% 12% 16% 14% 18% 11% 17% 14% 15% 17% 16% 15% 15% 18% 15% 14% 14% 17% 16% 15% 21% 15% 19% 15% 14% 13% 19% 20% 13% 16% 16% 14% 15% 15% 15% 14% 17% 17%) -> (11/5.9k) -> write(19%)
+ last tile: 14/8500/5510 (z14 51%) https://www.openstreetmap.org/#map=14/50.65294/6.76758
+0:40:51 INF [mbtiles] - features: [ 1.5B 65% 2.5M/s ] 181G tiles: [ 180M 46k/s ] 68G
+ cpus: 11.1 gc: 0% heap: 13G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(16% 12% 16% 14% 12% 17% 14% 15% 16% 14% 16% 14% 16% 16% 14% 19% 14% 17% 17% 13% 16% 13% 19% 18% 15% 15% 16% 17% 16% 14% 16% 17% 15% 15% 17% 12% 18% 16% 14% 13% 15% 16% 17% 16% 14% 18% 14% 15% 14% 16% 15% 15% 19% 18% 14% 16% 17% 14% 16% 13% 13% 19% 15% 17%) -> (7/5.9k) -> write(18%)
+ last tile: 14/8538/5470 (z14 52%) https://www.openstreetmap.org/#map=14/51.20688/7.60254
+0:41:01 INF [mbtiles] - features: [ 1.5B 66% 2.4M/s ] 181G tiles: [ 180M 53k/s ] 69G
+ cpus: 11.4 gc: 0% heap: 16G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(17% 18% 15% 14% 17% 14% 22% 17% 16% 13% 14% 15% 19% 20% 12% 17% 12% 16% 14% 16% 16% 18% 19% 20% 20% 15% 18% 17% 13% 17% 16% 19% 19% 14% 12% 12% 18% 18% 14% 8% 16% 14% 16% 18% 14% 20% 18% 13% 15% 15% 16% 18% 13% 14% 16% 16% 17% 19% 16% 13% 15% 15% 12% 16%) -> (19/5.9k) -> write(20%)
+ last tile: 14/8581/4897 (z14 52%) https://www.openstreetmap.org/#map=14/58.43623/8.54736
+0:41:11 INF [mbtiles] - features: [ 1.6B 67% 2.4M/s ] 181G tiles: [ 181M 42k/s ] 69G
+ cpus: 11.3 gc: 0% heap: 18G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(16% 19% 16% 16% 20% 17% 18% 15% 19% 15% 16% 19% 20% 15% 15% 14% 18% 12% 19% 17% 14% 15% 15% 13% 12% 16% 14% 19% 15% 18% 13% 17% 15% 12% 17% 15% 14% 13% 18% 11% 17% 13% 14% 12% 17% 15% 16% 18% 19% 16% 15% 14% 15% 16% 16% 15% 14% 19% 17% 16% 18% 14% 14% 12%) -> (24/5.9k) -> write(17%)
+ last tile: 14/8615/4669 (z14 52%) https://www.openstreetmap.org/#map=14/60.96244/9.29443
+0:41:21 INF [mbtiles] - features: [ 1.6B 69% 2.4M/s ] 181G tiles: [ 181M 49k/s ] 70G
+ cpus: 11.4 gc: 0% heap: 20G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(16% 17% 15% 15% 13% 14% 15% 18% 14% 15% 18% 12% 14% 16% 16% 19% 18% 14% 17% 20% 12% 17% 18% 15% 15% 16% 15% 17% 19% 17% 18% 17% 17% 18% 16% 15% 14% 13% 17% 14% 17% 14% 16% 14% 17% 12% 12% 14% 18% 16% 16% 17% 17% 17% 15% 16% 12% 18% 14% 16% 16% 13% 17% 20%) -> (16/5.9k) -> write(20%)
+ last tile: 14/8655/5086 (z14 52%) https://www.openstreetmap.org/#map=14/56.19448/10.17334
+0:41:31 INF [mbtiles] - features: [ 1.6B 70% 2.4M/s ] 181G tiles: [ 182M 55k/s ] 71G
+ cpus: 11.6 gc: 0% heap: 24G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(17% 17% 14% 12% 10% 14% 19% 17% 16% 13% 16% 20% 15% 16% 18% 17% 15% 14% 19% 17% 16% 16% 13% 18% 15% 19% 13% 10% 18% 12% 16% 17% 15% 17% 17% 18% 16% 18% 14% 16% 15% 14% 15% 17% 16% 18% 19% 19% 14% 19% 18% 17% 13% 17% 18% 16% 15% 20% 16% 14% 20% 18% 17% 17%) -> (9/5.9k) -> write(21%)
+ last tile: 14/8700/5645 (z14 53%) https://www.openstreetmap.org/#map=14/48.73446/11.16211
+0:41:41 INF [mbtiles] - features: [ 1.6B 71% 2.4M/s ] 181G tiles: [ 182M 57k/s ] 71G
+ cpus: 11.7 gc: 0% heap: 12G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(15% 17% 15% 15% 18% 19% 18% 16% 16% 20% 19% 14% 14% 12% 20% 18% 18% 16% 20% 16% 15% 16% 13% 18% 17% 17% 17% 14% 14% 13% 14% 19% 15% 19% 19% 17% 11% 21% 18% 16% 19% 19% 17% 14% 18% 17% 13% 14% 18% 18% 15% 15% 15% 16% 15% 14% 16% 18% 18% 15% 16% 12% 17% 16%) -> (8/5.9k) -> write(22%)
+ last tile: 14/8747/5820 (z14 53%) https://www.openstreetmap.org/#map=14/46.13417/12.19482
+0:41:51 INF [mbtiles] - features: [ 1.7B 72% 2.4M/s ] 181G tiles: [ 183M 63k/s ] 72G
+ cpus: 12 gc: 0% heap: 18G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(19% 15% 17% 15% 15% 16% 15% 17% 17% 19% 15% 13% 18% 23% 19% 18% 18% 12% 16% 17% 18% 18% 14% 19% 16% 16% 18% 15% 17% 16% 14% 16% 20% 18% 19% 13% 15% 14% 16% 21% 22% 17% 19% 17% 16% 15% 16% 17% 17% 18% 17% 17% 16% 17% 14% 15% 11% 21% 21% 16% 14% 16% 16% 19%) -> (17/5.9k) -> write(24%)
+ last tile: 14/8800/5118 (z14 53%) https://www.openstreetmap.org/#map=14/55.80128/13.35938
+0:42:01 INF [mbtiles] - features: [ 1.7B 73% 2.4M/s ] 181G tiles: [ 183M 68k/s ] 73G
+ cpus: 12.7 gc: 0% heap: 11G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(17% 17% 18% 15% 19% 20% 21% 17% 20% 16% 19% 19% 17% 16% 18% 17% 18% 17% 18% 17% 14% 15% 17% 19% 17% 18% 17% 19% 18% 17% 17% 20% 20% 17% 18% 18% 21% 14% 19% 18% 17% 16% 16% 17% 17% 16% 19% 20% 15% 15% 23% 19% 18% 19% 19% 19% 15% 16% 23% 23% 22% 14% 16% 19%) -> (16/5.9k) -> write(26%)
+ last tile: 14/8859/5400 (z14 54%) https://www.openstreetmap.org/#map=14/52.16045/14.65576
+0:42:11 INF [mbtiles] - features: [ 1.7B 74% 2.4M/s ] 181G tiles: [ 184M 81k/s ] 74G
+ cpus: 13 gc: 0% heap: 21G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 22% 17% 16% 20% 19% 18% 20% 17% 21% 18% 17% 20% 17% 18% 22% 17% 18% 19% 20% 15% 16% 18% 19% 18% 20% 21% 20% 16% 19% 17% 20% 15% 18% 18% 15% 18% 20% 18% 18% 18% 15% 22% 19% 16% 19% 19% 16% 19% 19% 18% 16% 18% 17% 16% 16% 21% 22% 19% 17% 18% 20% 16%) -> (35/5.9k) -> write(30%)
+ last tile: 14/8931/3852 (z14 54%) https://www.openstreetmap.org/#map=14/68.56038/16.23779
+0:42:21 INF [mbtiles] - features: [ 1.7B 75% 2.4M/s ] 181G tiles: [ 185M 90k/s ] 75G
+ cpus: 12.3 gc: 0% heap: 25G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(19% 18% 15% 18% 16% 15% 15% 18% 16% 20% 17% 20% 20% 16% 17% 21% 20% 17% 14% 15% 16% 20% 19% 15% 17% 19% 17% 18% 19% 17% 16% 19% 17% 19% 18% 16% 21% 16% 16% 16% 17% 15% 18% 17% 17% 16% 18% 17% 17% 16% 15% 17% 19% 15% 15% 18% 17% 17% 17% 19% 13% 15% 18% 13%) -> (21/5.9k) -> write(31%)
+ last tile: 14/9013/4801 (z14 55%) https://www.openstreetmap.org/#map=14/59.52318/18.03955
+0:42:31 INF [mbtiles] - features: [ 1.8B 76% 2.4M/s ] 181G tiles: [ 186M 88k/s ] 76G
+ cpus: 12.1 gc: 0% heap: 13G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(17% 17% 15% 16% 18% 20% 18% 15% 17% 16% 19% 19% 20% 17% 19% 15% 16% 13% 13% 16% 17% 19% 16% 13% 14% 15% 11% 20% 18% 19% 17% 18% 19% 16% 18% 15% 14% 20% 18% 16% 20% 19% 14% 16% 16% 21% 16% 16% 12% 18% 15% 18% 13% 18% 21% 17% 17% 18% 16% 15% 19% 16% 18% 19%) -> (16/5.9k) -> write(30%)
+ last tile: 14/9095/5967 (z14 55%) https://www.openstreetmap.org/#map=14/43.85037/19.84131
+0:42:41 INF [mbtiles] - features: [ 1.8B 77% 2.4M/s ] 181G tiles: [ 187M 110k/s ] 77G
+ cpus: 12.9 gc: 0% heap: 22G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(21% 16% 21% 17% 17% 17% 20% 19% 15% 17% 17% 19% 14% 19% 18% 15% 15% 16% 18% 19% 18% 17% 15% 23% 17% 19% 17% 15% 18% 16% 22% 16% 18% 20% 15% 18% 20% 18% 20% 16% 25% 23% 20% 14% 18% 17% 12% 20% 13% 18% 16% 17% 20% 16% 21% 19% 20% 19% 18% 19% 19% 17% 17% 20%) -> (25/5.9k) -> write(37%)
+ last tile: 14/9195/1047 (z14 56%) https://www.openstreetmap.org/#map=14/82.61158/22.03857
+0:42:51 INF [mbtiles] - features: [ 1.8B 78% 2.3M/s ] 181G tiles: [ 188M 128k/s ] 78G
+ cpus: 14.1 gc: 0% heap: 21G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(21% 17% 21% 21% 17% 21% 17% 21% 22% 14% 23% 21% 19% 19% 20% 26% 21% 19% 20% 19% 16% 18% 16% 20% 19% 21% 19% 20% 18% 22% 19% 14% 21% 20% 23% 18% 22% 19% 20% 19% 18% 23% 19% 16% 22% 19% 23% 22% 23% 21% 18% 17% 19% 17% 20% 18% 17% 20% 18% 20% 19% 19% 25% 20%) -> (22/5.9k) -> write(44%)
+ last tile: 14/9310/4427 (z14 56%) https://www.openstreetmap.org/#map=14/63.44069/24.56543
+0:43:01 INF [mbtiles] - features: [ 1.8B 79% 2.3M/s ] 181G tiles: [ 190M 146k/s ] 79G
+ cpus: 14 gc: 0% heap: 19G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(19% 21% 19% 24% 18% 16% 22% 18% 20% 19% 22% 18% 20% 23% 21% 22% 21% 18% 20% 21% 17% 22% 19% 16% 24% 23% 18% 21% 23% 19% 19% 17% 20% 19% 17% 19% 22% 18% 16% 17% 21% 22% 18% 23% 19% 20% 21% 17% 16% 20% 19% 17% 19% 20% 18% 17% 16% 21% 22% 19% 20% 19% 19% 19%) -> (24/5.9k) -> write(49%)
+ last tile: 14/9439/6005 (z14 57%) https://www.openstreetmap.org/#map=14/43.24520/27.39990
+0:43:11 INF [mbtiles] - features: [ 1.8B 80% 2.4M/s ] 181G tiles: [ 191M 115k/s ] 80G
+ cpus: 13.1 gc: 0% heap: 26G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(20% 17% 20% 20% 16% 19% 18% 20% 16% 19% 23% 23% 19% 21% 15% 21% 21% 19% 19% 17% 16% 15% 20% 17% 17% 21% 19% 20% 21% 21% 18% 19% 18% 14% 15% 14% 18% 20% 13% 13% 24% 18% 18% 15% 20% 17% 15% 20% 22% 18% 17% 17% 20% 15% 15% 16% 21% 19% 23% 15% 21% 15% 16% 17%) -> (23/5.9k) -> write(39%)
+ last tile: 14/9540/4649 (z14 58%) https://www.openstreetmap.org/#map=14/61.17503/29.61914
+0:43:21 INF [mbtiles] - features: [ 1.9B 81% 2.5M/s ] 181G tiles: [ 192M 90k/s ] 81G
+ cpus: 12.2 gc: 0% heap: 14G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(15% 18% 15% 20% 15% 18% 17% 18% 20% 15% 19% 17% 17% 17% 17% 16% 15% 18% 18% 18% 14% 21% 15% 15% 18% 13% 18% 18% 14% 16% 20% 21% 21% 10% 12% 15% 16% 21% 13% 18% 18% 18% 16% 20% 21% 15% 16% 20% 20% 17% 20% 22% 19% 16% 15% 15% 17% 16% 17% 15% 15% 13% 16% 16%) -> (25/5.9k) -> write(32%)
+ last tile: 14/9618/6753 (z14 58%) https://www.openstreetmap.org/#map=14/30.12612/31.33301
+0:43:26 WAR [mbtiles:encode] - {x=9674 y=8175 z=14} 1014kb uncompressed
+0:43:31 INF [mbtiles] - features: [ 1.9B 82% 2.5M/s ] 181G tiles: [ 193M 131k/s ] 81G
+ cpus: 12.7 gc: 0% heap: 18G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(18% 19% 16% 16% 20% 21% 15% 16% 19% 18% 19% 17% 13% 17% 18% 18% 21% 17% 18% 17% 17% 21% 18% 17% 16% 18% 16% 21% 22% 18% 19% 17% 17% 18% 17% 17% 15% 21% 16% 22% 19% 17% 18% 15% 15% 16% 15% 18% 16% 15% 18% 16% 17% 15% 17% 23% 18% 21% 14% 19% 14% 18% 18% 15%) -> (31/5.9k) -> write(42%)
+ last tile: 14/9732/4839 (z14 59%) https://www.openstreetmap.org/#map=14/59.09703/33.83789
+0:43:41 INF [mbtiles] - features: [ 1.9B 83% 2.4M/s ] 181G tiles: [ 195M 140k/s ] 82G
+ cpus: 12.8 gc: 0% heap: 23G/118G direct: 4M postGC: 10G
+ read(99%) -> (0/5.9k) -> encode(18% 19% 19% 17% 18% 22% 17% 15% 15% 14% 17% 19% 17% 19% 21% 19% 14% 23% 13% 17% 16% 20% 17% 22% 18% 18% 21% 17% 18% 16% 15% 20% 20% 15% 19% 17% 20% 17% 19% 13% 18% 15% 18% 18% 14% 22% 22% 14% 18% 18% 16% 15% 19% 20% 20% 19% 17% 20% 15% 17% 18% 16% 19% 20%) -> (29/5.9k) -> write(44%)
+ last tile: 14/9853/6472 (z14 60%) https://www.openstreetmap.org/#map=14/35.31737/36.49658
+0:43:50 WAR [mbtiles:encode] - {x=9977 y=8504 z=14} 992kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9977 y=8503 z=14} 1239kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9977 y=8501 z=14} 1278kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9977 y=8502 z=14} 1596kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9978 y=8505 z=14} 1090kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9978 y=8503 z=14} 1071kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9978 y=8501 z=14} 1324kb uncompressed
+0:43:50 WAR [mbtiles:encode] - {x=9978 y=8502 z=14} 1437kb uncompressed
+0:43:51 INF [mbtiles] - features: [ 1.9B 84% 2.4M/s ] 181G tiles: [ 196M 161k/s ] 83G
+ cpus: 12.7 gc: 0% heap: 26G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(16% 22% 19% 19% 20% 18% 15% 15% 19% 14% 23% 22% 18% 17% 21% 17% 16% 23% 18% 19% 17% 16% 18% 20% 14% 13% 17% 17% 17% 16% 17% 18% 19% 17% 15% 18% 16% 16% 18% 16% 15% 19% 16% 21% 15% 18% 17% 14% 18% 22% 19% 19% 14% 17% 20% 17% 17% 18% 15% 15% 18% 13% 21% 16%) -> (21/5.9k) -> write(48%)
+ last tile: 14/9992/5204 (z14 60%) https://www.openstreetmap.org/#map=14/54.72462/39.55078
+0:43:57 WAR [mbtiles:encode] - {x=10153 y=7662 z=14} 1025kb uncompressed
+0:44:01 INF [mbtiles] - features: [ 2B 85% 2.3M/s ] 181G tiles: [ 199M 280k/s ] 84G
+ cpus: 14.7 gc: 0% heap: 21G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(19% 18% 19% 21% 17% 21% 22% 17% 24% 24% 16% 20% 20% 21% 20% 20% 18% 20% 21% 20% 20% 20% 21% 23% 22% 21% 18% 19% 16% 25% 20% 20% 22% 16% 18% 24% 18% 20% 21% 20% 20% 23% 23% 19% 18% 21% 19% 20% 19% 20% 18% 21% 20% 20% 16% 20% 21% 23% 19% 22% 21% 19% 24% 23%) -> (34/5.9k) -> write(78%)
+ last tile: 14/10238/7525 (z14 62%) https://www.openstreetmap.org/#map=14/14.49851/44.95605
+0:44:11 INF [mbtiles] - features: [ 2B 86% 2.4M/s ] 181G tiles: [ 202M 306k/s ] 86G
+ cpus: 14.2 gc: 0% heap: 16G/118G direct: 4M postGC: 10G
+ read(100%) -> (0/5.9k) -> encode(21% 19% 20% 16% 19% 22% 18% 21% 20% 21% 19% 19% 14% 15% 18% 19% 19% 18% 21% 20% 19% 20% 22% 18% 20% 19% 21% 21% 21% 19% 20% 15% 21% 18% 21% 19% 22% 23% 19% 20% 17% 16% 18% 21% 19% 19% 17% 18% 18% 20% 17% 18% 23% 20% 23% 18% 19% 19% 15% 18% 20% 17% 22% 18%) -> (149/5.9k) -> write(85%)
+ last tile: 14/10511/5000 (z14 64%) https://www.openstreetmap.org/#map=14/57.23150/50.95459
+0:44:21 INF [mbtiles] - features: [ 2B 87% 2.2M/s ] 181G tiles: [ 206M 388k/s ] 87G
+ cpus: 13.5 gc: 1% heap: 21G/118G direct: 4M postGC: 11G
+ read(95%) -> (0/5.9k) -> encode(16% 22% 17% 11% 17% 21% 17% 17% 18% 15% 18% 17% 19% 13% 18% 21% 15% 17% 18% 18% 17% 16% 19% 22% 19% 18% 19% 19% 22% 16% 18% 14% 14% 15% 17% 17% 19% 17% 16% 20% 19% 19% 16% 19% 19% 16% 15% 20% 16% 17% 14% 20% 19% 14% 17% 15% 19% 18% 17% 17% 16% 19% 18% 17%) -> (1.8k/5.9k) -> write(99%)
+ last tile: 14/10874/1604 (z14 66%) https://www.openstreetmap.org/#map=14/80.85887/58.93066
+0:44:31 INF [mbtiles] - features: [ 2B 88% 2.2M/s ] 181G tiles: [ 210M 388k/s ] 88G
+ cpus: 15.3 gc: 5% heap: 23G/118G direct: 4M postGC: 17G
+ read(95%) -> (0/5.9k) -> encode(17% 17% 19% 16% 17% 20% 19% 15% 21% 18% 20% 20% 17% 14% 18% 14% 18% 16% 17% 19% 20% 20% 19% 21% 15% 19% 19% 13% 14% 19% 15% 16% 18% 17% 17% 19% 16% 17% 17% 17% 17% 16% 16% 23% 16% 20% 20% 16% 21% 19% 22% 19% 17% 18% 18% 21% 17% 16% 18% 16% 20% 21% 17% 19%) -> (4.7k/5.9k) -> write(95%)
+ last tile: 14/11233/1327 (z14 68%) https://www.openstreetmap.org/#map=14/81.77679/66.81885
+0:44:41 INF [mbtiles] - features: [ 2.1B 89% 2.3M/s ] 181G tiles: [ 214M 382k/s ] 89G
+ cpus: 15.4 gc: 4% heap: 28G/118G direct: 4M postGC: 21G
+ read(96%) -> (0/5.9k) -> encode(16% 21% 16% 19% 16% 16% 18% 19% 22% 19% 19% 18% 18% 14% 18% 17% 20% 17% 18% 22% 15% 19% 19% 15% 18% 15% 15% 17% 18% 18% 24% 18% 21% 21% 20% 15% 20% 18% 17% 22% 20% 17% 23% 20% 17% 20% 22% 19% 17% 19% 18% 17% 14% 21% 17% 21% 21% 18% 17% 17% 23% 16% 20% 19%) -> (4.8k/5.9k) -> write(96%)
+ last tile: 14/11578/2245 (z14 70%) https://www.openstreetmap.org/#map=14/78.32720/74.39941
+0:44:47 WAR [mbtiles:encode] - {x=12074 y=6878 z=14} 985kb uncompressed
+0:44:51 INF [mbtiles] - features: [ 2.1B 90% 2.4M/s ] 181G tiles: [ 218M 366k/s ] 90G
+ cpus: 14.6 gc: 4% heap: 28G/118G direct: 4M postGC: 26G
+ read(96%) -> (0/5.9k) -> encode(17% 18% 17% 17% 16% 20% 16% 19% 16% 17% 18% 17% 16% 17% 19% 15% 20% 15% 15% 20% 20% 20% 16% 17% 13% 13% 18% 19% 20% 19% 16% 19% 19% 20% 19% 15% 16% 15% 19% 15% 19% 20% 19% 14% 18% 16% 20% 17% 18% 16% 14% 16% 20% 16% 13% 17% 22% 17% 18% 15% 16% 20% 17% 17%) -> (4.2k/5.9k) -> write(96%)
+ last tile: 14/11923/6787 (z14 72%) https://www.openstreetmap.org/#map=14/29.47786/81.97998
+0:44:54 WAR [mbtiles:encode] - {x=12306 y=7080 z=14} 998kb uncompressed
+0:44:57 WAR [mbtiles:encode] - {x=12385 y=7204 z=14} 1047kb uncompressed
+0:44:57 WAR [mbtiles:encode] - {x=12386 y=7204 z=14} 1436kb uncompressed
+0:45:01 INF [mbtiles] - features: [ 2.1B 91% 2.4M/s ] 181G tiles: [ 221M 376k/s ] 91G
+ cpus: 13.5 gc: 4% heap: 8.3G/118G direct: 4M postGC: 6G
+ read(94%) -> (0/5.9k) -> encode(14% 16% 12% 16% 11% 16% 14% 18% 18% 16% 15% 13% 16% 16% 16% 18% 14% 17% 15% 13% 15% 12% 14% 16% 16% 15% 15% 13% 15% 17% 15% 18% 14% 14% 15% 17% 18% 14% 13% 15% 11% 15% 17% 15% 14% 16% 16% 16% 16% 14% 16% 15% 17% 14% 16% 16% 15% 14% 16% 12% 13% 14% 13% 14%) -> (4.6k/5.9k) -> write(96%)
+ last tile: 14/12291/7883 (z14 75%) https://www.openstreetmap.org/#map=14/6.77372/90.06592
+0:45:11 INF [mbtiles] - features: [ 2.1B 92% 2.2M/s ] 181G tiles: [ 225M 389k/s ] 92G
+ cpus: 17 gc: 4% heap: 21G/118G direct: 4M postGC: 10G
+ read(96%) -> (0/5.9k) -> encode(21% 26% 18% 21% 18% 18% 17% 19% 22% 23% 22% 22% 21% 21% 23% 22% 25% 18% 23% 19% 20% 19% 18% 21% 21% 23% 25% 24% 21% 17% 21% 23% 25% 20% 21% 22% 16% 22% 22% 22% 17% 21% 21% 20% 21% 21% 22% 21% 19% 27% 17% 23% 22% 22% 17% 20% 21% 17% 21% 22% 22% 18% 24% 25%) -> (4k/5.9k) -> write(96%)
+ last tile: 14/12713/10499 (z14 77%) https://www.openstreetmap.org/#map=14/-45.13556/99.33838
+0:45:13 WAR [mbtiles:encode] - {x=13052 y=8472 z=14} 1259kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13055 y=8478 z=14} 1009kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13055 y=8475 z=14} 978kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13055 y=8474 z=14} 1038kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13055 y=8473 z=14} 1101kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13057 y=8471 z=14} 1019kb uncompressed
+0:45:14 WAR [mbtiles:encode] - {x=13058 y=8475 z=14} 1043kb uncompressed
+0:45:16 WAR [mbtiles:encode] - {x=13088 y=8508 z=14} 1130kb uncompressed
+0:45:21 INF [mbtiles] - features: [ 2.2B 93% 2.5M/s ] 181G tiles: [ 229M 350k/s ] 93G
+ cpus: 14.3 gc: 7% heap: 15G/118G direct: 4M postGC: 14G
+ read(93%) -> (0/5.9k) -> encode(16% 11% 16% 14% 17% 16% 13% 15% 14% 19% 19% 21% 17% 14% 14% 15% 15% 14% 17% 15% 14% 18% 16% 13% 17% 16% 13% 14% 15% 16% 12% 13% 16% 13% 16% 15% 12% 19% 14% 17% 13% 14% 16% 17% 15% 17% 16% 19% 15% 15% 11% 16% 16% 17% 15% 14% 14% 14% 17% 15% 16% 12% 14% 13%) -> (1.8k/5.9k) -> write(93%)
+ last tile: 14/13096/7025 (z14 79%) https://www.openstreetmap.org/#map=14/24.82662/107.75391
+0:45:26 WAR [mbtiles:encode] - {x=13322 y=8523 z=14} 1137kb uncompressed
+0:45:26 WAR [mbtiles:encode] - {x=13323 y=8522 z=14} 1040kb uncompressed
+0:45:31 INF [mbtiles] - features: [ 2.2B 94% 2.5M/s ] 181G tiles: [ 232M 342k/s ] 95G
+ cpus: 13.6 gc: 1% heap: 31G/118G direct: 4M postGC: 12G
+ read(99%) -> (0/5.9k) -> encode(15% 15% 20% 19% 16% 17% 16% 18% 21% 16% 16% 16% 19% 18% 18% 18% 23% 17% 17% 16% 18% 16% 17% 17% 20% 18% 17% 19% 17% 17% 19% 18% 17% 20% 17% 22% 17% 16% 16% 19% 17% 20% 19% 18% 18% 19% 18% 15% 19% 19% 19% 20% 15% 16% 23% 20% 17% 17% 18% 17% 18% 17% 21% 17%) -> (47/5.9k) -> write(91%)
+ last tile: 14/13452/2852 (z14 82%) https://www.openstreetmap.org/#map=14/75.29774/115.57617
+0:45:40 WAR [mbtiles:encode] - {x=13682 y=7058 z=14} 1155kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13682 y=7057 z=14} 1230kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13683 y=7057 z=14} 1060kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13683 y=7059 z=14} 1395kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13683 y=7058 z=14} 1659kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13684 y=7059 z=14} 1347kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13684 y=7057 z=14} 1453kb uncompressed
+0:45:40 WAR [mbtiles:encode] - {x=13684 y=7058 z=14} 1628kb uncompressed
+0:45:41 INF [mbtiles] - features: [ 2.2B 95% 2.4M/s ] 181G tiles: [ 235M 238k/s ] 96G
+ cpus: 13.4 gc: 0% heap: 23G/118G direct: 4M postGC: 12G
+ read(98%) -> (0/5.9k) -> encode(17% 17% 17% 19% 17% 13% 20% 19% 22% 18% 15% 20% 17% 20% 20% 18% 16% 21% 17% 16% 19% 19% 20% 14% 19% 16% 21% 18% 18% 21% 16% 18% 20% 16% 17% 20% 16% 15% 16% 19% 22% 18% 14% 19% 21% 19% 17% 21% 20% 22% 17% 18% 15% 17% 20% 19% 19% 22% 19% 19% 17% 19% 21% 20%) -> (18/5.9k) -> write(66%)
+ last tile: 14/13695/7529 (z14 83%) https://www.openstreetmap.org/#map=14/14.41340/120.91553
+0:45:42 WAR [mbtiles:encode] - {x=13702 y=7515 z=14} 1208kb uncompressed
+0:45:42 WAR [mbtiles:encode] - {x=13703 y=7515 z=14} 1017kb uncompressed
+0:45:51 INF [mbtiles] - features: [ 2.2B 96% 2.4M/s ] 181G tiles: [ 238M 314k/s ] 97G
+ cpus: 13.1 gc: 0% heap: 25G/118G direct: 4M postGC: 13G
+ read(100%) -> (0/5.9k) -> encode(17% 17% 17% 19% 16% 18% 18% 15% 18% 19% 16% 19% 14% 23% 18% 19% 15% 16% 21% 19% 19% 15% 17% 18% 15% 17% 16% 20% 15% 16% 20% 20% 20% 17% 18% 20% 19% 22% 19% 18% 17% 17% 17% 15% 19% 16% 14% 19% 17% 17% 19% 19% 19% 18% 20% 16% 19% 15% 15% 18% 20% 16% 13% 17%) -> (144/5.9k) -> write(82%)
+ last tile: 14/14013/9171 (z14 85%) https://www.openstreetmap.org/#map=14/-21.02298/127.90283
+0:45:59 WAR [mbtiles:encode] - {x=14369 y=6489 z=14} 1003kb uncompressed
+0:45:59 WAR [mbtiles:encode] - {x=14369 y=6488 z=14} 1186kb uncompressed
+0:46:00 WAR [mbtiles:encode] - {x=14370 y=6487 z=14} 991kb uncompressed
+0:46:00 WAR [mbtiles:encode] - {x=14370 y=6489 z=14} 1182kb uncompressed
+0:46:01 INF [mbtiles] - features: [ 2.3B 97% 2.3M/s ] 181G tiles: [ 242M 396k/s ] 98G
+ cpus: 13.8 gc: 1% heap: 32G/118G direct: 4M postGC: 13G
+ read(99%) -> (0/5.9k) -> encode(17% 17% 16% 17% 16% 19% 17% 16% 15% 17% 21% 19% 18% 17% 18% 21% 15% 19% 15% 18% 19% 22% 15% 20% 18% 18% 16% 17% 17% 17% 19% 24% 16% 18% 17% 17% 21% 17% 19% 18% 16% 18% 18% 20% 15% 22% 17% 19% 16% 18% 18% 17% 18% 19% 20% 18% 21% 19% 20% 21% 18% 20% 21% 18%) -> (411/5.9k) -> write(99%)
+ last tile: 14/14402/5359 (z14 87%) https://www.openstreetmap.org/#map=14/52.70968/136.45020
+0:46:07 WAR [mbtiles:encode] - {x=14552 y=6450 z=14} 992kb uncompressed
+0:46:07 WAR [mbtiles:encode] - {x=14553 y=6450 z=14} 1383kb uncompressed
+0:46:11 INF [mbtiles] - features: [ 2.3B 98% 2.4M/s ] 181G tiles: [ 244M 248k/s ] 99G
+ cpus: 13.1 gc: 0% heap: 17G/118G direct: 4M postGC: 12G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 21% 15% 18% 19% 15% 22% 16% 20% 16% 18% 23% 16% 19% 18% 18% 16% 16% 17% 18% 16% 20% 17% 17% 17% 16% 18% 17% 16% 18% 20% 15% 18% 16% 19% 19% 16% 20% 15% 19% 18% 17% 18% 16% 17% 16% 19% 19% 17% 18% 16% 20% 15% 18% 15% 18% 16% 18% 21% 20% 21% 17% 20%) -> (38/5.9k) -> write(67%)
+ last tile: 14/14638/2879 (z14 89%) https://www.openstreetmap.org/#map=14/75.14641/141.63574
+0:46:21 INF [mbtiles] - features: [ 2.3B 99% 2.2M/s ] 181G tiles: [ 248M 396k/s ] 100G
+ cpus: 13.6 gc: 3% heap: 16G/118G direct: 4M postGC: 15G
+ read(95%) -> (0/5.9k) -> encode(15% 16% 15% 18% 15% 15% 18% 15% 19% 15% 14% 18% 17% 16% 15% 16% 16% 16% 16% 18% 17% 18% 17% 18% 19% 18% 12% 14% 14% 17% 16% 16% 17% 17% 16% 19% 17% 14% 17% 14% 15% 17% 20% 19% 15% 15% 20% 16% 16% 19% 19% 14% 15% 20% 17% 15% 20% 14% 15% 15% 18% 16% 18% 17%) -> (4.7k/5.9k) -> write(97%)
+ last tile: 14/14998/3047 (z14 91%) https://www.openstreetmap.org/#map=14/74.17008/149.54590
+0:46:31 INF [mbtiles] - features: [ 2.3B 99% 702k/s ] 181G tiles: [ 252M 427k/s ] 100G
+ cpus: 2.9 gc: 0% heap: 25G/118G direct: 4M postGC: 15G
+ read(31%) -> (0/5.9k) -> encode( 2% 2% 2% 2% 2% 2% 2% 2% 3% 2% 2% 2% 3% 2% 2% 4% 2% 2% 2% 2% 3% 2% 2% 3% 3% 2% 3% 4% 2% 3% 3% 2% 3% 2% 3% 2% 3% 3% 2% 2% 2% 2% 3% 2% 3% 2% 3% 2% 3% 2% 2% 3% 3% 2% 3% 2% 3% 2% 3% 3% 2% 2% 3% 3%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/15362/9071 (z14 93%) https://www.openstreetmap.org/#map=14/-18.95825/157.54395
+0:46:41 INF [mbtiles] - features: [ 2.3B 100% 662k/s ] 181G tiles: [ 257M 429k/s ] 101G
+ cpus: 3.4 gc: 1% heap: 22G/118G direct: 4M postGC: 16G
+ read(28%) -> (0/5.9k) -> encode( 3% 3% 4% 2% 3% 4% 1% 3% 3% 3% 2% 3% 3% 5% 4% 2% 3% 3% 3% 2% 3% 2% 3% 3% 3% 4% 3% 2% 2% 3% 2% 3% 2% 3% 2% 3% 3% 3% 2% 3% 3% 3% 3% 2% 2% 2% 2% 2% 3% 3% 2% 3% 3% 2% 3% 2% 3% 5% 2% 2% 2% 1% 2% 4%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/15694/8115 (z14 95%) https://www.openstreetmap.org/#map=14/1.69165/164.83887
+0:46:51 INF [mbtiles] - features: [ 2.3B 100% 881k/s ] 181G tiles: [ 261M 431k/s ] 102G
+ cpus: 4.3 gc: 1% heap: 28G/118G direct: 4M postGC: 16G
+ read(35%) -> (0/5.9k) -> encode( 4% 3% 4% 3% 4% 6% 3% 4% 4% 5% 5% 6% 5% 3% 3% 3% 5% 2% 5% 4% 4% 4% 6% 2% 3% 3% 3% 4% 4% 4% 6% 4% 3% 2% 4% 4% 4% 3% 3% 6% 4% 2% 4% 4% 6% 4% 3% 5% 4% 2% 3% 6% 5% 6% 4% 3% 4% 4% 4% 5% 5% 3% 4% 3%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/15993/14799 (z14 97%) https://www.openstreetmap.org/#map=14/-80.92496/171.40869
+0:47:01 INF [mbtiles] - features: [ 2.3B 100% 54k/s ] 181G tiles: [ 265M 438k/s ] 102G
+ cpus: 1.1 gc: 0% heap: 28G/118G direct: 3.9M postGC: 16G
+ read( -%) -> (0/5.9k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (1.5k/5.9k) -> write(100%)
+ last tile: 14/16282/5928 (z14 99%) https://www.openstreetmap.org/#map=14/44.46515/177.75879
+0:47:05 INF [mbtiles:write] - Finished z14 in 12m25s cpu:2h19m3s gc:10s avg:11.2
+0:47:05 INF [mbtiles] - features: [ 2.3B 100% 0/s ] 181G tiles: [ 267M 443k/s ] 103G
+ cpus: 1 gc: 0% heap: 29G/118G direct: 3.9M postGC: 16G
+ read( -%) -> (0/5.9k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/5.9k) -> write( -%)
+ last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
+0:47:05 DEB [mbtiles] - Tile stats:
+0:47:05 DEB [mbtiles] - z0 avg:67k max:67k
+0:47:05 DEB [mbtiles] - z1 avg:159k max:180k
+0:47:05 DEB [mbtiles] - z2 avg:297k max:537k
+0:47:05 DEB [mbtiles] - z3 avg:104k max:498k
+0:47:05 DEB [mbtiles] - z4 avg:42k max:501k
+0:47:05 DEB [mbtiles] - z5 avg:23k max:524k
+0:47:05 DEB [mbtiles] - z6 avg:12k max:341k
+0:47:05 DEB [mbtiles] - z7 avg:9.9k max:408k
+0:47:05 DEB [mbtiles] - z8 avg:5.8k max:341k
+0:47:05 DEB [mbtiles] - z9 avg:5.6k max:461k
+0:47:05 DEB [mbtiles] - z10 avg:2.5k max:319k
+0:47:05 DEB [mbtiles] - z11 avg:1.2k max:182k
+0:47:05 DEB [mbtiles] - z12 avg:716 max:205k
+0:47:05 DEB [mbtiles] - z13 avg:380 max:265k
+0:47:05 DEB [mbtiles] - z14 avg:354 max:1.7M
+0:47:05 DEB [mbtiles] - all avg:402 max:0
+0:47:05 DEB [mbtiles] - # features: 2,378,668,931
+0:47:05 DEB [mbtiles] - # tiles: 267,493,185
+0:47:05 INF [mbtiles] - Finished in 19m26s cpu:4h40m9s gc:16s avg:14.4
+0:47:05 INF [mbtiles] - read 1x(87% 16m51s sys:1m29s wait:1m59s done:13s)
+0:47:05 INF [mbtiles] - encode 64x(19% 3m45s sys:1s wait:15m23s done:12s)
+0:47:05 INF [mbtiles] - write 1x(61% 11m48s sys:1m14s wait:7m25s)
+0:47:05 INF - Finished in 47m5s cpu:24h36m22s gc:2m38s avg:31.4
+0:47:05 INF - FINISHED!
+0:47:05 INF -
+0:47:05 INF - ----------------------------------------
+0:47:05 INF - overall 47m5s cpu:24h36m22s gc:2m38s avg:31.4
+0:47:05 INF - lake_centerlines 2s cpu:5s avg:3
+0:47:05 INF - read 1x(84% 1s)
+0:47:05 INF - process 64x(1% 0s wait:2s)
+0:47:05 INF - write 1x(0% 0s wait:2s)
+0:47:05 INF - water_polygons 52s cpu:18m avg:20.7
+0:47:05 INF - read 1x(32% 17s sys:1s wait:30s done:4s)
+0:47:05 INF - process 64x(29% 15s wait:36s)
+0:47:05 INF - write 1x(83% 43s sys:5s wait:8s)
+0:47:05 INF - natural_earth 11s cpu:28s avg:2.6
+0:47:05 INF - read 1x(93% 10s sys:2s)
+0:47:05 INF - process 64x(2% 0.2s wait:10s)
+0:47:05 INF - write 1x(0% 0s wait:10s)
+0:47:05 INF - osm_pass1 2m33s cpu:1h37m43s gc:28s avg:38.4
+0:47:05 INF - read 1x(28% 42s sys:34s wait:1m10s done:11s)
+0:47:05 INF - process 63x(42% 1m4s sys:7s block:59s done:1s)
+0:47:05 INF - osm_pass2 20m11s cpu:16h55m20s gc:1m39s avg:50.3
+0:47:05 INF - read 1x(3% 41s sys:32s wait:17m43s done:1m4s)
+0:47:05 INF - process 63x(68% 13m38s block:1m12s wait:3m23s)
+0:47:05 INF - write 1x(71% 14m18s sys:1m34s wait:4m25s)
+0:47:05 INF - boundaries 18s cpu:23s avg:1.3
+0:47:05 INF - sort 3m27s cpu:1h3m59s gc:13s avg:18.6
+0:47:05 INF - worker 64x(17% 35s sys:3s wait:2m17s done:19s)
+0:47:05 INF - mbtiles 19m26s cpu:4h40m9s gc:16s avg:14.4
+0:47:05 INF - read 1x(87% 16m51s sys:1m29s wait:1m59s done:13s)
+0:47:05 INF - encode 64x(19% 3m45s sys:1s wait:15m23s done:12s)
+0:47:05 INF - write 1x(61% 11m48s sys:1m14s wait:7m25s)
+0:47:05 INF - ----------------------------------------
+0:47:05 INF - features 181GB
+0:47:05 INF - mbtiles 103GB
diff --git a/planet-logs/v0.4.0-planet-c6gd-128gb.txt b/planet-logs/v0.4.0-planet-c6gd-128gb.txt
new file mode 100644
index 00000000..e75344fe
--- /dev/null
+++ b/planet-logs/v0.4.0-planet-c6gd-128gb.txt
@@ -0,0 +1,1582 @@
+
+0:00:00 DEB - argument: config=null (path to config file)
+0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
+0:00:00 INF - Using in-memory stats
+0:00:00 INF [overall] -
+0:00:00 INF [overall] - Starting...
+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=ram (default storage type for temporary data, one of [ram, mmap, direct])
+0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
+0:00:00 DEB - argument: threads=64 (num threads)
+0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
+0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
+0:00:00 DEB - argument: maxzoom=14 (maximum zoom level (limit 14))
+0:00:00 DEB - argument: defer_mbtiles_index_creation=false (skip adding index to mbtiles file)
+0:00:00 DEB - argument: optimize_db=false (optimize mbtiles after writing)
+0:00:00 DEB - argument: emit_tiles_in_order=true (emit tiles in index order)
+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: 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=ram (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=ram (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=100 (Size of file chunks to download in parallel in megabytes)
+0:00:00 DEB - argument: download_threads=1 (Number of parallel threads to use when downloading each file)
+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=false (Read OSM blocks from disk in worker threads)
+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=false (download sources)
+0:00:00 DEB - argument: temp_node_db=data/tmp/node.db (temp node db location)
+0:00:00 DEB - argument: temp_multipolygon_db=data/tmp/multipolygon.db (temp multipolygon db location)
+0:00:00 DEB - argument: temp_feature_db=data/tmp/feature.db (temp feature db location)
+0:00:00 DEB - argument: only_fetch_wikidata=false (fetch wikidata translations then quit)
+0:00:00 DEB - argument: fetch_wikidata=false (fetch wikidata translations then continue)
+0:00:00 DEB - argument: use_wikidata=true (use wikidata translations)
+0:00:00 DEB - argument: wikidata_cache=data/sources/wikidata_names.json (wikidata cache file)
+0:00:00 DEB - argument: lake_centerlines_path=data/sources/lake_centerline.shp.zip (lake_centerlines shapefile path)
+0:00:00 DEB - argument: free_lake_centerlines_after_read=false (delete lake_centerlines input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: water_polygons_path=data/sources/water-polygons-split-3857.zip (water_polygons shapefile path)
+0:00:00 DEB - argument: free_water_polygons_after_read=false (delete water_polygons input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: natural_earth_path=data/sources/natural_earth_vector.sqlite.zip (natural_earth sqlite db path)
+0:00:00 DEB - argument: free_natural_earth_after_read=false (delete natural_earth input file after reading to make space for output (reduces peak disk usage))
+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: mbtiles=data/output.mbtiles (mbtiles output file)
+0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
+0:00:00 DEB - argument: languages=am,ar,az,be,bg,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fi,fr,fy,ga,gd,he,hi,hr,hu,hy,id,is,it,ja,ja_kana,ja_rm,ja-Latn,ja-Hira,ka,kk,kn,ko,ko-Latn,ku,la,lb,lt,lv,mk,mt,ml,nl,no,oc,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,zh (languages to use)
+0:00:00 DEB - argument: only_layers= (Include only certain layers)
+0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
+0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
+0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
+0:00:00 DEB - argument: building_merge_z13=true (building layer: merge nearby buildings at z13)
+0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
+0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
+0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
+0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
+0:00:00 DEB - argument: mbtiles_name=OpenMapTiles ('name' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_attribution=© OpenMapTiles © OpenStreetMap contributors ('attribution' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_version=3.13.0 ('version' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_type=baselayer ('type' attribute for mbtiles metadata)
+0:00:00 DEB - argument: help=false (show arguments then exit)
+0:00:00 INF - Building BasemapProfile profile into data/output.mbtiles in these phases:
+0:00:00 INF - lake_centerlines: Process features in data/sources/lake_centerline.shp.zip
+0:00:00 INF - water_polygons: Process features in data/sources/water-polygons-split-3857.zip
+0:00:00 INF - natural_earth: Process features in data/sources/natural_earth_vector.sqlite.zip
+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 - sort: Sort rendered features by tile ID
+0:00:00 INF - mbtiles: Encode each tile and write to data/output.mbtiles
+0:00:03 INF - error loading /data/data/sources/wikidata_names.json: java.nio.file.NoSuchFileException: data/sources/wikidata_names.json
+0:00:03 DEB - ✓ 223G storage on /data (/dev/nvme1n1) requested for read phase disk, 1.8T available
+0:00:03 DEB - - 223G used for temporary feature storage
+0:00:03 DEB - ✓ 335G storage on /data (/dev/nvme1n1) requested for write phase disk, 1.8T available
+0:00:03 DEB - - 223G used for temporary feature storage
+0:00:03 DEB - - 111G used for mbtiles output
+0:00:03 DEB - ✓ 106G JVM heap requested for read phase, 118G available
+0:00:03 DEB - - 76G used for array node location cache (switch to sparsearray to reduce size)
+0:00:03 DEB - - 10G used for multipolygon way geometries
+0:00:03 DEB - - 20G used for temporary profile storage
+0:00:03 DEB - ✓ 0 temporary files and 14G of free memory for OS to cache them
+0:00:03 INF - Using merge sort feature map, chunk size=922mb workers=64
+0:00:04 INF - dataFileCache open start
+0:00:04 INF [lake_centerlines] -
+0:00:04 INF [lake_centerlines] - Starting...
+0:00:06 INF [lake_centerlines] - read: [ 51k 100% 30k/s ] write: [ 0 0/s ] 0
+ cpus: 2.6 gc: 2% heap: 384M/118G direct: 73k postGC: 141M
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:00:06 INF [lake_centerlines] - Finished in 2s cpu:5s avg:2.6
+0:00:06 INF [lake_centerlines] - read 1x(84% 1s)
+0:00:06 INF [lake_centerlines] - process 64x(1% 0s wait:2s)
+0:00:06 INF [lake_centerlines] - write 1x(0% 0s wait:2s)
+0:00:06 INF [water_polygons] -
+0:00:06 INF [water_polygons] - Starting...
+0:00:16 INF [water_polygons] - read: [ 3.4k 24% 348/s ] write: [ 20M 2M/s ] 1.1G
+ cpus: 55 gc: 6% heap: 7.3G/118G direct: 54M postGC: 3G
+ read(88%) -> (28/1k) -> process(79% 82% 83% 87% 79% 81% 73% 71% 64% 67% 73% 79% 85% 69% 82% 81% 62% 76% 64% 85% 80% 75% 75% 77% 68% 70% 80% 72% 70% 65% 68% 62% 82% 74% 68% 73% 83% 65% 80% 83% 86% 70% 72% 71% 77% 83% 78% 83% 68% 65% 73% 76% 83% 70% 74% 75% 71% 68% 73% 76% 68% 83% 71% 65%) -> (74k/115k) -> write(45%)
+0:00:26 INF [water_polygons] - read: [ 7.2k 50% 379/s ] write: [ 57M 3.7M/s ] 3G
+ cpus: 41 gc: 3% heap: 18G/118G direct: 54M postGC: 2.5G
+ read(58%) -> (1k/1k) -> process(66% 86% 61% 61% 84% 45% 62% 56% 46% 92% 56% 57% 53% 57% 54% 58% 49% 62% 57% 81% 54% 56% 45% 61% 54% 58% 45% 54% 53% 92% 56% 65% 56% 60% 50% 84% 89% 83% 77% 54% 59% 58% 49% 52% 54% 49% 56% 49% 53% 75% 50% 51% 45% 52% 62% 61% 56% 61% 53% 55% 69% 52% 68% 57%) -> (107k/115k) -> write(76%)
+0:00:36 INF [water_polygons] - read: [ 9.5k 66% 229/s ] write: [ 110M 5.2M/s ] 5.3G
+ cpus: 5.7 gc: 0% heap: 12G/118G direct: 54M postGC: 1.9G
+ read( 1%) -> (1k/1k) -> process( 7% 7% 7% 7% 9% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 25% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7%) -> (112k/115k) -> write(100%)
+0:00:46 INF [water_polygons] - read: [ 11k 82% 228/s ] write: [ 162M 5.2M/s ] 7.6G
+ cpus: 5.4 gc: 0% heap: 4.4G/118G direct: 54M postGC: 1.9G
+ read( 1%) -> (1k/1k) -> process( 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7%) -> (114k/115k) -> write(100%)
+0:00:56 INF [water_polygons] - read: [ 14k 98% 228/s ] write: [ 214M 5.2M/s ] 9.9G
+ cpus: 5.4 gc: 0% heap: 20G/118G direct: 54M postGC: 1.9G
+ read( -%) -> (296/1k) -> process( 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7%) -> (111k/115k) -> write(100%)
+0:00:58 INF [water_polygons] - read: [ 14k 100% 202/s ] write: [ 222M 5.2M/s ] 10G
+ cpus: 5.6 gc: 0% heap: 6.4G/118G direct: 54M postGC: 1.9G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:00:58 INF [water_polygons] - Finished in 52s cpu:18m57s avg:22
+0:00:58 INF [water_polygons] - read 1x(29% 15s sys:1s wait:31s done:5s)
+0:00:58 INF [water_polygons] - process 64x(30% 16s wait:35s)
+0:00:58 INF [water_polygons] - write 1x(84% 44s sys:5s wait:7s)
+0:00:58 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/natearth.sqlite
+0:01:02 INF [natural_earth] -
+0:01:02 INF [natural_earth] - Starting...
+0:01:13 INF [natural_earth] - read: [ 337k 97% 33k/s ] write: [ 1k 99/s ] 10G
+ cpus: 2.7 gc: 0% heap: 11G/118G direct: 54M postGC: 1.9G
+ read(99%) -> (1/1k) -> process( 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 10% 1% 1% 1% 1% 1% 1% 2% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 1% 2% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (28k/115k) -> write( 0%)
+0:01:13 INF [natural_earth] - read: [ 349k 100% 21k/s ] write: [ 33k 62k/s ] 10G
+ cpus: 2.4 gc: 0% heap: 12G/118G direct: 54M postGC: 1.9G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/115k) -> write( -%)
+0:01:13 INF [natural_earth] - Finished in 11s cpu:29s avg:2.6
+0:01:13 INF [natural_earth] - read 1x(93% 10s sys:2s)
+0:01:13 INF [natural_earth] - process 64x(1% 0.2s wait:10s)
+0:01:13 INF [natural_earth] - write 1x(0% 0s wait:11s)
+0:01:13 INF [osm_pass1] -
+0:01:13 INF [osm_pass1] - Starting...
+0:01:23 INF [osm_pass1] - nodes: [ 966M 96M/s ] 11G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.1k 212/s ]
+ cpus: 52.3 gc: 6% heap: 29G/118G direct: 60M postGC: 15G hppc: 1.2k
+ read(52%) -> (5/190) -> process(79% 77% 81% 77% 80% 80% 75% 78% 77% 78% 77% 79% 79% 79% 78% 78% 78% 77% 78% 79% 79% 78% 79% 78% 79% 80% 81% 77% 78% 78% 78% 78% 79% 78% 78% 79% 79% 80% 78% 76% 77% 76% 77% 77% 77% 77% 76% 76% 79% 77% 76% 79% 80% 78% 75% 77% 77% 76% 80% 76% 78% 78% 78%)
+0:01:33 INF [osm_pass1] - nodes: [ 2.4B 144M/s ] 25G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.7k 266/s ]
+ cpus: 59.4 gc: 10% heap: 55G/118G direct: 60M postGC: 32G hppc: 1.2k
+ read(61%) -> (126/190) -> process(87% 88% 87% 87% 88% 88% 88% 87% 87% 87% 86% 87% 87% 88% 86% 87% 88% 86% 87% 87% 86% 87% 87% 88% 87% 87% 86% 86% 88% 87% 86% 86% 87% 87% 87% 87% 85% 86% 87% 87% 88% 88% 87% 86% 87% 87% 87% 87% 87% 87% 86% 86% 88% 86% 86% 86% 86% 86% 87% 86% 87% 87% 87%)
+0:01:43 INF [osm_pass1] - nodes: [ 3.7B 138M/s ] 39G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.8k 202/s ]
+ cpus: 58.5 gc: 12% heap: 68G/118G direct: 60M postGC: 55G hppc: 1.2k
+ read(51%) -> (124/190) -> process(83% 85% 85% 84% 81% 85% 85% 84% 85% 85% 84% 82% 84% 83% 83% 85% 84% 85% 84% 81% 84% 84% 82% 83% 86% 84% 83% 84% 85% 84% 83% 85% 84% 85% 84% 85% 85% 85% 85% 83% 84% 83% 84% 84% 84% 84% 84% 84% 84% 85% 83% 85% 84% 85% 84% 83% 83% 85% 84% 84% 83% 84% 84%)
+0:01:53 INF [osm_pass1] - nodes: [ 5.2B 148M/s ] 54G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.9k 212/s ]
+ cpus: 58.5 gc: 12% heap: 85G/118G direct: 60M postGC: 82G hppc: 1.2k
+ read(50%) -> (126/190) -> process(85% 84% 83% 85% 84% 84% 85% 84% 85% 84% 86% 83% 84% 82% 84% 83% 84% 85% 85% 84% 83% 85% 85% 84% 86% 84% 85% 86% 85% 83% 83% 84% 85% 82% 85% 82% 83% 86% 84% 83% 84% 85% 85% 84% 85% 83% 84% 85% 84% 85% 85% 85% 84% 84% 84% 85% 84% 86% 85% 86% 85% 83% 85%)
+0:02:03 INF [osm_pass1] - nodes: [ 6.5B 125M/s ] 66G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 176/s ]
+ cpus: 54.9 gc: 19% heap: 96G/118G direct: 60M postGC: 84G hppc: 1.2k
+ read(42%) -> (127/190) -> process(70% 73% 73% 74% 72% 73% 73% 71% 73% 73% 72% 73% 73% 74% 73% 73% 73% 72% 72% 75% 72% 73% 72% 73% 73% 73% 74% 73% 74% 73% 73% 72% 72% 72% 73% 73% 74% 72% 73% 72% 73% 74% 72% 71% 73% 72% 73% 74% 73% 73% 74% 73% 72% 72% 72% 74% 74% 73% 73% 73% 71% 74% 71%)
+0:02:12 INF [osm_pass1:process] - Finished nodes: 7,546,573,682 (131M/s) in 57s cpu:53m40s gc:8s avg:56.1
+0:02:14 INF [osm_pass1] - nodes: [ 7.5B 100M/s ] 76G ways: [ 4.5M 450k/s ] rels: [ 0 0/s ] blocks: [ 12k 145/s ]
+ cpus: 47.2 gc: 22% heap: 101G/118G direct: 60M postGC: 97G hppc: 1.2k
+ read(28%) -> (127/190) -> process(57% 57% 57% 57% 58% 57% 58% 58% 58% 56% 59% 58% 62% 58% 58% 59% 57% 62% 58% 58% 59% 61% 61% 58% 57% 57% 57% 59% 57% 61% 58% 57% 57% 56% 59% 57% 59% 60% 58% 60% 57% 59% 57% 59% 57% 58% 57% 58% 57% 61% 58% 59% 57% 58% 58% 59% 58% 59% 56% 57% 60% 57% 58%)
+0:02:24 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 40M 3.6M/s ] rels: [ 0 0/s ] blocks: [ 12k 40/s ]
+ cpus: 21.1 gc: 10% heap: 102G/118G direct: 61M postGC: 100G hppc: 1.2k
+ read( 7%) -> (126/190) -> process(14% 12% 13% 18% 14% 15% 28% 16% 14% 12% 14% 19% 16% 9% 13% 14% 9% 29% 17% 12% 12% 15% 15% 23% 12% 11% 8% 12% 11% 15% 15% 11% 10% 10% 23% 13% 11% 13% 6% 9% 9% 12% 10% 10% 11% 11% 12% 15% 8% 13% 22% 12% 14% 17% 10% 17% 14% 15% 14% 14% 11% 11% 18%)
+0:02:34 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 87M 4.6M/s ] rels: [ 0 0/s ] blocks: [ 13k 43/s ]
+ cpus: 32.7 gc: 21% heap: 94G/118G direct: 10M postGC: 90G hppc: 1.2k
+ read( 8%) -> (127/190) -> process(10% 9% 14% 13% 11% 11% 20% 20% 10% 14% 11% 14% 17% 17% 13% 12% 13% 13% 14% 12% 18% 9% 14% 17% 13% 13% 18% 14% 12% 15% 13% 10% 13% 9% 13% 12% 19% 12% 10% 14% 11% 12% 12% 16% 13% 14% 12% 11% 14% 13% 14% 13% 13% 15% 11% 11% 10% 13% 14% 10% 11% 13% 10%)
+0:02:44 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 144M 5.6M/s ] rels: [ 0 0/s ] blocks: [ 13k 47/s ]
+ cpus: 19.2 gc: 11% heap: 99G/118G direct: 10M postGC: 98G hppc: 1.2k
+ read( 8%) -> (127/190) -> process(18% 13% 13% 14% 19% 13% 14% 16% 19% 11% 16% 25% 13% 10% 23% 19% 17% 11% 16% 17% 14% 33% 20% 11% 13% 14% 13% 14% 14% 13% 15% 22% 11% 11% 17% 18% 17% 12% 16% 9% 22% 12% 11% 12% 8% 15% 14% 13% 18% 29% 19% 13% 18% 17% 15% 15% 15% 17% 15% 31% 18% 21% 17%)
+0:02:54 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 214M 7M/s ] rels: [ 0 0/s ] blocks: [ 14k 57/s ]
+ cpus: 21.9 gc: 14% heap: 101G/118G direct: 10M postGC: 97G hppc: 1.2k
+ read( 9%) -> (127/190) -> process(18% 18% 19% 13% 19% 16% 21% 11% 27% 12% 23% 20% 22% 14% 24% 13% 16% 24% 20% 15% 19% 20% 22% 20% 16% 20% 21% 24% 16% 15% 18% 23% 26% 20% 19% 13% 20% 19% 16% 12% 12% 17% 22% 11% 15% 16% 18% 16% 13% 22% 27% 17% 15% 15% 18% 17% 24% 20% 27% 18% 17% 13% 25%)
+0:03:04 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 290M 7.5M/s ] rels: [ 0 0/s ] blocks: [ 14k 59/s ]
+ cpus: 23.3 gc: 15% heap: 100G/118G direct: 10M postGC: 106G hppc: 1.2k
+ read( 9%) -> (127/190) -> process(13% 29% 16% 19% 24% 14% 14% 18% 20% 19% 18% 25% 17% 13% 18% 16% 25% 13% 21% 23% 25% 15% 18% 25% 28% 19% 18% 18% 18% 17% 16% 19% 14% 21% 17% 13% 16% 19% 21% 16% 21% 16% 18% 15% 19% 18% 20% 18% 21% 18% 22% 17% 22% 20% 18% 16% 25% 19% 21% 15% 14% 17% 17%)
+0:03:14 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 373M 8.2M/s ] rels: [ 0 0/s ] blocks: [ 15k 61/s ]
+ cpus: 23.8 gc: 15% heap: 107G/118G direct: 10M postGC: 103G hppc: 1.2k
+ read( 8%) -> (127/190) -> process(17% 18% 17% 20% 14% 18% 15% 24% 18% 18% 15% 20% 33% 27% 19% 18% 18% 16% 26% 18% 19% 16% 16% 16% 17% 21% 20% 22% 25% 18% 16% 17% 21% 25% 16% 18% 18% 24% 22% 24% 17% 16% 14% 16% 24% 25% 20% 16% 21% 17% 14% 15% 18% 16% 15% 23% 17% 15% 17% 21% 20% 21% 21%)
+0:03:24 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 460M 8.6M/s ] rels: [ 0 0/s ] blocks: [ 15k 61/s ]
+ cpus: 24.5 gc: 17% heap: 101G/118G direct: 10M postGC: 101G hppc: 1.2k
+ read( 7%) -> (127/190) -> process(17% 15% 21% 22% 15% 19% 19% 17% 18% 18% 21% 19% 17% 15% 18% 17% 18% 14% 13% 17% 19% 15% 23% 14% 19% 24% 17% 24% 21% 17% 14% 18% 19% 26% 19% 15% 14% 21% 16% 16% 16% 22% 16% 17% 15% 17% 25% 22% 13% 15% 16% 29% 15% 24% 27% 21% 19% 18% 18% 19% 22% 24% 24%)
+0:03:34 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 555M 9.4M/s ] rels: [ 0 0/s ] blocks: [ 16k 66/s ]
+ cpus: 25.5 gc: 17% heap: 99G/118G direct: 10M postGC: 97G hppc: 1.2k
+ read( 8%) -> (127/190) -> process(27% 19% 17% 26% 24% 18% 19% 17% 18% 19% 21% 21% 18% 24% 22% 18% 20% 22% 20% 16% 17% 19% 20% 18% 17% 15% 19% 17% 20% 19% 18% 21% 20% 18% 20% 17% 19% 17% 21% 22% 20% 22% 16% 17% 19% 17% 19% 15% 18% 15% 19% 24% 17% 26% 19% 20% 20% 26% 20% 19% 17% 23% 20%)
+0:03:44 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 634M 7.9M/s ] rels: [ 0 0/s ] blocks: [ 17k 58/s ]
+ cpus: 22.3 gc: 15% heap: 97G/118G direct: 10M postGC: 105G hppc: 1.2k
+ read( 6%) -> (127/190) -> process(19% 15% 16% 19% 12% 16% 14% 16% 20% 14% 14% 17% 16% 18% 18% 17% 19% 13% 21% 14% 20% 27% 20% 14% 15% 14% 15% 20% 16% 21% 21% 17% 15% 14% 21% 21% 23% 15% 18% 17% 22% 15% 15% 17% 23% 13% 23% 17% 24% 20% 21% 19% 20% 21% 21% 22% 19% 15% 13% 21% 15% 14% 15%)
+0:03:54 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 717M 8.2M/s ] rels: [ 0 0/s ] blocks: [ 17k 58/s ]
+ cpus: 22.8 gc: 15% heap: 110G/118G direct: 10M postGC: 106G hppc: 1.2k
+ read( 6%) -> (127/190) -> process(18% 17% 20% 14% 20% 15% 21% 18% 15% 22% 15% 21% 17% 15% 14% 17% 17% 23% 12% 12% 19% 18% 19% 15% 21% 13% 18% 22% 21% 23% 20% 20% 16% 12% 26% 17% 21% 16% 24% 18% 18% 21% 12% 19% 19% 17% 16% 20% 19% 13% 14% 16% 17% 16% 15% 17% 18% 25% 17% 17% 17% 17% 16%)
+0:04:04 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 816M 9.8M/s ] rels: [ 0 0/s ] blocks: [ 18k 68/s ]
+ cpus: 26.3 gc: 19% heap: 106G/118G direct: 10M postGC: 104G hppc: 1.2k
+ read( 7%) -> (127/190) -> process(19% 20% 17% 18% 20% 24% 21% 17% 22% 19% 25% 18% 19% 22% 25% 16% 20% 18% 23% 15% 17% 25% 19% 26% 15% 18% 20% 17% 22% 21% 19% 20% 15% 23% 19% 20% 22% 22% 25% 19% 23% 17% 17% 22% 15% 17% 16% 28% 23% 18% 17% 19% 17% 21% 17% 22% 24% 24% 17% 22% 18% 20% 22%)
+0:04:06 INF [osm_pass1:process] - Finished ways: 841,994,745 (7.3M/s) in 1m54s cpu:45m36s gc:17s avg:24
+0:04:14 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 2.5M/s ] rels: [ 6.4M 645k/s ] blocks: [ 18k 27/s ]
+ cpus: 16.7 gc: 7% heap: 93G/118G direct: 3.9M postGC: 90G hppc: 692M
+ read( -%) -> (17/190) -> process(13% 18% 12% 13% 15% 15% 15% 11% 12% 15% 20% 15% 18% 13% 15% 13% 13% 14% 16% 16% 16% 17% 11% 15% 18% 12% 13% 15% 15% 19% 14% 15% 12% 13% 17% 15% 14% 13% 14% 14% 13% 17% 14% 13% 13% 12% 17% 13% 22% 11% 18% 12% 21% 11% 14% 19% 19% 16% 23% 14% 17% 20% 16%)
+0:04:17 INF [osm_pass1:process] - Finished relations: 9,718,612 (884k/s) in 11s cpu:1m39s avg:9
+0:04:17 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 0/s ] rels: [ 9.7M 928k/s ] blocks: [ 18k 22/s ]
+ cpus: 5 gc: 2% heap: 93G/118G direct: 3.9M postGC: 91G hppc: 1G
+ read( -%) -> (0/190) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:04:17 DEB [osm_pass1] - Processed 18,767 blocks:
+0:04:17 DEB [osm_pass1] - nodes: 7,546,573,682 (131M/s) in 57s cpu:53m40s gc:8s avg:56.1
+0:04:17 DEB [osm_pass1] - ways: 841,994,745 (7.3M/s) in 1m54s cpu:45m36s gc:17s avg:24
+0:04:17 DEB [osm_pass1] - relations: 9,718,612 (884k/s) in 11s cpu:1m39s avg:9
+0:04:17 INF [osm_pass1] - Finished in 3m4s cpu:1h42m11s gc:26s avg:33.4
+0:04:17 INF [osm_pass1] - read 1x(20% 37s sys:29s wait:1m48s done:11s)
+0:04:17 INF [osm_pass1] - process 63x(37% 1m7s sys:4s block:1m37s wait:2s done:1s)
+0:04:17 INF [osm_pass2] -
+0:04:17 INF [osm_pass2] - Starting...
+0:04:27 INF [osm_pass2] - nodes: [ 231M 3% 23M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 243M 2.1M/s ] 12G blocks: [ 522 3% 52/s ]
+ cpus: 48.6 gc: 7% heap: 90G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(16%) -> (33/96) -> process(67% 69% 72% 60% 71% 69% 73% 69% 72% 67% 71% 63% 62% 58% 45% 73% 69% 71% 73% 71% 65% 70% 69% 75% 71% 63% 71% 62% 50% 49% 72% 55% 67% 72% 73% 65% 74% 70% 69% 67% 73% 67% 73% 69% 74% 68% 75% 58% 72% 72% 67% 53% 70% 71% 67% 69% 62% 72% 49% 68% 60% 73% 72%) -> (95k/114k) -> write(75%)
+0:04:37 INF [osm_pass2] - nodes: [ 474M 6% 24M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 268M 2.4M/s ] 15G blocks: [ 1k 5% 49/s ]
+ cpus: 46.3 gc: 7% heap: 101G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read(12%) -> (33/96) -> process(52% 42% 66% 70% 73% 70% 74% 75% 73% 78% 63% 72% 37% 51% 67% 67% 70% 65% 66% 73% 69% 62% 73% 74% 65% 51% 72% 71% 47% 72% 74% 69% 70% 75% 49% 72% 43% 67% 66% 56% 63% 68% 61% 54% 49% 75% 76% 51% 51% 67% 42% 69% 75% 71% 52% 68% 66% 76% 67% 75% 73% 62% 49%) -> (76k/114k) -> write(89%)
+0:04:47 INF [osm_pass2] - nodes: [ 814M 11% 33M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 283M 1.5M/s ] 17G blocks: [ 1.8k 10% 77/s ]
+ cpus: 57 gc: 10% heap: 98G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(23%) -> (33/96) -> process(82% 82% 83% 81% 81% 81% 81% 82% 82% 83% 81% 80% 80% 81% 82% 80% 82% 82% 81% 79% 79% 81% 81% 80% 80% 81% 81% 82% 81% 80% 81% 80% 82% 81% 82% 79% 80% 81% 82% 80% 79% 79% 80% 81% 82% 81% 81% 80% 82% 81% 81% 81% 81% 81% 77% 82% 81% 82% 82% 81% 82% 79% 81%) -> (79k/114k) -> write(59%)
+0:04:57 INF [osm_pass2] - nodes: [ 1.1B 15% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 300M 1.7M/s ] 18G blocks: [ 2.4k 13% 66/s ]
+ cpus: 55 gc: 9% heap: 91G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(17%) -> (33/96) -> process(83% 79% 83% 82% 81% 80% 81% 82% 42% 84% 82% 82% 79% 84% 82% 81% 81% 81% 82% 82% 81% 44% 81% 81% 81% 82% 81% 83% 83% 79% 82% 43% 82% 83% 82% 82% 81% 83% 80% 83% 44% 80% 82% 82% 80% 81% 82% 83% 80% 81% 81% 42% 80% 81% 81% 80% 83% 81% 79% 43% 82% 79% 82%) -> (33k/114k) -> write(64%)
+0:05:07 INF [osm_pass2] - nodes: [ 1.4B 19% 30M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 311M 1M/s ] 20G blocks: [ 3k 16% 60/s ]
+ cpus: 50 gc: 8% heap: 98G/118G direct: 10M postGC: 89G relInfo: 1G mpGeoms: 297
+ read(14%) -> (33/96) -> process(78% 73% 80% 78% 76% 78% 75% 80% 11% 78% 75% 78% 81% 75% 75% 71% 78% 73% 79% 74% 79% 11% 73% 83% 78% 77% 75% 81% 73% 77% 72% 12% 81% 81% 80% 68% 80% 78% 80% 76% 11% 76% 80% 78% 76% 76% 78% 81% 78% 72% 77% 9% 81% 77% 78% 77% 76% 79% 76% 10% 77% 79% 77%) -> (33k/114k) -> write(39%)
+0:05:17 INF [osm_pass2] - nodes: [ 1.7B 23% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 321M 1M/s ] 21G blocks: [ 3.6k 19% 54/s ]
+ cpus: 47.6 gc: 8% heap: 97G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(81% 75% 13% 70% 77% 78% 78% 68% 11% 67% 74% 73% 75% 73% 77% 70% 69% 75% 71% 71% 76% 9% 75% 60% 81% 80% 73% 53% 77% 78% 77% 9% 74% 73% 81% 74% 75% 72% 77% 76% 62% 77% 72% 74% 68% 78% 73% 75% 79% 77% 78% 10% 73% 72% 77% 68% 80% 64% 72% 10% 73% 73% 70%) -> (31k/114k) -> write(38%)
+0:05:27 INF [osm_pass2] - nodes: [ 2B 27% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 336M 1.4M/s ] 22G blocks: [ 4.1k 22% 55/s ]
+ cpus: 48.8 gc: 8% heap: 102G/118G direct: 10M postGC: 89G relInfo: 1G mpGeoms: 297
+ read(11%) -> (32/96) -> process(78% 48% 9% 78% 73% 78% 74% 81% 10% 69% 78% 65% 69% 73% 81% 76% 77% 76% 72% 70% 76% 10% 74% 79% 80% 75% 75% 78% 71% 74% 65% 9% 83% 71% 76% 77% 73% 82% 77% 68% 74% 76% 74% 81% 70% 74% 78% 72% 78% 70% 84% 10% 75% 75% 76% 77% 76% 79% 77% 10% 74% 73% 75%) -> (57k/114k) -> write(53%)
+0:05:37 INF [osm_pass2] - nodes: [ 2.3B 31% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 357M 2M/s ] 23G blocks: [ 4.6k 25% 48/s ]
+ cpus: 51.4 gc: 9% heap: 94G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(10%) -> (33/96) -> process(76% 69% 12% 75% 75% 80% 80% 74% 48% 79% 77% 81% 81% 73% 83% 73% 75% 80% 77% 71% 75% 14% 75% 80% 75% 79% 76% 80% 79% 76% 78% 12% 74% 75% 78% 77% 79% 77% 59% 74% 78% 76% 79% 76% 75% 81% 71% 76% 77% 69% 79% 14% 82% 77% 76% 77% 76% 76% 79% 73% 78% 82% 74%) -> (38k/114k) -> write(71%)
+0:05:47 INF [osm_pass2] - nodes: [ 2.6B 35% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 368M 1M/s ] 24G blocks: [ 5.1k 27% 46/s ]
+ cpus: 49.3 gc: 8% heap: 101G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(75% 74% 10% 72% 77% 76% 74% 78% 81% 71% 76% 81% 76% 77% 73% 75% 75% 76% 78% 79% 70% 12% 78% 78% 60% 80% 73% 69% 79% 78% 79% 11% 72% 73% 76% 75% 73% 75% 77% 77% 81% 74% 76% 80% 75% 76% 81% 75% 74% 72% 69% 12% 69% 81% 60% 70% 80% 69% 69% 76% 7% 74% 74%) -> (32k/114k) -> write(39%)
+0:05:57 INF [osm_pass2] - nodes: [ 2.9B 39% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 378M 971k/s ] 25G blocks: [ 5.5k 30% 45/s ]
+ cpus: 47.2 gc: 8% heap: 92G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(63% 74% 9% 73% 72% 67% 67% 73% 70% 75% 74% 77% 74% 75% 80% 71% 72% 69% 71% 71% 75% 9% 77% 74% 75% 66% 77% 71% 71% 70% 72% 10% 63% 71% 75% 65% 72% 77% 71% 74% 73% 63% 67% 64% 61% 64% 75% 73% 70% 74% 68% 33% 73% 80% 70% 76% 23% 81% 65% 65% 50% 69% 69%) -> (30k/114k) -> write(34%)
+0:06:07 INF [osm_pass2] - nodes: [ 3.2B 43% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 386M 865k/s ] 26G blocks: [ 6k 32% 46/s ]
+ cpus: 50 gc: 9% heap: 94G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(76% 69% 12% 77% 71% 78% 75% 76% 76% 77% 76% 78% 74% 76% 71% 77% 74% 73% 75% 71% 74% 13% 73% 75% 76% 73% 73% 70% 79% 74% 75% 13% 75% 79% 78% 77% 75% 74% 67% 66% 71% 13% 79% 78% 76% 82% 71% 67% 71% 78% 70% 74% 72% 73% 79% 78% 77% 77% 73% 74% 75% 69% 74%) -> (32k/114k) -> write(31%)
+0:06:17 INF [osm_pass2] - nodes: [ 3.5B 47% 26M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 396M 1M/s ] 27G blocks: [ 6.4k 34% 38/s ]
+ cpus: 42.4 gc: 7% heap: 98G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 7%) -> (33/96) -> process(63% 65% 42% 54% 70% 55% 53% 68% 70% 62% 58% 43% 67% 61% 69% 62% 71% 49% 66% 61% 69% 8% 61% 43% 66% 69% 54% 72% 70% 60% 61% 25% 61% 58% 71% 66% 69% 52% 66% 58% 63% 14% 73% 63% 68% 67% 59% 66% 62% 66% 57% 70% 68% 62% 56% 52% 70% 69% 61% 60% 63% 69% 55%) -> (30k/114k) -> write(35%)
+0:06:27 INF [osm_pass2] - nodes: [ 3.8B 51% 29M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 406M 916k/s ] 28G blocks: [ 6.8k 37% 42/s ]
+ cpus: 47.1 gc: 8% heap: 98G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read( 8%) -> (33/96) -> process(72% 68% 65% 60% 63% 72% 70% 63% 62% 69% 78% 61% 68% 72% 74% 67% 71% 76% 65% 63% 68% 11% 77% 14% 63% 69% 58% 69% 76% 69% 64% 61% 73% 70% 75% 64% 69% 58% 73% 71% 67% 70% 64% 69% 75% 71% 74% 63% 61% 72% 74% 71% 74% 59% 65% 61% 72% 66% 66% 70% 66% 69% 70%) -> (33k/114k) -> write(33%)
+0:06:37 INF [osm_pass2] - nodes: [ 4B 54% 24M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 412M 668k/s ] 29G blocks: [ 7.2k 38% 34/s ]
+ cpus: 37.9 gc: 7% heap: 101G/118G direct: 10M postGC: 89G relInfo: 1G mpGeoms: 297
+ read( 6%) -> (33/96) -> process(54% 70% 55% 63% 63% 60% 61% 51% 59% 51% 67% 63% 50% 60% 50% 51% 57% 55% 52% 50% 53% 8% 56% 55% 66% 50% 59% 69% 60% 47% 48% 55% 53% 59% 51% 50% 59% 41% 64% 24% 40% 57% 64% 48% 57% 52% 52% 51% 51% 48% 43% 55% 58% 64% 54% 50% 44% 58% 57% 52% 65% 49% 49%) -> (34k/114k) -> write(23%)
+0:06:47 INF [osm_pass2] - nodes: [ 4.3B 57% 25M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 421M 854k/s ] 30G blocks: [ 7.5k 40% 36/s ]
+ cpus: 39.7 gc: 7% heap: 92G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read( 7%) -> (33/96) -> process(49% 52% 48% 51% 65% 58% 58% 63% 57% 63% 67% 61% 65% 58% 60% 69% 44% 63% 57% 63% 54% 8% 50% 49% 56% 57% 64% 54% 65% 70% 56% 66% 54% 51% 53% 67% 53% 50% 64% 51% 50% 56% 50% 70% 44% 51% 57% 43% 54% 43% 51% 58% 60% 58% 42% 56% 46% 66% 54% 66% 53% 63% 48%) -> (35k/114k) -> write(29%)
+0:06:57 INF [osm_pass2] - nodes: [ 4.6B 62% 33M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 430M 917k/s ] 30G blocks: [ 8k 43% 47/s ]
+ cpus: 51.5 gc: 8% heap: 101G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(10%) -> (33/96) -> process(70% 79% 69% 76% 76% 77% 69% 75% 77% 75% 77% 77% 80% 71% 74% 69% 70% 76% 74% 70% 72% 49% 78% 67% 74% 67% 72% 79% 76% 76% 69% 77% 72% 72% 77% 73% 74% 65% 69% 71% 68% 74% 74% 73% 79% 74% 72% 80% 73% 78% 71% 78% 75% 70% 75% 74% 73% 71% 78% 67% 75% 71% 76%) -> (32k/114k) -> write(33%)
+0:07:07 INF [osm_pass2] - nodes: [ 4.9B 66% 31M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 438M 839k/s ] 31G blocks: [ 8.5k 45% 45/s ]
+ cpus: 49.6 gc: 9% heap: 102G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(77% 69% 74% 73% 76% 69% 75% 64% 74% 66% 69% 67% 69% 71% 66% 71% 68% 71% 73% 74% 68% 73% 67% 63% 73% 72% 73% 73% 65% 74% 70% 66% 68% 70% 70% 60% 70% 77% 72% 64% 68% 72% 67% 69% 75% 72% 74% 60% 71% 75% 68% 65% 61% 68% 72% 71% 71% 67% 79% 61% 73% 68% 70%) -> (32k/114k) -> write(30%)
+0:07:18 INF [osm_pass2] - nodes: [ 5.3B 71% 35M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 447M 833k/s ] 32G blocks: [ 9k 48% 50/s ]
+ cpus: 55.3 gc: 10% heap: 92G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(81% 80% 74% 79% 81% 77% 77% 77% 77% 75% 78% 80% 78% 78% 79% 78% 80% 81% 78% 79% 81% 76% 81% 72% 80% 80% 79% 79% 80% 78% 82% 82% 77% 76% 81% 77% 80% 74% 75% 78% 76% 77% 79% 83% 76% 78% 78% 76% 81% 73% 81% 76% 71% 79% 79% 76% 79% 79% 74% 74% 82% 76% 79%) -> (36k/114k) -> write(32%)
+0:07:28 INF [osm_pass2] - nodes: [ 5.6B 75% 32M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 457M 1M/s ] 33G blocks: [ 9.4k 51% 45/s ]
+ cpus: 51.1 gc: 9% heap: 94G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 9%) -> (33/96) -> process(72% 61% 72% 61% 79% 71% 78% 70% 71% 81% 72% 83% 73% 72% 65% 70% 71% 72% 66% 72% 75% 76% 74% 73% 76% 76% 71% 78% 71% 70% 77% 76% 68% 71% 77% 76% 69% 79% 72% 74% 66% 66% 76% 73% 75% 67% 72% 67% 73% 77% 72% 74% 71% 76% 68% 77% 72% 58% 63% 74% 76% 76% 75%) -> (32k/114k) -> write(38%)
+0:07:38 INF [osm_pass2] - nodes: [ 6B 80% 35M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 468M 1M/s ] 34G blocks: [ 9.9k 53% 50/s ]
+ cpus: 56 gc: 9% heap: 98G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read(10%) -> (33/96) -> process(82% 80% 82% 81% 83% 71% 81% 75% 81% 81% 78% 78% 81% 77% 79% 85% 72% 81% 79% 79% 75% 80% 81% 83% 83% 80% 76% 77% 76% 79% 78% 79% 79% 81% 82% 78% 75% 80% 82% 80% 82% 82% 80% 82% 81% 77% 81% 75% 75% 77% 82% 80% 82% 82% 78% 78% 81% 74% 74% 77% 80% 76% 79%) -> (31k/114k) -> write(40%)
+0:07:48 INF [osm_pass2] - nodes: [ 6.3B 85% 35M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 477M 909k/s ] 35G blocks: [ 10k 56% 49/s ]
+ cpus: 55.6 gc: 9% heap: 97G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(10%) -> (33/96) -> process(77% 78% 81% 80% 79% 77% 83% 83% 77% 83% 79% 78% 74% 82% 79% 81% 81% 81% 81% 76% 82% 74% 73% 77% 81% 74% 77% 76% 78% 81% 81% 81% 77% 79% 75% 78% 77% 79% 76% 78% 77% 78% 74% 84% 82% 79% 79% 82% 80% 81% 76% 81% 80% 78% 79% 78% 78% 79% 80% 81% 84% 78% 76%) -> (27k/114k) -> write(34%)
+0:07:58 INF [osm_pass2] - nodes: [ 6.7B 89% 36M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 490M 1.2M/s ] 36G blocks: [ 10k 59% 51/s ]
+ cpus: 57.4 gc: 9% heap: 98G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read(11%) -> (33/96) -> process(83% 80% 82% 80% 81% 82% 83% 84% 78% 81% 81% 82% 82% 76% 79% 83% 83% 83% 82% 83% 79% 82% 80% 83% 83% 81% 83% 82% 80% 83% 82% 83% 83% 81% 81% 85% 77% 81% 80% 81% 80% 81% 80% 81% 85% 80% 79% 84% 81% 80% 79% 82% 84% 83% 81% 82% 79% 82% 83% 82% 81% 84% 81%) -> (28k/114k) -> write(47%)
+0:08:08 INF [osm_pass2] - nodes: [ 6.9B 92% 21M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 498M 838k/s ] 37G blocks: [ 11k 60% 30/s ]
+ cpus: 33.6 gc: 6% heap: 90G/118G direct: 10M postGC: 90G relInfo: 1G mpGeoms: 297
+ read( 5%) -> (33/96) -> process(31% 12% 45% 62% 72% 75% 35% 77% 59% 76% 16% 71% 51% 59% 19% 15% 68% 15% 54% 69% 55% 60% 16% 69% 21% 31% 65% 69% 43% 18% 24% 20% 59% 16% 41% 17% 67% 39% 51% 71% 16% 67% 65% 68% 43% 68% 57% 13% 65% 49% 38% 61% 70% 64% 56% 44% 58% 32% 57% 36% 55% 46% 17%) -> (28k/114k) -> write(27%)
+0:08:18 INF [osm_pass2] - nodes: [ 7.1B 94% 16M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 530k/s ] 37G blocks: [ 11k 61% 22/s ]
+ cpus: 25.5 gc: 4% heap: 93G/118G direct: 10M postGC: 92G relInfo: 1G mpGeoms: 297
+ read( 3%) -> (33/96) -> process(21% 5% 57% 55% 64% 15% 42% 38% 56% 43% 4% 24% 44% 56% 3% 51% 55% 3% 5% 69% 53% 15% 3% 69% 30% 38% 46% 54% 48% 20% 20% 27% 8% 39% 65% 47% 7% 53% 8% 37% 51% 40% 57% 57% 49% 67% 40% 4% 34% 51% 4% 48% 39% 49% 25% 67% 35% 34% 44% 27% 25% 39% 3%) -> (33k/114k) -> write(17%)
+0:08:28 INF [osm_pass2] - nodes: [ 7.2B 97% 17M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 507M 379k/s ] 37G blocks: [ 11k 63% 24/s ]
+ cpus: 26.8 gc: 5% heap: 99G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 4%) -> (33/96) -> process( 4% 35% 34% 55% 48% 51% 54% 7% 59% 70% 43% 63% 49% 58% 4% 42% 52% 3% 21% 58% 61% 5% 4% 19% 4% 57% 50% 27% 57% 54% 68% 50% 24% 63% 38% 51% 25% 15% 35% 36% 47% 3% 12% 50% 29% 47% 39% 4% 23% 48% 10% 58% 62% 64% 64% 56% 19% 61% 47% 31% 17% 10% 42%) -> (30k/114k) -> write(13%)
+0:08:36 DEB [osm_pass2:process] - Sorting long long multimap...
+0:08:38 INF [osm_pass2] - nodes: [ 7.5B 100% 24M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 514M 668k/s ] 38G blocks: [ 12k 65% 36/s ]
+ cpus: 41 gc: 7% heap: 96G/118G direct: 10M postGC: 91G relInfo: 1G mpGeoms: 297
+ read( 6%) -> (33/96) -> process(60% 27% 59% 64% 57% 59% 62% 7% 60% 72% 51% 68% 54% 64% 44% 54% 60% 44% 51% 68% 52% 7% 6% 48% 53% 62% 56% 65% 62% 55% 61% 56% 68% 62% 63% 61% 41% 54% 57% 60% 66% 36% 47% 61% 61% 57% 50% 8% 65% 60% 65% 55% 60% 64% 58% 49% 54% 63% 64% 59% 67% 53% 62%) -> (32k/114k) -> write(23%)
+0:08:39 INF [osm_pass2:process] - Finished nodes: 7,546,573,682 (28M/s) in 4m22s cpu:3h24m12s gc:20s avg:46.8
+0:08:43 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:1m6s avg:10.4
+0:08:48 INF [osm_pass2] - nodes: [ 7.5B 100% 454k/s ] 76G ways: [ 1.7M 0% 170k/s ] rels: [ 0 0% 0/s ] features: [ 525M 1.1M/s ] 39G blocks: [ 12k 65% 1/s ]
+ cpus: 17.7 gc: 2% heap: 100G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 21M
+ read( 0%) -> (33/96) -> process(26% 28% 23% 24% 22% 20% 22% 22% 22% 27% 24% 23% 21% 22% 22% 21% 26% 20% 26% 25% 22% 27% 32% 23% 21% 72% 18% 22% 22% 22% 27% 22% 22% 22% 23% 24% 23% 21% 23% 25% 18% 22% 22% 21% 28% 22% 20% 37% 22% 21% 24% 25% 31% 25% 22% 22% 20% 26% 20% 22% 22% 22% 25%) -> (103k/114k) -> write(41%)
+0:08:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 5.7M 1% 402k/s ] rels: [ 0 0% 0/s ] features: [ 551M 2.6M/s ] 42G blocks: [ 12k 65% 4/s ]
+ cpus: 25.4 gc: 3% heap: 95G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 57M
+ read( 1%) -> (33/96) -> process(34% 31% 36% 37% 35% 34% 50% 35% 33% 34% 34% 36% 29% 34% 32% 34% 31% 32% 30% 30% 35% 32% 34% 33% 33% 33% 29% 33% 36% 32% 36% 31% 35% 34% 34% 31% 34% 28% 36% 34% 29% 34% 30% 35% 34% 32% 29% 33% 33% 33% 33% 33% 35% 38% 36% 31% 28% 32% 28% 34% 33% 34% 34%) -> (102k/114k) -> write(97%)
+0:09:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 10M 1% 440k/s ] rels: [ 0 0% 0/s ] features: [ 578M 2.6M/s ] 44G blocks: [ 12k 65% 3/s ]
+ cpus: 24.8 gc: 3% heap: 103G/118G direct: 10M postGC: 88G relInfo: 971M mpGeoms: 89M
+ read( 1%) -> (33/96) -> process(33% 32% 37% 33% 31% 34% 30% 33% 32% 32% 35% 31% 32% 28% 34% 31% 31% 31% 36% 33% 34% 33% 32% 31% 30% 31% 34% 34% 31% 32% 32% 32% 32% 30% 34% 34% 32% 33% 30% 38% 32% 35% 31% 32% 33% 34% 33% 32% 31% 32% 33% 32% 36% 33% 34% 37% 32% 32% 31% 37% 30% 30% 32%) -> (101k/114k) -> write(97%)
+0:09:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 14M 2% 432k/s ] rels: [ 0 0% 0/s ] features: [ 603M 2.5M/s ] 46G blocks: [ 12k 65% 5/s ]
+ cpus: 29.2 gc: 5% heap: 102G/118G direct: 10M postGC: 88G relInfo: 971M mpGeoms: 161M
+ read( 1%) -> (33/96) -> process(41% 39% 34% 41% 36% 38% 46% 42% 41% 44% 32% 33% 37% 39% 34% 33% 45% 38% 41% 39% 39% 34% 38% 42% 38% 38% 39% 34% 33% 33% 40% 38% 35% 39% 33% 34% 38% 38% 38% 33% 38% 43% 40% 38% 34% 33% 38% 40% 33% 31% 33% 35% 39% 32% 33% 43% 40% 40% 39% 34% 40% 33% 42%) -> (105k/114k) -> write(95%)
+0:09:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 18M 2% 436k/s ] rels: [ 0 0% 0/s ] features: [ 628M 2.4M/s ] 49G blocks: [ 12k 66% 5/s ]
+ cpus: 34.2 gc: 6% heap: 89G/118G direct: 10M postGC: 88G relInfo: 971M mpGeoms: 266M
+ read( 1%) -> (33/96) -> process(48% 48% 43% 46% 47% 45% 44% 44% 49% 43% 42% 43% 44% 52% 46% 47% 52% 48% 42% 48% 42% 45% 47% 42% 45% 44% 46% 45% 50% 46% 44% 44% 47% 43% 45% 46% 47% 49% 45% 44% 46% 44% 45% 45% 45% 41% 44% 43% 44% 42% 41% 42% 45% 48% 44% 46% 46% 45% 66% 44% 48% 47% 46%) -> (97k/114k) -> write(94%)
+0:09:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 23M 3% 495k/s ] rels: [ 0 0% 0/s ] features: [ 653M 2.4M/s ] 51G blocks: [ 12k 66% 6/s ]
+ cpus: 38.3 gc: 6% heap: 97G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 387M
+ read( 1%) -> (33/96) -> process(53% 51% 54% 54% 48% 61% 53% 47% 48% 50% 47% 49% 63% 51% 52% 51% 63% 55% 47% 53% 48% 50% 52% 56% 49% 43% 57% 48% 63% 51% 52% 50% 49% 51% 60% 55% 51% 55% 49% 47% 49% 47% 49% 52% 62% 49% 54% 52% 48% 51% 51% 43% 52% 51% 47% 48% 59% 47% 60% 50% 53% 52% 49%) -> (93k/114k) -> write(93%)
+0:09:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 29M 3% 529k/s ] rels: [ 0 0% 0/s ] features: [ 676M 2.3M/s ] 53G blocks: [ 12k 66% 5/s ]
+ cpus: 45.1 gc: 7% heap: 101G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 531M
+ read( 1%) -> (33/96) -> process(78% 58% 72% 61% 60% 65% 80% 59% 57% 59% 57% 56% 57% 55% 54% 55% 53% 56% 62% 60% 56% 57% 60% 76% 58% 61% 81% 57% 64% 57% 59% 58% 57% 62% 67% 57% 64% 58% 54% 57% 58% 57% 59% 54% 66% 54% 63% 53% 58% 57% 58% 57% 80% 60% 57% 58% 80% 79% 61% 58% 70% 59% 58%) -> (94k/114k) -> write(92%)
+0:09:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 34M 4% 555k/s ] rels: [ 0 0% 0/s ] features: [ 699M 2.2M/s ] 55G blocks: [ 12k 67% 5/s ]
+ cpus: 48.3 gc: 8% heap: 96G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 666M
+ read( 2%) -> (33/96) -> process(81% 62% 80% 56% 59% 52% 80% 63% 66% 65% 63% 65% 61% 63% 61% 60% 63% 63% 56% 59% 62% 65% 55% 77% 62% 60% 81% 61% 63% 62% 63% 53% 61% 66% 64% 67% 64% 62% 60% 62% 60% 60% 62% 62% 63% 60% 66% 62% 61% 61% 63% 62% 81% 61% 74% 62% 81% 79% 64% 58% 60% 63% 65%) -> (90k/114k) -> write(91%)
+0:10:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 42M 5% 745k/s ] rels: [ 0 0% 0/s ] features: [ 721M 2.2M/s ] 57G blocks: [ 12k 67% 6/s ]
+ cpus: 50.7 gc: 8% heap: 94G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 752M
+ read( 2%) -> (33/96) -> process(84% 77% 78% 24% 29% 76% 81% 78% 78% 78% 79% 78% 77% 68% 77% 77% 79% 71% 21% 76% 77% 80% 38% 78% 78% 78% 86% 58% 77% 22% 77% 38% 78% 77% 78% 79% 77% 79% 55% 77% 77% 77% 34% 24% 42% 79% 79% 78% 78% 78% 39% 78% 83% 77% 79% 78% 77% 81% 32% 77% 78% 78% 77%) -> (84k/114k) -> write(91%)
+0:10:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 50M 6% 787k/s ] rels: [ 0 0% 0/s ] features: [ 744M 2.2M/s ] 58G blocks: [ 12k 67% 7/s ]
+ cpus: 50.9 gc: 8% heap: 101G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 836M
+ read( 2%) -> (33/96) -> process(67% 70% 71% 59% 66% 67% 69% 68% 70% 70% 68% 71% 68% 70% 70% 67% 68% 71% 58% 71% 70% 70% 66% 70% 70% 69% 69% 68% 71% 66% 69% 57% 69% 69% 70% 69% 69% 70% 69% 68% 68% 68% 67% 67% 68% 69% 70% 70% 68% 66% 63% 67% 67% 68% 70% 70% 67% 66% 68% 67% 69% 70% 71%) -> (92k/114k) -> write(91%)
+0:10:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 57M 7% 734k/s ] rels: [ 0 0% 0/s ] features: [ 766M 2.2M/s ] 60G blocks: [ 12k 68% 7/s ]
+ cpus: 52.4 gc: 8% heap: 104G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 958M
+ read( 2%) -> (33/96) -> process(73% 71% 71% 71% 73% 73% 71% 75% 73% 70% 73% 68% 72% 66% 72% 72% 74% 72% 70% 73% 73% 72% 71% 72% 69% 71% 70% 75% 71% 73% 70% 68% 72% 72% 74% 70% 69% 70% 76% 74% 71% 72% 71% 72% 71% 70% 72% 71% 71% 68% 71% 69% 73% 70% 75% 69% 72% 70% 68% 70% 72% 70% 69%) -> (73k/114k) -> write(91%)
+0:10:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 64M 8% 688k/s ] rels: [ 0 0% 0/s ] features: [ 788M 2.1M/s ] 61G blocks: [ 12k 68% 6/s ]
+ cpus: 53.5 gc: 9% heap: 101G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 1G
+ read( 2%) -> (33/96) -> process(69% 71% 69% 75% 71% 70% 71% 78% 73% 70% 73% 68% 74% 71% 74% 69% 77% 70% 72% 69% 72% 75% 70% 75% 75% 78% 71% 76% 69% 74% 71% 73% 77% 70% 77% 72% 72% 81% 78% 80% 70% 70% 71% 78% 73% 69% 73% 71% 71% 69% 69% 77% 69% 72% 80% 72% 77% 73% 70% 74% 72% 69% 70%) -> (88k/114k) -> write(89%)
+0:10:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 71M 8% 683k/s ] rels: [ 0 0% 0/s ] features: [ 809M 2.1M/s ] 63G blocks: [ 12k 69% 6/s ]
+ cpus: 51.7 gc: 10% heap: 92G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 1.1G
+ read( 2%) -> (33/96) -> process(69% 69% 66% 73% 69% 70% 70% 72% 72% 71% 72% 68% 70% 68% 69% 66% 68% 68% 70% 67% 69% 68% 67% 66% 70% 71% 67% 65% 68% 66% 67% 65% 66% 66% 71% 69% 67% 75% 72% 72% 69% 67% 69% 73% 67% 66% 67% 71% 68% 67% 69% 69% 66% 70% 68% 68% 68% 70% 70% 67% 69% 67% 70%) -> (94k/114k) -> write(89%)
+0:10:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 78M 9% 745k/s ] rels: [ 0 0% 0/s ] features: [ 833M 2.3M/s ] 65G blocks: [ 12k 69% 6/s ]
+ cpus: 47.6 gc: 8% heap: 102G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.2G
+ read( 2%) -> (33/96) -> process(65% 63% 67% 67% 64% 66% 63% 63% 66% 64% 67% 63% 64% 63% 64% 63% 61% 63% 61% 63% 62% 63% 64% 64% 63% 67% 64% 60% 65% 63% 64% 65% 62% 62% 62% 64% 63% 61% 63% 67% 62% 65% 63% 69% 64% 64% 64% 63% 67% 61% 66% 63% 61% 65% 61% 65% 66% 61% 63% 64% 65% 62% 63%) -> (89k/114k) -> write(92%)
+0:11:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 85M 10% 724k/s ] rels: [ 0 0% 0/s ] features: [ 856M 2.3M/s ] 66G blocks: [ 13k 69% 6/s ]
+ cpus: 45.2 gc: 8% heap: 100G/118G direct: 10M postGC: 89G relInfo: 971M mpGeoms: 1.3G
+ read( 2%) -> (33/96) -> process(60% 61% 61% 59% 61% 60% 59% 59% 58% 60% 60% 59% 61% 61% 61% 59% 62% 61% 61% 60% 60% 61% 60% 61% 59% 61% 60% 59% 58% 59% 59% 60% 58% 61% 57% 58% 60% 60% 60% 60% 59% 59% 61% 58% 60% 59% 59% 57% 59% 59% 58% 60% 58% 56% 60% 59% 60% 60% 57% 57% 60% 60% 58%) -> (94k/114k) -> write(91%)
+0:11:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 93M 11% 735k/s ] rels: [ 0 0% 0/s ] features: [ 880M 2.3M/s ] 68G blocks: [ 13k 70% 6/s ]
+ cpus: 46.4 gc: 8% heap: 94G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.4G
+ read( 2%) -> (33/96) -> process(60% 63% 64% 63% 66% 60% 63% 61% 62% 60% 64% 65% 62% 63% 63% 63% 62% 62% 59% 61% 62% 63% 62% 59% 62% 62% 62% 65% 62% 59% 61% 61% 65% 64% 63% 60% 61% 63% 63% 63% 60% 62% 61% 60% 61% 61% 63% 62% 60% 60% 63% 61% 63% 63% 62% 61% 63% 61% 61% 61% 62% 64% 62%) -> (87k/114k) -> write(92%)
+0:11:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 100M 12% 726k/s ] rels: [ 0 0% 0/s ] features: [ 902M 2.2M/s ] 70G blocks: [ 13k 70% 6/s ]
+ cpus: 50.2 gc: 9% heap: 98G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.5G
+ read( 2%) -> (33/96) -> process(65% 67% 66% 68% 66% 65% 66% 68% 65% 66% 67% 66% 65% 68% 67% 66% 67% 63% 66% 65% 66% 67% 65% 66% 68% 65% 66% 63% 67% 65% 65% 67% 65% 66% 64% 67% 67% 66% 65% 66% 67% 67% 66% 64% 65% 63% 66% 65% 66% 65% 67% 68% 68% 64% 65% 64% 67% 66% 67% 64% 67% 65% 70%) -> (91k/114k) -> write(91%)
+0:11:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 108M 13% 747k/s ] rels: [ 0 0% 0/s ] features: [ 926M 2.3M/s ] 71G blocks: [ 13k 70% 6/s ]
+ cpus: 47.5 gc: 8% heap: 90G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.6G
+ read( 2%) -> (33/96) -> process(62% 62% 66% 62% 64% 62% 61% 64% 64% 67% 64% 63% 62% 63% 63% 64% 63% 63% 63% 63% 63% 66% 64% 64% 64% 65% 66% 63% 64% 64% 64% 64% 62% 64% 64% 64% 64% 64% 62% 62% 65% 64% 65% 62% 64% 63% 64% 64% 64% 63% 64% 63% 64% 62% 61% 66% 63% 63% 63% 65% 63% 65% 63%) -> (74k/114k) -> write(91%)
+0:11:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 115M 14% 753k/s ] rels: [ 0 0% 0/s ] features: [ 950M 2.3M/s ] 73G blocks: [ 13k 71% 6/s ]
+ cpus: 46.1 gc: 7% heap: 102G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.7G
+ read( 2%) -> (33/96) -> process(61% 61% 62% 61% 62% 62% 63% 62% 62% 63% 62% 63% 62% 61% 61% 64% 62% 63% 60% 59% 63% 62% 61% 62% 63% 62% 63% 61% 62% 62% 61% 60% 60% 62% 62% 62% 63% 61% 60% 61% 62% 62% 64% 62% 64% 63% 63% 61% 62% 62% 63% 62% 63% 62% 62% 62% 61% 61% 62% 63% 67% 62% 63%) -> (93k/114k) -> write(93%)
+0:11:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 123M 15% 736k/s ] rels: [ 0 0% 0/s ] features: [ 973M 2.3M/s ] 74G blocks: [ 13k 71% 6/s ]
+ cpus: 45.9 gc: 8% heap: 94G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.7G
+ read( 2%) -> (33/96) -> process(59% 63% 60% 60% 61% 60% 60% 61% 61% 60% 60% 60% 61% 61% 60% 62% 60% 61% 60% 59% 60% 60% 59% 62% 62% 61% 61% 59% 61% 61% 61% 59% 59% 61% 61% 62% 60% 61% 60% 58% 61% 61% 61% 60% 61% 58% 59% 60% 60% 61% 61% 60% 59% 61% 61% 60% 62% 60% 62% 59% 66% 63% 61%) -> (91k/114k) -> write(92%)
+0:12:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 130M 15% 719k/s ] rels: [ 0 0% 0/s ] features: [ 997M 2.3M/s ] 76G blocks: [ 13k 71% 5/s ]
+ cpus: 45.9 gc: 9% heap: 92G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 1.8G
+ read( 2%) -> (33/96) -> process(58% 60% 61% 61% 60% 60% 60% 62% 60% 59% 60% 61% 59% 61% 59% 59% 61% 59% 60% 63% 61% 59% 60% 59% 60% 61% 61% 58% 59% 58% 60% 62% 59% 60% 60% 59% 59% 62% 60% 60% 61% 62% 59% 59% 62% 61% 62% 58% 62% 62% 60% 60% 59% 60% 61% 58% 58% 59% 61% 61% 60% 60% 59%) -> (92k/114k) -> write(91%)
+0:12:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 137M 16% 728k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.2M/s ] 78G blocks: [ 13k 72% 6/s ]
+ cpus: 48.7 gc: 8% heap: 92G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 1.9G
+ read( 1%) -> (33/96) -> process(65% 64% 65% 68% 63% 63% 64% 64% 65% 64% 67% 64% 66% 65% 64% 65% 67% 65% 65% 65% 65% 63% 65% 64% 66% 63% 65% 63% 65% 65% 64% 66% 66% 66% 64% 72% 64% 63% 66% 65% 64% 65% 65% 66% 65% 64% 66% 62% 65% 64% 65% 69% 65% 65% 71% 64% 65% 63% 69% 63% 66% 65% 68%) -> (57k/114k) -> write(92%)
+0:12:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 145M 17% 753k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.3M/s ] 79G blocks: [ 13k 72% 5/s ]
+ cpus: 48.5 gc: 8% heap: 100G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2G
+ read( 2%) -> (33/96) -> process(66% 66% 64% 65% 64% 64% 62% 65% 63% 65% 67% 63% 66% 64% 64% 64% 66% 63% 65% 65% 63% 65% 63% 65% 66% 62% 66% 69% 64% 65% 63% 64% 64% 64% 64% 63% 62% 65% 64% 66% 63% 67% 65% 65% 64% 63% 64% 71% 64% 64% 65% 68% 66% 64% 69% 65% 65% 64% 68% 63% 64% 64% 65%) -> (92k/114k) -> write(92%)
+0:12:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 152M 18% 756k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.3M/s ] 81G blocks: [ 13k 72% 6/s ]
+ cpus: 48 gc: 8% heap: 92G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.1G
+ read( 1%) -> (33/96) -> process(64% 64% 63% 64% 67% 65% 63% 64% 64% 63% 65% 63% 63% 63% 63% 65% 64% 63% 63% 64% 65% 65% 63% 65% 65% 63% 63% 64% 63% 64% 65% 64% 64% 64% 63% 63% 65% 65% 63% 65% 63% 64% 65% 65% 63% 64% 62% 67% 62% 65% 64% 63% 62% 64% 64% 63% 66% 64% 63% 63% 65% 66% 64%) -> (54k/114k) -> write(92%)
+0:12:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 160M 19% 763k/s ] rels: [ 0 0% 0/s ] features: [ 1B 2.3M/s ] 82G blocks: [ 13k 73% 5/s ]
+ cpus: 48.5 gc: 9% heap: 102G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 2.2G
+ read( 1%) -> (33/96) -> process(64% 64% 64% 63% 64% 63% 63% 64% 64% 63% 65% 66% 64% 64% 64% 64% 66% 64% 62% 62% 64% 65% 66% 64% 64% 66% 65% 62% 63% 64% 64% 64% 64% 64% 64% 65% 62% 64% 63% 64% 64% 64% 64% 64% 64% 64% 63% 64% 63% 64% 64% 66% 65% 64% 63% 62% 63% 63% 64% 63% 65% 62% 63%) -> (93k/114k) -> write(91%)
+0:12:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 167M 20% 754k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.3M/s ] 84G blocks: [ 13k 73% 6/s ]
+ cpus: 48.2 gc: 9% heap: 95G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.2G
+ read( 2%) -> (33/96) -> process(63% 63% 66% 63% 66% 64% 62% 63% 62% 64% 64% 65% 62% 65% 63% 63% 65% 65% 64% 65% 65% 64% 61% 65% 63% 63% 63% 64% 65% 63% 65% 64% 64% 63% 65% 63% 62% 63% 62% 62% 61% 64% 65% 65% 66% 64% 64% 65% 63% 64% 63% 63% 65% 65% 63% 63% 64% 63% 65% 63% 64% 62% 62%) -> (90k/114k) -> write(91%)
+0:13:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 175M 21% 744k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.3M/s ] 86G blocks: [ 13k 73% 6/s ]
+ cpus: 49.2 gc: 7% heap: 103G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.3G
+ read( 2%) -> (33/96) -> process(66% 65% 72% 64% 65% 66% 65% 65% 63% 68% 66% 67% 63% 65% 61% 66% 65% 65% 64% 65% 67% 65% 66% 66% 65% 64% 64% 65% 72% 65% 67% 67% 76% 68% 66% 65% 63% 64% 65% 65% 68% 66% 68% 64% 66% 65% 65% 65% 65% 67% 64% 63% 63% 67% 64% 66% 65% 66% 64% 64% 65% 64% 64%) -> (92k/114k) -> write(92%)
+0:13:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 183M 22% 782k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.3M/s ] 87G blocks: [ 13k 74% 6/s ]
+ cpus: 48.3 gc: 8% heap: 92G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.4G
+ read( 1%) -> (33/96) -> process(64% 63% 64% 64% 65% 67% 63% 64% 65% 66% 65% 65% 65% 65% 63% 64% 64% 65% 66% 65% 64% 63% 65% 63% 65% 67% 67% 64% 63% 63% 65% 64% 63% 67% 65% 66% 65% 63% 65% 65% 67% 65% 64% 64% 65% 65% 66% 63% 64% 65% 66% 64% 64% 64% 64% 65% 64% 64% 64% 66% 64% 62% 68%) -> (58k/114k) -> write(91%)
+0:13:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 191M 23% 788k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 2.2M/s ] 89G blocks: [ 13k 74% 6/s ]
+ cpus: 49.3 gc: 8% heap: 92G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.5G
+ read( 2%) -> (33/96) -> process(65% 65% 66% 65% 65% 66% 64% 64% 66% 66% 65% 64% 67% 64% 64% 64% 64% 66% 66% 65% 64% 65% 65% 63% 64% 64% 65% 64% 65% 67% 64% 65% 66% 66% 65% 65% 65% 63% 64% 65% 64% 63% 65% 66% 65% 65% 63% 65% 66% 65% 65% 65% 65% 66% 66% 64% 64% 64% 66% 64% 65% 64% 64%) -> (86k/114k) -> write(91%)
+0:13:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 198M 24% 781k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 90G blocks: [ 13k 74% 6/s ]
+ cpus: 49.6 gc: 9% heap: 92G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 2.6G
+ read( 1%) -> (33/96) -> process(64% 63% 65% 67% 67% 64% 65% 67% 65% 64% 66% 64% 65% 67% 66% 66% 68% 66% 69% 68% 65% 66% 66% 64% 65% 69% 67% 67% 65% 69% 66% 64% 65% 66% 66% 64% 65% 67% 66% 65% 67% 67% 66% 66% 65% 64% 65% 66% 68% 65% 67% 68% 66% 65% 66% 65% 65% 67% 65% 67% 66% 69% 64%) -> (57k/114k) -> write(91%)
+0:13:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 207M 25% 821k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 91G blocks: [ 13k 75% 6/s ]
+ cpus: 51.3 gc: 9% heap: 96G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.8G
+ read( 2%) -> (33/96) -> process(67% 67% 67% 67% 69% 72% 67% 68% 68% 68% 67% 69% 67% 66% 67% 69% 70% 68% 69% 68% 67% 67% 68% 70% 69% 70% 67% 69% 69% 69% 69% 70% 71% 70% 67% 69% 70% 69% 69% 67% 67% 70% 67% 69% 66% 68% 68% 69% 69% 68% 69% 67% 69% 68% 68% 69% 67% 67% 68% 70% 70% 69% 70%) -> (91k/114k) -> write(90%)
+0:13:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 215M 26% 838k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.1M/s ] 93G blocks: [ 14k 75% 7/s ]
+ cpus: 51.9 gc: 10% heap: 91G/118G direct: 10M postGC: 90G relInfo: 971M mpGeoms: 2.8G
+ read( 2%) -> (33/96) -> process(66% 69% 70% 69% 67% 69% 67% 68% 66% 68% 67% 66% 65% 68% 68% 69% 66% 69% 67% 69% 66% 70% 70% 65% 67% 68% 69% 70% 69% 68% 67% 69% 67% 66% 68% 66% 68% 68% 69% 68% 66% 66% 67% 69% 68% 68% 69% 67% 67% 68% 68% 68% 69% 70% 69% 67% 68% 69% 66% 68% 66% 70% 68%) -> (62k/114k) -> write(89%)
+0:14:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 223M 27% 822k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 94G blocks: [ 14k 75% 6/s ]
+ cpus: 51.5 gc: 9% heap: 92G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 2.9G
+ read( 2%) -> (33/96) -> process(67% 70% 70% 69% 67% 71% 68% 67% 69% 66% 68% 69% 68% 69% 69% 65% 66% 66% 67% 70% 70% 69% 69% 70% 68% 70% 68% 66% 67% 66% 69% 67% 71% 67% 68% 68% 67% 68% 68% 66% 69% 68% 67% 66% 66% 68% 67% 68% 65% 68% 70% 71% 69% 67% 68% 67% 68% 66% 68% 67% 68% 69% 67%) -> (58k/114k) -> write(91%)
+0:14:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 232M 28% 821k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 2.2M/s ] 95G blocks: [ 14k 76% 6/s ]
+ cpus: 50.8 gc: 7% heap: 92G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3G
+ read( 2%) -> (33/96) -> process(69% 68% 68% 68% 68% 68% 69% 66% 68% 66% 67% 66% 70% 70% 68% 69% 70% 69% 67% 67% 66% 69% 69% 69% 70% 69% 69% 68% 66% 68% 69% 66% 68% 70% 69% 67% 67% 67% 69% 68% 68% 67% 67% 68% 69% 66% 68% 68% 68% 70% 69% 68% 67% 67% 67% 69% 67% 68% 70% 68% 68% 69% 69%) -> (62k/114k) -> write(92%)
+0:14:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 240M 29% 808k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.2M/s ] 97G blocks: [ 14k 76% 6/s ]
+ cpus: 50.1 gc: 8% heap: 101G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.1G
+ read( 2%) -> (33/96) -> process(68% 65% 68% 67% 68% 67% 68% 68% 67% 66% 66% 66% 66% 67% 66% 67% 67% 67% 66% 69% 67% 67% 66% 67% 68% 68% 67% 67% 68% 67% 68% 66% 67% 67% 66% 67% 66% 67% 67% 67% 68% 66% 67% 67% 65% 68% 67% 67% 66% 67% 65% 68% 66% 65% 66% 67% 67% 65% 67% 68% 68% 67% 67%) -> (88k/114k) -> write(91%)
+0:14:39 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 248M 29% 789k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.2M/s ] 98G blocks: [ 14k 76% 6/s ]
+ cpus: 50.1 gc: 9% heap: 95G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.2G
+ read( 2%) -> (33/96) -> process(66% 68% 66% 67% 69% 66% 66% 66% 66% 66% 68% 64% 67% 65% 67% 66% 65% 66% 65% 65% 65% 67% 66% 66% 65% 67% 64% 65% 67% 66% 67% 67% 67% 65% 65% 67% 66% 66% 65% 67% 65% 66% 66% 67% 65% 66% 68% 64% 68% 68% 66% 66% 67% 67% 67% 65% 66% 65% 68% 68% 66% 66% 68%) -> (93k/114k) -> write(91%)
+0:14:49 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 256M 30% 790k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.2M/s ] 100G blocks: [ 14k 77% 6/s ]
+ cpus: 50.2 gc: 8% heap: 94G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.3G
+ read( 1%) -> (33/96) -> process(68% 66% 64% 69% 65% 65% 66% 67% 68% 67% 69% 68% 66% 68% 65% 65% 69% 66% 67% 66% 67% 67% 67% 66% 65% 67% 68% 66% 67% 66% 67% 67% 67% 68% 64% 66% 65% 67% 65% 66% 66% 66% 68% 67% 67% 67% 68% 66% 66% 67% 68% 67% 66% 66% 66% 67% 65% 68% 66% 67% 68% 64% 66%) -> (82k/114k) -> write(91%)
+0:14:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 264M 31% 809k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 2.2M/s ] 101G blocks: [ 14k 77% 6/s ]
+ cpus: 50.8 gc: 8% heap: 103G/118G direct: 10M postGC: 91G relInfo: 971M mpGeoms: 3.4G
+ read( 1%) -> (33/96) -> process(67% 67% 67% 66% 67% 65% 68% 67% 68% 67% 66% 66% 67% 68% 68% 65% 67% 66% 68% 67% 66% 67% 67% 68% 69% 69% 65% 68% 68% 67% 68% 67% 66% 66% 68% 67% 67% 67% 68% 68% 67% 66% 67% 67% 67% 68% 65% 68% 69% 69% 68% 68% 67% 67% 68% 66% 69% 65% 68% 68% 67% 67% 67%) -> (90k/114k) -> write(91%)
+0:15:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 272M 32% 875k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.2M/s ] 103G blocks: [ 14k 77% 6/s ]
+ cpus: 51.4 gc: 9% heap: 99G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.5G
+ read( 1%) -> (33/96) -> process(66% 66% 68% 68% 68% 67% 67% 68% 69% 67% 69% 67% 65% 68% 69% 69% 69% 68% 68% 66% 68% 68% 67% 68% 69% 68% 67% 69% 66% 66% 64% 70% 66% 69% 67% 66% 69% 67% 68% 68% 67% 66% 67% 70% 66% 67% 67% 68% 66% 68% 68% 67% 67% 66% 68% 67% 68% 69% 65% 68% 67% 66% 67%) -> (90k/114k) -> write(90%)
+0:15:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 281M 33% 889k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.2M/s ] 104G blocks: [ 14k 78% 6/s ]
+ cpus: 51.3 gc: 9% heap: 96G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.7G
+ read( 2%) -> (33/96) -> process(69% 68% 68% 67% 70% 68% 67% 67% 69% 70% 66% 66% 69% 67% 68% 68% 70% 68% 69% 67% 69% 68% 68% 67% 68% 67% 67% 67% 69% 70% 66% 66% 66% 68% 66% 68% 67% 69% 67% 65% 68% 67% 68% 68% 69% 68% 69% 66% 66% 69% 66% 68% 67% 68% 68% 67% 68% 66% 68% 68% 68% 69% 69%) -> (90k/114k) -> write(91%)
+0:15:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 290M 34% 843k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.2M/s ] 105G blocks: [ 14k 78% 6/s ]
+ cpus: 50.2 gc: 8% heap: 99G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.7G
+ read( 1%) -> (33/96) -> process(67% 68% 67% 67% 65% 66% 68% 66% 67% 67% 65% 65% 64% 65% 67% 64% 64% 69% 67% 65% 67% 67% 67% 67% 64% 66% 68% 67% 67% 65% 67% 64% 66% 68% 66% 65% 66% 67% 67% 65% 65% 66% 67% 66% 67% 67% 66% 65% 67% 66% 67% 67% 66% 68% 66% 64% 66% 66% 67% 66% 66% 65% 67%) -> (92k/114k) -> write(91%)
+0:15:39 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 298M 35% 821k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.2M/s ] 107G blocks: [ 14k 78% 6/s ]
+ cpus: 50 gc: 8% heap: 96G/118G direct: 10M postGC: 92G relInfo: 971M mpGeoms: 3.8G
+ read( 1%) -> (32/96) -> process(67% 67% 65% 65% 66% 65% 66% 67% 66% 68% 66% 66% 67% 66% 66% 66% 66% 68% 66% 64% 65% 64% 67% 67% 67% 67% 66% 66% 68% 68% 67% 67% 64% 64% 66% 67% 66% 67% 65% 66% 64% 66% 64% 67% 64% 66% 64% 65% 66% 66% 64% 64% 66% 64% 65% 66% 67% 65% 66% 67% 66% 66% 67%) -> (91k/114k) -> write(91%)
+0:15:49 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 307M 36% 847k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 2.2M/s ] 108G blocks: [ 14k 79% 6/s ]
+ cpus: 51.6 gc: 9% heap: 97G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 3.9G
+ read( 1%) -> (33/96) -> process(68% 69% 67% 67% 66% 69% 66% 68% 72% 68% 70% 71% 69% 67% 69% 69% 70% 68% 67% 68% 68% 68% 71% 68% 69% 70% 67% 68% 68% 67% 70% 68% 67% 69% 68% 68% 66% 70% 69% 67% 69% 69% 68% 68% 68% 66% 70% 67% 67% 66% 69% 66% 68% 68% 70% 68% 69% 69% 69% 68% 67% 69% 68%) -> (92k/114k) -> write(91%)
+0:15:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 315M 37% 857k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.2M/s ] 110G blocks: [ 14k 79% 6/s ]
+ cpus: 51.1 gc: 9% heap: 101G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4G
+ read( 1%) -> (33/96) -> process(68% 65% 67% 67% 66% 68% 67% 69% 69% 69% 68% 67% 66% 67% 64% 68% 67% 67% 68% 68% 66% 67% 70% 66% 69% 66% 67% 68% 67% 65% 68% 67% 67% 68% 67% 68% 67% 67% 66% 67% 68% 68% 69% 67% 66% 66% 68% 66% 68% 68% 67% 66% 68% 67% 68% 66% 66% 66% 67% 68% 68% 65% 66%) -> (89k/114k) -> write(90%)
+0:16:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 324M 39% 867k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.2M/s ] 111G blocks: [ 14k 79% 6/s ]
+ cpus: 50.8 gc: 8% heap: 98G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.1G
+ read( 1%) -> (33/96) -> process(67% 67% 67% 67% 69% 70% 66% 68% 68% 67% 67% 64% 69% 67% 67% 69% 69% 67% 67% 67% 66% 68% 70% 70% 67% 69% 64% 67% 66% 66% 65% 67% 68% 66% 70% 69% 65% 68% 64% 70% 68% 71% 68% 68% 66% 69% 70% 68% 66% 67% 63% 67% 68% 67% 69% 69% 70% 65% 65% 69% 67% 71% 69%) -> (91k/114k) -> write(91%)
+0:16:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 333M 40% 880k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.2M/s ] 112G blocks: [ 14k 80% 6/s ]
+ cpus: 51 gc: 9% heap: 98G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.2G
+ read( 1%) -> (33/96) -> process(63% 67% 67% 66% 66% 69% 68% 66% 66% 66% 67% 66% 67% 66% 67% 66% 68% 67% 69% 69% 67% 66% 65% 66% 65% 67% 68% 65% 68% 66% 66% 67% 65% 68% 67% 65% 64% 65% 66% 67% 69% 67% 66% 64% 70% 65% 64% 68% 65% 66% 64% 67% 68% 68% 68% 65% 67% 66% 64% 67% 66% 68% 65%) -> (89k/114k) -> write(90%)
+0:16:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 342M 41% 879k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 2.2M/s ] 114G blocks: [ 15k 80% 6/s ]
+ cpus: 51.2 gc: 9% heap: 98G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.3G
+ read( 2%) -> (33/96) -> process(67% 67% 68% 69% 66% 69% 65% 67% 65% 66% 68% 67% 68% 67% 67% 70% 67% 67% 68% 67% 66% 65% 68% 66% 68% 64% 68% 68% 68% 69% 68% 68% 70% 65% 64% 66% 66% 67% 66% 69% 66% 69% 67% 67% 69% 68% 70% 66% 66% 64% 68% 68% 65% 67% 68% 66% 68% 65% 69% 64% 68% 66% 65%) -> (91k/114k) -> write(90%)
+0:16:39 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 350M 42% 856k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.2M/s ] 115G blocks: [ 15k 81% 6/s ]
+ cpus: 51.1 gc: 9% heap: 100G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 4.4G
+ read( 1%) -> (33/96) -> process(68% 67% 63% 66% 64% 69% 69% 71% 69% 69% 66% 65% 65% 67% 63% 69% 69% 64% 68% 67% 66% 72% 69% 66% 67% 68% 66% 64% 68% 68% 68% 74% 71% 66% 65% 67% 68% 65% 66% 70% 67% 67% 66% 66% 65% 67% 68% 68% 67% 64% 64% 66% 67% 66% 67% 67% 68% 66% 67% 67% 69% 66% 64%) -> (90k/114k) -> write(90%)
+0:16:49 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 359M 43% 875k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.2M/s ] 116G blocks: [ 15k 81% 6/s ]
+ cpus: 51.4 gc: 9% heap: 97G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.5G
+ read( 1%) -> (33/96) -> process(67% 66% 67% 65% 66% 65% 62% 69% 69% 67% 66% 67% 67% 68% 69% 67% 70% 67% 70% 70% 67% 67% 68% 68% 67% 71% 68% 66% 69% 68% 69% 67% 67% 66% 67% 66% 67% 67% 67% 70% 68% 66% 68% 66% 67% 64% 67% 67% 65% 65% 68% 67% 68% 67% 66% 68% 68% 67% 65% 67% 69% 66% 65%) -> (90k/114k) -> write(90%)
+0:16:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 368M 44% 889k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.2M/s ] 118G blocks: [ 15k 81% 6/s ]
+ cpus: 51.6 gc: 9% heap: 96G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 4.5G
+ read( 1%) -> (33/96) -> process(67% 69% 68% 69% 68% 67% 68% 67% 69% 68% 70% 68% 69% 67% 67% 66% 69% 66% 70% 69% 67% 69% 66% 68% 69% 66% 71% 69% 67% 69% 68% 69% 65% 69% 68% 70% 70% 69% 68% 68% 71% 68% 68% 66% 66% 66% 69% 67% 69% 69% 67% 67% 68% 70% 67% 65% 66% 67% 67% 69% 66% 67% 68%) -> (91k/114k) -> write(91%)
+0:17:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 376M 45% 854k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 2.2M/s ] 119G blocks: [ 15k 82% 7/s ]
+ cpus: 51.9 gc: 10% heap: 101G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 4.6G
+ read( 1%) -> (33/96) -> process(68% 68% 69% 68% 69% 65% 68% 71% 67% 67% 67% 70% 68% 67% 68% 70% 66% 68% 67% 68% 70% 68% 67% 68% 69% 67% 67% 68% 65% 67% 69% 67% 68% 67% 67% 67% 66% 65% 64% 70% 68% 68% 66% 68% 67% 68% 69% 68% 69% 67% 66% 67% 70% 69% 70% 67% 72% 67% 67% 67% 68% 66% 67%) -> (93k/114k) -> write(89%)
+0:17:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 385M 46% 850k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.1M/s ] 120G blocks: [ 15k 82% 5/s ]
+ cpus: 50.7 gc: 11% heap: 96G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 4.8G
+ read( 1%) -> (33/96) -> process(66% 65% 66% 64% 68% 64% 67% 66% 64% 66% 65% 63% 63% 65% 66% 63% 66% 64% 62% 63% 67% 65% 65% 67% 66% 64% 65% 65% 66% 65% 63% 65% 64% 62% 64% 66% 67% 64% 63% 65% 67% 64% 64% 63% 65% 64% 64% 64% 65% 66% 64% 66% 65% 66% 67% 63% 63% 65% 66% 66% 65% 67% 64%) -> (60k/114k) -> write(88%)
+0:17:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 394M 47% 903k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.2M/s ] 121G blocks: [ 15k 82% 6/s ]
+ cpus: 51.7 gc: 10% heap: 102G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 4.9G
+ read( 1%) -> (33/96) -> process(67% 67% 67% 68% 68% 68% 68% 68% 67% 68% 66% 67% 69% 67% 67% 67% 66% 66% 67% 67% 69% 65% 68% 68% 67% 66% 67% 68% 68% 66% 67% 70% 65% 68% 65% 69% 69% 68% 69% 68% 69% 67% 66% 68% 66% 67% 67% 68% 69% 66% 67% 68% 66% 67% 69% 68% 68% 67% 69% 66% 69% 68% 68%) -> (92k/114k) -> write(89%)
+0:17:39 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 403M 48% 917k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.2M/s ] 123G blocks: [ 15k 83% 6/s ]
+ cpus: 51.8 gc: 9% heap: 100G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5G
+ read( 1%) -> (33/96) -> process(67% 67% 69% 68% 67% 66% 67% 67% 66% 68% 68% 67% 69% 67% 67% 67% 69% 68% 70% 67% 65% 67% 66% 67% 68% 67% 68% 68% 67% 67% 68% 68% 68% 66% 65% 66% 69% 66% 67% 69% 67% 66% 67% 67% 68% 67% 69% 67% 66% 66% 68% 69% 69% 70% 65% 66% 66% 67% 66% 70% 68% 66% 65%) -> (93k/114k) -> write(90%)
+0:17:49 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 412M 49% 903k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.2M/s ] 124G blocks: [ 15k 83% 6/s ]
+ cpus: 51.1 gc: 10% heap: 100G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5.1G
+ read( 1%) -> (33/96) -> process(67% 68% 66% 66% 65% 66% 66% 66% 67% 66% 64% 66% 65% 65% 67% 67% 66% 66% 67% 66% 69% 65% 68% 66% 67% 67% 66% 68% 65% 65% 66% 65% 67% 67% 66% 67% 65% 65% 66% 66% 66% 64% 66% 66% 66% 68% 66% 68% 66% 66% 67% 66% 67% 66% 65% 68% 67% 67% 65% 64% 65% 67% 65%) -> (92k/114k) -> write(89%)
+0:17:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 421M 50% 916k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 2.2M/s ] 125G blocks: [ 15k 83% 6/s ]
+ cpus: 51.4 gc: 10% heap: 101G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.1G
+ read( 1%) -> (33/96) -> process(66% 68% 66% 69% 68% 66% 69% 65% 67% 68% 67% 68% 67% 65% 67% 66% 67% 67% 68% 67% 66% 66% 68% 66% 69% 66% 67% 67% 67% 65% 68% 67% 68% 69% 68% 68% 66% 67% 66% 67% 64% 67% 66% 69% 67% 68% 66% 67% 67% 68% 64% 67% 67% 67% 70% 66% 67% 67% 66% 65% 66% 68% 66%) -> (89k/114k) -> write(89%)
+0:18:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 430M 51% 909k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 126G blocks: [ 15k 84% 6/s ]
+ cpus: 50.8 gc: 9% heap: 95G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.2G
+ read( 1%) -> (33/96) -> process(66% 69% 67% 66% 68% 66% 66% 66% 65% 67% 65% 66% 67% 66% 65% 67% 67% 67% 68% 67% 69% 66% 66% 66% 67% 67% 67% 66% 67% 69% 67% 67% 68% 65% 68% 66% 65% 67% 66% 68% 67% 65% 66% 68% 68% 66% 67% 67% 67% 65% 64% 67% 67% 64% 64% 68% 66% 66% 66% 66% 67% 66% 67%) -> (63k/114k) -> write(90%)
+0:18:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 439M 52% 890k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 128G blocks: [ 15k 84% 6/s ]
+ cpus: 50.3 gc: 10% heap: 95G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.2G
+ read( 1%) -> (33/96) -> process(65% 66% 64% 63% 65% 65% 65% 64% 64% 65% 65% 65% 65% 64% 64% 61% 66% 65% 67% 65% 64% 64% 66% 66% 65% 66% 66% 66% 65% 64% 64% 64% 66% 65% 65% 66% 65% 65% 64% 66% 65% 65% 64% 66% 65% 66% 63% 65% 65% 64% 64% 66% 64% 66% 66% 65% 65% 65% 65% 65% 67% 66% 65%) -> (54k/114k) -> write(89%)
+0:18:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 449M 53% 902k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 129G blocks: [ 15k 84% 6/s ]
+ cpus: 51 gc: 9% heap: 98G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.3G
+ read( 1%) -> (33/96) -> process(66% 68% 67% 66% 67% 65% 67% 68% 68% 67% 68% 66% 67% 68% 66% 66% 67% 68% 67% 67% 68% 67% 68% 66% 66% 66% 69% 68% 67% 67% 66% 67% 68% 66% 67% 67% 67% 67% 67% 67% 68% 68% 67% 66% 67% 67% 69% 66% 67% 67% 67% 66% 66% 65% 67% 66% 66% 65% 67% 66% 68% 65% 67%) -> (80k/114k) -> write(91%)
+0:18:39 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 458M 54% 902k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 2.2M/s ] 130G blocks: [ 15k 85% 6/s ]
+ cpus: 50.6 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.4G
+ read( 1%) -> (33/96) -> process(65% 66% 67% 65% 64% 63% 68% 68% 65% 66% 65% 66% 63% 65% 66% 66% 65% 66% 65% 66% 65% 66% 66% 66% 65% 65% 64% 67% 64% 66% 66% 64% 65% 64% 66% 65% 67% 66% 66% 63% 64% 65% 65% 64% 65% 66% 67% 65% 67% 65% 66% 64% 65% 65% 66% 67% 65% 65% 65% 63% 66% 65% 66%) -> (88k/114k) -> write(89%)
+0:18:49 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 467M 56% 931k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 131G blocks: [ 15k 85% 5/s ]
+ cpus: 50.5 gc: 9% heap: 96G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.5G
+ read( 1%) -> (33/96) -> process(66% 64% 64% 66% 67% 67% 66% 65% 64% 65% 66% 66% 67% 66% 65% 65% 64% 63% 67% 65% 65% 64% 66% 65% 65% 66% 64% 67% 64% 65% 65% 65% 66% 67% 65% 66% 67% 65% 65% 66% 64% 67% 66% 67% 65% 62% 67% 64% 67% 64% 64% 67% 66% 64% 66% 66% 64% 63% 65% 64% 67% 66% 66%) -> (90k/114k) -> write(90%)
+0:18:59 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 476M 57% 938k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 133G blocks: [ 16k 85% 6/s ]
+ cpus: 50.9 gc: 10% heap: 96G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 5.5G
+ read( 1%) -> (33/96) -> process(66% 67% 66% 65% 66% 66% 65% 65% 67% 67% 68% 67% 66% 65% 67% 66% 66% 65% 67% 65% 68% 66% 66% 66% 69% 67% 69% 67% 67% 67% 65% 65% 66% 66% 66% 68% 67% 67% 66% 66% 66% 65% 64% 66% 66% 66% 67% 64% 66% 66% 67% 66% 67% 64% 65% 67% 68% 67% 68% 65% 66% 65% 66%) -> (93k/114k) -> write(90%)
+0:19:09 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 486M 58% 943k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 134G blocks: [ 16k 86% 6/s ]
+ cpus: 50.9 gc: 10% heap: 98G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.6G
+ read( 1%) -> (33/96) -> process(68% 68% 67% 65% 66% 67% 65% 66% 66% 66% 67% 65% 66% 66% 68% 68% 67% 66% 68% 63% 65% 65% 66% 64% 66% 66% 66% 67% 64% 68% 67% 65% 66% 66% 66% 68% 67% 65% 66% 64% 66% 67% 66% 68% 66% 66% 65% 65% 66% 67% 67% 66% 66% 66% 65% 68% 66% 66% 66% 67% 66% 66% 65%) -> (90k/114k) -> write(90%)
+0:19:19 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 495M 59% 938k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 135G blocks: [ 16k 86% 6/s ]
+ cpus: 50.2 gc: 9% heap: 95G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.6G
+ read( 1%) -> (33/96) -> process(65% 65% 67% 64% 66% 64% 64% 63% 64% 64% 66% 66% 64% 64% 65% 63% 64% 66% 65% 66% 67% 64% 65% 64% 65% 72% 64% 63% 66% 66% 68% 63% 64% 65% 66% 65% 65% 65% 67% 66% 66% 64% 66% 64% 63% 66% 63% 65% 64% 65% 65% 65% 65% 64% 64% 66% 65% 67% 65% 65% 66% 66% 65%) -> (58k/114k) -> write(90%)
+0:19:29 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 505M 60% 933k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 2.2M/s ] 136G blocks: [ 16k 86% 6/s ]
+ cpus: 51.7 gc: 9% heap: 103G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.7G
+ read( 1%) -> (33/96) -> process(66% 67% 66% 68% 68% 67% 68% 66% 67% 65% 67% 70% 67% 62% 64% 67% 67% 67% 67% 67% 68% 68% 67% 67% 65% 67% 68% 67% 66% 67% 67% 68% 67% 68% 67% 66% 67% 66% 68% 64% 68% 68% 64% 66% 68% 67% 67% 69% 68% 69% 66% 64% 67% 66% 66% 65% 67% 66% 69% 68% 67% 66% 67%) -> (80k/114k) -> write(90%)
+0:19:40 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 514M 61% 918k/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 138G blocks: [ 16k 87% 6/s ]
+ cpus: 51.7 gc: 10% heap: 94G/118G direct: 10M postGC: 93G relInfo: 971M mpGeoms: 5.8G
+ read( 1%) -> (33/96) -> process(67% 66% 68% 69% 65% 66% 68% 66% 69% 68% 65% 68% 69% 65% 67% 68% 67% 68% 70% 67% 67% 66% 67% 66% 66% 67% 66% 67% 67% 67% 66% 67% 70% 68% 68% 69% 68% 67% 67% 67% 66% 67% 69% 67% 68% 66% 66% 68% 66% 68% 68% 66% 70% 68% 65% 69% 67% 68% 70% 68% 67% 65% 63%) -> (65k/114k) -> write(89%)
+0:19:50 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 523M 62% 931k/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 139G blocks: [ 16k 87% 6/s ]
+ cpus: 51.3 gc: 9% heap: 95G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.9G
+ read( 1%) -> (33/96) -> process(65% 66% 64% 70% 66% 65% 67% 66% 65% 66% 68% 68% 69% 63% 67% 66% 66% 69% 68% 69% 68% 70% 67% 66% 66% 67% 65% 66% 66% 69% 67% 65% 68% 66% 67% 68% 65% 68% 67% 68% 67% 67% 68% 64% 70% 66% 69% 66% 71% 66% 69% 66% 69% 67% 67% 67% 68% 68% 68% 66% 67% 66% 68%) -> (43k/114k) -> write(90%)
+0:20:00 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 533M 63% 934k/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 140G blocks: [ 16k 87% 6/s ]
+ cpus: 51.3 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 5.9G
+ read( 1%) -> (33/96) -> process(69% 65% 66% 69% 68% 67% 67% 66% 67% 68% 65% 65% 68% 70% 64% 66% 65% 66% 66% 66% 65% 67% 66% 66% 69% 64% 66% 68% 66% 67% 65% 68% 63% 65% 67% 66% 66% 69% 66% 66% 66% 65% 66% 67% 66% 67% 68% 66% 66% 68% 66% 66% 67% 65% 64% 64% 66% 66% 65% 68% 67% 67% 67%) -> (65k/114k) -> write(90%)
+0:20:10 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 542M 64% 904k/s ] rels: [ 0 0% 0/s ] features: [ 2B 2.2M/s ] 141G blocks: [ 16k 88% 6/s ]
+ cpus: 52.9 gc: 8% heap: 103G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 6G
+ read( 1%) -> (33/96) -> process(69% 67% 66% 72% 71% 68% 71% 70% 69% 69% 68% 70% 70% 69% 70% 69% 69% 69% 70% 71% 69% 67% 69% 68% 73% 70% 70% 69% 68% 69% 69% 71% 75% 69% 70% 68% 72% 70% 69% 69% 70% 72% 72% 69% 71% 69% 70% 68% 69% 72% 72% 70% 69% 69% 71% 70% 69% 70% 68% 68% 69% 71% 69%) -> (91k/114k) -> write(90%)
+0:20:20 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 551M 65% 894k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.2M/s ] 143G blocks: [ 16k 88% 6/s ]
+ cpus: 51.8 gc: 9% heap: 97G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.1G
+ read( 1%) -> (33/96) -> process(69% 70% 65% 69% 70% 68% 65% 67% 68% 69% 66% 69% 69% 68% 71% 69% 67% 67% 64% 67% 69% 68% 67% 70% 70% 69% 70% 69% 68% 69% 67% 68% 66% 68% 67% 66% 69% 68% 69% 66% 70% 68% 67% 66% 69% 67% 68% 70% 68% 69% 69% 69% 65% 65% 68% 70% 64% 68% 70% 68% 66% 66% 69%) -> (90k/114k) -> write(90%)
+0:20:30 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 560M 67% 899k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.3M/s ] 144G blocks: [ 16k 88% 6/s ]
+ cpus: 50.3 gc: 9% heap: 100G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.2G
+ read( 1%) -> (33/96) -> process(69% 68% 67% 66% 66% 66% 67% 67% 67% 65% 64% 65% 66% 65% 67% 67% 67% 66% 66% 65% 65% 64% 67% 64% 66% 65% 65% 65% 65% 67% 66% 65% 68% 66% 65% 65% 66% 66% 66% 65% 68% 67% 65% 65% 66% 68% 67% 65% 66% 66% 67% 65% 67% 67% 66% 67% 67% 65% 66% 66% 66% 66% 65%) -> (91k/114k) -> write(90%)
+0:20:40 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 569M 68% 887k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.2M/s ] 145G blocks: [ 16k 89% 6/s ]
+ cpus: 51.5 gc: 9% heap: 101G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.3G
+ read( 1%) -> (33/96) -> process(72% 70% 67% 70% 68% 69% 69% 69% 66% 67% 71% 67% 69% 69% 68% 69% 68% 68% 65% 70% 69% 66% 66% 67% 67% 68% 70% 67% 65% 69% 68% 70% 68% 66% 66% 68% 65% 70% 68% 70% 69% 65% 68% 66% 70% 65% 68% 66% 69% 67% 68% 67% 67% 71% 69% 67% 69% 69% 68% 69% 68% 67% 67%) -> (92k/114k) -> write(91%)
+0:20:50 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 578M 69% 895k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 2.2M/s ] 147G blocks: [ 16k 89% 6/s ]
+ cpus: 51.7 gc: 9% heap: 98G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.4G
+ read( 1%) -> (33/96) -> process(67% 68% 66% 66% 66% 69% 64% 69% 67% 66% 66% 67% 68% 66% 64% 67% 65% 68% 67% 68% 66% 68% 68% 67% 68% 65% 68% 69% 68% 66% 66% 69% 66% 66% 66% 68% 65% 68% 69% 68% 67% 66% 66% 67% 67% 66% 67% 68% 66% 67% 70% 66% 65% 66% 66% 66% 67% 67% 66% 68% 69% 70% 67%) -> (95k/114k) -> write(90%)
+0:21:00 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 587M 70% 915k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.2M/s ] 148G blocks: [ 16k 89% 6/s ]
+ cpus: 51.1 gc: 11% heap: 99G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.4G
+ read( 1%) -> (33/96) -> process(64% 67% 66% 66% 66% 68% 65% 65% 67% 68% 65% 65% 65% 67% 65% 65% 65% 67% 66% 67% 67% 67% 65% 66% 68% 64% 65% 68% 67% 65% 65% 66% 66% 66% 67% 68% 63% 67% 67% 66% 68% 66% 68% 65% 68% 65% 67% 66% 66% 65% 67% 65% 67% 63% 67% 69% 66% 65% 67% 67% 67% 65% 65%) -> (91k/114k) -> write(88%)
+0:21:10 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 596M 71% 921k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.3M/s ] 149G blocks: [ 16k 90% 6/s ]
+ cpus: 50.1 gc: 10% heap: 97G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.5G
+ read( 1%) -> (33/96) -> process(66% 65% 65% 64% 66% 64% 67% 65% 64% 66% 65% 64% 65% 67% 64% 64% 64% 63% 64% 66% 66% 65% 64% 64% 65% 67% 65% 65% 63% 65% 64% 63% 64% 65% 64% 66% 65% 64% 67% 65% 67% 65% 66% 64% 62% 67% 64% 66% 62% 65% 62% 67% 63% 65% 67% 67% 64% 67% 67% 63% 65% 64% 66%) -> (90k/114k) -> write(90%)
+0:21:20 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 605M 72% 925k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.3M/s ] 151G blocks: [ 16k 90% 6/s ]
+ cpus: 51 gc: 9% heap: 99G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.6G
+ read( 1%) -> (33/96) -> process(67% 64% 66% 67% 67% 66% 67% 66% 65% 64% 65% 66% 66% 64% 65% 66% 66% 67% 67% 68% 66% 65% 67% 65% 66% 66% 66% 64% 67% 64% 67% 66% 65% 67% 67% 66% 66% 65% 67% 66% 66% 67% 68% 63% 66% 66% 67% 66% 65% 67% 64% 65% 67% 66% 66% 66% 68% 67% 66% 64% 67% 63% 65%) -> (94k/114k) -> write(91%)
+0:21:30 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 615M 73% 949k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.3M/s ] 152G blocks: [ 16k 90% 6/s ]
+ cpus: 50.3 gc: 9% heap: 102G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.7G
+ read( 1%) -> (33/96) -> process(67% 64% 66% 65% 66% 65% 66% 64% 66% 67% 67% 67% 66% 68% 66% 66% 66% 65% 68% 63% 65% 66% 69% 66% 64% 65% 65% 67% 65% 67% 68% 63% 64% 68% 64% 64% 67% 65% 65% 66% 65% 66% 64% 65% 67% 68% 66% 67% 67% 66% 66% 66% 67% 67% 63% 67% 64% 65% 64% 67% 67% 67% 65%) -> (92k/114k) -> write(91%)
+0:21:40 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 624M 74% 907k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 2.2M/s ] 153G blocks: [ 17k 91% 6/s ]
+ cpus: 52.5 gc: 9% heap: 95G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 6.8G
+ read( 1%) -> (33/96) -> process(66% 70% 68% 67% 70% 68% 71% 67% 65% 68% 67% 68% 68% 68% 71% 66% 67% 68% 68% 70% 70% 67% 68% 66% 68% 68% 68% 70% 66% 66% 67% 69% 65% 68% 69% 67% 65% 70% 67% 68% 70% 66% 66% 69% 68% 66% 68% 71% 70% 69% 69% 67% 66% 68% 70% 70% 71% 67% 70% 70% 68% 68% 68%) -> (71k/114k) -> write(90%)
+0:21:50 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 633M 75% 915k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 2.3M/s ] 155G blocks: [ 17k 91% 7/s ]
+ cpus: 50.9 gc: 9% heap: 97G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 7G
+ read( 1%) -> (33/96) -> process(67% 67% 66% 65% 65% 66% 68% 67% 64% 66% 66% 67% 67% 67% 64% 68% 67% 66% 69% 67% 68% 66% 66% 64% 68% 65% 66% 68% 68% 64% 68% 65% 67% 69% 67% 67% 64% 65% 64% 65% 65% 66% 68% 67% 70% 67% 67% 67% 65% 63% 68% 68% 66% 66% 69% 66% 68% 66% 67% 69% 68% 65% 68%) -> (89k/114k) -> write(90%)
+0:22:00 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 642M 76% 911k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 2.2M/s ] 156G blocks: [ 17k 92% 6/s ]
+ cpus: 53.8 gc: 10% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.1G
+ read( 1%) -> (33/96) -> process(69% 68% 70% 72% 70% 69% 71% 70% 68% 69% 66% 73% 69% 69% 68% 69% 69% 71% 65% 70% 71% 67% 69% 69% 66% 69% 72% 72% 68% 78% 68% 70% 81% 68% 73% 67% 69% 70% 67% 68% 66% 66% 67% 68% 64% 71% 69% 68% 69% 69% 70% 72% 69% 69% 67% 70% 70% 70% 73% 69% 69% 71% 68%) -> (61k/114k) -> write(88%)
+0:22:10 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 652M 77% 943k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 2.3M/s ] 158G blocks: [ 17k 92% 6/s ]
+ cpus: 52.2 gc: 9% heap: 102G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.2G
+ read( 1%) -> (33/96) -> process(68% 68% 70% 67% 68% 68% 66% 67% 70% 67% 67% 67% 65% 69% 68% 67% 71% 65% 68% 71% 70% 65% 67% 68% 68% 68% 69% 68% 67% 68% 69% 68% 66% 68% 75% 68% 65% 67% 68% 67% 68% 65% 68% 69% 68% 72% 69% 68% 68% 68% 68% 66% 68% 68% 68% 67% 67% 69% 67% 66% 64% 68% 67%) -> (93k/114k) -> write(90%)
+0:22:20 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 661M 79% 944k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 2.3M/s ] 159G blocks: [ 17k 92% 6/s ]
+ cpus: 50.8 gc: 10% heap: 98G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.3G
+ read( 1%) -> (33/96) -> process(66% 64% 65% 65% 64% 67% 67% 66% 66% 66% 62% 66% 66% 66% 63% 67% 64% 63% 66% 64% 65% 66% 68% 66% 65% 67% 66% 66% 65% 67% 66% 64% 65% 65% 66% 65% 66% 65% 68% 68% 64% 67% 65% 64% 66% 65% 67% 64% 66% 66% 68% 68% 65% 66% 67% 68% 68% 66% 66% 65% 66% 66% 66%) -> (91k/114k) -> write(90%)
+0:22:30 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 671M 80% 950k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 2.3M/s ] 160G blocks: [ 17k 93% 6/s ]
+ cpus: 51 gc: 9% heap: 100G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.3G
+ read( 1%) -> (33/96) -> process(66% 63% 65% 65% 66% 66% 66% 66% 66% 65% 65% 66% 67% 63% 64% 66% 66% 63% 66% 63% 66% 65% 66% 67% 67% 66% 68% 64% 65% 67% 67% 65% 64% 67% 64% 65% 65% 65% 67% 66% 64% 67% 65% 65% 66% 67% 68% 68% 66% 65% 66% 64% 65% 68% 68% 64% 67% 66% 64% 67% 65% 65% 62%) -> (92k/114k) -> write(90%)
+0:22:40 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 680M 81% 922k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 2.2M/s ] 161G blocks: [ 17k 93% 6/s ]
+ cpus: 51.5 gc: 10% heap: 103G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.4G
+ read( 1%) -> (33/96) -> process(66% 66% 67% 67% 65% 65% 65% 64% 66% 66% 66% 65% 67% 61% 67% 66% 66% 65% 67% 63% 65% 67% 66% 66% 67% 63% 67% 68% 74% 66% 66% 68% 67% 65% 65% 66% 66% 66% 66% 66% 78% 67% 63% 65% 67% 65% 68% 67% 67% 67% 66% 63% 64% 65% 67% 66% 68% 78% 64% 64% 67% 64% 66%) -> (89k/114k) -> write(89%)
+0:22:50 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 689M 82% 934k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 2.2M/s ] 163G blocks: [ 17k 93% 6/s ]
+ cpus: 51.9 gc: 10% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.5G
+ read( 1%) -> (33/96) -> process(66% 67% 67% 66% 68% 63% 67% 65% 66% 68% 64% 64% 67% 65% 68% 68% 66% 64% 68% 67% 70% 68% 72% 66% 65% 70% 66% 67% 71% 66% 68% 65% 68% 66% 66% 68% 69% 67% 64% 66% 71% 68% 64% 67% 66% 66% 67% 68% 66% 65% 65% 66% 69% 63% 67% 69% 66% 77% 69% 68% 64% 65% 65%) -> (57k/114k) -> write(89%)
+0:23:00 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 699M 83% 965k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 2.3M/s ] 164G blocks: [ 17k 94% 6/s ]
+ cpus: 51.8 gc: 9% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.6G
+ read( 1%) -> (33/96) -> process(67% 67% 66% 68% 66% 65% 68% 66% 66% 66% 68% 70% 68% 68% 67% 67% 65% 67% 68% 68% 67% 69% 66% 67% 65% 66% 65% 68% 69% 68% 69% 65% 67% 68% 68% 67% 67% 69% 68% 69% 69% 70% 67% 67% 67% 67% 67% 69% 68% 66% 67% 68% 68% 67% 70% 71% 67% 64% 68% 69% 65% 67% 65%) -> (47k/114k) -> write(90%)
+0:23:10 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 709M 84% 968k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 2.2M/s ] 165G blocks: [ 17k 94% 6/s ]
+ cpus: 52.8 gc: 10% heap: 99G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 7.7G
+ read( 1%) -> (33/96) -> process(68% 66% 70% 69% 67% 69% 68% 66% 70% 69% 67% 67% 69% 68% 67% 68% 70% 69% 67% 68% 69% 65% 67% 66% 70% 69% 69% 69% 69% 70% 67% 69% 68% 67% 68% 69% 70% 68% 70% 68% 67% 70% 68% 65% 68% 68% 67% 70% 67% 68% 67% 69% 69% 67% 69% 68% 68% 70% 70% 69% 65% 68% 69%) -> (91k/114k) -> write(89%)
+0:23:20 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 718M 85% 970k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 2.2M/s ] 167G blocks: [ 17k 94% 6/s ]
+ cpus: 52.8 gc: 9% heap: 98G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 7.8G
+ read( 1%) -> (33/96) -> process(70% 68% 68% 69% 67% 67% 68% 68% 70% 69% 68% 64% 69% 70% 70% 70% 65% 70% 68% 69% 67% 67% 68% 70% 68% 67% 70% 68% 66% 68% 69% 68% 68% 68% 66% 69% 70% 68% 68% 70% 69% 68% 67% 66% 69% 71% 69% 68% 67% 68% 69% 68% 67% 68% 70% 67% 67% 70% 71% 68% 69% 65% 68%) -> (76k/114k) -> write(90%)
+0:23:30 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 728M 87% 978k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 2.3M/s ] 168G blocks: [ 17k 95% 6/s ]
+ cpus: 52.6 gc: 10% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 7.9G
+ read( 1%) -> (33/96) -> process(67% 68% 72% 69% 66% 69% 69% 67% 65% 68% 66% 71% 70% 65% 65% 69% 68% 67% 69% 68% 70% 70% 70% 66% 67% 67% 69% 67% 67% 67% 69% 68% 72% 68% 69% 70% 68% 68% 69% 67% 69% 70% 65% 66% 67% 67% 69% 71% 67% 67% 70% 70% 68% 69% 67% 67% 68% 67% 69% 69% 68% 65% 69%) -> (88k/114k) -> write(89%)
+0:23:40 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 738M 88% 975k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 2.2M/s ] 169G blocks: [ 17k 95% 6/s ]
+ cpus: 51.3 gc: 10% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 8G
+ read( 1%) -> (33/96) -> process(67% 68% 67% 65% 64% 65% 64% 70% 66% 65% 68% 65% 64% 67% 67% 67% 66% 69% 64% 65% 67% 64% 67% 65% 66% 68% 67% 66% 65% 67% 65% 68% 68% 63% 66% 70% 68% 67% 64% 66% 65% 66% 68% 66% 67% 64% 66% 67% 68% 63% 66% 64% 68% 66% 68% 66% 68% 67% 67% 66% 63% 69% 66%) -> (79k/114k) -> write(89%)
+0:23:50 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 748M 89% 993k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 2.2M/s ] 170G blocks: [ 17k 96% 6/s ]
+ cpus: 52.4 gc: 9% heap: 103G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 8G
+ read( 1%) -> (33/96) -> process(68% 69% 68% 65% 68% 68% 66% 65% 70% 70% 69% 69% 66% 68% 68% 68% 68% 69% 69% 68% 68% 68% 68% 68% 68% 64% 70% 68% 70% 66% 69% 67% 64% 70% 67% 64% 68% 68% 68% 68% 67% 68% 67% 70% 67% 69% 70% 66% 68% 66% 68% 68% 66% 69% 67% 65% 67% 68% 66% 67% 65% 70% 69%) -> (91k/114k) -> write(89%)
+0:24:00 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 758M 90% 994k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 2.2M/s ] 172G blocks: [ 17k 96% 6/s ]
+ cpus: 52.6 gc: 10% heap: 97G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 8.1G
+ read( 1%) -> (33/96) -> process(69% 68% 69% 65% 68% 69% 68% 69% 66% 67% 67% 67% 67% 67% 67% 71% 65% 68% 67% 67% 67% 68% 68% 69% 67% 67% 67% 70% 67% 66% 67% 69% 64% 66% 68% 68% 67% 68% 68% 66% 69% 67% 69% 66% 68% 68% 69% 68% 66% 66% 67% 65% 68% 67% 69% 70% 68% 66% 66% 67% 67% 68% 67%) -> (71k/114k) -> write(89%)
+0:24:10 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 768M 91% 984k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 2.2M/s ] 173G blocks: [ 18k 96% 7/s ]
+ cpus: 53.2 gc: 10% heap: 97G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.2G
+ read( 1%) -> (33/96) -> process(69% 70% 69% 68% 67% 68% 67% 71% 69% 69% 68% 72% 68% 65% 69% 67% 69% 68% 66% 69% 67% 68% 69% 68% 70% 69% 69% 70% 64% 69% 67% 69% 68% 68% 69% 68% 68% 68% 66% 70% 67% 67% 66% 69% 66% 67% 70% 67% 71% 67% 69% 69% 68% 69% 70% 69% 68% 66% 69% 66% 66% 66% 67%) -> (68k/114k) -> write(88%)
+0:24:20 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 778M 92% 981k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 2.2M/s ] 174G blocks: [ 18k 97% 6/s ]
+ cpus: 53.2 gc: 10% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.2G
+ read( 1%) -> (33/96) -> process(67% 68% 66% 69% 69% 69% 71% 69% 69% 69% 70% 71% 68% 68% 71% 69% 69% 68% 70% 67% 66% 67% 67% 66% 69% 70% 70% 67% 69% 70% 65% 69% 69% 72% 71% 66% 70% 68% 70% 70% 68% 69% 68% 69% 67% 67% 69% 70% 69% 68% 68% 69% 66% 66% 67% 70% 67% 70% 66% 68% 67% 68% 69%) -> (91k/114k) -> write(89%)
+0:24:30 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 787M 94% 960k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 2.2M/s ] 175G blocks: [ 18k 97% 7/s ]
+ cpus: 52.6 gc: 10% heap: 97G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.3G
+ read( 1%) -> (33/96) -> process(67% 66% 70% 68% 66% 66% 68% 68% 64% 69% 70% 68% 67% 68% 69% 69% 69% 70% 66% 65% 66% 67% 66% 67% 69% 70% 70% 70% 69% 71% 66% 69% 67% 67% 66% 69% 70% 68% 69% 69% 66% 67% 67% 68% 68% 68% 67% 68% 70% 66% 69% 68% 67% 66% 67% 67% 69% 69% 69% 66% 70% 68% 67%) -> (76k/114k) -> write(89%)
+0:24:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 797M 95% 966k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 2.2M/s ] 177G blocks: [ 18k 97% 6/s ]
+ cpus: 53.4 gc: 10% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.4G
+ read( 1%) -> (33/96) -> process(69% 71% 70% 70% 68% 71% 68% 71% 68% 70% 69% 69% 69% 70% 68% 71% 68% 70% 70% 70% 69% 68% 70% 71% 71% 70% 68% 69% 70% 71% 69% 67% 72% 69% 70% 71% 66% 69% 66% 67% 68% 68% 69% 68% 68% 69% 67% 68% 72% 70% 72% 65% 70% 70% 69% 68% 71% 68% 67% 69% 66% 68% 66%) -> (65k/114k) -> write(88%)
+0:24:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 807M 96% 965k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 2.2M/s ] 178G blocks: [ 18k 98% 6/s ]
+ cpus: 53.3 gc: 11% heap: 98G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.5G
+ read( 1%) -> (33/96) -> process(68% 69% 73% 69% 68% 70% 69% 70% 66% 71% 70% 68% 64% 71% 68% 65% 69% 68% 67% 70% 70% 69% 67% 67% 68% 68% 66% 69% 70% 66% 69% 69% 68% 70% 69% 68% 68% 67% 68% 69% 68% 69% 67% 69% 66% 70% 67% 70% 69% 66% 71% 69% 68% 69% 68% 69% 70% 66% 67% 70% 68% 69% 69%) -> (49k/114k) -> write(88%)
+0:25:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 816M 97% 968k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 2.2M/s ] 179G blocks: [ 18k 98% 6/s ]
+ cpus: 53.9 gc: 10% heap: 103G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.5G
+ read( 1%) -> (33/96) -> process(67% 71% 71% 67% 70% 69% 69% 68% 69% 70% 71% 68% 68% 71% 70% 70% 69% 70% 67% 71% 67% 65% 67% 68% 66% 71% 71% 70% 69% 67% 72% 68% 70% 70% 70% 72% 71% 70% 71% 70% 69% 71% 72% 69% 68% 70% 72% 70% 68% 66% 68% 70% 67% 70% 71% 68% 68% 69% 66% 71% 70% 69% 73%) -> (90k/114k) -> write(88%)
+0:25:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 826M 98% 966k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 2.2M/s ] 180G blocks: [ 18k 98% 6/s ]
+ cpus: 54.1 gc: 10% heap: 99G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 8.6G
+ read( 1%) -> (33/96) -> process(68% 71% 71% 69% 71% 68% 70% 71% 67% 70% 70% 70% 70% 73% 72% 71% 72% 69% 70% 69% 72% 71% 68% 69% 72% 70% 68% 68% 70% 71% 71% 71% 72% 70% 71% 69% 69% 71% 69% 68% 68% 69% 70% 71% 71% 70% 69% 73% 66% 71% 69% 67% 68% 69% 70% 72% 69% 69% 72% 70% 71% 70% 71%) -> (89k/114k) -> write(88%)
+0:25:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 836M 99% 970k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 2.2M/s ] 182G blocks: [ 18k 99% 6/s ]
+ cpus: 54.2 gc: 10% heap: 100G/118G direct: 10M postGC: 97G relInfo: 971M mpGeoms: 8.7G
+ read( 1%) -> (33/96) -> process(70% 64% 71% 73% 70% 69% 71% 72% 71% 68% 69% 72% 71% 72% 69% 72% 69% 68% 71% 71% 72% 69% 71% 73% 72% 73% 71% 70% 71% 71% 71% 70% 70% 69% 72% 67% 69% 72% 71% 72% 70% 74% 73% 70% 71% 70% 68% 69% 67% 69% 71% 69% 70% 68% 68% 68% 71% 69% 71% 71% 70% 69% 71%) -> (90k/114k) -> write(88%)
+0:25:29 INF [osm_pass2:process] - Finished ways: 841,994,745 (831k/s) in 16m53s cpu:13h52m41s gc:1m28s avg:49.3
+0:25:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 557k/s ] rels: [ 126k 1% 12k/s ] features: [ 2.8B 1.3M/s ] 183G blocks: [ 18k 99% 7/s ]
+ cpus: 40.7 gc: 7% heap: 102G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 9.1G
+ read( 2%) -> (33/96) -> process(34% 40% 51% 77% 56% 45% 76% 78% 53% 83% 53% 79% 41% 35% 43% 63% 50% 24% 71% 52% 56% 44% 64% 79% 35% 65% 69% 65% 26% 68% 64% 71% 79% 35% 37% 44% 32% 35% 52% 42% 54% 37% 28% 33% 69% 71% 83% 38% 28% 50% 33% 51% 54% 55% 57% 42% 52% 45% 51% 80% 66% 28% 37%) -> (32k/114k) -> write(53%)
+0:25:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 698k 7% 57k/s ] features: [ 2.8B 614k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 62.4 gc: 3% heap: 101G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(93% 84% 91% 92% 91% 90% 94% 94% 92% 90% 91% 89% 91% 94% 92% 86% 90% 90% 92% 87% 90% 87% 93% 91% 90% 91% 94% 91% 92% 92% 89% 89% 92% 91% 92% 88% 90% 84% 87% 89% 89% 91% 93% 90% 87% 93% 93% 90% 88% 89% 87% 93% 91% 89% 89% 93% 91% 88% 88% 90% 90% 85% 91%) -> (35k/114k) -> write(23%)
+0:25:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.2M 13% 57k/s ] features: [ 2.8B 998k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 62.3 gc: 3% heap: 104G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(90% 93% 93% 94% 92% 93% 94% 89% 92% 83% 92% 90% 88% 92% 90% 94% 92% 93% 93% 90% 92% 93% 91% 88% 91% 90% 89% 93% 88% 94% 90% 92% 91% 90% 91% 92% 90% 89% 92% 90% 81% 88% 91% 91% 90% 89% 88% 87% 91% 90% 86% 89% 89% 87% 88% 87% 91% 95% 88% 89% 90% 92% 93%) -> (30k/114k) -> write(30%)
+0:26:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.8M 19% 57k/s ] features: [ 2.8B 412k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 62.4 gc: 3% heap: 98G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(94% 91% 95% 88% 88% 94% 89% 90% 92% 93% 92% 91% 91% 91% 94% 92% 87% 89% 90% 90% 94% 87% 91% 94% 91% 92% 85% 91% 92% 90% 88% 91% 96% 92% 90% 93% 89% 94% 92% 88% 89% 92% 89% 94% 91% 93% 87% 90% 89% 90% 89% 93% 90% 89% 92% 93% 88% 90% 91% 88% 92% 92% 94%) -> (32k/114k) -> write(19%)
+0:26:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.4M 25% 55k/s ] features: [ 2.8B 914k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 62.3 gc: 3% heap: 103G/118G direct: 10M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(90% 92% 89% 91% 93% 95% 93% 91% 93% 91% 89% 94% 91% 92% 89% 95% 95% 90% 89% 90% 93% 91% 85% 91% 93% 91% 93% 90% 91% 93% 89% 93% 87% 92% 91% 91% 87% 90% 92% 92% 92% 92% 88% 89% 92% 91% 88% 88% 94% 93% 92% 87% 90% 92% 92% 91% 87% 95% 92% 92% 90% 88% 89%) -> (29k/114k) -> write(28%)
+0:26:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.9M 31% 58k/s ] features: [ 2.8B 427k/s ] 188G blocks: [ 18k 99% 1/s ]
+ cpus: 61.7 gc: 6% heap: 97G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(91% 92% 86% 93% 91% 87% 88% 87% 88% 88% 85% 90% 85% 91% 90% 91% 88% 85% 89% 93% 91% 85% 88% 91% 88% 86% 89% 87% 82% 84% 89% 83% 88% 89% 89% 86% 87% 88% 91% 90% 87% 84% 86% 90% 90% 87% 88% 85% 88% 89% 88% 87% 86% 87% 84% 90% 84% 89% 88% 89% 90% 90% 89%) -> (36k/114k) -> write(20%)
+0:26:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.5M 37% 58k/s ] features: [ 2.8B 369k/s ] 189G blocks: [ 18k 99% 1/s ]
+ cpus: 61.1 gc: 9% heap: 100G/118G direct: 10M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(85% 89% 87% 87% 87% 85% 80% 85% 84% 84% 86% 84% 84% 87% 89% 88% 84% 87% 87% 88% 82% 84% 84% 88% 86% 88% 85% 86% 82% 83% 84% 85% 85% 87% 85% 88% 88% 84% 78% 86% 86% 85% 89% 86% 82% 82% 82% 86% 86% 82% 84% 82% 82% 84% 86% 85% 86% 85% 88% 84% 85% 86% 87%) -> (27k/114k) -> write(18%)
+0:26:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.2M 44% 66k/s ] features: [ 2.8B 406k/s ] 190G blocks: [ 18k 99% 1/s ]
+ cpus: 61.4 gc: 7% heap: 100G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(89% 86% 85% 91% 90% 84% 85% 85% 85% 85% 87% 90% 86% 86% 87% 88% 90% 84% 87% 85% 86% 84% 89% 88% 83% 86% 85% 85% 85% 88% 86% 88% 83% 85% 91% 88% 88% 86% 90% 86% 86% 86% 88% 88% 85% 85% 90% 87% 84% 79% 89% 82% 88% 84% 85% 86% 87% 82% 86% 87% 88% 86% 79%) -> (28k/114k) -> write(19%)
+0:26:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.9M 51% 70k/s ] features: [ 2.8B 985k/s ] 192G blocks: [ 18k 99% 1/s ]
+ cpus: 61.3 gc: 8% heap: 96G/118G direct: 10M postGC: 96G relInfo: 971M mpGeoms: 9.1G
+ read( 0%) -> (33/96) -> process(86% 87% 90% 82% 88% 82% 89% 86% 86% 83% 89% 88% 85% 86% 79% 87% 84% 87% 85% 83% 88% 87% 86% 85% 90% 84% 85% 86% 85% 87% 88% 82% 80% 84% 81% 87% 85% 85% 81% 83% 86% 86% 82% 84% 83% 85% 81% 85% 88% 83% 84% 86% 85% 88% 89% 83% 85% 84% 87% 84% 86% 87% 82%) -> (38k/114k) -> write(34%)
+0:27:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.7M 59% 74k/s ] features: [ 2.8B 675k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 61.9 gc: 5% heap: 98G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (26/96) -> process(93% 89% 88% 90% 86% 90% 89% 88% 88% 90% 89% 91% 90% 91% 92% 92% 94% 88% 87% 87% 91% 88% 85% 91% 92% 90% 90% 86% 87% 90% 90% 90% 90% 89% 85% 88% 86% 87% 86% 87% 90% 90% 92% 85% 87% 88% 90% 85% 93% 89% 92% 87% 86% 87% 88% 85% 89% 85% 87% 85% 88% 88% 86%) -> (33k/114k) -> write(26%)
+0:27:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.4M 66% 70k/s ] features: [ 2.8B 383k/s ] 195G blocks: [ 18k 100% <1/s ]
+ cpus: 61.9 gc: 5% heap: 102G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (19/96) -> process(88% 85% 88% 86% 89% 87% 89% 90% 89% 88% 87% 88% 89% 90% 90% 90% 88% 88% 86% 87% 89% 87% 90% 84% 88% 90% 87% 90% 89% 89% 85% 89% 86% 89% 91% 91% 92% 88% 89% 88% 91% 88% 89% 88% 87% 89% 84% 89% 90% 81% 87% 88% 88% 89% 90% 91% 88% 85% 87% 87% 89% 91% 88%) -> (30k/114k) -> write(18%)
+0:27:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.1M 74% 74k/s ] features: [ 2.8B 423k/s ] 196G blocks: [ 18k 100% 1/s ]
+ cpus: 61.4 gc: 7% heap: 99G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (4/96) -> process(85% 86% 86% 89% 89% 80% 90% 87% 89% 82% 88% 79% 88% 82% 86% 87% 85% 81% 86% 87% 84% 88% 85% 89% 90% 88% 89% 79% 88% 88% 90% 85% 84% 82% 85% 88% 86% 89% 86% 87% 89% 86% 88% 82% 87% 87% 86% 87% 86% 88% 84% 85% 85% 86% 88% 89% 89% 84% 86% 86% 88% 84% 86%) -> (30k/114k) -> write(19%)
+0:27:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.9M 81% 75k/s ] features: [ 2.8B 413k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 62.1 gc: 4% heap: 100G/118G direct: 4M postGC: 95G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(90% 91% 89% 89% 91% 89% 91% 85% 91% 83% 90% 92% 89% 89% 88% 92% 89% 90% 93% 86% 84% 87% 89% 92% 92% 85% 84% 91% 89% 86% 92% 90% 91% 90% 90% 85% 90% 93% 90% 87% 91% 87% 90% 89% 89% 83% 91% 89% 90% 90% 88% 91% 87% 90% 92% 92% 88% 88% 85% 92% 93% 90% 85%) -> (32k/114k) -> write(19%)
+0:27:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.6M 89% 77k/s ] features: [ 2.8B 363k/s ] 198G blocks: [ 18k 100% 1/s ]
+ cpus: 62.3 gc: 3% heap: 96G/118G direct: 4M postGC: 94G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(92% 93% 93% 93% 91% 91% 94% 91% 90% 92% 91% 87% 92% 91% 93% 90% 92% 94% 91% 96% 95% 93% 90% 92% 91% 89% 90% 94% 91% 93% 92% 94% 90% 94% 92% 89% 94% 91% 92% 90% 92% 91% 92% 88% 92% 89% 90% 94% 89% 87% 90% 92% 87% 91% 90% 90% 86% 93% 85% 90% 87% 91% 85%) -> (27k/114k) -> write(18%)
+0:27:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.4M 98% 81k/s ] features: [ 2.8B 377k/s ] 199G blocks: [ 18k 100% 1/s ]
+ cpus: 62.4 gc: 3% heap: 99G/118G direct: 4M postGC: 93G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process(92% 96% 94% 90% 91% 94% 92% 95% 93% 94% 91% 96% 93% 92% 95% 94% 92% 97% 92% 96% 92% 92% 96% 92% 90% 93% 94% 94% 93% 94% 95% 93% 95% 95% 94% 91% 95% 95% 93% 93% 93% 90% 92% 90% 92% 89% 94% 90% 92% 87% 91% 91% 91% 95% 90% 90% 92% 94% 92% 90% 94% 95% 89%) -> (33k/114k) -> write(19%)
+0:27:54 INF [osm_pass2:process] - Finished relations: 9,718,612 (66k/s) in 2m25s cpu:2h29m45s gc:7s avg:61.9
+0:27:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.7M 100% 59k/s ] features: [ 2.8B 306k/s ] 199G blocks: [ 18k 100% 5/s ]
+ cpus: 52.5 gc: 1% heap: 103G/118G direct: 3.9M postGC: 92G relInfo: 971M mpGeoms: 9.1G
+ read( -%) -> (0/96) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/114k) -> write( -%)
+0:27:55 DEB [osm_pass2] - Processed 18,767 blocks:
+0:27:55 DEB [osm_pass2] - nodes: 7,546,573,682 (28M/s) in 4m22s cpu:3h24m12s gc:20s avg:46.8
+0:27:55 DEB [osm_pass2] - ways: 841,994,745 (831k/s) in 16m53s cpu:13h52m41s gc:1m28s avg:49.3
+0:27:55 DEB [osm_pass2] - relations: 9,718,612 (66k/s) in 2m25s cpu:2h29m45s gc:7s avg:61.9
+0:27:55 INF [osm_pass2] - Finished in 23m38s cpu:19h45m39s gc:1m56s avg:50.2
+0:27:55 INF [osm_pass2] - read 1x(3% 39s sys:31s wait:21m13s done:1m4s)
+0:27:55 INF [osm_pass2] - process 63x(67% 15m55s block:1m9s wait:4m24s)
+0:27:55 INF [osm_pass2] - write 1x(74% 17m23s sys:1m38s wait:4m29s)
+0:27:55 INF [boundaries] -
+0:27:55 INF [boundaries] - Starting...
+0:27:55 INF [boundaries] - Creating polygons for 218 boundaries
+0:28:03 INF [boundaries] - Finished creating 218 country polygons
+0:28:09 WAR [boundaries] - no left or right country for border between OSM country relations: [449220] around https://www.openstreetmap.org/#map=10/24.37468/118.13815
+0:28:12 INF [boundaries] - Finished in 17s cpu:24s avg:1.4
+0:28:12 INF - Deleting node.db to make room for output file
+0:28:12 INF [sort] -
+0:28:12 INF [sort] - Starting...
+0:28:22 INF [sort] - chunks: [ 12 / 380 3% ] 197G
+ cpus: 11.9 gc: 6% heap: 22G/118G direct: 5.2M postGC: 20G
+ -> (304/445) -> worker(43% 44% 43% 42% 43% 44% 43% 42% 42% 41% 42% 42% 32% 32% 32% 31% 30% 28% 12% 11% 11% 10% 9% 8% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:28:32 INF [sort] - chunks: [ 24 / 380 6% ] 198G
+ cpus: 16.7 gc: 9% heap: 48G/118G direct: 6.4M postGC: 47G
+ -> (292/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 10% 11% 11% 12% 13% 14% 31% 30% 31% 31% 33% 40% 60% 60% 60% 60% 59% 58% 43% 43% 43% 43% 42% 42% 29% 28% 27% 27% 27% 26% 14% 14% 12% 12% 12% 11% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:28:42 INF [sort] - chunks: [ 39 / 380 10% ] 199G
+ cpus: 19.5 gc: 3% heap: 23G/118G direct: 7M postGC: 32G
+ -> (277/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 19% 24% 18% 6% 8% 8% 25% 27% 29% 30% 27% 34% 47% 44% 45% 47% 45% 36% 48% 45% 33% 42% 38% 50% 63% 57% 55% 53% 37% 49% 12% 11% 11% 11% 9% 5% 0% 0% 0% 0%)
+0:28:52 INF [sort] - chunks: [ 59 / 380 16% ] 198G
+ cpus: 12.9 gc: 4% heap: 25G/118G direct: 7.2M postGC: 20G
+ -> (257/445) -> worker(26% 12% 15% 45% 10% 16% 2% 4% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 14% 14% 15% 1% 15% 20% 24% 21% 29% 23% 63% 58% 64% 59% 60% 59% 52% 49% 46% 47%)
+0:29:02 INF [sort] - chunks: [ 71 / 380 19% ] 197G
+ cpus: 21.6 gc: 9% heap: 25G/118G direct: 7.2M postGC: 25G
+ -> (245/445) -> worker(40% 55% 62% 16% 59% 49% 65% 74% 64% 72% 71% 69% 58% 40% 44% 56% 42% 38% 31% 32% 23% 20% 18% 15% 0% 0% 3% 9% 4% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 10% 12% 11% 15%)
+0:29:12 INF [sort] - chunks: [ 88 / 380 23% ] 198G
+ cpus: 22 gc: 4% heap: 28G/118G direct: 7.2M postGC: 25G
+ -> (228/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 17% 7% 9% 13% 26% 49% 45% 32% 47% 52% 52% 53% 58% 57% 54% 59% 76% 68% 78% 74% 78% 74% 59% 35% 49% 29% 59% 41% 6% 18% 9% 10% 15% 18% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:29:22 INF [sort] - chunks: [ 106 / 380 28% ] 198G
+ cpus: 14.5 gc: 7% heap: 18G/118G direct: 7.2M postGC: 18G
+ -> (210/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 4% 13% 0% 0% 1% 0% 16% 29% 17% 34% 17% 25% 59% 47% 58% 55% 50% 47% 66% 64% 43% 39% 40% 58% 26% 25% 13% 23% 13% 16% 4% 8% 0% 6% 0% 0% 0% 0% 0% 0%)
+0:29:32 INF [sort] - chunks: [ 123 / 380 32% ] 199G
+ cpus: 21.9 gc: 7% heap: 21G/118G direct: 7.2M postGC: 19G
+ -> (193/445) -> worker(40% 23% 12% 60% 18% 25% 9% 8% 0% 4% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 4% 6% 35% 34% 33% 15% 48% 49% 62% 52% 61% 59% 63% 63% 66% 62% 73% 71% 69% 50% 67% 42%)
+0:29:42 INF [sort] - chunks: [ 139 / 380 37% ] 198G
+ cpus: 17.6 gc: 8% heap: 21G/118G direct: 7.2M postGC: 20G
+ -> (177/445) -> worker(39% 43% 53% 18% 46% 40% 59% 56% 66% 58% 65% 69% 60% 41% 55% 59% 50% 31% 27% 26% 15% 19% 23% 12% 1% 0% 9% 5% 0% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 7% 33% 13% 26%)
+0:29:52 INF [sort] - chunks: [ 157 / 380 41% ] 198G
+ cpus: 22.2 gc: 8% heap: 26G/118G direct: 7.2M postGC: 26G
+ -> (159/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 5% 0% 0% 0% 14% 36% 15% 14% 19% 42% 46% 47% 55% 52% 50% 58% 74% 71% 63% 70% 76% 62% 66% 36% 51% 31% 66% 45% 12% 27% 16% 7% 21% 29% 6% 5% 0% 0% 0% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:30:02 INF [sort] - chunks: [ 174 / 380 46% ] 198G
+ cpus: 23.9 gc: 6% heap: 19G/118G direct: 7.2M postGC: 19G
+ -> (142/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 2% 0% 0% 0% 0% 5% 45% 15% 42% 4% 24% 62% 46% 60% 67% 53% 49% 70% 70% 67% 73% 75% 74% 60% 57% 41% 53% 29% 47% 16% 25% 12% 22% 3% 8% 2% 0% 1% 0%)
+0:30:12 INF [sort] - chunks: [ 192 / 380 51% ] 198G
+ cpus: 21.6 gc: 6% heap: 21G/118G direct: 7.2M postGC: 20G
+ -> (124/445) -> worker(57% 54% 40% 69% 46% 55% 19% 35% 11% 16% 17% 13% 0% 0% 0% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 6% 0% 0% 0% 16% 19% 36% 23% 41% 30% 59% 45% 61% 47% 71% 66% 71% 62% 71% 69%)
+0:30:22 INF [sort] - chunks: [ 206 / 380 54% ] 198G
+ cpus: 22.5 gc: 6% heap: 25G/118G direct: 7.2M postGC: 23G
+ -> (110/445) -> worker(16% 21% 30% 0% 27% 24% 58% 33% 65% 60% 59% 60% 76% 76% 76% 70% 75% 69% 65% 58% 36% 55% 55% 34% 21% 12% 25% 21% 15% 32% 2% 0% 0% 0% 10% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 12% 0% 0%)
+0:30:32 INF [sort] - chunks: [ 223 / 380 59% ] 198G
+ cpus: 22 gc: 9% heap: 20G/118G direct: 7.2M postGC: 20G
+ -> (93/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 9% 2% 0% 2% 8% 11% 18% 31% 18% 17% 33% 54% 60% 49% 54% 60% 44% 72% 62% 72% 64% 59% 72% 32% 57% 45% 31% 46% 47% 19% 28% 8% 10% 16% 17% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:30:42 INF [sort] - chunks: [ 242 / 380 64% ] 198G
+ cpus: 20.9 gc: 7% heap: 22G/118G direct: 7.2M postGC: 21G
+ -> (74/445) -> worker( 4% 2% 0% 12% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 12% 0% 8% 0% 1% 40% 15% 21% 41% 20% 21% 52% 44% 60% 54% 53% 53% 65% 73% 61% 72% 58% 69% 39% 48% 38% 41% 14% 28% 25% 7% 23% 12%)
+0:30:52 INF [sort] - chunks: [ 260 / 380 68% ] 198G
+ cpus: 23.3 gc: 6% heap: 19G/118G direct: 7.2M postGC: 24G
+ -> (56/445) -> worker(71% 75% 67% 62% 68% 72% 57% 58% 32% 41% 55% 39% 20% 6% 18% 26% 11% 10% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 16% 0% 15% 5% 35% 26% 35% 37% 62% 44% 48% 69% 52% 63%)
+0:31:02 INF [sort] - chunks: [ 277 / 380 73% ] 199G
+ cpus: 22.5 gc: 7% heap: 21G/118G direct: 7.2M postGC: 18G
+ -> (39/445) -> worker( 0% 0% 7% 0% 0% 0% 17% 16% 47% 34% 19% 38% 55% 67% 56% 51% 63% 65% 67% 67% 70% 71% 68% 65% 31% 24% 52% 51% 29% 55% 17% 5% 16% 7% 21% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:31:12 INF [sort] - chunks: [ 292 / 380 77% ] 198G
+ cpus: 23.4 gc: 9% heap: 26G/118G direct: 7.2M postGC: 26G
+ -> (24/445) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 5% 3% 0% 10% 45% 50% 25% 27% 47% 22% 60% 74% 59% 73% 55% 71% 66% 78% 75% 56% 75% 68% 42% 50% 25% 33% 35% 42% 21% 17% 5% 16% 8% 10% 0% 1% 0% 0% 0% 0% 0% 0% 0% 0%)
+0:31:22 INF [sort] - chunks: [ 309 / 380 81% ] 198G
+ cpus: 23 gc: 6% heap: 25G/118G direct: 7.2M postGC: 22G
+ -> (7/445) -> worker(18% 14% 7% 39% 13% 14% 0% 6% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 12% 0% 3% 16% 3% 12% 36% 20% 53% 47% 43% 34% 56% 58% 79% 61% 69% 68% 75% 78% 73% 60% 39% 57% 44% 26% 40% 29%)
+0:31:32 INF [sort] - chunks: [ 327 / 380 86% ] 198G
+ cpus: 21.1 gc: 8% heap: 27G/118G direct: 6.6M postGC: 27G
+ -> (0/445) -> worker( -% -% -% -% -% -% 65% -% 53% 66% 76% 61% 44% 21% 32% 51% 31% 30% 20% 10% 5% 6% 6% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 5% 5% 4% 14% -% 23% 34% -% -% -%)
+0:31:42 INF [sort] - chunks: [ 344 / 380 91% ] 198G
+ cpus: 24.2 gc: 7% heap: 25G/118G direct: 5.7M postGC: 25G
+ -> (0/445) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 62% 51% 62% 67% 57% 74% 36% 17% 39% 31% 44% 35% 3% 13% 6% 0% 3% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% -% 0% 0% -% -% -%)
+0:31:52 INF [sort] - chunks: [ 363 / 380 96% ] 197G
+ cpus: 11.7 gc: 4% heap: 13G/118G direct: 4.8M postGC: 13G
+ -> (0/445) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 25% -% 9% 24% 26% 38% 7% 6% 0% 3% 2% 2% 0% 0% 0% 0% -% 0% 0% -% -% -%)
+0:32:02 INF [sort] - chunks: [ 378 / 380 99% ] 199G
+ cpus: 5.6 gc: 2% heap: 15G/118G direct: 4M postGC: 12G
+ -> (0/445) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 40% -% 37% -% -% -% -%)
+0:32:04 INF [sort] - chunks: [ 380 / 380 100% ] 199G
+ cpus: 0.5 gc: 0% heap: 15G/118G direct: 3.9M postGC: 12G
+ -> (0/445) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:32:04 INF [sort] - Finished in 3m52s cpu:1h14m35s gc:15s avg:19.3
+0:32:04 INF [sort] - worker 64x(18% 41s sys:3s wait:2m35s done:19s)
+0:32:04 INF - read:1362s write:926s sort:1373s
+0:32:04 INF [mbtiles] -
+0:32:04 INF [mbtiles] - Starting...
+0:32:04 DEB [mbtiles:write] - Execute mbtiles: create table metadata (name text, value text);
+0:32:04 DEB [mbtiles:write] - Execute mbtiles: create unique index name on metadata (name);
+0:32:04 DEB [mbtiles:write] - Execute mbtiles: create table tiles (zoom_level integer, tile_column integer, tile_row, tile_data blob);
+0:32:04 DEB [mbtiles:write] - Execute mbtiles: create unique index tile_index on tiles (zoom_level, tile_column, tile_row)
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: name=OpenMapTiles
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: format=pbf
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: attribution=© OpenMapTiles © OpenStreetMap contributors
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: version=3.13.0
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: type=baselayer
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: center=0,0,0
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: minzoom=0
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: maxzoom=14
+0:32:04 DEB [mbtiles:write] - Set mbtiles metadata: json={"vector_layers":[{"id":"aerodrome_label","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","iata":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","icao":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":8,"maxzoom":14},{"id":"aeroway","fields":{"ref":"String","class":"String"},"minzoom":10,"maxzoom":14},{"id":"boundary","fields":{"adm0_r":"String","disputed":"Number","admin_level":"Number","disputed_name":"String","maritime":"Number","adm0_l":"String","claimed_by":"String"},"minzoom":0,"maxzoom":14},{"id":"building","fields":{"colour":"String","render_height":"Number","render_min_height":"Number","hide_3d":"Boolean"},"minzoom":13,"maxzoom":14},{"id":"housenumber","fields":{"housenumber":"String"},"minzoom":14,"maxzoom":14},{"id":"landcover","fields":{"subclass":"String","class":"String","_numpoints":"Number"},"minzoom":0,"maxzoom":14},{"id":"landuse","fields":{"class":"String"},"minzoom":4,"maxzoom":14},{"id":"mountain_peak","fields":{"name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:nonlatin":"String","name:ka":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","customary_ft":"Number","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":7,"maxzoom":14},{"id":"park","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":4,"maxzoom":14},{"id":"place","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","capital":"Number","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","iso_a2":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:cy":"String","name:lb":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"poi","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","level":"Number","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:ru":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","indoor":"Number","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","layer":"Number","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","subclass":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":12,"maxzoom":14},{"id":"transportation","fields":{"brunnel":"String","access":"String","expressway":"Number","bicycle":"String","surface":"String","level":"Number","ramp":"Number","mtb_scale":"String","toll":"Number","layer":"Number","oneway":"Number","network":"String","horse":"String","service":"String","subclass":"String","indoor":"Number","class":"String","foot":"String"},"minzoom":4,"maxzoom":14},{"id":"transportation_name","fields":{"name_int":"String","level":"Number","name:nonlatin":"String","route_5":"String","route_4":"String","route_3":"String","route_2":"String","route_1":"String","layer":"Number","network":"String","ref":"String","route_6":"String","name_de":"String","ref_length":"Number","subclass":"String","name":"String","indoor":"Number","class":"String","name_en":"String","name:latin":"String"},"minzoom":6,"maxzoom":14},{"id":"water","fields":{"brunnel":"String","intermittent":"Number","class":"String"},"minzoom":0,"maxzoom":14},{"id":"water_name","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","intermittent":"Number","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:cy":"String","name:lb":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"waterway","fields":{"name:fy":"String","name_int":"String","name:oc":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","intermittent":"Number","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:ca":"String","name:sq":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:ru":"String","name:be":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","brunnel":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:mt":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","_relid":"Number","name:cy":"String","name:lb":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:de":"String","name:hi":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":3,"maxzoom":14}]}
+0:32:04 INF [mbtiles:write] - Starting z0
+0:32:04 INF [mbtiles:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
+0:32:04 INF [mbtiles:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
+0:32:04 INF [mbtiles:write] - Finished z2 in 0s cpu:0s avg:0, now starting z3
+0:32:04 INF [mbtiles:write] - Finished z3 in 0.1s cpu:2s avg:35.5, now starting z4
+0:32:06 INF [mbtiles:write] - Finished z4 in 2s cpu:36s avg:22, now starting z5
+0:32:07 INF [mbtiles:write] - Finished z5 in 0.5s cpu:10s avg:18.9, now starting z6
+0:32:09 INF [mbtiles:write] - Finished z6 in 2s cpu:42s avg:18.6, now starting z7
+0:32:14 INF [mbtiles] - features: [ 18M 1% 1.8M/s ] 199G tiles: [ 11k 1.1k/s ] 92M
+ cpus: 24.8 gc: 9% heap: 17G/118G direct: 4M postGC: 7.8G
+ read(89%) -> (0/5.9k) -> encode(24% 38% 32% 24% 26% 51% 47% 35% 44% 27% 31% 20% 33% 12% 31% 28% 26% 18% 36% 37% 28% 25% 56% 21% 42% 34% 31% 30% 21% 44% 37% 27% 40% 50% 24% 19% 38% 9% 41% 32% 15% 34% 16% 22% 20% 31% 41% 50% 29% 20% 19% 38% 39% 21% 39% 35% 19% 19% 15% 24% 40% 13% 20% 28%) -> (365/5.9k) -> write( 3%)
+ last tile: 7/51/66 (z7 40%) https://www.openstreetmap.org/#map=7/-5.61599/-36.56250
+0:32:16 INF [mbtiles:write] - Finished z7 in 7s cpu:3m3s avg:24.9, now starting z8
+0:32:24 INF [mbtiles] - features: [ 38M 1% 1.9M/s ] 199G tiles: [ 51k 3.9k/s ] 286M
+ cpus: 26.4 gc: 1% heap: 42G/118G direct: 4M postGC: 7.7G
+ read(98%) -> (0/5.9k) -> encode(37% 42% 45% 23% 26% 38% 35% 31% 33% 24% 47% 34% 36% 30% 54% 44% 39% 32% 29% 30% 24% 30% 54% 46% 59% 47% 43% 28% 41% 46% 48% 32% 35% 28% 32% 44% 46% 43% 33% 62% 57% 41% 20% 57% 38% 30% 60% 37% 59% 54% 33% 32% 37% 29% 19% 46% 37% 35% 39% 39% 35% 32% 37% 53%) -> (231/5.9k) -> write( 4%)
+ last tile: 8/144/93 (z8 56%) https://www.openstreetmap.org/#map=8/44.08759/22.50000
+0:32:28 INF [mbtiles:write] - Finished z8 in 12s cpu:4m44s avg:23.1, now starting z9
+0:32:34 INF [mbtiles] - features: [ 57M 2% 1.9M/s ] 199G tiles: [ 142k 9k/s ] 563M
+ cpus: 31.2 gc: 2% heap: 31G/118G direct: 4M postGC: 7.8G
+ read(98%) -> (0/5.9k) -> encode(43% 52% 36% 42% 44% 45% 41% 47% 48% 46% 45% 49% 47% 38% 43% 41% 45% 50% 46% 51% 44% 46% 48% 41% 41% 51% 54% 46% 44% 56% 45% 44% 43% 47% 47% 55% 54% 46% 48% 47% 40% 47% 56% 53% 49% 44% 37% 48% 39% 44% 41% 53% 46% 48% 49% 52% 45% 41% 54% 50% 38% 35% 42% 40%) -> (379/5.9k) -> write( 8%)
+ last tile: 9/153/181 (z9 30%) https://www.openstreetmap.org/#map=9/46.55886/-72.42188
+0:32:44 INF [mbtiles] - features: [ 71M 2% 1.3M/s ] 199G tiles: [ 195k 5.3k/s ] 790M
+ cpus: 52.9 gc: 3% heap: 20G/118G direct: 4M postGC: 8.1G
+ read(91%) -> (2/5.9k) -> encode(81% 75% 79% 80% 83% 70% 83% 80% 73% 82% 77% 75% 87% 71% 90% 85% 74% 79% 84% 78% 72% 79% 79% 75% 82% 88% 76% 83% 75% 83% 81% 72% 77% 78% 78% 78% 75% 79% 75% 78% 81% 77% 81% 82% 83% 71% 76% 84% 79% 86% 83% 75% 75% 80% 78% 75% 79% 73% 80% 84% 79% 82% 82% 83%) -> (492/5.9k) -> write( 6%)
+ last tile: 9/274/150 (z9 53%) https://www.openstreetmap.org/#map=9/59.53432/12.65625
+0:32:54 INF [mbtiles] - features: [ 87M 3% 1.6M/s ] 199G tiles: [ 249k 5.3k/s ] 1.2G
+ cpus: 38.3 gc: 3% heap: 40G/118G direct: 4M postGC: 8.3G
+ read(96%) -> (0/5.9k) -> encode(56% 40% 67% 57% 46% 49% 52% 52% 69% 55% 46% 55% 52% 52% 64% 59% 51% 85% 62% 50% 55% 50% 67% 51% 53% 61% 54% 60% 57% 49% 69% 49% 65% 52% 55% 53% 47% 60% 50% 58% 58% 61% 54% 53% 57% 43% 51% 54% 66% 45% 56% 57% 51% 64% 46% 52% 62% 66% 63% 64% 54% 54% 64% 65%) -> (399/5.9k) -> write(11%)
+ last tile: 9/415/193 (z9 81%) https://www.openstreetmap.org/#map=9/40.44695/111.79688
+0:32:58 INF [mbtiles:write] - Finished z9 in 29s cpu:21m38s avg:44.3, now starting z10
+0:33:04 INF [mbtiles] - features: [ 106M 4% 1.8M/s ] 199G tiles: [ 756k 50k/s ] 1.9G
+ cpus: 27.6 gc: 2% heap: 23G/118G direct: 4M postGC: 7.3G
+ read(98%) -> (0/5.9k) -> encode(36% 29% 33% 51% 26% 36% 33% 39% 46% 40% 36% 44% 40% 55% 45% 35% 28% 43% 35% 55% 34% 39% 40% 32% 48% 42% 48% 33% 35% 35% 35% 39% 52% 39% 38% 32% 46% 32% 41% 39% 46% 43% 31% 38% 39% 42% 47% 62% 32% 43% 43% 52% 40% 38% 39% 39% 39% 42% 35% 43% 51% 39% 37% 36%) -> (56/5.9k) -> write(22%)
+ last tile: 10/536/386 (z10 52%) https://www.openstreetmap.org/#map=10/40.44695/8.43750
+0:33:14 INF [mbtiles] - features: [ 124M 4% 1.8M/s ] 199G tiles: [ 932k 17k/s ] 2.7G
+ cpus: 27.1 gc: 1% heap: 31G/118G direct: 4M postGC: 7.2G
+ read(98%) -> (0/5.9k) -> encode(40% 40% 40% 35% 40% 42% 35% 44% 45% 37% 42% 38% 41% 39% 42% 44% 30% 28% 45% 42% 45% 38% 42% 51% 36% 39% 51% 46% 38% 46% 45% 41% 40% 34% 47% 41% 43% 45% 45% 35% 32% 33% 37% 44% 40% 43% 44% 46% 44% 38% 43% 37% 38% 38% 37% 33% 48% 35% 42% 41% 36% 39% 41% 33%) -> (57/5.9k) -> write(16%)
+ last tile: 10/762/433 (z10 74%) https://www.openstreetmap.org/#map=10/26.74561/87.89063
+0:33:19 INF [mbtiles:write] - Finished z10 in 22s cpu:8m20s avg:23.1, now starting z11
+0:33:24 INF [mbtiles] - features: [ 144M 5% 1.9M/s ] 199G tiles: [ 2M 112k/s ] 3.5G
+ cpus: 16.4 gc: 0% heap: 37G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(17% 28% 27% 25% 23% 21% 24% 26% 19% 22% 21% 24% 15% 23% 21% 23% 20% 18% 24% 25% 19% 24% 30% 24% 26% 26% 19% 27% 28% 21% 20% 15% 23% 23% 30% 21% 23% 26% 30% 19% 20% 27% 31% 24% 27% 23% 22% 17% 27% 24% 22% 22% 25% 21% 25% 23% 16% 19% 25% 27% 27% 29% 24% 23%) -> (19/5.9k) -> write(36%)
+ last tile: 11/545/739 (z11 26%) https://www.openstreetmap.org/#map=11/44.71551/-84.19922
+0:33:34 INF [mbtiles] - features: [ 164M 6% 1.9M/s ] 199G tiles: [ 2.9M 84k/s ] 4.3G
+ cpus: 17.1 gc: 0% heap: 17G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(25% 26% 21% 26% 22% 27% 22% 24% 20% 18% 25% 25% 26% 21% 29% 28% 21% 21% 24% 17% 20% 18% 26% 29% 26% 19% 29% 20% 22% 26% 28% 25% 30% 29% 32% 23% 26% 22% 21% 27% 27% 33% 20% 23% 21% 28% 28% 26% 27% 30% 24% 23% 25% 23% 23% 29% 27% 18% 18% 29% 16% 24% 28% 27%) -> (42/5.9k) -> write(30%)
+ last tile: 11/1036/760 (z11 50%) https://www.openstreetmap.org/#map=11/42.03297/2.10938
+0:33:44 INF [mbtiles] - features: [ 182M 6% 1.8M/s ] 199G tiles: [ 3.1M 20k/s ] 5G
+ cpus: 20.3 gc: 0% heap: 43G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(27% 28% 28% 18% 33% 34% 36% 31% 36% 29% 24% 26% 27% 24% 34% 35% 33% 34% 29% 27% 32% 24% 35% 31% 30% 29% 27% 29% 34% 22% 23% 29% 36% 28% 26% 35% 36% 25% 32% 43% 39% 26% 26% 30% 31% 34% 26% 30% 28% 31% 25% 32% 25% 37% 30% 28% 30% 34% 33% 28% 28% 25% 26% 31%) -> (45/5.9k) -> write(13%)
+ last tile: 11/1166/589 (z11 56%) https://www.openstreetmap.org/#map=11/60.50053/24.96094
+0:33:54 INF [mbtiles] - features: [ 200M 7% 1.7M/s ] 199G tiles: [ 3.7M 63k/s ] 6G
+ cpus: 21.7 gc: 0% heap: 42G/118G direct: 4M postGC: 7.2G
+ read(97%) -> (0/5.9k) -> encode(30% 30% 35% 28% 32% 33% 26% 29% 35% 35% 36% 31% 28% 35% 28% 41% 31% 29% 24% 33% 38% 30% 26% 31% 32% 37% 31% 40% 34% 28% 39% 30% 36% 28% 33% 25% 28% 34% 37% 36% 23% 28% 34% 40% 38% 26% 36% 27% 33% 44% 26% 33% 26% 26% 27% 37% 32% 29% 29% 29% 31% 34% 28% 35%) -> (21/5.9k) -> write(27%)
+ last tile: 11/1591/864 (z11 77%) https://www.openstreetmap.org/#map=11/27.05913/99.66797
+0:34:02 INF [mbtiles:write] - Finished z11 in 43s cpu:13m21s avg:18.6, now starting z12
+0:34:04 INF [mbtiles] - features: [ 220M 8% 2M/s ] 199G tiles: [ 5.1M 138k/s ] 6.7G
+ cpus: 15.3 gc: 0% heap: 30G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(15% 20% 22% 22% 24% 22% 21% 24% 27% 27% 21% 23% 24% 24% 15% 19% 18% 19% 25% 21% 23% 19% 24% 22% 27% 24% 23% 12% 21% 20% 18% 23% 23% 23% 26% 26% 22% 24% 22% 19% 22% 21% 16% 28% 25% 21% 27% 22% 23% 29% 21% 21% 19% 22% 19% 22% 18% 18% 22% 17% 26% 22% 19% 16%) -> (1.6k/5.9k) -> write(37%)
+ last tile: 12/168/298 (z12 4%) https://www.openstreetmap.org/#map=12/82.19037/-165.23438
+0:34:14 INF [mbtiles] - features: [ 243M 8% 2.2M/s ] 199G tiles: [ 7.7M 263k/s ] 7.7G
+ cpus: 14.9 gc: 1% heap: 22G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(22% 16% 26% 23% 19% 20% 19% 20% 20% 19% 19% 21% 23% 19% 20% 17% 21% 23% 18% 21% 22% 17% 20% 22% 19% 23% 19% 23% 20% 21% 22% 20% 15% 22% 17% 22% 18% 20% 24% 19% 20% 20% 17% 21% 24% 19% 23% 21% 18% 21% 20% 18% 19% 17% 20% 19% 22% 20% 21% 22% 20% 17% 20% 20%) -> (19/5.9k) -> write(66%)
+ last tile: 12/979/1361 (z12 23%) https://www.openstreetmap.org/#map=12/51.56341/-93.95508
+0:34:24 INF [mbtiles] - features: [ 264M 9% 2.1M/s ] 199G tiles: [ 8.3M 55k/s ] 8.2G
+ cpus: 14.1 gc: 0% heap: 19G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(17% 19% 21% 19% 21% 21% 18% 23% 20% 22% 23% 23% 21% 25% 14% 14% 22% 19% 18% 18% 18% 15% 26% 19% 17% 24% 17% 14% 21% 20% 18% 21% 16% 18% 21% 25% 20% 22% 26% 21% 24% 17% 18% 20% 19% 22% 21% 23% 20% 17% 19% 19% 18% 20% 19% 17% 21% 23% 24% 23% 21% 23% 19% 20%) -> (19/5.9k) -> write(19%)
+ last tile: 12/1171/1506 (z12 28%) https://www.openstreetmap.org/#map=12/42.94034/-77.08008
+0:34:34 INF [mbtiles] - features: [ 285M 10% 2M/s ] 199G tiles: [ 9.4M 113k/s ] 9.1G
+ cpus: 16.3 gc: 0% heap: 24G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(21% 20% 21% 26% 25% 24% 27% 22% 21% 20% 24% 19% 25% 21% 27% 23% 23% 19% 27% 26% 17% 31% 23% 29% 27% 24% 21% 25% 29% 26% 21% 22% 27% 24% 19% 27% 23% 25% 25% 20% 19% 20% 20% 23% 22% 24% 22% 20% 25% 27% 25% 18% 24% 27% 27% 21% 19% 18% 25% 22% 22% 27% 20% 23%) -> (43/5.9k) -> write(36%)
+ last tile: 12/1499/2777 (z12 36%) https://www.openstreetmap.org/#map=12/-53.80065/-48.25195
+0:34:44 INF [mbtiles] - features: [ 306M 11% 2M/s ] 199G tiles: [ 11M 181k/s ] 9.8G
+ cpus: 14.7 gc: 0% heap: 20G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(17% 19% 26% 21% 24% 20% 18% 17% 16% 21% 22% 15% 21% 20% 17% 21% 26% 26% 20% 21% 18% 20% 26% 17% 21% 28% 19% 24% 15% 24% 21% 18% 20% 21% 20% 21% 21% 13% 17% 22% 22% 21% 20% 19% 16% 21% 17% 19% 20% 22% 17% 19% 18% 21% 19% 20% 27% 25% 19% 22% 20% 21% 26% 21%) -> (18/5.9k) -> write(47%)
+ last tile: 12/2029/1620 (z12 49%) https://www.openstreetmap.org/#map=12/35.17381/-1.66992
+0:34:54 INF [mbtiles] - features: [ 327M 11% 2M/s ] 199G tiles: [ 11M 29k/s ] 10G
+ cpus: 14.7 gc: 0% heap: 23G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(20% 19% 20% 21% 20% 19% 18% 21% 23% 20% 16% 22% 21% 23% 22% 25% 17% 19% 23% 22% 21% 23% 25% 21% 25% 20% 26% 22% 26% 15% 21% 21% 22% 22% 18% 21% 19% 22% 20% 26% 22% 19% 21% 19% 24% 27% 16% 19% 21% 23% 21% 21% 23% 24% 25% 21% 22% 22% 16% 17% 17% 16% 23% 18%) -> (18/5.9k) -> write(12%)
+ last tile: 12/2123/1596 (z12 51%) https://www.openstreetmap.org/#map=12/36.87962/6.59180
+0:35:04 INF [mbtiles] - features: [ 347M 12% 2M/s ] 199G tiles: [ 11M 22k/s ] 10G
+ cpus: 14.9 gc: 0% heap: 31G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(18% 19% 23% 20% 22% 23% 24% 19% 18% 26% 20% 22% 17% 21% 30% 19% 26% 23% 20% 23% 21% 22% 22% 17% 23% 22% 21% 21% 21% 22% 19% 20% 16% 19% 23% 17% 24% 23% 22% 26% 21% 20% 22% 23% 23% 24% 17% 24% 22% 27% 26% 23% 21% 17% 20% 13% 21% 27% 26% 25% 19% 25% 16% 21%) -> (25/5.9k) -> write(11%)
+ last tile: 12/2194/1235 (z12 53%) https://www.openstreetmap.org/#map=12/57.93818/12.83203
+0:35:14 INF [mbtiles] - features: [ 367M 13% 1.9M/s ] 199G tiles: [ 12M 35k/s ] 11G
+ cpus: 19.3 gc: 0% heap: 10G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(24% 24% 32% 22% 31% 26% 27% 31% 27% 26% 31% 21% 22% 28% 27% 31% 31% 25% 28% 19% 31% 28% 30% 26% 29% 27% 26% 33% 31% 31% 27% 29% 33% 27% 29% 29% 29% 31% 32% 35% 26% 28% 33% 34% 26% 29% 29% 29% 31% 22% 23% 27% 27% 29% 28% 26% 25% 36% 29% 20% 32% 25% 20% 34%) -> (28/5.9k) -> write(17%)
+ last tile: 12/2313/1468 (z12 56%) https://www.openstreetmap.org/#map=12/45.33670/23.29102
+0:35:24 INF [mbtiles] - features: [ 387M 13% 2M/s ] 199G tiles: [ 12M 46k/s ] 12G
+ cpus: 19.5 gc: 0% heap: 17G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(25% 31% 33% 32% 28% 29% 23% 27% 27% 27% 30% 30% 21% 32% 30% 20% 29% 33% 25% 29% 27% 36% 28% 29% 34% 26% 30% 25% 17% 30% 26% 34% 27% 28% 26% 29% 29% 23% 34% 31% 30% 26% 32% 27% 31% 25% 27% 33% 31% 28% 31% 32% 32% 30% 22% 27% 28% 25% 31% 29% 28% 23% 31% 28%) -> (33/5.9k) -> write(21%)
+ last tile: 12/2465/1274 (z12 60%) https://www.openstreetmap.org/#map=12/56.07204/36.65039
+0:35:34 INF [mbtiles] - features: [ 407M 14% 1.9M/s ] 199G tiles: [ 13M 126k/s ] 13G
+ cpus: 18.2 gc: 0% heap: 7.8G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(28% 23% 22% 23% 30% 27% 26% 31% 30% 30% 23% 28% 26% 31% 26% 24% 23% 26% 30% 26% 27% 22% 24% 20% 32% 30% 28% 28% 24% 23% 23% 23% 25% 31% 22% 23% 24% 24% 29% 29% 29% 33% 25% 30% 23% 29% 31% 26% 24% 27% 19% 28% 30% 28% 20% 28% 26% 23% 23% 21% 25% 27% 26% 27%) -> (23/5.9k) -> write(42%)
+ last tile: 12/2890/469 (z12 70%) https://www.openstreetmap.org/#map=12/79.85883/74.00391
+0:35:44 INF [mbtiles] - features: [ 428M 15% 2.1M/s ] 199G tiles: [ 14M 100k/s ] 14G
+ cpus: 16.5 gc: 0% heap: 7.5G/118G direct: 4M postGC: 7.2G
+ read(99%) -> (0/5.9k) -> encode(27% 23% 23% 22% 19% 24% 19% 20% 27% 23% 20% 20% 27% 18% 20% 29% 24% 25% 27% 21% 24% 22% 21% 24% 29% 24% 25% 28% 22% 21% 29% 21% 26% 24% 26% 24% 22% 25% 24% 26% 25% 23% 20% 18% 24% 29% 24% 23% 22% 26% 23% 26% 21% 21% 25% 26% 24% 23% 23% 22% 19% 25% 29% 25%) -> (19/5.9k) -> write(33%)
+ last tile: 12/3260/1693 (z12 79%) https://www.openstreetmap.org/#map=12/29.76438/106.52344
+0:35:54 INF [mbtiles] - features: [ 449M 16% 2M/s ] 199G tiles: [ 15M 75k/s ] 14G
+ cpus: 15.1 gc: 0% heap: 31G/118G direct: 4M postGC: 7.2G
+ read(100%) -> (0/5.9k) -> encode(19% 26% 21% 24% 19% 26% 21% 18% 23% 26% 22% 22% 19% 26% 27% 22% 24% 18% 28% 24% 24% 24% 17% 19% 18% 23% 15% 20% 20% 20% 17% 22% 25% 27% 21% 23% 25% 23% 21% 19% 22% 25% 25% 19% 24% 14% 22% 17% 21% 23% 18% 21% 25% 18% 26% 20% 21% 24% 17% 18% 22% 20% 20% 22%) -> (51/5.9k) -> write(26%)
+ last tile: 12/3543/1658 (z12 86%) https://www.openstreetmap.org/#map=12/32.39852/131.39648
+0:36:02 INF [mbtiles:write] - Finished z12 in 1m59s cpu:32m7s avg:16.2, now starting z13
+0:36:04 INF [mbtiles] - features: [ 471M 16% 2.2M/s ] 199G tiles: [ 18M 293k/s ] 15G
+ cpus: 16.1 gc: 0% heap: 41G/118G direct: 4M postGC: 7.9G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 19% 29% 21% 19% 22% 21% 21% 22% 18% 21% 17% 24% 19% 26% 19% 20% 18% 20% 22% 16% 22% 23% 20% 24% 16% 20% 17% 20% 23% 22% 22% 18% 24% 20% 22% 25% 24% 20% 19% 25% 18% 20% 17% 19% 21% 27% 18% 22% 23% 21% 22% 23% 21% 20% 22% 17% 25% 23% 21% 27% 22% 15%) -> (5.6k/5.9k) -> write(71%)
+ last tile: 13/143/2058 (z13 1%) https://www.openstreetmap.org/#map=13/66.33751/-173.71582
+0:36:14 INF [mbtiles] - features: [ 482M 17% 1.1M/s ] 199G tiles: [ 22M 367k/s ] 16G
+ cpus: 33 gc: 9% heap: 17G/118G direct: 4M postGC: 11G
+ read(63%) -> (299/5.9k) -> encode(47% 46% 41% 45% 40% 44% 41% 45% 41% 44% 42% 42% 43% 44% 43% 42% 45% 40% 46% 44% 40% 40% 42% 42% 44% 43% 44% 44% 43% 45% 47% 45% 42% 45% 35% 43% 47% 43% 41% 43% 42% 42% 43% 45% 46% 47% 45% 43% 41% 45% 42% 40% 43% 46% 46% 43% 43% 42% 38% 41% 42% 48% 48% 43%) -> (5.4k/5.9k) -> write(89%)
+ last tile: 13/623/4670 (z13 7%) https://www.openstreetmap.org/#map=13/-24.44715/-152.62207
+0:36:24 INF [mbtiles] - features: [ 494M 17% 1.1M/s ] 199G tiles: [ 25M 344k/s ] 16G
+ cpus: 61.6 gc: 9% heap: 48G/118G direct: 4M postGC: 15G
+ read(74%) -> (1.2k/5.9k) -> encode(90% 91% 91% 89% 89% 90% 90% 90% 89% 86% 86% 91% 86% 89% 90% 91% 89% 87% 84% 91% 88% 90% 87% 84% 82% 89% 82% 90% 90% 88% 85% 89% 85% 82% 90% 89% 85% 90% 90% 90% 88% 87% 91% 91% 90% 87% 86% 87% 82% 87% 90% 91% 88% 83% 90% 85% 83% 87% 83% 87% 81% 91% 89% 88%) -> (4.3k/5.9k) -> write(87%)
+ last tile: 13/1147/1472 (z13 14%) https://www.openstreetmap.org/#map=13/74.77584/-129.59473
+0:36:34 INF [mbtiles] - features: [ 511M 18% 1.6M/s ] 199G tiles: [ 28M 251k/s ] 17G
+ cpus: 61.8 gc: 9% heap: 50G/118G direct: 4M postGC: 15G
+ read(85%) -> (1.2k/5.9k) -> encode(90% 87% 90% 90% 90% 84% 90% 90% 90% 90% 82% 90% 90% 90% 88% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 87% 86% 81% 83% 90% 86% 90% 86% 78% 86% 90% 84% 90% 84% 87% 90% 90% 90% 81% 90% 90% 86% 86% 90% 84% 90% 87% 85% 90% 83% 86% 87% 86% 81% 89% 85% 90% 87% 88%) -> (2.3k/5.9k) -> write(75%)
+ last tile: 13/1564/204 (z13 19%) https://www.openstreetmap.org/#map=13/84.21425/-111.26953
+0:36:44 INF [mbtiles] - features: [ 535M 19% 2.4M/s ] 199G tiles: [ 30M 201k/s ] 18G
+ cpus: 62.4 gc: 6% heap: 22G/118G direct: 4M postGC: 13G
+ read(91%) -> (464/5.9k) -> encode(93% 93% 93% 90% 90% 94% 93% 92% 93% 92% 93% 90% 93% 88% 92% 94% 94% 92% 91% 94% 92% 94% 88% 93% 86% 93% 94% 91% 93% 94% 91% 93% 86% 83% 94% 92% 88% 90% 85% 92% 90% 89% 89% 88% 94% 94% 94% 93% 86% 94% 90% 94% 93% 89% 84% 93% 85% 92% 94% 85% 94% 93% 88% 90%) -> (838/5.9k) -> write(63%)
+ last tile: 13/1908/2820 (z13 23%) https://www.openstreetmap.org/#map=13/48.80686/-96.15234
+0:36:54 INF [mbtiles] - features: [ 557M 19% 2.1M/s ] 199G tiles: [ 31M 103k/s ] 19G
+ cpus: 62.9 gc: 4% heap: 60G/118G direct: 4M postGC: 13G
+ read(92%) -> (162/5.9k) -> encode(96% 96% 96% 96% 96% 91% 92% 95% 92% 95% 96% 96% 96% 92% 91% 96% 94% 94% 92% 95% 95% 94% 92% 96% 92% 91% 95% 92% 87% 90% 95% 95% 89% 89% 96% 92% 96% 91% 90% 94% 93% 96% 96% 92% 89% 95% 96% 95% 91% 95% 96% 91% 95% 93% 93% 96% 95% 95% 92% 96% 92% 95% 92% 95%) -> (405/5.9k) -> write(37%)
+ last tile: 13/2093/3741 (z13 25%) https://www.openstreetmap.org/#map=13/15.41132/-88.02246
+0:37:04 INF [mbtiles] - features: [ 577M 20% 2M/s ] 199G tiles: [ 31M 66k/s ] 19G
+ cpus: 61.6 gc: 4% heap: 29G/118G direct: 4M postGC: 13G
+ read(90%) -> (39/5.9k) -> encode(92% 93% 90% 93% 89% 94% 91% 94% 94% 92% 92% 93% 94% 91% 90% 93% 93% 84% 94% 93% 92% 92% 90% 93% 93% 93% 91% 93% 92% 94% 85% 91% 94% 93% 88% 92% 92% 82% 93% 89% 87% 91% 94% 90% 92% 92% 91% 90% 89% 91% 94% 92% 94% 90% 94% 92% 93% 94% 92% 91% 91% 93% 88% 91%) -> (415/5.9k) -> write(24%)
+ last tile: 13/2212/3434 (z13 27%) https://www.openstreetmap.org/#map=13/27.91677/-82.79297
+0:37:14 INF [mbtiles] - features: [ 596M 21% 1.8M/s ] 199G tiles: [ 32M 43k/s ] 19G
+ cpus: 62.5 gc: 4% heap: 17G/118G direct: 4M postGC: 13G
+ read(94%) -> (316/5.9k) -> encode(95% 94% 94% 93% 95% 95% 96% 95% 95% 94% 95% 95% 95% 94% 95% 93% 95% 95% 95% 96% 95% 94% 95% 92% 89% 95% 95% 88% 92% 95% 89% 90% 89% 89% 95% 94% 92% 96% 95% 93% 91% 91% 92% 96% 91% 95% 95% 95% 91% 91% 94% 94% 94% 94% 93% 95% 92% 94% 96% 95% 93% 88% 94% 92%) -> (847/5.9k) -> write(18%)
+ last tile: 13/2288/2990 (z13 27%) https://www.openstreetmap.org/#map=13/43.64403/-79.45313
+0:37:24 INF [mbtiles] - features: [ 614M 21% 1.8M/s ] 199G tiles: [ 32M 51k/s ] 20G
+ cpus: 62.8 gc: 4% heap: 58G/118G direct: 4M postGC: 13G
+ read(89%) -> (378/5.9k) -> encode(94% 90% 95% 95% 95% 95% 95% 90% 92% 95% 95% 95% 90% 95% 94% 95% 92% 95% 95% 95% 94% 95% 95% 92% 95% 92% 95% 91% 95% 90% 95% 95% 88% 95% 95% 93% 93% 95% 94% 95% 95% 87% 95% 95% 92% 94% 90% 92% 95% 91% 91% 95% 92% 95% 93% 91% 92% 95% 94% 94% 95% 88% 91% 95%) -> (962/5.9k) -> write(20%)
+ last tile: 13/2373/3993 (z13 28%) https://www.openstreetmap.org/#map=13/4.52167/-75.71777
+0:37:34 INF [mbtiles] - features: [ 626M 22% 1.1M/s ] 199G tiles: [ 33M 12k/s ] 20G
+ cpus: 61.8 gc: 9% heap: 57G/118G direct: 4M postGC: 16G
+ read(90%) -> (1.4k/5.9k) -> encode(91% 88% 91% 86% 85% 91% 87% 91% 90% 90% 91% 88% 90% 88% 89% 90% 85% 86% 91% 90% 88% 89% 87% 91% 88% 90% 90% 90% 89% 90% 90% 91% 91% 91% 83% 90% 90% 90% 90% 90% 90% 88% 86% 91% 90% 90% 88% 89% 88% 84% 89% 86% 88% 88% 88% 88% 89% 91% 87% 90% 91% 89% 86% 90%) -> (2.9k/5.9k) -> write( 5%)
+ last tile: 13/2393/3846 (z13 29%) https://www.openstreetmap.org/#map=13/10.91962/-74.83887
+0:37:44 INF [mbtiles] - features: [ 643M 22% 1.6M/s ] 199G tiles: [ 33M 83k/s ] 20G
+ cpus: 61.3 gc: 11% heap: 20G/118G direct: 4M postGC: 18G
+ read(87%) -> (2.3k/5.9k) -> encode(88% 89% 85% 87% 89% 88% 87% 89% 89% 85% 79% 89% 82% 89% 84% 84% 89% 85% 85% 87% 88% 88% 89% 89% 87% 81% 85% 88% 88% 89% 89% 88% 84% 85% 89% 89% 89% 88% 89% 88% 89% 84% 85% 85% 88% 85% 88% 84% 79% 88% 88% 85% 84% 88% 88% 89% 88% 87% 86% 86% 85% 80% 89% 85%) -> (3k/5.9k) -> write(34%)
+ last tile: 13/2534/4558 (z13 30%) https://www.openstreetmap.org/#map=13/-19.89072/-68.64258
+0:37:55 INF [mbtiles] - features: [ 663M 23% 1.9M/s ] 199G tiles: [ 35M 145k/s ] 21G
+ cpus: 61.7 gc: 9% heap: 69G/118G direct: 4M postGC: 20G
+ read(87%) -> (2k/5.9k) -> encode(82% 90% 90% 90% 88% 90% 90% 90% 82% 90% 88% 90% 85% 90% 90% 86% 90% 90% 90% 87% 83% 85% 87% 90% 90% 87% 90% 86% 89% 90% 87% 90% 89% 90% 90% 90% 87% 86% 86% 90% 86% 90% 86% 88% 83% 86% 87% 89% 89% 90% 86% 82% 90% 87% 90% 90% 90% 89% 80% 90% 86% 89% 90% 90%) -> (4.2k/5.9k) -> write(47%)
+ last tile: 13/2750/236 (z13 33%) https://www.openstreetmap.org/#map=13/84.07075/-59.15039
+0:38:05 INF [mbtiles] - features: [ 678M 23% 1.5M/s ] 199G tiles: [ 37M 205k/s ] 22G
+ cpus: 61 gc: 13% heap: 65G/118G direct: 4M postGC: 24G
+ read(61%) -> (3.7k/5.9k) -> encode(86% 87% 87% 87% 85% 79% 86% 87% 87% 84% 81% 85% 87% 87% 82% 87% 85% 68% 84% 87% 86% 87% 87% 85% 86% 84% 87% 87% 87% 86% 85% 87% 82% 82% 87% 87% 85% 86% 87% 87% 80% 87% 76% 87% 79% 86% 87% 87% 85% 87% 83% 80% 87% 87% 84% 87% 87% 82% 86% 79% 87% 87% 83% 85%) -> (5.9k/5.9k) -> write(65%)
+ last tile: 13/3031/4651 (z13 37%) https://www.openstreetmap.org/#map=13/-23.68477/-46.80176
+0:38:15 INF [mbtiles] - features: [ 687M 24% 904k/s ] 199G tiles: [ 37M 15k/s ] 22G
+ cpus: 33.9 gc: 6% heap: 55G/118G direct: 4M postGC: 24G
+ read( 4%) -> (0/5.9k) -> encode(43% 47% 47% 52% 69% 42% 42% 52% 46% 51% 50% 43% 45% 44% 41% 42% 45% 50% 47% 61% 71% 48% 45% 47% 41% 71% 44% 41% 42% 65% 44% 61% 42% 42% 51% 46% 48% 46% 45% 46% 45% 50% 43% 41% 42% 42% 46% 45% 67% 50% 93% 45% 43% 51% 43% 44% 48% 46% 47% 42% 46% 49% 85% 45%) -> (5.8k/5.9k) -> write( 4%)
+ last tile: 13/3053/2454 (z13 37%) https://www.openstreetmap.org/#map=13/58.30949/-45.83496
+0:38:25 INF [mbtiles] - features: [ 700M 24% 1.2M/s ] 199G tiles: [ 40M 326k/s ] 22G
+ cpus: 61.3 gc: 11% heap: 38G/118G direct: 4M postGC: 26G
+ read(81%) -> (789/5.9k) -> encode(84% 84% 87% 87% 89% 88% 80% 84% 89% 77% 89% 88% 89% 85% 86% 88% 86% 88% 84% 81% 89% 80% 83% 81% 80% 83% 89% 82% 89% 88% 86% 87% 84% 88% 85% 78% 88% 82% 83% 84% 86% 89% 87% 89% 87% 89% 88% 89% 89% 86% 89% 89% 85% 88% 83% 89% 87% 80% 88% 89% 85% 86% 89% 86%) -> (4.7k/5.9k) -> write(89%)
+ last tile: 13/3508/2602 (z13 42%) https://www.openstreetmap.org/#map=13/54.72462/-25.83984
+0:38:35 INF [mbtiles] - features: [ 712M 25% 1.2M/s ] 199G tiles: [ 43M 267k/s ] 23G
+ cpus: 61.8 gc: 9% heap: 28G/118G direct: 4M postGC: 27G
+ read(84%) -> (1.4k/5.9k) -> encode(90% 90% 88% 88% 87% 87% 90% 85% 90% 90% 86% 87% 89% 85% 89% 90% 84% 90% 90% 85% 88% 90% 90% 87% 90% 90% 85% 85% 90% 90% 88% 90% 86% 88% 90% 90% 90% 79% 80% 90% 90% 88% 90% 90% 90% 78% 90% 88% 80% 90% 90% 86% 90% 90% 89% 90% 83% 86% 83% 90% 89% 87% 90% 76%) -> (3.2k/5.9k) -> write(71%)
+ last tile: 13/3919/5060 (z13 47%) https://www.openstreetmap.org/#map=13/-38.95941/-7.77832
+0:38:45 INF [mbtiles] - features: [ 724M 25% 1.2M/s ] 199G tiles: [ 44M 76k/s ] 23G
+ cpus: 62.4 gc: 7% heap: 26G/118G direct: 4M postGC: 26G
+ read(91%) -> (2.4k/5.9k) -> encode(93% 93% 91% 93% 93% 93% 93% 93% 92% 93% 88% 92% 90% 91% 92% 91% 91% 92% 93% 86% 93% 86% 93% 93% 93% 92% 89% 93% 92% 93% 93% 89% 92% 93% 91% 89% 92% 86% 93% 93% 93% 88% 92% 93% 90% 92% 93% 86% 89% 91% 92% 93% 89% 90% 91% 93% 86% 92% 93% 88% 93% 93% 93% 89%) -> (2.7k/5.9k) -> write(27%)
+ last tile: 13/4043/2503 (z13 49%) https://www.openstreetmap.org/#map=13/57.16008/-2.32910
+0:38:55 INF [mbtiles] - features: [ 735M 25% 1M/s ] 199G tiles: [ 44M 9.9k/s ] 24G
+ cpus: 62.1 gc: 8% heap: 77G/118G direct: 4M postGC: 27G
+ read(91%) -> (3.6k/5.9k) -> encode(92% 92% 91% 89% 91% 90% 84% 92% 91% 92% 91% 91% 89% 92% 91% 92% 87% 92% 92% 88% 92% 84% 90% 89% 89% 92% 87% 91% 92% 90% 91% 90% 90% 92% 88% 90% 91% 92% 87% 90% 90% 92% 92% 92% 88% 92% 92% 87% 91% 90% 92% 91% 92% 87% 89% 92% 92% 92% 92% 92% 89% 88% 92% 88%) -> (4.4k/5.9k) -> write( 4%)
+ last tile: 13/4059/3814 (z13 49%) https://www.openstreetmap.org/#map=13/12.29707/-1.62598
+0:39:05 INF [mbtiles] - features: [ 746M 26% 1M/s ] 199G tiles: [ 44M 14k/s ] 24G
+ cpus: 61.5 gc: 11% heap: 55G/118G direct: 4M postGC: 29G
+ read(85%) -> (4.7k/5.9k) -> encode(86% 88% 89% 83% 84% 89% 88% 88% 89% 89% 89% 89% 89% 85% 89% 89% 89% 87% 89% 89% 87% 89% 84% 89% 89% 89% 89% 89% 89% 79% 89% 89% 89% 87% 89% 89% 89% 88% 89% 89% 89% 89% 88% 85% 89% 87% 89% 84% 89% 87% 89% 89% 81% 89% 78% 85% 87% 85% 89% 89% 84% 86% 89% 89%) -> (5.1k/5.9k) -> write( 6%)
+ last tile: 13/4082/2953 (z13 49%) https://www.openstreetmap.org/#map=13/44.80912/-0.61523
+0:39:15 INF [mbtiles] - features: [ 755M 26% 990k/s ] 199G tiles: [ 44M 9.8k/s ] 24G
+ cpus: 61.8 gc: 10% heap: 91G/118G direct: 4M postGC: 31G
+ read(70%) -> (5.4k/5.9k) -> encode(90% 90% 90% 90% 87% 90% 90% 89% 90% 90% 89% 90% 90% 88% 84% 90% 90% 85% 85% 84% 90% 90% 85% 90% 85% 90% 90% 88% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 86% 90% 87% 89% 90% 84% 90% 89% 90% 85% 90% 89% 90% 90% 84% 90% 90% 90% 88% 90% 90% 86%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4098/2796 (z13 50%) https://www.openstreetmap.org/#map=13/49.49667/0.08789
+0:39:25 INF [mbtiles] - features: [ 766M 27% 1M/s ] 199G tiles: [ 44M 18k/s ] 24G
+ cpus: 61.9 gc: 9% heap: 65G/118G direct: 4M postGC: 32G
+ read(55%) -> (5.6k/5.9k) -> encode(91% 91% 91% 86% 83% 91% 91% 91% 91% 88% 91% 91% 91% 91% 91% 91% 89% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 86% 91% 91% 91% 91% 91% 89% 86% 91% 91% 87% 89% 91% 91% 88% 91% 91% 86% 91% 91% 84% 91% 83% 91% 91% 91% 91% 86% 91% 91% 91% 91% 90% 91% 91% 91% 91%) -> (5.8k/5.9k) -> write( 7%)
+ last tile: 13/4128/2992 (z13 50%) https://www.openstreetmap.org/#map=13/43.58039/1.40625
+0:39:35 INF [mbtiles] - features: [ 775M 27% 927k/s ] 199G tiles: [ 44M 10k/s ] 24G
+ cpus: 62.3 gc: 7% heap: 95G/118G direct: 4M postGC: 34G
+ read(31%) -> (5.4k/5.9k) -> encode(93% 93% 93% 93% 93% 93% 93% 89% 93% 90% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 92% 93% 93% 92% 89% 93% 93% 93% 93% 92% 93% 93% 92% 90% 93% 92% 89% 88% 93% 92% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 85% 89% 92% 93% 93%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4145/3060 (z13 50%) https://www.openstreetmap.org/#map=13/41.37681/2.15332
+0:39:45 INF [mbtiles] - features: [ 784M 27% 859k/s ] 199G tiles: [ 45M 11k/s ] 24G
+ cpus: 62.5 gc: 6% heap: 61G/118G direct: 4M postGC: 34G
+ read(41%) -> (5.6k/5.9k) -> encode(93% 93% 93% 93% 93% 93% 93% 91% 93% 93% 93% 93% 90% 93% 92% 93% 93% 93% 93% 93% 93% 93% 94% 93% 91% 93% 93% 93% 91% 93% 93% 93% 93% 93% 91% 93% 92% 93% 93% 91% 93% 93% 91% 93% 93% 91% 91% 93% 93% 91% 93% 93% 92% 91% 93% 93% 93% 93% 93% 93% 93% 93% 93% 83%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4164/3005 (z13 50%) https://www.openstreetmap.org/#map=13/43.16512/2.98828
+0:39:55 INF [mbtiles] - features: [ 793M 27% 907k/s ] 199G tiles: [ 45M 9.7k/s ] 24G
+ cpus: 62.6 gc: 6% heap: 41G/118G direct: 4M postGC: 35G
+ read(32%) -> (5.5k/5.9k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 92% 94% 93% 94% 94% 94% 93% 92% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 89% 94% 94% 94% 94% 94% 94% 88% 94% 94% 91% 94% 94% 91% 94% 94% 94% 88% 90% 92% 94% 94% 94% 94% 93% 94% 94% 94% 94%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4180/2741 (z13 51%) https://www.openstreetmap.org/#map=13/51.04139/3.69141
+0:40:05 INF [mbtiles] - features: [ 802M 28% 839k/s ] 199G tiles: [ 45M 10k/s ] 24G
+ cpus: 62.5 gc: 6% heap: 89G/118G direct: 4M postGC: 36G
+ read(37%) -> (5.6k/5.9k) -> encode(94% 93% 94% 86% 93% 94% 94% 94% 94% 89% 94% 94% 91% 93% 93% 94% 94% 94% 94% 94% 94% 94% 94% 93% 93% 92% 93% 94% 93% 94% 94% 94% 94% 94% 94% 93% 93% 89% 94% 93% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 87% 94% 91% 94% 90% 94% 89% 94% 94% 93% 94% 94% 94% 92%) -> (5.8k/5.9k) -> write( 4%)
+ last tile: 13/4198/3902 (z13 51%) https://www.openstreetmap.org/#map=13/8.49410/4.48242
+0:40:15 INF [mbtiles] - features: [ 811M 28% 902k/s ] 199G tiles: [ 45M 5.5k/s ] 24G
+ cpus: 62.6 gc: 6% heap: 83G/118G direct: 4M postGC: 37G
+ read(33%) -> (5.5k/5.9k) -> encode(94% 94% 94% 94% 89% 94% 94% 94% 93% 94% 94% 94% 89% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 91% 94% 93% 94% 94% 94% 86% 94% 94% 88% 94% 93% 94% 94% 94% 94% 94% 94% 94% 93% 90% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (5.8k/5.9k) -> write( 3%)
+ last tile: 13/4208/3867 (z13 51%) https://www.openstreetmap.org/#map=13/10.01213/4.92188
+0:40:25 INF [mbtiles] - features: [ 820M 28% 896k/s ] 199G tiles: [ 45M 6.6k/s ] 24G
+ cpus: 62.6 gc: 6% heap: 87G/118G direct: 4M postGC: 38G
+ read(32%) -> (5.4k/5.9k) -> encode(94% 94% 94% 94% 93% 94% 89% 94% 94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 92% 92% 94% 94% 91% 91% 94% 94% 89% 94% 94% 93% 94% 94% 94% 92% 94% 94% 94% 94% 94% 93% 94% 94% 94% 93% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 91% 94% 94% 93% 94% 94% 94% 94%) -> (5.9k/5.9k) -> write( 3%)
+ last tile: 13/4218/3002 (z13 51%) https://www.openstreetmap.org/#map=13/43.26121/5.36133
+0:40:35 INF [mbtiles] - features: [ 829M 29% 929k/s ] 199G tiles: [ 45M 8.6k/s ] 25G
+ cpus: 62.5 gc: 6% heap: 40G/118G direct: 4M postGC: 39G
+ read(44%) -> (5.5k/5.9k) -> encode(94% 94% 92% 94% 94% 93% 94% 93% 94% 94% 94% 87% 93% 94% 94% 89% 94% 94% 93% 90% 92% 94% 93% 91% 94% 93% 93% 92% 94% 87% 93% 93% 94% 93% 93% 94% 93% 94% 92% 93% 93% 93% 94% 93% 92% 92% 94% 93% 93% 92% 93% 90% 93% 94% 94% 94% 89% 93% 93% 93% 92% 94% 90% 93%) -> (5.8k/5.9k) -> write( 4%)
+ last tile: 13/4232/2699 (z13 51%) https://www.openstreetmap.org/#map=13/52.18740/5.97656
+0:40:45 INF [mbtiles] - features: [ 839M 29% 969k/s ] 199G tiles: [ 45M 8k/s ] 25G
+ cpus: 62.6 gc: 6% heap: 72G/118G direct: 4M postGC: 40G
+ read(43%) -> (5.5k/5.9k) -> encode(94% 94% 92% 93% 94% 94% 93% 94% 91% 93% 94% 94% 94% 94% 92% 94% 87% 94% 94% 94% 94% 94% 94% 93% 94% 90% 94% 94% 94% 89% 91% 94% 94% 93% 93% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 87% 93% 94% 94% 94% 94% 94% 93% 93% 94% 94% 94% 89% 94% 94% 94% 94%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4245/2731 (z13 51%) https://www.openstreetmap.org/#map=13/51.31688/6.54785
+0:40:55 INF [mbtiles] - features: [ 848M 29% 971k/s ] 199G tiles: [ 45M 8k/s ] 25G
+ cpus: 62.5 gc: 6% heap: 55G/118G direct: 4M postGC: 41G
+ read(45%) -> (5.6k/5.9k) -> encode(93% 91% 88% 93% 92% 93% 93% 93% 93% 93% 92% 90% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 91% 93% 92% 89% 93% 93% 93% 93% 93% 93% 92% 93% 91% 93% 93% 93% 87% 89% 92% 92% 93% 90% 93% 93% 93% 88%) -> (5.8k/5.9k) -> write( 4%)
+ last tile: 13/4258/2750 (z13 51%) https://www.openstreetmap.org/#map=13/50.79205/7.11914
+0:41:05 INF [mbtiles] - features: [ 860M 30% 1.1M/s ] 199G tiles: [ 45M 9.9k/s ] 25G
+ cpus: 62.5 gc: 6% heap: 62G/118G direct: 4M postGC: 42G
+ read(51%) -> (5.6k/5.9k) -> encode(94% 94% 94% 94% 93% 90% 91% 93% 94% 94% 92% 94% 93% 88% 94% 94% 94% 93% 94% 94% 92% 94% 94% 94% 94% 94% 94% 94% 88% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 92% 89% 92% 94% 94% 93% 91% 94% 94% 94% 94% 87% 92% 94% 93% 92% 94% 94% 94% 94% 89% 94% 89% 94% 94%) -> (5.8k/5.9k) -> write( 5%)
+ last tile: 13/4274/2848 (z13 52%) https://www.openstreetmap.org/#map=13/47.98992/7.82227
+0:41:15 INF [mbtiles] - features: [ 874M 30% 1.3M/s ] 199G tiles: [ 45M 13k/s ] 25G
+ cpus: 62.3 gc: 7% heap: 82G/118G direct: 4M postGC: 44G
+ read(61%) -> (5.5k/5.9k) -> encode(93% 93% 92% 93% 93% 92% 84% 92% 91% 93% 92% 88% 93% 93% 93% 93% 93% 88% 93% 93% 93% 93% 85% 93% 91% 93% 93% 93% 93% 93% 93% 91% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 89% 90% 93% 93% 93% 92% 91% 93% 93% 92% 93% 78% 92% 93% 90% 92% 88% 92%) -> (5.6k/5.9k) -> write( 7%)
+ last tile: 13/4295/3946 (z13 52%) https://www.openstreetmap.org/#map=13/6.57730/8.74512
+0:41:25 INF [mbtiles] - features: [ 887M 31% 1.3M/s ] 199G tiles: [ 45M 10k/s ] 25G
+ cpus: 62.1 gc: 8% heap: 60G/118G direct: 4M postGC: 46G
+ read(67%) -> (5.6k/5.9k) -> encode(92% 92% 92% 92% 92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 86% 92% 90% 92% 92% 91% 92% 92% 92% 92% 90% 92% 92% 84% 92% 90% 92% 92% 83% 90% 91% 92% 91% 92% 92% 92% 91% 91% 88% 87% 92% 87% 88% 90% 92% 92% 90% 91% 92% 86% 91% 91% 87% 92% 91% 92% 92%) -> (5.8k/5.9k) -> write( 6%)
+ last tile: 13/4312/2937 (z13 52%) https://www.openstreetmap.org/#map=13/45.30580/9.49219
+0:41:35 INF [mbtiles] - features: [ 901M 31% 1.3M/s ] 199G tiles: [ 46M 10k/s ] 25G
+ cpus: 62.2 gc: 7% heap: 53G/118G direct: 4M postGC: 47G
+ read(32%) -> (4.8k/5.9k) -> encode(92% 93% 92% 87% 93% 93% 92% 92% 92% 93% 93% 93% 92% 92% 93% 92% 93% 90% 93% 93% 92% 93% 91% 93% 86% 93% 93% 92% 92% 93% 88% 93% 93% 93% 92% 92% 93% 92% 93% 92% 92% 93% 93% 92% 93% 92% 92% 92% 92% 91% 93% 92% 93% 92% 92% 93% 89% 90% 89% 93% 92% 93% 93% 91%) -> (5.2k/5.9k) -> write( 6%)
+ last tile: 13/4329/2983 (z13 52%) https://www.openstreetmap.org/#map=13/43.86622/10.23926
+0:41:46 INF [mbtiles] - features: [ 915M 32% 1.3M/s ] 199G tiles: [ 46M 15k/s ] 26G
+ cpus: 62.3 gc: 7% heap: 61G/118G direct: 4M postGC: 49G
+ read(93%) -> (5.5k/5.9k) -> encode(86% 90% 93% 91% 93% 93% 92% 93% 91% 93% 93% 93% 91% 92% 90% 93% 92% 93% 88% 93% 93% 93% 90% 93% 86% 90% 91% 85% 93% 93% 92% 93% 93% 90% 93% 90% 91% 92% 89% 92% 89% 88% 89% 90% 93% 89% 93% 93% 93% 93% 91% 93% 93% 93% 88% 92% 89% 92% 89% 93% 93% 89% 93% 85%) -> (5.6k/5.9k) -> write( 8%)
+ last tile: 13/4354/2964 (z13 53%) https://www.openstreetmap.org/#map=13/44.46515/11.33789
+0:41:56 INF [mbtiles] - features: [ 928M 32% 1.2M/s ] 199G tiles: [ 46M 7.3k/s ] 26G
+ cpus: 60.6 gc: 11% heap: 41G/118G direct: 4M postGC: 10G
+ read(35%) -> (4.8k/5.9k) -> encode(89% 89% 85% 88% 88% 83% 86% 88% 89% 85% 89% 86% 88% 88% 89% 87% 87% 88% 85% 89% 89% 88% 88% 88% 89% 85% 85% 84% 85% 84% 85% 88% 88% 85% 86% 86% 86% 84% 86% 87% 89% 86% 88% 86% 85% 86% 84% 84% 85% 88% 85% 88% 88% 89% 86% 89% 82% 88% 88% 85% 88% 85% 86% 89%) -> (5.6k/5.9k) -> write( 4%)
+ last tile: 13/4366/4206 (z13 53%) https://www.openstreetmap.org/#map=13/-4.82826/11.86523
+0:42:06 INF [mbtiles] - features: [ 943M 33% 1.5M/s ] 199G tiles: [ 46M 20k/s ] 26G
+ cpus: 62.3 gc: 5% heap: 14G/118G direct: 4M postGC: 11G
+ read(56%) -> (4.5k/5.9k) -> encode(95% 90% 95% 91% 95% 95% 91% 95% 92% 95% 95% 93% 92% 95% 95% 92% 93% 94% 91% 87% 95% 95% 91% 89% 89% 93% 93% 95% 94% 93% 93% 88% 88% 95% 95% 92% 95% 95% 91% 84% 95% 95% 91% 95% 93% 94% 95% 95% 92% 94% 88% 91% 94% 95% 93% 94% 95% 95% 95% 95% 91% 92% 91% 89%) -> (4.8k/5.9k) -> write(11%)
+ last tile: 13/4400/3884 (z13 53%) https://www.openstreetmap.org/#map=13/9.27562/13.35938
+0:42:16 INF [mbtiles] - features: [ 958M 33% 1.5M/s ] 199G tiles: [ 46M 20k/s ] 26G
+ cpus: 61.9 gc: 9% heap: 18G/118G direct: 4M postGC: 14G
+ read(91%) -> (5.1k/5.9k) -> encode(91% 91% 91% 91% 91% 91% 90% 91% 91% 90% 91% 88% 88% 84% 87% 90% 91% 91% 86% 87% 91% 87% 90% 91% 91% 91% 91% 88% 90% 91% 91% 90% 91% 86% 90% 88% 88% 87% 91% 91% 86% 90% 91% 90% 87% 91% 90% 87% 83% 86% 91% 91% 88% 86% 89% 87% 91% 91% 83% 91% 91% 89% 90% 86%) -> (5.3k/5.9k) -> write(11%)
+ last tile: 13/4435/3173 (z13 54%) https://www.openstreetmap.org/#map=13/37.54458/14.89746
+0:42:26 INF [mbtiles] - features: [ 971M 34% 1.3M/s ] 199G tiles: [ 46M 4.5k/s ] 26G
+ cpus: 61.8 gc: 9% heap: 22G/118G direct: 4M postGC: 15G
+ read(33%) -> (4.5k/5.9k) -> encode(86% 90% 90% 89% 90% 89% 90% 86% 90% 90% 90% 90% 86% 90% 90% 86% 86% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 90% 90% 90% 90% 86% 90% 90% 90% 90% 90% 89% 90% 89% 90% 90% 86% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (5.9k/5.9k) -> write( 2%)
+ last tile: 13/4443/4193 (z13 54%) https://www.openstreetmap.org/#map=13/-4.25877/15.24902
+0:42:36 INF [mbtiles] - features: [ 985M 34% 1.3M/s ] 199G tiles: [ 47M 38k/s ] 27G
+ cpus: 62.5 gc: 6% heap: 24G/118G direct: 4M postGC: 17G
+ read(80%) -> (4.8k/5.9k) -> encode(91% 94% 94% 89% 94% 90% 94% 94% 94% 93% 93% 94% 88% 93% 94% 94% 93% 94% 92% 94% 89% 94% 94% 93% 94% 94% 92% 89% 92% 93% 91% 94% 91% 94% 94% 94% 94% 91% 92% 91% 92% 92% 91% 94% 94% 94% 93% 93% 90% 90% 89% 94% 92% 89% 92% 94% 94% 80% 89% 89% 91% 92% 91% 90%) -> (5k/5.9k) -> write(19%)
+ last tile: 13/4511/4096 (z13 55%) https://www.openstreetmap.org/#map=13/0.00000/18.23730
+0:42:46 INF [mbtiles] - features: [ 1B 35% 1.5M/s ] 199G tiles: [ 47M 24k/s ] 27G
+ cpus: 61.7 gc: 10% heap: 20G/118G direct: 4M postGC: 19G
+ read(82%) -> (5.1k/5.9k) -> encode(87% 87% 87% 87% 90% 88% 90% 90% 90% 88% 89% 88% 90% 90% 90% 90% 86% 90% 88% 88% 90% 89% 90% 90% 90% 86% 90% 89% 90% 90% 90% 90% 90% 90% 86% 86% 90% 84% 86% 90% 90% 90% 90% 89% 90% 87% 89% 88% 90% 88% 90% 90% 90% 87% 90% 83% 90% 88% 86% 86% 85% 87% 86% 85%) -> (5.3k/5.9k) -> write(11%)
+ last tile: 13/4554/2948 (z13 55%) https://www.openstreetmap.org/#map=13/44.96480/20.12695
+0:42:56 INF [mbtiles] - features: [ 1B 35% 1.8M/s ] 199G tiles: [ 47M 35k/s ] 28G
+ cpus: 61.8 gc: 9% heap: 49G/118G direct: 4M postGC: 21G
+ read(91%) -> (5.3k/5.9k) -> encode(90% 91% 91% 86% 87% 86% 87% 90% 90% 90% 90% 89% 90% 87% 90% 91% 86% 90% 88% 87% 90% 90% 91% 89% 90% 90% 90% 87% 86% 89% 89% 86% 90% 90% 89% 88% 90% 91% 91% 89% 89% 87% 90% 90% 90% 89% 85% 86% 84% 90% 88% 88% 90% 86% 82% 87% 91% 90% 90% 88% 89% 89% 88% 88%) -> (5.7k/5.9k) -> write(17%)
+ last tile: 13/4617/3082 (z13 56%) https://www.openstreetmap.org/#map=13/40.64730/22.89551
+0:43:06 INF [mbtiles] - features: [ 1B 36% 2M/s ] 199G tiles: [ 48M 51k/s ] 28G
+ cpus: 61.7 gc: 10% heap: 52G/118G direct: 4M postGC: 23G
+ read(72%) -> (4.9k/5.9k) -> encode(89% 89% 90% 84% 90% 89% 90% 90% 90% 87% 90% 90% 90% 90% 88% 90% 88% 90% 90% 90% 87% 90% 90% 82% 89% 88% 90% 88% 90% 90% 85% 90% 87% 89% 90% 86% 85% 89% 90% 90% 90% 90% 86% 87% 83% 89% 83% 90% 90% 90% 90% 90% 90% 88% 90% 87% 88% 90% 84% 90% 89% 87% 85% 90%) -> (5.3k/5.9k) -> write(24%)
+ last tile: 13/4704/4348 (z13 57%) https://www.openstreetmap.org/#map=13/-11.00590/26.71875
+0:43:16 INF [mbtiles] - features: [ 1B 36% 1.3M/s ] 199G tiles: [ 48M 20k/s ] 28G
+ cpus: 61.7 gc: 10% heap: 36G/118G direct: 4M postGC: 25G
+ read(65%) -> (5.2k/5.9k) -> encode(90% 90% 90% 90% 85% 85% 89% 88% 90% 90% 90% 90% 90% 90% 90% 89% 88% 85% 90% 90% 90% 88% 90% 86% 90% 90% 90% 88% 90% 90% 90% 90% 90% 90% 89% 85% 83% 90% 90% 90% 90% 88% 89% 87% 90% 90% 90% 89% 89% 90% 85% 90% 85% 90% 82% 90% 86% 90% 90% 90% 85% 88% 90% 90%) -> (5.9k/5.9k) -> write( 9%)
+ last tile: 13/4738/4452 (z13 57%) https://www.openstreetmap.org/#map=13/-15.45368/28.21289
+0:43:26 INF [mbtiles] - features: [ 1B 37% 1.2M/s ] 199G tiles: [ 48M 8.2k/s ] 28G
+ cpus: 62.2 gc: 8% heap: 75G/118G direct: 4M postGC: 26G
+ read(20%) -> (4.3k/5.9k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 90% 91% 87% 92% 92% 92% 92% 87% 91% 87% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/4752/4154 (z13 58%) https://www.openstreetmap.org/#map=13/-2.54799/28.82813
+0:43:36 INF [mbtiles] - features: [ 1B 37% 1.4M/s ] 199G tiles: [ 48M 18k/s ] 29G
+ cpus: 62.6 gc: 6% heap: 60G/118G direct: 4M postGC: 27G
+ read(52%) -> (4.1k/5.9k) -> encode(94% 93% 93% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94% 90% 94% 94% 94% 94% 94% 89% 94% 94% 94% 94% 94% 93% 90% 94% 85% 94% 90% 94% 90% 91% 93% 93% 94% 93% 89% 90% 93% 94% 94% 92% 91% 94% 94% 94% 94% 93% 93% 94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 90% 94% 89%) -> (5.9k/5.9k) -> write( 9%)
+ last tile: 13/4784/4061 (z13 58%) https://www.openstreetmap.org/#map=13/1.53790/30.23438
+0:43:46 INF [mbtiles] - features: [ 1B 38% 1M/s ] 199G tiles: [ 49M 30k/s ] 29G
+ cpus: 61.9 gc: 9% heap: 30G/118G direct: 4M postGC: 29G
+ read(72%) -> (4.9k/5.9k) -> encode(91% 91% 91% 90% 91% 91% 91% 90% 89% 91% 91% 91% 91% 91% 83% 89% 91% 88% 91% 91% 91% 91% 88% 91% 91% 90% 91% 87% 91% 91% 91% 91% 91% 86% 86% 89% 84% 91% 91% 90% 91% 89% 89% 89% 88% 91% 86% 91% 91% 91% 90% 90% 86% 91% 91% 90% 91% 89% 87% 87% 89% 88% 91% 81%) -> (5.6k/5.9k) -> write(14%)
+ last tile: 13/4836/4090 (z13 59%) https://www.openstreetmap.org/#map=13/0.26367/32.51953
+0:43:56 INF [mbtiles] - features: [ 1.1B 38% 1.1M/s ] 199G tiles: [ 49M 26k/s ] 29G
+ cpus: 62 gc: 9% heap: 60G/118G direct: 4M postGC: 30G
+ read(51%) -> (5.1k/5.9k) -> encode(91% 87% 91% 90% 89% 90% 91% 86% 91% 91% 91% 89% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 87% 89% 90% 86% 91% 91% 89% 91% 89% 89% 91% 91% 91% 88% 88% 91% 90% 88% 91% 91% 91% 88% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 88% 91% 89% 91% 91% 91% 86% 87%) -> (5.4k/5.9k) -> write(12%)
+ last tile: 13/4880/3340 (z13 59%) https://www.openstreetmap.org/#map=13/31.50363/34.45313
+0:44:06 INF [mbtiles] - features: [ 1.1B 39% 1.3M/s ] 199G tiles: [ 49M 21k/s ] 29G
+ cpus: 62 gc: 8% heap: 33G/118G direct: 4M postGC: 32G
+ read(52%) -> (4.9k/5.9k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 88% 89% 91% 91% 91% 91% 91% 89% 91% 91% 91% 91% 86% 91% 91% 91% 90% 90% 91% 86% 91% 88% 86% 91% 91% 91% 87% 86% 91% 91% 90% 91% 91% 91% 90% 90% 86% 89% 85% 91% 91% 91% 91% 91% 91% 91% 91% 91% 89% 91% 91% 91% 91% 86% 91% 89%) -> (5.5k/5.9k) -> write(10%)
+ last tile: 13/4916/4103 (z13 60%) https://www.openstreetmap.org/#map=13/-0.30762/36.03516
+0:44:16 INF [mbtiles] - features: [ 1.1B 39% 1.5M/s ] 199G tiles: [ 49M 35k/s ] 30G
+ cpus: 61.9 gc: 9% heap: 56G/118G direct: 4M postGC: 35G
+ read(59%) -> (5.1k/5.9k) -> encode(91% 91% 84% 91% 91% 91% 88% 91% 91% 90% 91% 84% 89% 91% 90% 83% 87% 89% 91% 89% 91% 91% 91% 89% 89% 91% 91% 87% 90% 91% 91% 91% 91% 90% 88% 91% 88% 91% 91% 91% 88% 91% 88% 91% 90% 85% 91% 91% 91% 86% 90% 89% 85% 91% 90% 86% 90% 91% 90% 89% 91% 91% 91% 88%) -> (5.8k/5.9k) -> write(15%)
+ last tile: 13/4976/1343 (z13 60%) https://www.openstreetmap.org/#map=13/76.19549/38.67188
+0:44:26 INF [mbtiles] - features: [ 1.1B 40% 1.7M/s ] 199G tiles: [ 50M 9.4k/s ] 30G
+ cpus: 62 gc: 8% heap: 74G/118G direct: 4M postGC: 35G
+ read(11%) -> (3.2k/5.9k) -> encode(90% 92% 91% 92% 92% 91% 92% 92% 91% 92% 91% 92% 90% 91% 92% 92% 92% 91% 92% 92% 90% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 89% 92% 92% 92% 91% 92% 91% 92% 92% 91% 92% 92% 90% 91% 89% 91% 92% 92% 92% 92% 91% 90% 92% 91% 91% 90% 92% 91% 92% 91% 92% 90%) -> (5.8k/5.9k) -> write( 4%)
+ last tile: 13/4992/2983 (z13 60%) https://www.openstreetmap.org/#map=13/43.86622/39.37500
+0:44:36 INF [mbtiles] - features: [ 1.1B 40% 1.7M/s ] 199G tiles: [ 50M 79k/s ] 30G
+ cpus: 62.3 gc: 7% heap: 48G/118G direct: 4M postGC: 37G
+ read(54%) -> (3k/5.9k) -> encode(93% 93% 93% 93% 93% 91% 90% 93% 88% 87% 92% 93% 93% 91% 89% 93% 93% 87% 93% 93% 93% 90% 93% 91% 88% 93% 93% 88% 93% 88% 89% 93% 88% 90% 93% 93% 91% 93% 88% 93% 93% 89% 90% 93% 93% 93% 93% 93% 93% 90% 90% 93% 91% 93% 93% 93% 93% 88% 93% 93% 93% 93% 93% 91%) -> (5.9k/5.9k) -> write(30%)
+ last tile: 13/5126/4050 (z13 62%) https://www.openstreetmap.org/#map=13/2.02107/45.26367
+0:44:46 INF [mbtiles] - features: [ 1.1B 41% 1.9M/s ] 199G tiles: [ 52M 207k/s ] 31G
+ cpus: 61.7 gc: 9% heap: 55G/118G direct: 4M postGC: 39G
+ read(66%) -> (1.3k/5.9k) -> encode(90% 86% 90% 90% 85% 90% 90% 90% 86% 87% 88% 80% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 87% 90% 90% 86% 81% 83% 88% 80% 90% 87% 90% 90% 90% 90% 89% 85% 82% 84% 87% 90% 88% 90% 85% 90% 85% 90% 90% 89% 81% 90% 90% 90% 90% 86% 90% 79% 88% 87% 90% 90% 88%) -> (3.9k/5.9k) -> write(68%)
+ last tile: 13/5495/2557 (z13 67%) https://www.openstreetmap.org/#map=13/55.85065/61.47949
+0:44:57 INF [mbtiles] - features: [ 1.2B 42% 1.4M/s ] 199G tiles: [ 55M 213k/s ] 32G
+ cpus: 61.6 gc: 10% heap: 76G/118G direct: 4M postGC: 41G
+ read(87%) -> (2.4k/5.9k) -> encode(90% 88% 90% 90% 84% 87% 85% 87% 82% 89% 90% 90% 89% 87% 87% 89% 88% 89% 89% 87% 85% 85% 89% 88% 82% 81% 87% 83% 86% 81% 88% 90% 88% 87% 90% 89% 89% 85% 87% 90% 90% 87% 81% 90% 85% 90% 86% 85% 89% 90% 90% 86% 89% 85% 89% 89% 90% 86% 84% 86% 87% 87% 85% 89%) -> (3.1k/5.9k) -> write(66%)
+ last tile: 13/5870/152 (z13 71%) https://www.openstreetmap.org/#map=13/84.44011/77.95898
+0:45:07 INF [mbtiles] - features: [ 1.2B 42% 1.2M/s ] 199G tiles: [ 55M 47k/s ] 32G
+ cpus: 61.7 gc: 10% heap: 68G/118G direct: 4M postGC: 42G
+ read(88%) -> (3.8k/5.9k) -> encode(90% 90% 86% 90% 88% 90% 85% 89% 90% 90% 90% 88% 90% 81% 90% 90% 88% 90% 90% 87% 86% 85% 90% 84% 86% 90% 90% 87% 87% 89% 89% 89% 90% 90% 82% 90% 89% 88% 90% 90% 89% 84% 89% 83% 84% 89% 90% 87% 90% 90% 90% 85% 88% 87% 90% 90% 90% 89% 90% 87% 90% 90% 87% 88%) -> (4.6k/5.9k) -> write(16%)
+ last tile: 13/5957/3498 (z13 72%) https://www.openstreetmap.org/#map=13/25.40358/81.78223
+0:45:17 INF [mbtiles] - features: [ 1.2B 42% 1M/s ] 199G tiles: [ 55M 42k/s ] 32G
+ cpus: 61.4 gc: 12% heap: 56G/118G direct: 4M postGC: 44G
+ read(79%) -> (4.7k/5.9k) -> encode(88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 88% 87% 87% 88% 87% 84% 87% 88% 86% 88% 88% 88% 80% 86% 88% 86% 86% 88% 88% 88% 88% 84% 86% 88% 86% 82% 84% 81% 88% 88% 88% 88% 85% 86% 88% 88% 88% 86% 84% 80% 88% 88% 88% 86% 88% 86% 86% 84% 79%) -> (5.9k/5.9k) -> write(14%)
+ last tile: 13/6037/3440 (z13 73%) https://www.openstreetmap.org/#map=13/27.68353/85.29785
+0:45:27 INF [mbtiles] - features: [ 1.2B 43% 793k/s ] 199G tiles: [ 56M 55k/s ] 32G
+ cpus: 60.6 gc: 11% heap: 33G/118G direct: 4M postGC: 10G
+ read(64%) -> (5.1k/5.9k) -> encode(86% 87% 88% 86% 88% 88% 88% 86% 88% 80% 86% 88% 88% 85% 86% 88% 86% 79% 88% 83% 88% 82% 80% 85% 80% 86% 87% 87% 87% 85% 82% 87% 85% 85% 85% 88% 80% 87% 84% 82% 84% 81% 86% 83% 88% 88% 81% 83% 84% 87% 82% 87% 88% 86% 87% 84% 87% 88% 88% 87% 85% 85% 88% 88%) -> (5.5k/5.9k) -> write(18%)
+ last tile: 13/6143/1366 (z13 75%) https://www.openstreetmap.org/#map=13/75.95224/89.95605
+0:45:37 INF [mbtiles] - features: [ 1.2B 43% 1M/s ] 199G tiles: [ 56M 25k/s ] 32G
+ cpus: 61.6 gc: 9% heap: 47G/118G direct: 4M postGC: 10G
+ read(28%) -> (4.3k/5.9k) -> encode(91% 91% 91% 87% 91% 89% 91% 91% 91% 91% 91% 84% 90% 90% 89% 89% 89% 87% 91% 91% 91% 91% 87% 91% 88% 91% 90% 89% 91% 90% 91% 91% 91% 91% 89% 91% 91% 91% 88% 91% 91% 91% 91% 91% 91% 91% 90% 90% 87% 91% 90% 89% 91% 89% 91% 88% 91% 91% 86% 89% 91% 91% 91% 91%) -> (5.5k/5.9k) -> write( 7%)
+ last tile: 13/6192/3603 (z13 75%) https://www.openstreetmap.org/#map=13/21.16648/92.10938
+0:45:47 INF [mbtiles] - features: [ 1.2B 44% 1.6M/s ] 199G tiles: [ 57M 114k/s ] 33G
+ cpus: 62 gc: 9% heap: 48G/118G direct: 4M postGC: 12G
+ read(89%) -> (4.3k/5.9k) -> encode(91% 91% 91% 91% 91% 91% 91% 87% 90% 89% 89% 90% 91% 91% 89% 91% 89% 87% 91% 90% 91% 89% 91% 91% 91% 91% 88% 86% 90% 91% 91% 86% 85% 91% 89% 83% 81% 91% 90% 91% 86% 86% 81% 88% 87% 91% 90% 91% 89% 89% 80% 90% 91% 89% 89% 91% 91% 89% 91% 89% 89% 87% 91% 91%) -> (5.4k/5.9k) -> write(36%)
+ last tile: 13/6430/3680 (z13 78%) https://www.openstreetmap.org/#map=13/17.97873/102.56836
+0:45:57 INF [mbtiles] - features: [ 1.2B 44% 873k/s ] 199G tiles: [ 58M 45k/s ] 33G
+ cpus: 61.1 gc: 13% heap: 40G/118G direct: 4M postGC: 17G
+ read(69%) -> (5.5k/5.9k) -> encode(83% 83% 86% 84% 87% 87% 83% 87% 86% 87% 87% 87% 87% 79% 87% 87% 83% 83% 87% 86% 85% 87% 87% 87% 85% 86% 87% 87% 85% 87% 87% 87% 82% 87% 87% 87% 87% 87% 87% 87% 86% 87% 87% 87% 83% 86% 82% 87% 87% 87% 83% 87% 87% 87% 86% 80% 87% 87% 81% 86% 79% 87% 87% 86%) -> (5.9k/5.9k) -> write(17%)
+ last tile: 13/6524/4237 (z13 79%) https://www.openstreetmap.org/#map=13/-6.18425/106.69922
+0:46:07 INF [mbtiles] - features: [ 1.2B 44% 678k/s ] 199G tiles: [ 58M 9.3k/s ] 33G
+ cpus: 61.9 gc: 9% heap: 61G/118G direct: 4M postGC: 16G
+ read(16%) -> (5.2k/5.9k) -> encode(91% 91% 91% 84% 91% 91% 91% 91% 91% 91% 87% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 88% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 87% 91% 91% 91% 90% 91% 91% 91% 91%) -> (5.7k/5.9k) -> write( 3%)
+ last tile: 13/6543/4255 (z13 79%) https://www.openstreetmap.org/#map=13/-6.97005/107.53418
+0:46:17 INF [mbtiles] - features: [ 1.2B 44% 918k/s ] 199G tiles: [ 58M 19k/s ] 33G
+ cpus: 62.2 gc: 8% heap: 33G/118G direct: 4M postGC: 17G
+ read(34%) -> (5.3k/5.9k) -> encode(92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 83% 91% 87% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 91% 86% 92% 91% 92% 88% 92% 92%) -> (5.9k/5.9k) -> write( 7%)
+ last tile: 13/6583/4097 (z13 80%) https://www.openstreetmap.org/#map=13/-0.04395/109.29199
+0:46:27 INF [mbtiles] - features: [ 1.2B 45% 882k/s ] 199G tiles: [ 58M 12k/s ] 33G
+ cpus: 62.2 gc: 8% heap: 55G/118G direct: 4M postGC: 18G
+ read(18%) -> (5k/5.9k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 90% 92% 92% 92% 92% 92% 92% 92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 91% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 89% 92% 87% 92% 92% 92% 92%) -> (5.9k/5.9k) -> write( 4%)
+ last tile: 13/6609/4256 (z13 80%) https://www.openstreetmap.org/#map=13/-7.01367/110.43457
+0:46:37 INF [mbtiles] - features: [ 1.3B 45% 976k/s ] 199G tiles: [ 59M 25k/s ] 33G
+ cpus: 62.3 gc: 7% heap: 72G/118G direct: 4M postGC: 19G
+ read(24%) -> (4.7k/5.9k) -> encode(84% 92% 88% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 92% 92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 89% 92% 92% 87% 92% 92% 92% 90% 92% 92% 92% 92%) -> (5.9k/5.9k) -> write( 9%)
+ last tile: 13/6661/4263 (z13 81%) https://www.openstreetmap.org/#map=13/-7.31888/112.71973
+0:46:47 INF [mbtiles] - features: [ 1.3B 45% 1.2M/s ] 199G tiles: [ 59M 62k/s ] 34G
+ cpus: 62.3 gc: 7% heap: 30G/118G direct: 4M postGC: 20G
+ read(45%) -> (4.6k/5.9k) -> encode(89% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 88% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 88% 79% 93% 93% 93% 93% 93% 89% 93% 93% 93% 92% 90% 93% 93% 90% 93% 93% 93% 92% 93% 88% 92% 93% 93% 93% 82% 93% 93% 91% 88% 93% 92% 93% 89% 93% 93%) -> (5.5k/5.9k) -> write(24%)
+ last tile: 13/6784/209 (z13 82%) https://www.openstreetmap.org/#map=13/84.19206/118.12500
+0:46:57 INF [mbtiles] - features: [ 1.3B 46% 875k/s ] 199G tiles: [ 59M 31k/s ] 34G
+ cpus: 61.7 gc: 10% heap: 31G/118G direct: 4M postGC: 22G
+ read(57%) -> (5.5k/5.9k) -> encode(90% 90% 90% 90% 87% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 88% 90% 90% 90% 85% 90% 90% 90% 89% 90% 90% 90% 90% 90% 85% 90% 90% 90% 88% 90% 87% 90% 86% 90% 90% 80% 88% 89% 85% 90% 90% 84% 90% 90% 90% 90% 86% 90% 86% 90% 90% 80% 90% 86%) -> (5.9k/5.9k) -> write(11%)
+ last tile: 13/6846/3765 (z13 83%) https://www.openstreetmap.org/#map=13/14.39212/120.84961
+0:47:07 INF [mbtiles] - features: [ 1.3B 46% 974k/s ] 199G tiles: [ 60M 46k/s ] 34G
+ cpus: 62.2 gc: 8% heap: 33G/118G direct: 4M postGC: 22G
+ read(29%) -> (5.2k/5.9k) -> encode(92% 87% 90% 92% 92% 92% 92% 92% 92% 92% 87% 91% 92% 92% 92% 92% 90% 92% 92% 92% 92% 92% 92% 92% 92% 87% 92% 92% 92% 92% 92% 92% 92% 92% 92% 88% 92% 92% 90% 92% 87% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 86% 92% 92% 92% 91% 91% 92% 92% 92% 90%) -> (5.5k/5.9k) -> write(15%)
+ last tile: 13/6936/4063 (z13 84%) https://www.openstreetmap.org/#map=13/1.45004/124.80469
+0:47:17 INF [mbtiles] - features: [ 1.3B 47% 1.5M/s ] 199G tiles: [ 61M 112k/s ] 35G
+ cpus: 62.3 gc: 7% heap: 44G/118G direct: 4M postGC: 24G
+ read(37%) -> (5.5k/5.9k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 91% 93% 93% 92% 91% 93% 93% 92% 93% 91% 92% 93% 93% 90% 87% 89% 93% 93% 93% 93% 93% 93% 93% 86% 87% 93% 93% 93% 92% 93% 90% 86% 93% 93% 93% 82% 93% 93% 93% 85% 93% 93% 93% 93% 93% 90% 93% 93% 90% 93% 93% 93% 92% 89%) -> (5.9k/5.9k) -> write(35%)
+ last tile: 13/7150/3231 (z13 87%) https://www.openstreetmap.org/#map=13/35.49646/134.20898
+0:47:27 INF [mbtiles] - features: [ 1.3B 47% 1M/s ] 199G tiles: [ 61M 17k/s ] 35G
+ cpus: 62 gc: 9% heap: 41G/118G direct: 4M postGC: 25G
+ read( 3%) -> (4.6k/5.9k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 88% 91% 91% 91% 91% 91% 86% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91%) -> (5.9k/5.9k) -> write( 6%)
+ last tile: 13/7184/3245 (z13 87%) https://www.openstreetmap.org/#map=13/34.99400/135.70313
+0:47:37 INF [mbtiles] - features: [ 1.3B 47% 946k/s ] 199G tiles: [ 62M 62k/s ] 35G
+ cpus: 62.5 gc: 6% heap: 40G/118G direct: 4M postGC: 25G
+ read(18%) -> (5.3k/5.9k) -> encode(93% 93% 93% 93% 87% 93% 93% 93% 93% 93% 92% 87% 93% 93% 90% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 88% 93% 93% 93% 89% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 91% 93% 91% 93% 93% 93% 93% 91% 93% 93% 93% 92%) -> (5.6k/5.9k) -> write(21%)
+ last tile: 13/7301/3152 (z13 89%) https://www.openstreetmap.org/#map=13/38.27269/140.84473
+0:47:47 INF [mbtiles] - features: [ 1.3B 48% 2M/s ] 199G tiles: [ 64M 213k/s ] 35G
+ cpus: 49.3 gc: 4% heap: 38G/118G direct: 4M postGC: 26G
+ read(23%) -> (0/5.9k) -> encode(72% 74% 72% 75% 73% 72% 67% 71% 72% 72% 73% 72% 76% 71% 75% 74% 73% 72% 81% 73% 70% 72% 67% 72% 79% 72% 72% 77% 72% 68% 72% 77% 69% 73% 72% 76% 72% 73% 70% 74% 75% 73% 72% 78% 75% 72% 69% 73% 73% 75% 71% 75% 72% 75% 73% 72% 69% 73% 72% 74% 73% 72% 71% 74%) -> (5.9k/5.9k) -> write(58%)
+ last tile: 13/7669/1702 (z13 93%) https://www.openstreetmap.org/#map=13/71.88358/157.01660
+0:47:56 INF [mbtiles:write] - Finished z13 in 11m54s cpu:11h55m44s gc:56s avg:60.1, now starting z14
+0:47:57 INF [mbtiles] - features: [ 1.3B 48% 506k/s ] 199G tiles: [ 68M 438k/s ] 36G
+ cpus: 1.7 gc: 0% heap: 43G/118G direct: 4M postGC: 26G
+ read(22%) -> (0/5.9k) -> encode( 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/40/13787 (z14 0%) https://www.openstreetmap.org/#map=14/-76.65445/-179.12109
+0:48:07 INF [mbtiles] - features: [ 1.3B 48% 500k/s ] 199G tiles: [ 73M 457k/s ] 37G
+ cpus: 1.6 gc: 0% heap: 46G/118G direct: 4M postGC: 26G
+ read(22%) -> (0/5.9k) -> encode( 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 0% 0% 1% 0% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 0% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/328/14097 (z14 2%) https://www.openstreetmap.org/#map=14/-78.13901/-172.79297
+0:48:17 INF [mbtiles] - features: [ 1.4B 49% 564k/s ] 199G tiles: [ 78M 452k/s ] 37G
+ cpus: 2.2 gc: 0% heap: 53G/118G direct: 4M postGC: 26G
+ read(24%) -> (0/5.9k) -> encode( 2% 1% 1% 2% 1% 2% 2% 2% 1% 2% 1% 2% 2% 2% 1% 1% 2% 1% 2% 1% 2% 1% 1% 1% 1% 2% 2% 1% 2% 1% 2% 2% 2% 2% 2% 1% 1% 1% 1% 2% 1% 1% 1% 3% 2% 1% 2% 1% 2% 2% 2% 1% 2% 2% 2% 2% 2% 2% 2% 3% 2% 2% 1% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/610/6746 (z14 3%) https://www.openstreetmap.org/#map=14/30.25907/-166.59668
+0:48:27 INF [mbtiles] - features: [ 1.4B 49% 514k/s ] 199G tiles: [ 82M 444k/s ] 38G
+ cpus: 2.2 gc: 0% heap: 59G/118G direct: 4M postGC: 26G
+ read(22%) -> (0/5.9k) -> encode( 1% 1% 1% 1% 2% 2% 1% 1% 2% 1% 1% 1% 2% 2% 1% 1% 1% 1% 2% 1% 2% 1% 1% 2% 2% 1% 1% 2% 2% 1% 1% 1% 2% 1% 2% 2% 1% 2% 1% 1% 1% 1% 1% 2% 1% 2% 2% 1% 1% 2% 1% 2% 1% 1% 1% 1% 1% 1% 1% 2% 1% 1% 2% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/899/2623 (z14 5%) https://www.openstreetmap.org/#map=14/76.52194/-160.24658
+0:48:37 INF [mbtiles] - features: [ 1.4B 49% 519k/s ] 199G tiles: [ 86M 445k/s ] 39G
+ cpus: 2.3 gc: 0% heap: 67G/118G direct: 4M postGC: 26G
+ read(23%) -> (0/5.9k) -> encode( 2% 2% 1% 1% 2% 2% 2% 1% 2% 2% 2% 1% 2% 1% 2% 2% 2% 2% 1% 1% 1% 2% 1% 1% 1% 2% 1% 2% 2% 1% 1% 2% 2% 2% 1% 2% 1% 1% 2% 1% 2% 2% 1% 2% 1% 2% 2% 2% 1% 2% 2% 1% 2% 2% 1% 2% 2% 2% 1% 2% 2% 1% 1% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/1205/14620 (z14 7%) https://www.openstreetmap.org/#map=14/-80.28310/-153.52295
+0:48:47 INF [mbtiles] - features: [ 1.4B 49% 493k/s ] 199G tiles: [ 91M 446k/s ] 39G
+ cpus: 2.1 gc: 0% heap: 72G/118G direct: 4M postGC: 26G
+ read(22%) -> (0/5.9k) -> encode( 1% 1% 1% 2% 2% 2% 1% 1% 2% 2% 1% 1% 1% 2% 1% 1% 1% 1% 1% 2% 1% 1% 1% 2% 1% 2% 1% 1% 2% 1% 1% 2% 1% 1% 0% 1% 2% 2% 1% 1% 2% 2% 1% 1% 2% 2% 2% 1% 2% 2% 1% 2% 2% 2% 2% 1% 1% 2% 1% 2% 2% 0% 2% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/1531/3044 (z14 9%) https://www.openstreetmap.org/#map=14/74.18805/-146.35986
+0:48:57 INF [mbtiles] - features: [ 1.4B 49% 549k/s ] 199G tiles: [ 95M 440k/s ] 40G
+ cpus: 2.9 gc: 0% heap: 81G/118G direct: 4M postGC: 26G
+ read(25%) -> (0/5.9k) -> encode( 2% 3% 2% 5% 4% 2% 2% 2% 3% 2% 1% 3% 4% 3% 4% 3% 2% 3% 3% 3% 1% 3% 2% 2% 3% 4% 1% 2% 2% 2% 2% 3% 2% 4% 3% 1% 2% 2% 3% 2% 2% 3% 4% 5% 2% 2% 3% 2% 2% 3% 3% 2% 1% 2% 2% 4% 2% 3% 2% 3% 2% 3% 2% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/1864/1971 (z14 11%) https://www.openstreetmap.org/#map=14/79.48463/-139.04297
+0:49:07 INF [mbtiles] - features: [ 1.4B 50% 1.2M/s ] 199G tiles: [ 100M 438k/s ] 40G
+ cpus: 7.7 gc: 1% heap: 62G/118G direct: 4M postGC: 26G
+ read(55%) -> (0/5.9k) -> encode(11% 8% 9% 9% 11% 12% 10% 9% 12% 7% 13% 7% 13% 8% 9% 10% 8% 9% 7% 4% 11% 9% 11% 7% 9% 11% 12% 9% 7% 8% 7% 10% 11% 11% 10% 6% 8% 11% 9% 9% 11% 9% 12% 10% 9% 7% 9% 7% 8% 7% 9% 9% 7% 7% 7% 10% 10% 11% 7% 7% 7% 6% 7% 11%) -> (5.7k/5.9k) -> write(99%)
+ last tile: 14/2208/949 (z14 13%) https://www.openstreetmap.org/#map=14/82.88339/-131.48438
+0:49:17 INF [mbtiles] - features: [ 1.4B 51% 2.2M/s ] 199G tiles: [ 104M 435k/s ] 41G
+ cpus: 13.8 gc: 1% heap: 86G/118G direct: 4M postGC: 28G
+ read(98%) -> (0/5.9k) -> encode(18% 15% 18% 16% 15% 13% 21% 17% 15% 19% 21% 20% 19% 16% 18% 18% 15% 18% 17% 18% 17% 21% 19% 12% 18% 16% 18% 18% 21% 20% 16% 15% 22% 16% 21% 23% 16% 20% 14% 13% 19% 21% 19% 19% 20% 16% 14% 20% 14% 19% 22% 18% 17% 18% 18% 17% 21% 17% 18% 18% 16% 16% 17% 23%) -> (5.6k/5.9k) -> write(99%)
+ last tile: 14/2565/11515 (z14 15%) https://www.openstreetmap.org/#map=14/-58.75681/-123.64014
+0:49:27 INF [mbtiles] - features: [ 1.4B 51% 2.1M/s ] 199G tiles: [ 108M 374k/s ] 43G
+ cpus: 15 gc: 3% heap: 63G/118G direct: 4M postGC: 28G
+ read(97%) -> (0/5.9k) -> encode(20% 20% 16% 16% 19% 24% 21% 16% 21% 20% 19% 19% 23% 22% 21% 17% 16% 20% 22% 21% 20% 16% 20% 16% 18% 16% 19% 20% 19% 20% 19% 19% 20% 19% 16% 18% 19% 15% 18% 14% 18% 16% 19% 16% 18% 17% 17% 16% 16% 20% 19% 22% 19% 17% 17% 17% 21% 21% 17% 22% 16% 23% 18% 16%) -> (4.1k/5.9k) -> write(97%)
+ last tile: 14/2877/5769 (z14 17%) https://www.openstreetmap.org/#map=14/46.90525/-116.78467
+0:49:37 INF [mbtiles] - features: [ 1.5B 52% 2.1M/s ] 199G tiles: [ 112M 393k/s ] 44G
+ cpus: 16.1 gc: 2% heap: 44G/118G direct: 4M postGC: 28G
+ read(97%) -> (0/5.9k) -> encode(26% 20% 26% 20% 20% 24% 20% 18% 17% 20% 23% 19% 17% 19% 20% 22% 20% 20% 21% 19% 20% 27% 20% 18% 22% 25% 19% 13% 20% 20% 16% 20% 21% 17% 17% 26% 18% 20% 22% 18% 24% 20% 23% 19% 20% 21% 24% 23% 17% 18% 18% 24% 20% 19% 24% 23% 19% 24% 20% 25% 20% 22% 25% 23%) -> (5.3k/5.9k) -> write(98%)
+ last tile: 14/3215/6900 (z14 19%) https://www.openstreetmap.org/#map=14/27.29369/-109.35791
+0:49:47 INF [mbtiles] - features: [ 1.5B 53% 2.1M/s ] 199G tiles: [ 116M 395k/s ] 45G
+ cpus: 15.1 gc: 2% heap: 33G/118G direct: 4M postGC: 28G
+ read(97%) -> (0/5.9k) -> encode(19% 20% 18% 23% 18% 17% 22% 20% 19% 20% 18% 19% 16% 19% 25% 20% 18% 18% 17% 25% 18% 24% 19% 14% 15% 16% 22% 17% 21% 25% 21% 15% 17% 17% 21% 20% 22% 20% 22% 23% 18% 18% 20% 18% 14% 18% 22% 16% 19% 22% 23% 17% 18% 17% 20% 13% 16% 19% 17% 20% 16% 17% 20% 15%) -> (4.6k/5.9k) -> write(98%)
+ last tile: 14/3557/5468 (z14 21%) https://www.openstreetmap.org/#map=14/51.23441/-101.84326
+0:49:57 INF [mbtiles] - features: [ 1.5B 54% 2.2M/s ] 199G tiles: [ 120M 378k/s ] 46G
+ cpus: 15.2 gc: 1% heap: 80G/118G direct: 4M postGC: 28G
+ read(99%) -> (0/5.9k) -> encode(23% 22% 21% 22% 19% 18% 19% 20% 22% 21% 20% 23% 18% 21% 19% 19% 13% 20% 24% 17% 20% 22% 22% 23% 20% 19% 18% 19% 17% 23% 22% 17% 22% 21% 15% 19% 16% 20% 26% 18% 24% 19% 14% 18% 21% 19% 23% 23% 20% 17% 19% 21% 18% 17% 21% 15% 15% 27% 23% 13% 18% 21% 24% 24%) -> (2.7k/5.9k) -> write(99%)
+ last tile: 14/3892/6242 (z14 23%) https://www.openstreetmap.org/#map=14/39.33430/-94.48242
+0:50:07 INF [mbtiles] - features: [ 1.5B 54% 2.2M/s ] 199G tiles: [ 123M 374k/s ] 48G
+ cpus: 14 gc: 1% heap: 57G/118G direct: 4M postGC: 25G
+ read(98%) -> (0/5.9k) -> encode(19% 19% 22% 18% 19% 16% 17% 17% 18% 19% 19% 13% 17% 17% 15% 18% 17% 16% 18% 20% 20% 18% 21% 17% 17% 18% 16% 15% 19% 15% 18% 23% 15% 21% 15% 18% 21% 18% 16% 17% 14% 18% 21% 18% 17% 18% 21% 20% 17% 15% 17% 17% 20% 18% 21% 20% 20% 18% 20% 16% 23% 20% 19% 16%) -> (409/5.9k) -> write(99%)
+ last tile: 14/4234/12795 (z14 25%) https://www.openstreetmap.org/#map=14/-70.57611/-86.96777
+0:50:17 INF [mbtiles] - features: [ 1.5B 55% 2.2M/s ] 199G tiles: [ 125M 201k/s ] 49G
+ cpus: 13.6 gc: 0% heap: 33G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(18% 19% 17% 18% 21% 21% 17% 23% 16% 17% 19% 20% 18% 19% 24% 17% 18% 16% 17% 17% 19% 19% 22% 18% 19% 21% 19% 12% 26% 17% 22% 18% 20% 13% 18% 18% 20% 19% 21% 17% 20% 22% 22% 19% 18% 17% 21% 23% 20% 18% 19% 19% 15% 22% 17% 19% 16% 14% 17% 22% 13% 16% 18% 19%) -> (20/5.9k) -> write(56%)
+ last tile: 14/4415/6041 (z14 26%) https://www.openstreetmap.org/#map=14/42.66628/-82.99072
+0:50:27 INF [mbtiles] - features: [ 1.6B 56% 2.2M/s ] 199G tiles: [ 127M 144k/s ] 49G
+ cpus: 12.8 gc: 0% heap: 63G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 16% 18% 16% 20% 19% 22% 20% 17% 18% 20% 17% 15% 17% 15% 16% 17% 22% 13% 16% 15% 21% 17% 17% 21% 17% 19% 18% 17% 16% 19% 19% 16% 18% 21% 16% 19% 21% 16% 18% 20% 16% 18% 16% 19% 17% 18% 17% 17% 19% 19% 15% 18% 16% 17% 16% 18% 20% 21% 21% 14% 20% 18%) -> (5/5.9k) -> write(43%)
+ last tile: 14/4542/6959 (z14 27%) https://www.openstreetmap.org/#map=14/26.13571/-80.20020
+0:50:37 INF [mbtiles] - features: [ 1.6B 57% 2.2M/s ] 199G tiles: [ 128M 153k/s ] 50G
+ cpus: 13 gc: 0% heap: 30G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(19% 16% 21% 13% 21% 17% 19% 18% 15% 16% 21% 16% 20% 19% 20% 18% 14% 19% 18% 17% 19% 16% 21% 17% 18% 17% 15% 18% 18% 15% 16% 21% 20% 20% 17% 17% 23% 19% 18% 21% 19% 21% 18% 16% 18% 16% 18% 25% 16% 13% 20% 20% 17% 17% 19% 17% 21% 15% 17% 18% 16% 16% 17% 18%) -> (21/5.9k) -> write(46%)
+ last tile: 14/4673/6238 (z14 28%) https://www.openstreetmap.org/#map=14/39.40224/-77.32178
+0:50:47 INF [mbtiles] - features: [ 1.6B 57% 2.3M/s ] 199G tiles: [ 130M 145k/s ] 51G
+ cpus: 12.8 gc: 0% heap: 55G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(17% 24% 24% 17% 17% 17% 18% 19% 19% 18% 15% 16% 18% 20% 19% 15% 19% 18% 20% 19% 20% 18% 12% 19% 16% 17% 16% 22% 17% 15% 15% 21% 17% 11% 14% 19% 18% 14% 12% 18% 18% 17% 19% 17% 15% 21% 14% 18% 21% 20% 17% 16% 17% 17% 19% 16% 22% 14% 21% 18% 16% 15% 18% 20%) -> (24/5.9k) -> write(44%)
+ last tile: 14/4795/8266 (z14 29%) https://www.openstreetmap.org/#map=14/-1.62576/-74.64111
+0:50:57 INF [mbtiles] - features: [ 1.6B 58% 2.3M/s ] 199G tiles: [ 131M 120k/s ] 52G
+ cpus: 12 gc: 0% heap: 71G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(18% 17% 18% 19% 19% 18% 16% 15% 20% 17% 15% 19% 12% 14% 18% 17% 18% 19% 16% 20% 18% 18% 17% 15% 13% 16% 16% 12% 12% 18% 15% 17% 18% 18% 14% 16% 17% 14% 16% 16% 16% 18% 16% 14% 18% 17% 18% 16% 15% 17% 19% 14% 16% 15% 16% 21% 19% 15% 15% 18% 18% 13% 19% 16%) -> (21/5.9k) -> write(37%)
+ last tile: 14/4892/2093 (z14 29%) https://www.openstreetmap.org/#map=14/78.98399/-72.50977
+0:51:07 INF [mbtiles] - features: [ 1.7B 59% 2.2M/s ] 199G tiles: [ 133M 197k/s ] 53G
+ cpus: 14.1 gc: 0% heap: 35G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(23% 25% 21% 18% 20% 17% 19% 22% 20% 22% 16% 19% 23% 15% 19% 19% 20% 23% 21% 22% 19% 16% 18% 19% 19% 21% 18% 21% 18% 19% 15% 20% 22% 16% 17% 18% 19% 22% 25% 19% 21% 16% 23% 17% 15% 17% 16% 20% 21% 22% 18% 20% 21% 18% 20% 19% 18% 21% 19% 21% 19% 20% 16% 20%) -> (305/5.9k) -> write(59%)
+ last tile: 14/5071/9704 (z14 30%) https://www.openstreetmap.org/#map=14/-31.50363/-68.57666
+0:51:17 INF [mbtiles] - features: [ 1.7B 60% 2.2M/s ] 199G tiles: [ 137M 373k/s ] 54G
+ cpus: 15 gc: 0% heap: 54G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(24% 20% 23% 21% 18% 21% 17% 21% 21% 20% 22% 21% 18% 20% 22% 20% 17% 20% 18% 23% 22% 21% 17% 22% 18% 20% 16% 19% 20% 20% 21% 21% 21% 18% 19% 23% 22% 15% 18% 22% 17% 19% 22% 23% 20% 20% 19% 19% 21% 24% 21% 21% 17% 20% 21% 19% 19% 21% 19% 20% 19% 22% 20% 20%) -> (2.3k/5.9k) -> write(100%)
+ last tile: 14/5373/5117 (z14 32%) https://www.openstreetmap.org/#map=14/55.81363/-61.94092
+0:51:27 INF [mbtiles] - features: [ 1.7B 61% 2.1M/s ] 199G tiles: [ 141M 394k/s ] 55G
+ cpus: 13.1 gc: 1% heap: 69G/118G direct: 4M postGC: 26G
+ read(97%) -> (0/5.9k) -> encode(14% 16% 18% 17% 16% 19% 15% 16% 18% 17% 14% 18% 18% 18% 20% 15% 18% 14% 15% 14% 15% 19% 16% 19% 20% 20% 14% 21% 20% 18% 16% 14% 10% 17% 18% 20% 18% 15% 14% 20% 19% 20% 19% 16% 15% 22% 19% 20% 18% 13% 17% 13% 18% 18% 14% 18% 16% 18% 17% 14% 12% 17% 21% 18%) -> (4.9k/5.9k) -> write(99%)
+ last tile: 14/5643/5698 (z14 34%) https://www.openstreetmap.org/#map=14/47.96050/-56.00830
+0:51:31 WAR [mbtiles:encode] - {x=6070 y=9294 z=14} 1000kb uncompressed
+0:51:31 WAR [mbtiles:encode] - {x=6070 y=9292 z=14} 1002kb uncompressed
+0:51:31 WAR [mbtiles:encode] - {x=6071 y=9291 z=14} 1010kb uncompressed
+0:51:31 WAR [mbtiles:encode] - {x=6071 y=9292 z=14} 1281kb uncompressed
+0:51:31 WAR [mbtiles:encode] - {x=6073 y=9297 z=14} 1064kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6074 y=9296 z=14} 1065kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6074 y=9297 z=14} 1203kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6074 y=9293 z=14} 1026kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6075 y=9297 z=14} 1092kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6075 y=9293 z=14} 1134kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6076 y=9293 z=14} 1108kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6077 y=9293 z=14} 985kb uncompressed
+0:51:32 WAR [mbtiles:encode] - {x=6079 y=9292 z=14} 1016kb uncompressed
+0:51:37 INF [mbtiles] - features: [ 1.7B 61% 1.7M/s ] 199G tiles: [ 145M 397k/s ] 56G
+ cpus: 10.8 gc: 1% heap: 77G/118G direct: 4M postGC: 27G
+ read(78%) -> (0/5.9k) -> encode(13% 13% 15% 19% 11% 17% 12% 13% 12% 13% 13% 11% 14% 9% 12% 15% 13% 16% 15% 14% 14% 17% 16% 12% 13% 10% 12% 10% 10% 13% 11% 13% 12% 13% 18% 14% 12% 14% 19% 12% 13% 17% 14% 9% 13% 10% 13% 13% 9% 12% 13% 14% 14% 18% 16% 17% 9% 9% 13% 13% 14% 16% 12% 14%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/5921/6412 (z14 36%) https://www.openstreetmap.org/#map=14/36.38591/-49.89990
+0:51:43 WAR [mbtiles:encode] - {x=6435 y=8363 z=14} 1049kb uncompressed
+0:51:43 WAR [mbtiles:encode] - {x=6435 y=8361 z=14} 1688kb uncompressed
+0:51:47 INF [mbtiles] - features: [ 1.7B 62% 1.1M/s ] 199G tiles: [ 149M 401k/s ] 57G
+ cpus: 6.8 gc: 1% heap: 55G/118G direct: 4M postGC: 28G
+ read(49%) -> (0/5.9k) -> encode( 7% 7% 6% 10% 6% 5% 5% 10% 9% 7% 8% 7% 5% 7% 11% 5% 7% 6% 6% 7% 7% 9% 13% 6% 4% 10% 5% 6% 6% 8% 10% 7% 6% 10% 10% 9% 7% 8% 6% 8% 8% 10% 6% 7% 6% 12% 6% 7% 6% 8% 10% 7% 5% 9% 7% 6% 6% 7% 5% 9% 8% 10% 12% 7%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/6201/4889 (z14 37%) https://www.openstreetmap.org/#map=14/58.52813/-43.74756
+0:51:58 INF [mbtiles] - features: [ 1.7B 62% 644k/s ] 199G tiles: [ 153M 411k/s ] 58G
+ cpus: 2.3 gc: 0% heap: 64G/118G direct: 4M postGC: 28G
+ read(29%) -> (0/5.9k) -> encode( 1% 1% 2% 2% 2% 2% 2% 2% 1% 2% 1% 1% 1% 2% 2% 2% 1% 2% 2% 1% 2% 2% 2% 1% 1% 2% 1% 1% 2% 1% 2% 1% 2% 1% 1% 1% 2% 2% 2% 2% 1% 1% 2% 2% 2% 1% 2% 1% 2% 1% 1% 1% 2% 2% 1% 1% 2% 1% 3% 2% 1% 1% 1% 1%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/6479/4464 (z14 39%) https://www.openstreetmap.org/#map=14/63.07487/-37.63916
+0:52:08 INF [mbtiles] - features: [ 1.7B 62% 587k/s ] 199G tiles: [ 157M 426k/s ] 59G
+ cpus: 2.5 gc: 0% heap: 72G/118G direct: 4M postGC: 28G
+ read(27%) -> (0/5.9k) -> encode( 2% 1% 2% 2% 2% 2% 1% 2% 2% 2% 2% 2% 2% 2% 2% 1% 2% 3% 2% 2% 1% 2% 2% 2% 2% 1% 1% 2% 2% 2% 2% 2% 1% 2% 3% 2% 1% 1% 3% 1% 3% 2% 2% 3% 2% 2% 2% 1% 1% 2% 2% 2% 2% 2% 3% 2% 3% 2% 1% 2% 2% 1% 2% 2%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/6775/3281 (z14 41%) https://www.openstreetmap.org/#map=14/72.70537/-31.13525
+0:52:18 INF [mbtiles] - features: [ 1.7B 62% 757k/s ] 199G tiles: [ 161M 421k/s ] 59G
+ cpus: 4 gc: 1% heap: 30G/118G direct: 4M postGC: 27G
+ read(34%) -> (0/5.9k) -> encode( 5% 3% 3% 5% 3% 4% 3% 5% 2% 3% 3% 3% 4% 3% 2% 3% 2% 4% 3% 3% 4% 3% 3% 3% 4% 5% 5% 4% 4% 2% 3% 3% 4% 4% 3% 2% 4% 4% 4% 2% 3% 4% 4% 4% 4% 4% 4% 2% 4% 4% 5% 3% 4% 3% 5% 4% 4% 4% 5% 4% 3% 4% 3% 4%) -> (5.9k/5.9k) -> write(99%)
+ last tile: 14/7084/10604 (z14 43%) https://www.openstreetmap.org/#map=14/-46.73986/-24.34570
+0:52:28 INF [mbtiles] - features: [ 1.8B 63% 1.2M/s ] 199G tiles: [ 166M 427k/s ] 60G
+ cpus: 6.5 gc: 0% heap: 68G/118G direct: 4M postGC: 27G
+ read(56%) -> (0/5.9k) -> encode( 9% 5% 8% 6% 7% 9% 6% 7% 9% 4% 9% 9% 6% 9% 9% 9% 12% 6% 6% 8% 9% 7% 6% 6% 6% 8% 9% 9% 8% 7% 7% 8% 8% 5% 10% 8% 9% 8% 7% 9% 9% 6% 11% 7% 6% 6% 5% 9% 8% 8% 11% 5% 7% 8% 10% 7% 7% 8% 8% 6% 9% 8% 10% 9%) -> (5.8k/5.9k) -> write(100%)
+ last tile: 14/7401/7512 (z14 45%) https://www.openstreetmap.org/#map=14/14.77488/-17.38037
+0:52:38 WAR [mbtiles:encode] - {x=7990 y=6392 z=14} 1284kb uncompressed
+0:52:38 INF [mbtiles] - features: [ 1.8B 63% 2.1M/s ] 199G tiles: [ 170M 416k/s ] 61G
+ cpus: 14.2 gc: 2% heap: 48G/118G direct: 4M postGC: 28G
+ read(97%) -> (0/5.9k) -> encode(17% 19% 15% 22% 16% 16% 20% 17% 16% 17% 16% 20% 20% 18% 19% 18% 20% 16% 19% 17% 15% 10% 14% 18% 20% 18% 15% 16% 17% 17% 20% 18% 22% 20% 19% 15% 19% 18% 17% 18% 13% 22% 13% 12% 19% 16% 15% 16% 15% 17% 20% 19% 19% 17% 21% 15% 16% 18% 18% 20% 19% 18% 20% 17%) -> (5.1k/5.9k) -> write(98%)
+ last tile: 14/7726/2930 (z14 47%) https://www.openstreetmap.org/#map=14/74.85641/-10.23926
+0:52:48 INF [mbtiles] - features: [ 1.8B 64% 2.2M/s ] 199G tiles: [ 173M 373k/s ] 62G
+ cpus: 12.7 gc: 1% heap: 76G/118G direct: 4M postGC: 28G
+ read(99%) -> (0/5.9k) -> encode(16% 11% 12% 16% 18% 15% 20% 17% 20% 17% 17% 13% 12% 13% 18% 15% 13% 15% 19% 15% 21% 19% 17% 12% 15% 15% 17% 13% 18% 19% 17% 16% 16% 17% 15% 15% 15% 18% 15% 13% 17% 16% 17% 17% 17% 17% 19% 16% 17% 13% 15% 16% 15% 18% 16% 16% 18% 15% 18% 16% 14% 23% 18% 14%) -> (1.9k/5.9k) -> write(99%)
+ last tile: 14/8030/12836 (z14 49%) https://www.openstreetmap.org/#map=14/-70.87349/-3.55957
+0:52:58 INF [mbtiles] - features: [ 1.8B 65% 2.2M/s ] 199G tiles: [ 175M 131k/s ] 63G
+ cpus: 11.2 gc: 0% heap: 36G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(18% 14% 17% 15% 17% 11% 15% 15% 16% 17% 14% 18% 13% 16% 16% 16% 12% 17% 13% 17% 14% 10% 13% 15% 17% 13% 15% 16% 15% 16% 15% 14% 16% 17% 15% 13% 19% 16% 11% 16% 13% 20% 14% 16% 14% 15% 18% 14% 14% 16% 13% 16% 13% 16% 12% 16% 18% 11% 13% 15% 14% 16% 14% 15%) -> (16/5.9k) -> write(42%)
+ last tile: 14/8138/5339 (z14 49%) https://www.openstreetmap.org/#map=14/52.97511/-1.18652
+0:53:04 WAR [mbtiles:encode] - {x=8174 y=6234 z=14} 1236kb uncompressed
+0:53:08 INF [mbtiles] - features: [ 1.9B 66% 2.2M/s ] 199G tiles: [ 175M 66k/s ] 64G
+ cpus: 10.9 gc: 0% heap: 51G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(16% 15% 11% 17% 15% 18% 14% 16% 14% 13% 14% 15% 12% 14% 15% 15% 16% 14% 15% 14% 13% 14% 16% 17% 20% 17% 14% 15% 13% 17% 12% 16% 15% 19% 16% 16% 18% 11% 17% 17% 16% 11% 13% 14% 15% 18% 16% 17% 14% 13% 15% 14% 13% 12% 18% 15% 14% 15% 15% 13% 15% 18% 15% 16%) -> (15/5.9k) -> write(22%)
+ last tile: 14/8193/6160 (z14 50%) https://www.openstreetmap.org/#map=14/40.71396/0.02197
+0:53:18 INF [mbtiles] - features: [ 1.9B 67% 2.3M/s ] 199G tiles: [ 176M 91k/s ] 65G
+ cpus: 11 gc: 0% heap: 66G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(18% 14% 16% 16% 17% 16% 14% 11% 16% 14% 15% 15% 17% 18% 19% 15% 20% 16% 16% 10% 15% 17% 15% 14% 13% 14% 19% 19% 16% 17% 16% 19% 14% 17% 15% 14% 17% 17% 14% 13% 16% 13% 16% 14% 17% 13% 14% 14% 14% 15% 17% 15% 16% 15% 11% 13% 15% 13% 13% 14% 15% 13% 13% 13%) -> (15/5.9k) -> write(28%)
+ last tile: 14/8268/5627 (z14 50%) https://www.openstreetmap.org/#map=14/48.99464/1.66992
+0:53:18 WAR [mbtiles:encode] - {x=8270 y=6129 z=14} 1036kb uncompressed
+0:53:21 WAR [mbtiles:encode] - {x=8290 y=6119 z=14} 1276kb uncompressed
+0:53:21 WAR [mbtiles:encode] - {x=8290 y=6118 z=14} 1320kb uncompressed
+0:53:21 WAR [mbtiles:encode] - {x=8292 y=6115 z=14} 1272kb uncompressed
+0:53:28 INF [mbtiles] - features: [ 1.9B 67% 2.3M/s ] 199G tiles: [ 177M 74k/s ] 65G
+ cpus: 10.7 gc: 0% heap: 77G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(16% 14% 13% 16% 14% 15% 15% 15% 15% 17% 16% 13% 16% 13% 17% 16% 15% 11% 15% 17% 18% 13% 16% 10% 14% 17% 18% 12% 12% 15% 14% 13% 14% 13% 13% 14% 15% 14% 14% 17% 16% 17% 12% 13% 17% 12% 14% 13% 10% 16% 16% 16% 16% 17% 15% 12% 19% 15% 14% 16% 12% 18% 16% 15%) -> (8/5.9k) -> write(23%)
+ last tile: 14/8330/5513 (z14 50%) https://www.openstreetmap.org/#map=14/50.61113/3.03223
+0:53:36 WAR [mbtiles:encode] - {x=8387 y=5406 z=14} 981kb uncompressed
+0:53:38 INF [mbtiles] - features: [ 1.9B 68% 2.3M/s ] 199G tiles: [ 178M 75k/s ] 66G
+ cpus: 10.3 gc: 0% heap: 85G/118G direct: 4M postGC: 23G
+ read(99%) -> (0/5.9k) -> encode(15% 14% 14% 12% 14% 13% 13% 13% 13% 14% 14% 13% 15% 11% 18% 17% 13% 16% 10% 14% 16% 15% 20% 10% 16% 14% 12% 15% 17% 12% 11% 13% 13% 16% 13% 17% 13% 17% 16% 13% 14% 14% 12% 14% 16% 14% 17% 18% 14% 12% 14% 16% 12% 11% 15% 12% 11% 16% 14% 15% 13% 14% 15% 17%) -> (10/5.9k) -> write(23%)
+ last tile: 14/8393/5694 (z14 51%) https://www.openstreetmap.org/#map=14/48.01932/4.41650
+0:53:44 WAR [mbtiles:encode] - {x=8413 y=5384 z=14} 1142kb uncompressed
+0:53:44 WAR [mbtiles:encode] - {x=8414 y=5385 z=14} 1045kb uncompressed
+0:53:44 WAR [mbtiles:encode] - {x=8414 y=5384 z=14} 1160kb uncompressed
+0:53:48 INF [mbtiles] - features: [ 1.9B 69% 2.4M/s ] 199G tiles: [ 178M 40k/s ] 67G
+ cpus: 10 gc: 0% heap: 28G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(12% 15% 17% 12% 12% 12% 13% 13% 11% 12% 17% 16% 13% 10% 17% 12% 15% 12% 11% 16% 15% 12% 14% 14% 14% 15% 13% 15% 15% 14% 16% 16% 13% 15% 11% 13% 15% 13% 14% 13% 14% 14% 11% 15% 18% 13% 13% 16% 18% 16% 14% 14% 11% 12% 15% 11% 12% 14% 12% 12% 17% 10% 14% 17%) -> (5/5.9k) -> write(15%)
+ last tile: 14/8427/5397 (z14 51%) https://www.openstreetmap.org/#map=14/52.20087/5.16357
+0:53:58 INF [mbtiles] - features: [ 2B 70% 2.4M/s ] 199G tiles: [ 179M 46k/s ] 67G
+ cpus: 10.3 gc: 0% heap: 35G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(15% 13% 17% 15% 15% 14% 12% 15% 16% 12% 17% 12% 15% 16% 16% 16% 13% 13% 10% 10% 15% 13% 10% 13% 13% 14% 19% 13% 13% 14% 15% 14% 14% 17% 15% 17% 17% 14% 18% 14% 13% 13% 15% 12% 15% 13% 12% 16% 15% 13% 14% 14% 15% 16% 14% 12% 13% 13% 14% 16% 14% 12% 14% 14%) -> (8/5.9k) -> write(17%)
+ last tile: 14/8465/5588 (z14 51%) https://www.openstreetmap.org/#map=14/49.55373/5.99854
+0:54:08 INF [mbtiles] - features: [ 2B 71% 2.3M/s ] 199G tiles: [ 179M 45k/s ] 68G
+ cpus: 10.2 gc: 0% heap: 42G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(12% 13% 15% 17% 15% 15% 15% 14% 13% 16% 16% 13% 13% 13% 13% 14% 15% 14% 17% 12% 16% 14% 14% 17% 14% 16% 12% 14% 18% 13% 16% 14% 17% 15% 13% 12% 13% 14% 15% 13% 12% 17% 15% 12% 14% 18% 15% 13% 16% 10% 14% 14% 13% 14% 16% 15% 13% 14% 8% 13% 11% 11% 11% 14%) -> (16/5.9k) -> write(17%)
+ last tile: 14/8502/5390 (z14 51%) https://www.openstreetmap.org/#map=14/52.29504/6.81152
+0:54:18 INF [mbtiles] - features: [ 2B 72% 2.3M/s ] 199G tiles: [ 180M 44k/s ] 68G
+ cpus: 10.4 gc: 0% heap: 52G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(13% 18% 12% 21% 15% 14% 14% 15% 12% 13% 15% 16% 11% 15% 13% 17% 15% 15% 12% 17% 11% 15% 13% 13% 14% 18% 18% 17% 12% 13% 16% 15% 16% 15% 14% 14% 13% 16% 12% 15% 18% 13% 13% 17% 15% 13% 15% 15% 17% 14% 14% 14% 12% 12% 12% 12% 16% 14% 10% 14% 16% 16% 15% 16%) -> (8/5.9k) -> write(17%)
+ last tile: 14/8538/5599 (z14 52%) https://www.openstreetmap.org/#map=14/49.39668/7.60254
+0:54:28 INF [mbtiles] - features: [ 2B 72% 2.3M/s ] 199G tiles: [ 180M 50k/s ] 69G
+ cpus: 10.8 gc: 0% heap: 66G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(16% 17% 14% 13% 17% 15% 14% 14% 13% 15% 15% 16% 10% 14% 17% 14% 18% 17% 17% 16% 14% 14% 16% 14% 17% 14% 13% 17% 16% 15% 18% 15% 12% 18% 16% 15% 13% 13% 15% 15% 17% 17% 16% 14% 12% 12% 14% 12% 17% 17% 12% 15% 14% 15% 15% 13% 14% 14% 15% 18% 15% 13% 16% 17%) -> (16/5.9k) -> write(19%)
+ last tile: 14/8579/5298 (z14 52%) https://www.openstreetmap.org/#map=14/53.51418/8.50342
+0:54:38 INF [mbtiles] - features: [ 2.1B 73% 2.3M/s ] 199G tiles: [ 181M 39k/s ] 70G
+ cpus: 10.5 gc: 0% heap: 79G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(14% 20% 12% 12% 17% 17% 17% 14% 11% 18% 17% 15% 13% 12% 12% 15% 19% 14% 16% 16% 15% 16% 17% 17% 15% 11% 18% 14% 13% 13% 14% 15% 12% 12% 15% 19% 15% 12% 12% 14% 16% 15% 16% 16% 15% 12% 13% 13% 16% 16% 13% 14% 11% 15% 16% 14% 15% 12% 14% 15% 15% 11% 16% 15%) -> (11/5.9k) -> write(16%)
+ last tile: 14/8611/5864 (z14 52%) https://www.openstreetmap.org/#map=14/45.46013/9.20654
+0:54:48 INF [mbtiles] - features: [ 2.1B 74% 2.2M/s ] 199G tiles: [ 181M 44k/s ] 70G
+ cpus: 10.6 gc: 0% heap: 30G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(11% 17% 15% 10% 16% 16% 13% 17% 12% 14% 15% 17% 17% 12% 13% 13% 16% 13% 13% 14% 15% 15% 13% 18% 17% 13% 16% 16% 16% 12% 11% 17% 15% 15% 16% 15% 15% 18% 16% 14% 11% 18% 17% 14% 12% 14% 13% 17% 14% 17% 15% 19% 12% 13% 14% 15% 14% 13% 14% 16% 14% 16% 18% 18%) -> (7/5.9k) -> write(18%)
+ last tile: 14/8647/5277 (z14 52%) https://www.openstreetmap.org/#map=14/53.78767/9.99756
+0:54:58 INF [mbtiles] - features: [ 2.1B 75% 2.2M/s ] 199G tiles: [ 181M 50k/s ] 71G
+ cpus: 10.7 gc: 0% heap: 44G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(18% 14% 16% 18% 14% 13% 14% 14% 16% 15% 15% 14% 16% 13% 16% 16% 19% 11% 14% 15% 16% 10% 16% 13% 17% 14% 17% 16% 17% 17% 16% 13% 15% 15% 18% 15% 13% 13% 14% 15% 16% 17% 13% 13% 9% 11% 15% 14% 13% 11% 21% 13% 15% 15% 12% 15% 14% 14% 19% 15% 13% 17% 17% 13%) -> (12/5.9k) -> write(20%)
+ last tile: 14/8688/5906 (z14 53%) https://www.openstreetmap.org/#map=14/44.80912/10.89844
+0:55:08 INF [mbtiles] - features: [ 2.1B 76% 2.3M/s ] 199G tiles: [ 182M 53k/s ] 72G
+ cpus: 11 gc: 0% heap: 59G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(19% 15% 17% 13% 15% 18% 14% 13% 17% 16% 19% 15% 15% 13% 15% 15% 15% 15% 14% 12% 18% 17% 15% 14% 16% 17% 15% 17% 13% 16% 16% 14% 17% 13% 13% 18% 11% 13% 19% 16% 18% 17% 13% 13% 17% 17% 14% 16% 14% 16% 16% 11% 16% 18% 15% 13% 17% 18% 13% 13% 15% 14% 19% 16%) -> (22/5.9k) -> write(20%)
+ last tile: 14/8732/10123 (z14 53%) https://www.openstreetmap.org/#map=14/-39.01065/11.86523
+0:55:18 INF [mbtiles] - features: [ 2.2B 76% 2.2M/s ] 199G tiles: [ 183M 56k/s ] 72G
+ cpus: 11.2 gc: 0% heap: 74G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(17% 15% 16% 15% 14% 12% 15% 17% 16% 15% 14% 16% 17% 16% 13% 14% 18% 15% 16% 14% 16% 12% 16% 14% 14% 16% 15% 18% 16% 15% 16% 13% 16% 17% 20% 18% 18% 16% 20% 16% 17% 13% 16% 18% 14% 18% 16% 14% 19% 17% 13% 15% 14% 14% 19% 18% 14% 12% 13% 16% 14% 16% 14% 18%) -> (22/5.9k) -> write(21%)
+ last tile: 14/8778/4992 (z14 53%) https://www.openstreetmap.org/#map=14/57.32652/12.87598
+0:55:28 INF [mbtiles] - features: [ 2.2B 77% 2.2M/s ] 199G tiles: [ 183M 64k/s ] 73G
+ cpus: 11.8 gc: 0% heap: 31G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(15% 14% 16% 19% 17% 18% 16% 21% 15% 14% 15% 14% 17% 11% 16% 13% 19% 14% 20% 18% 10% 16% 19% 18% 19% 18% 14% 15% 20% 17% 19% 18% 14% 17% 13% 20% 19% 20% 16% 16% 19% 15% 18% 16% 17% 18% 15% 14% 14% 18% 13% 20% 15% 19% 15% 17% 18% 17% 16% 18% 12% 13% 11% 18%) -> (19/5.9k) -> write(24%)
+ last tile: 14/8833/5703 (z14 53%) https://www.openstreetmap.org/#map=14/47.88688/14.08447
+0:55:38 INF [mbtiles] - features: [ 2.2B 78% 2.2M/s ] 199G tiles: [ 184M 70k/s ] 74G
+ cpus: 12.2 gc: 0% heap: 51G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(14% 15% 19% 19% 19% 20% 16% 14% 16% 16% 20% 15% 20% 20% 17% 18% 17% 19% 19% 20% 18% 14% 19% 16% 14% 16% 20% 20% 20% 18% 18% 17% 17% 15% 17% 16% 18% 19% 19% 17% 18% 16% 16% 17% 18% 12% 13% 18% 15% 18% 18% 19% 15% 18% 13% 18% 16% 14% 17% 21% 18% 16% 16% 15%) -> (26/5.9k) -> write(26%)
+ last tile: 14/8894/4577 (z14 54%) https://www.openstreetmap.org/#map=14/61.92861/15.42480
+0:55:48 INF [mbtiles] - features: [ 2.2B 79% 2.2M/s ] 199G tiles: [ 185M 77k/s ] 75G
+ cpus: 11.9 gc: 0% heap: 69G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(18% 19% 20% 18% 18% 15% 12% 15% 16% 16% 17% 17% 17% 18% 17% 17% 18% 16% 16% 16% 19% 18% 18% 16% 17% 18% 13% 16% 19% 14% 14% 16% 13% 18% 19% 14% 14% 18% 17% 14% 16% 19% 10% 20% 19% 15% 15% 18% 16% 13% 16% 18% 17% 17% 20% 15% 19% 16% 13% 19% 16% 17% 21% 14%) -> (28/5.9k) -> write(28%)
+ last tile: 14/8964/12677 (z14 54%) https://www.openstreetmap.org/#map=14/-69.69524/16.96289
+0:55:58 INF [mbtiles] - features: [ 2.2B 79% 2.2M/s ] 199G tiles: [ 185M 81k/s ] 76G
+ cpus: 11.2 gc: 0% heap: 81G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(17% 15% 14% 20% 16% 16% 16% 17% 19% 16% 20% 16% 16% 15% 13% 14% 14% 17% 19% 15% 15% 18% 15% 15% 14% 17% 13% 16% 16% 8% 15% 15% 17% 15% 18% 14% 15% 16% 12% 16% 17% 16% 15% 14% 17% 16% 16% 14% 15% 17% 11% 15% 16% 16% 16% 13% 14% 15% 16% 14% 17% 19% 16% 13%) -> (18/5.9k) -> write(29%)
+ last tile: 14/9038/4755 (z14 55%) https://www.openstreetmap.org/#map=14/60.03193/18.58887
+0:56:08 INF [mbtiles] - features: [ 2.3B 80% 2.3M/s ] 199G tiles: [ 186M 92k/s ] 76G
+ cpus: 11.6 gc: 0% heap: 34G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(17% 19% 14% 17% 11% 18% 20% 14% 16% 13% 15% 12% 13% 17% 19% 19% 16% 14% 16% 14% 16% 19% 11% 19% 14% 14% 16% 17% 12% 19% 16% 18% 16% 14% 16% 20% 16% 17% 14% 16% 14% 18% 16% 18% 15% 16% 13% 19% 13% 16% 19% 13% 15% 14% 16% 18% 15% 16% 15% 15% 18% 16% 20% 20%) -> (14/5.9k) -> write(32%)
+ last tile: 14/9123/5399 (z14 55%) https://www.openstreetmap.org/#map=14/52.17393/20.45654
+0:56:18 INF [mbtiles] - features: [ 2.3B 81% 2.2M/s ] 199G tiles: [ 187M 103k/s ] 77G
+ cpus: 12.3 gc: 0% heap: 54G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(14% 18% 19% 14% 18% 16% 21% 17% 18% 19% 19% 19% 22% 26% 14% 14% 21% 18% 15% 17% 17% 15% 12% 19% 17% 12% 14% 12% 18% 19% 22% 19% 19% 16% 14% 18% 14% 20% 11% 15% 19% 20% 13% 18% 17% 18% 15% 17% 16% 23% 16% 18% 18% 10% 17% 17% 16% 19% 17% 18% 17% 20% 16% 13%) -> (14/5.9k) -> write(35%)
+ last tile: 14/9217/5281 (z14 56%) https://www.openstreetmap.org/#map=14/53.73572/22.52197
+0:56:28 INF [mbtiles] - features: [ 2.3B 82% 2.1M/s ] 199G tiles: [ 189M 121k/s ] 78G
+ cpus: 13.2 gc: 0% heap: 79G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(19% 17% 21% 17% 19% 23% 17% 17% 21% 13% 17% 21% 22% 19% 20% 19% 14% 12% 18% 21% 22% 22% 22% 13% 22% 19% 13% 18% 23% 13% 23% 22% 19% 14% 16% 18% 24% 17% 17% 15% 22% 11% 15% 17% 19% 21% 17% 21% 22% 23% 14% 20% 18% 19% 19% 14% 14% 21% 16% 20% 19% 18% 19% 18%) -> (29/5.9k) -> write(41%)
+ last tile: 14/9325/9664 (z14 56%) https://www.openstreetmap.org/#map=14/-30.75128/24.89502
+0:56:38 INF [mbtiles] - features: [ 2.3B 83% 2.2M/s ] 199G tiles: [ 190M 136k/s ] 79G
+ cpus: 13.2 gc: 0% heap: 39G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(17% 21% 16% 22% 15% 16% 23% 22% 17% 20% 18% 16% 13% 18% 16% 20% 22% 19% 13% 13% 20% 18% 17% 19% 18% 18% 16% 18% 20% 17% 20% 20% 18% 19% 14% 18% 19% 22% 21% 25% 20% 20% 20% 16% 18% 17% 24% 16% 16% 15% 17% 14% 21% 16% 15% 16% 19% 20% 17% 22% 18% 21% 18% 20%) -> (19/5.9k) -> write(45%)
+ last tile: 14/9444/5046 (z14 57%) https://www.openstreetmap.org/#map=14/56.68037/27.50977
+0:56:48 INF [mbtiles] - features: [ 2.4B 83% 2.3M/s ] 199G tiles: [ 191M 110k/s ] 80G
+ cpus: 12.5 gc: 0% heap: 57G/118G direct: 4M postGC: 23G
+ read(99%) -> (0/5.9k) -> encode(16% 17% 15% 16% 21% 17% 17% 17% 19% 19% 14% 20% 17% 17% 21% 18% 16% 14% 16% 20% 12% 19% 18% 22% 17% 15% 14% 17% 22% 17% 19% 17% 16% 13% 18% 17% 19% 13% 22% 20% 15% 13% 17% 21% 21% 17% 15% 22% 15% 19% 21% 18% 15% 15% 20% 15% 18% 18% 19% 20% 15% 14% 19% 18%) -> (16/5.9k) -> write(38%)
+ last tile: 14/9541/5670 (z14 58%) https://www.openstreetmap.org/#map=14/48.37085/29.64111
+0:56:58 INF [mbtiles] - features: [ 2.4B 84% 2.3M/s ] 199G tiles: [ 192M 84k/s ] 81G
+ cpus: 11.6 gc: 0% heap: 73G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(19% 18% 16% 19% 19% 17% 17% 19% 15% 14% 16% 16% 14% 16% 15% 20% 15% 18% 13% 16% 19% 14% 17% 14% 16% 16% 14% 16% 14% 14% 16% 16% 17% 14% 18% 13% 19% 14% 12% 16% 15% 19% 17% 17% 17% 16% 15% 16% 17% 13% 18% 17% 16% 12% 18% 15% 16% 16% 13% 19% 15% 16% 17% 13%) -> (26/5.9k) -> write(29%)
+ last tile: 14/9614/6753 (z14 58%) https://www.openstreetmap.org/#map=14/30.12612/31.24512
+0:57:04 WAR [mbtiles:encode] - {x=9674 y=8175 z=14} 1014kb uncompressed
+0:57:08 INF [mbtiles] - features: [ 2.4B 85% 2.4M/s ] 199G tiles: [ 193M 121k/s ] 82G
+ cpus: 12.1 gc: 0% heap: 26G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(12% 14% 19% 20% 15% 21% 20% 20% 14% 16% 15% 18% 17% 13% 20% 13% 14% 16% 18% 17% 17% 17% 14% 17% 14% 19% 16% 18% 17% 12% 17% 20% 17% 19% 17% 12% 16% 12% 16% 15% 19% 16% 15% 15% 17% 18% 16% 17% 18% 20% 14% 18% 14% 17% 18% 19% 17% 14% 16% 21% 16% 17% 17% 21%) -> (21/5.9k) -> write(39%)
+ last tile: 14/9720/7311 (z14 59%) https://www.openstreetmap.org/#map=14/18.99980/33.57422
+0:57:18 INF [mbtiles] - features: [ 2.4B 86% 2.3M/s ] 199G tiles: [ 194M 125k/s ] 83G
+ cpus: 12.2 gc: 0% heap: 42G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(15% 20% 13% 16% 12% 19% 14% 19% 13% 17% 19% 18% 19% 17% 16% 18% 12% 17% 13% 15% 19% 20% 18% 19% 17% 18% 17% 18% 21% 14% 22% 20% 14% 15% 12% 14% 16% 17% 16% 17% 15% 21% 16% 17% 13% 18% 20% 15% 18% 20% 17% 17% 16% 19% 20% 18% 13% 21% 16% 19% 19% 13% 16% 15%) -> (30/5.9k) -> write(40%)
+ last tile: 14/9828/592 (z14 59%) https://www.openstreetmap.org/#map=14/83.79204/35.94727
+0:57:28 INF [mbtiles] - features: [ 2.5B 87% 2.2M/s ] 199G tiles: [ 196M 163k/s ] 83G
+ cpus: 12.4 gc: 0% heap: 59G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(14% 19% 14% 15% 14% 18% 18% 17% 18% 19% 17% 16% 17% 15% 20% 21% 15% 18% 22% 15% 20% 17% 20% 17% 21% 15% 18% 16% 16% 14% 19% 19% 13% 14% 17% 16% 18% 18% 14% 16% 20% 17% 18% 19% 17% 19% 17% 16% 12% 19% 19% 19% 15% 20% 14% 18% 16% 14% 15% 18% 18% 14% 18% 18%) -> (23/5.9k) -> write(49%)
+ last tile: 14/9969/5119 (z14 60%) https://www.openstreetmap.org/#map=14/55.78893/39.04541
+0:57:29 WAR [mbtiles:encode] - {x=9977 y=8504 z=14} 992kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9977 y=8503 z=14} 1239kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9977 y=8501 z=14} 1277kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9977 y=8502 z=14} 1596kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9978 y=8505 z=14} 1089kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9978 y=8503 z=14} 1071kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9978 y=8501 z=14} 1324kb uncompressed
+0:57:29 WAR [mbtiles:encode] - {x=9978 y=8502 z=14} 1437kb uncompressed
+0:57:37 WAR [mbtiles:encode] - {x=10153 y=7662 z=14} 1025kb uncompressed
+0:57:38 INF [mbtiles] - features: [ 2.5B 87% 2.2M/s ] 199G tiles: [ 199M 243k/s ] 85G
+ cpus: 13.4 gc: 0% heap: 76G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(20% 20% 17% 21% 18% 14% 19% 21% 20% 21% 21% 16% 19% 16% 17% 19% 19% 14% 22% 18% 23% 20% 15% 18% 16% 20% 19% 20% 19% 20% 15% 19% 15% 19% 14% 14% 21% 18% 19% 18% 18% 16% 19% 21% 17% 20% 15% 17% 19% 21% 14% 22% 18% 21% 19% 18% 22% 15% 18% 18% 17% 18% 18% 18%) -> (36/5.9k) -> write(68%)
+ last tile: 14/10181/9415 (z14 62%) https://www.openstreetmap.org/#map=14/-25.93829/43.70361
+0:57:48 INF [mbtiles] - features: [ 2.5B 88% 2.2M/s ] 199G tiles: [ 201M 255k/s ] 86G
+ cpus: 14.2 gc: 0% heap: 39G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(22% 19% 19% 19% 28% 12% 18% 20% 18% 16% 22% 20% 19% 21% 17% 21% 17% 24% 20% 19% 18% 25% 19% 15% 19% 19% 18% 18% 20% 18% 20% 16% 17% 21% 22% 17% 23% 22% 17% 21% 18% 21% 20% 18% 20% 24% 18% 24% 18% 19% 22% 19% 21% 20% 20% 18% 16% 18% 19% 16% 20% 21% 17% 17%) -> (39/5.9k) -> write(73%)
+ last tile: 14/10408/6669 (z14 63%) https://www.openstreetmap.org/#map=14/31.70948/48.69141
+0:57:58 INF [mbtiles] - features: [ 2.5B 89% 2.1M/s ] 199G tiles: [ 205M 367k/s ] 87G
+ cpus: 13 gc: 0% heap: 54G/118G direct: 4M postGC: 24G
+ read(98%) -> (1/5.9k) -> encode(18% 18% 19% 19% 19% 17% 17% 19% 18% 16% 12% 16% 14% 17% 18% 17% 17% 16% 15% 14% 18% 17% 19% 16% 17% 18% 16% 16% 18% 16% 18% 19% 18% 14% 17% 15% 14% 18% 22% 17% 18% 17% 15% 15% 18% 15% 20% 15% 13% 19% 20% 17% 17% 19% 18% 22% 18% 17% 20% 14% 17% 21% 18% 15%) -> (840/5.9k) -> write(97%)
+ last tile: 14/10748/10244 (z14 65%) https://www.openstreetmap.org/#map=14/-41.04622/56.16211
+0:58:08 INF [mbtiles] - features: [ 2.5B 90% 2.1M/s ] 199G tiles: [ 209M 396k/s ] 88G
+ cpus: 13.1 gc: 0% heap: 62G/118G direct: 4M postGC: 25G
+ read(99%) -> (0/5.9k) -> encode(15% 16% 13% 16% 17% 16% 15% 19% 15% 18% 17% 17% 17% 16% 16% 19% 14% 19% 17% 13% 20% 14% 17% 21% 18% 21% 15% 15% 16% 18% 18% 16% 18% 17% 16% 23% 17% 20% 20% 17% 17% 18% 21% 17% 13% 16% 16% 18% 16% 18% 16% 16% 15% 20% 16% 11% 16% 18% 17% 16% 18% 18% 18% 20%) -> (3.9k/5.9k) -> write(99%)
+ last tile: 14/11115/8352 (z14 67%) https://www.openstreetmap.org/#map=14/-3.51342/64.22607
+0:58:18 INF [mbtiles] - features: [ 2.6B 91% 2.1M/s ] 199G tiles: [ 213M 392k/s ] 89G
+ cpus: 14.9 gc: 2% heap: 33G/118G direct: 4M postGC: 28G
+ read(98%) -> (0/5.9k) -> encode(18% 16% 19% 18% 22% 18% 19% 15% 22% 18% 14% 21% 18% 15% 21% 19% 19% 23% 17% 16% 16% 18% 16% 20% 18% 17% 21% 20% 16% 20% 20% 20% 18% 18% 23% 20% 21% 21% 15% 18% 20% 19% 18% 18% 24% 17% 22% 20% 24% 16% 24% 17% 19% 21% 23% 18% 18% 20% 15% 17% 15% 15% 24% 20%) -> (4.3k/5.9k) -> write(98%)
+ last tile: 14/11472/406 (z14 70%) https://www.openstreetmap.org/#map=14/84.21868/72.07031
+0:58:28 INF [mbtiles] - features: [ 2.6B 91% 2.3M/s ] 199G tiles: [ 217M 380k/s ] 90G
+ cpus: 13.2 gc: 1% heap: 52G/118G direct: 4M postGC: 27G
+ read(98%) -> (0/5.9k) -> encode(19% 17% 16% 15% 17% 19% 16% 19% 15% 19% 15% 17% 15% 19% 19% 15% 17% 15% 17% 16% 16% 19% 19% 14% 16% 16% 13% 16% 15% 16% 18% 17% 19% 15% 17% 16% 17% 18% 17% 19% 17% 16% 15% 20% 19% 15% 16% 15% 20% 19% 18% 13% 16% 18% 20% 19% 19% 17% 22% 16% 18% 17% 14% 9%) -> (3.7k/5.9k) -> write(99%)
+ last tile: 14/11821/2845 (z14 72%) https://www.openstreetmap.org/#map=14/75.33672/79.73877
+0:58:29 WAR [mbtiles:encode] - {x=12074 y=6878 z=14} 985kb uncompressed
+0:58:36 WAR [mbtiles:encode] - {x=12306 y=7080 z=14} 997kb uncompressed
+0:58:38 INF [mbtiles] - features: [ 2.6B 92% 2.4M/s ] 199G tiles: [ 220M 385k/s ] 91G
+ cpus: 11.8 gc: 1% heap: 59G/118G direct: 4M postGC: 26G
+ read(99%) -> (0/5.9k) -> encode(13% 16% 14% 15% 13% 13% 14% 16% 14% 17% 13% 19% 16% 15% 15% 18% 12% 14% 15% 13% 13% 13% 16% 17% 14% 12% 15% 18% 17% 14% 17% 15% 16% 14% 15% 12% 14% 16% 14% 15% 16% 17% 17% 12% 15% 11% 17% 19% 15% 16% 12% 13% 13% 14% 15% 14% 18% 14% 14% 14% 14% 14% 17% 16%) -> (3k/5.9k) -> write(99%)
+ last tile: 14/12195/7409 (z14 74%) https://www.openstreetmap.org/#map=14/16.95172/87.95654
+0:58:38 WAR [mbtiles:encode] - {x=12385 y=7204 z=14} 1047kb uncompressed
+0:58:39 WAR [mbtiles:encode] - {x=12386 y=7204 z=14} 1436kb uncompressed
+0:58:48 INF [mbtiles] - features: [ 2.6B 93% 2.2M/s ] 199G tiles: [ 224M 397k/s ] 92G
+ cpus: 14.8 gc: 1% heap: 30G/118G direct: 4M postGC: 26G
+ read(98%) -> (0/5.9k) -> encode(16% 22% 17% 20% 16% 18% 21% 18% 20% 17% 20% 22% 18% 21% 18% 21% 17% 20% 16% 17% 20% 20% 19% 17% 19% 21% 19% 17% 20% 20% 20% 22% 16% 21% 20% 20% 16% 18% 19% 19% 15% 21% 19% 20% 21% 18% 21% 16% 16% 22% 20% 15% 22% 23% 20% 22% 16% 19% 20% 16% 18% 19% 21% 20%) -> (3.1k/5.9k) -> write(98%)
+ last tile: 14/12615/7565 (z14 77%) https://www.openstreetmap.org/#map=14/13.64599/97.18506
+0:58:56 WAR [mbtiles:encode] - {x=13052 y=8472 z=14} 1259kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13055 y=8478 z=14} 1009kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13055 y=8475 z=14} 978kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13055 y=8474 z=14} 1038kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13055 y=8473 z=14} 1100kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13057 y=8471 z=14} 1019kb uncompressed
+0:58:56 WAR [mbtiles:encode] - {x=13058 y=8475 z=14} 1043kb uncompressed
+0:58:58 INF [mbtiles] - features: [ 2.7B 94% 2.3M/s ] 199G tiles: [ 228M 376k/s ] 93G
+ cpus: 13.6 gc: 1% heap: 60G/118G direct: 4M postGC: 26G
+ read(99%) -> (0/5.9k) -> encode(20% 22% 20% 15% 20% 13% 14% 19% 16% 15% 18% 21% 17% 18% 22% 15% 20% 14% 20% 17% 21% 13% 19% 16% 21% 13% 19% 19% 21% 18% 15% 19% 19% 16% 20% 17% 15% 17% 18% 18% 17% 20% 17% 18% 17% 18% 14% 13% 17% 19% 19% 19% 14% 19% 19% 16% 16% 19% 17% 16% 21% 18% 17% 16%) -> (1.3k/5.9k) -> write(99%)
+ last tile: 14/13030/6785 (z14 79%) https://www.openstreetmap.org/#map=14/29.51611/106.30371
+0:58:58 WAR [mbtiles:encode] - {x=13088 y=8508 z=14} 1130kb uncompressed
+0:59:08 INF [mbtiles] - features: [ 2.7B 95% 2.4M/s ] 199G tiles: [ 231M 269k/s ] 95G
+ cpus: 11.3 gc: 0% heap: 71G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(19% 17% 15% 20% 15% 15% 18% 17% 16% 17% 13% 19% 16% 12% 14% 16% 18% 12% 20% 14% 13% 10% 15% 13% 17% 17% 13% 17% 14% 14% 16% 18% 15% 14% 14% 14% 14% 11% 14% 12% 14% 19% 12% 14% 17% 15% 15% 16% 14% 14% 18% 11% 14% 15% 15% 14% 12% 16% 15% 13% 16% 14% 14% 16%) -> (35/5.9k) -> write(73%)
+ last tile: 14/13316/6135 (z14 81%) https://www.openstreetmap.org/#map=14/41.12902/112.58789
+0:59:09 WAR [mbtiles:encode] - {x=13322 y=8523 z=14} 1137kb uncompressed
+0:59:09 WAR [mbtiles:encode] - {x=13323 y=8522 z=14} 1040kb uncompressed
+0:59:18 INF [mbtiles] - features: [ 2.7B 95% 2.2M/s ] 199G tiles: [ 233M 248k/s ] 96G
+ cpus: 13.6 gc: 0% heap: 36G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(19% 16% 19% 20% 16% 22% 22% 21% 18% 15% 16% 16% 18% 21% 18% 21% 19% 16% 22% 15% 20% 20% 21% 16% 19% 23% 22% 20% 19% 19% 19% 19% 18% 18% 16% 19% 16% 16% 17% 22% 18% 17% 17% 18% 21% 18% 17% 21% 18% 20% 18% 14% 21% 17% 19% 17% 20% 19% 21% 18% 18% 19% 18% 17%) -> (134/5.9k) -> write(69%)
+ last tile: 14/13569/5530 (z14 82%) https://www.openstreetmap.org/#map=14/50.37350/118.14697
+0:59:23 WAR [mbtiles:encode] - {x=13682 y=7058 z=14} 1160kb uncompressed
+0:59:23 WAR [mbtiles:encode] - {x=13682 y=7057 z=14} 1204kb uncompressed
+0:59:23 WAR [mbtiles:encode] - {x=13683 y=7057 z=14} 1059kb uncompressed
+0:59:23 WAR [mbtiles:encode] - {x=13683 y=7059 z=14} 1393kb uncompressed
+0:59:24 WAR [mbtiles:encode] - {x=13683 y=7058 z=14} 1648kb uncompressed
+0:59:24 WAR [mbtiles:encode] - {x=13684 y=7059 z=14} 1346kb uncompressed
+0:59:24 WAR [mbtiles:encode] - {x=13684 y=7057 z=14} 1464kb uncompressed
+0:59:24 WAR [mbtiles:encode] - {x=13684 y=7058 z=14} 1637kb uncompressed
+0:59:26 WAR [mbtiles:encode] - {x=13702 y=7515 z=14} 1208kb uncompressed
+0:59:26 WAR [mbtiles:encode] - {x=13703 y=7515 z=14} 1017kb uncompressed
+0:59:28 INF [mbtiles] - features: [ 2.7B 96% 2.3M/s ] 199G tiles: [ 235M 182k/s ] 96G
+ cpus: 11.8 gc: 0% heap: 51G/118G direct: 4M postGC: 24G
+ read(100%) -> (0/5.9k) -> encode(20% 14% 17% 15% 18% 18% 14% 15% 18% 13% 16% 20% 15% 15% 17% 13% 16% 20% 18% 18% 12% 16% 14% 16% 14% 18% 21% 17% 20% 17% 18% 16% 17% 18% 15% 16% 15% 15% 15% 17% 14% 14% 12% 15% 14% 19% 14% 19% 17% 12% 16% 16% 13% 13% 19% 18% 16% 16% 16% 15% 19% 16% 15% 12%) -> (69/5.9k) -> write(51%)
+ last tile: 14/13754/9833 (z14 83%) https://www.openstreetmap.org/#map=14/-33.88866/122.21191
+0:59:38 INF [mbtiles] - features: [ 2.8B 97% 2.1M/s ] 199G tiles: [ 239M 372k/s ] 97G
+ cpus: 12.8 gc: 0% heap: 68G/118G direct: 4M postGC: 24G
+ read(99%) -> (0/5.9k) -> encode(16% 13% 16% 18% 17% 15% 14% 13% 18% 18% 17% 16% 16% 17% 18% 19% 19% 17% 16% 16% 19% 16% 17% 17% 14% 18% 17% 18% 17% 20% 19% 16% 15% 15% 22% 20% 16% 18% 17% 19% 15% 16% 18% 19% 16% 19% 18% 17% 18% 18% 16% 18% 16% 16% 14% 17% 17% 15% 18% 18% 18% 16% 18% 16%) -> (430/5.9k) -> write(96%)
+ last tile: 14/14124/3513 (z14 86%) https://www.openstreetmap.org/#map=14/71.12388/130.34180
+0:59:44 WAR [mbtiles:encode] - {x=14369 y=6489 z=14} 1003kb uncompressed
+0:59:44 WAR [mbtiles:encode] - {x=14369 y=6488 z=14} 1186kb uncompressed
+0:59:44 WAR [mbtiles:encode] - {x=14370 y=6487 z=14} 991kb uncompressed
+0:59:44 WAR [mbtiles:encode] - {x=14370 y=6489 z=14} 1182kb uncompressed
+0:59:48 INF [mbtiles] - features: [ 2.8B 98% 2.3M/s ] 199G tiles: [ 243M 375k/s ] 98G
+ cpus: 13.1 gc: 0% heap: 27G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 17% 20% 19% 18% 16% 19% 17% 15% 19% 17% 17% 17% 19% 16% 15% 18% 18% 17% 18% 19% 14% 19% 16% 14% 18% 16% 21% 18% 18% 17% 16% 14% 15% 16% 17% 18% 17% 17% 17% 17% 19% 20% 18% 18% 18% 17% 19% 17% 14% 21% 17% 17% 16% 18% 17% 18% 18% 17% 16% 20% 18% 18%) -> (36/5.9k) -> write(96%)
+ last tile: 14/14493/8106 (z14 88%) https://www.openstreetmap.org/#map=14/1.88931/138.44971
+0:59:52 WAR [mbtiles:encode] - {x=14552 y=6450 z=14} 992kb uncompressed
+0:59:52 WAR [mbtiles:encode] - {x=14553 y=6450 z=14} 1383kb uncompressed
+0:59:58 INF [mbtiles] - features: [ 2.8B 99% 2.3M/s ] 199G tiles: [ 245M 225k/s ] 99G
+ cpus: 12.9 gc: 0% heap: 48G/118G direct: 4M postGC: 23G
+ read(100%) -> (0/5.9k) -> encode(18% 18% 19% 18% 20% 17% 15% 17% 16% 18% 19% 18% 19% 17% 20% 19% 20% 15% 19% 17% 21% 20% 17% 17% 16% 14% 18% 18% 18% 19% 17% 18% 19% 16% 16% 15% 21% 19% 18% 20% 17% 19% 16% 19% 18% 16% 18% 17% 15% 19% 19% 16% 14% 19% 18% 17% 17% 16% 18% 18% 20% 17% 19% 18%) -> (475/5.9k) -> write(61%)
+ last tile: 14/14707/4937 (z14 89%) https://www.openstreetmap.org/#map=14/57.97316/143.15186
+Mar 31, 2022 12:42:36 AM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
+INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
+1:00:04 INF - Database closed
+1:00:08 INF [mbtiles] - features: [ 2.8B 99% 2M/s ] 199G tiles: [ 249M 406k/s ] 100G
+ cpus: 11.4 gc: 0% heap: 51G/118G direct: 4M postGC: 25G
+ read(92%) -> (0/5.9k) -> encode(12% 15% 15% 14% 13% 15% 13% 15% 13% 15% 13% 14% 13% 14% 13% 16% 11% 12% 13% 18% 18% 14% 15% 14% 15% 16% 18% 17% 15% 15% 14% 17% 16% 9% 16% 16% 16% 13% 15% 14% 13% 12% 12% 13% 15% 20% 13% 15% 14% 13% 15% 14% 14% 12% 15% 14% 15% 11% 16% 20% 15% 15% 14% 16%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/15069/3454 (z14 91%) https://www.openstreetmap.org/#map=14/71.53883/151.10596
+1:00:18 INF [mbtiles] - features: [ 2.8B 99% 554k/s ] 199G tiles: [ 253M 425k/s ] 101G
+ cpus: 2.5 gc: 0% heap: 59G/118G direct: 4M postGC: 25G
+ read(24%) -> (0/5.9k) -> encode( 2% 2% 1% 2% 2% 2% 3% 2% 2% 1% 2% 3% 2% 2% 1% 1% 1% 2% 2% 1% 2% 2% 2% 2% 1% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 2% 3% 2% 1% 2% 2% 1% 2% 2% 2% 1% 2% 3% 2% 2% 2% 1% 3% 2% 2% 2% 2% 2% 2% 1% 3%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/15429/1217 (z14 94%) https://www.openstreetmap.org/#map=14/82.11537/159.01611
+1:00:28 INF [mbtiles] - features: [ 2.8B 100% 709k/s ] 199G tiles: [ 258M 429k/s ] 101G
+ cpus: 3.3 gc: 0% heap: 72G/118G direct: 4M postGC: 25G
+ read(31%) -> (0/5.9k) -> encode( 4% 5% 3% 2% 2% 4% 3% 3% 3% 4% 2% 4% 4% 4% 2% 3% 4% 3% 2% 2% 4% 3% 3% 3% 2% 3% 4% 4% 3% 4% 4% 3% 4% 4% 2% 4% 2% 4% 2% 2% 2% 3% 3% 3% 3% 3% 3% 5% 4% 3% 2% 2% 2% 3% 3% 3% 3% 4% 3% 2% 3% 3% 3% 3%) -> (5.9k/5.9k) -> write(100%)
+ last tile: 14/15751/2014 (z14 96%) https://www.openstreetmap.org/#map=14/79.31079/166.09131
+1:00:38 INF [mbtiles] - features: [ 2.8B 100% 771k/s ] 199G tiles: [ 262M 426k/s ] 102G
+ cpus: 3.9 gc: 1% heap: 28G/118G direct: 3.9M postGC: 26G
+ read( -%) -> (0/5.9k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (5.6k/5.9k) -> write(99%)
+ last tile: 14/16043/11377 (z14 97%) https://www.openstreetmap.org/#map=14/-57.14816/172.50732
+1:00:48 INF [mbtiles] - features: [ 2.8B 100% 0/s ] 199G tiles: [ 266M 437k/s ] 103G
+ cpus: 1 gc: 0% heap: 29G/118G direct: 3.9M postGC: 26G
+ read( -%) -> (0/5.9k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (841/5.9k) -> write(100%)
+ last tile: 14/16330/12767 (z14 99%) https://www.openstreetmap.org/#map=14/-70.37047/178.81348
+1:00:50 INF [mbtiles:write] - Finished z14 in 12m54s cpu:2h15m52s gc:3s avg:10.5
+1:00:50 INF [mbtiles] - features: [ 2.8B 100% 0/s ] 199G tiles: [ 267M 440k/s ] 103G
+ cpus: 1 gc: 0% heap: 29G/118G direct: 3.9M postGC: 26G
+ read( -%) -> (0/5.9k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/5.9k) -> write( -%)
+ last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
+1:00:50 DEB [mbtiles] - Tile stats:
+1:00:50 DEB [mbtiles] - z0 avg:67k max:67k
+1:00:50 DEB [mbtiles] - z1 avg:159k max:180k
+1:00:50 DEB [mbtiles] - z2 avg:297k max:537k
+1:00:50 DEB [mbtiles] - z3 avg:104k max:497k
+1:00:50 DEB [mbtiles] - z4 avg:42k max:501k
+1:00:50 DEB [mbtiles] - z5 avg:23k max:524k
+1:00:50 DEB [mbtiles] - z6 avg:12k max:341k
+1:00:50 DEB [mbtiles] - z7 avg:9.9k max:408k
+1:00:50 DEB [mbtiles] - z8 avg:5.8k max:341k
+1:00:50 DEB [mbtiles] - z9 avg:5.6k max:461k
+1:00:50 DEB [mbtiles] - z10 avg:2.5k max:319k
+1:00:50 DEB [mbtiles] - z11 avg:1.2k max:182k
+1:00:50 DEB [mbtiles] - z12 avg:716 max:205k
+1:00:50 DEB [mbtiles] - z13 avg:390 max:266k
+1:00:50 DEB [mbtiles] - z14 avg:354 max:1.7M
+1:00:50 DEB [mbtiles] - all avg:404 max:0
+1:00:50 DEB [mbtiles] - # features: 2,891,993,991
+1:00:50 DEB [mbtiles] - # tiles: 267,503,963
+1:00:50 INF [mbtiles] - Finished in 28m47s cpu:15h36m44s gc:1m2s avg:32.5
+1:00:50 INF [mbtiles] - read 1x(75% 21m37s sys:1m55s wait:5m24s done:13s)
+1:00:50 INF [mbtiles] - encode 64x(47% 13m25s sys:4s wait:14m done:13s)
+1:00:50 INF [mbtiles] - write 1x(43% 12m14s sys:1m21s wait:15m31s)
+1:00:50 INF - Finished in 1h51s cpu:38h39m20s gc:3m39s avg:38.1
+1:00:50 INF - FINISHED!
+1:00:50 INF -
+1:00:50 INF - ----------------------------------------
+1:00:50 INF - overall 1h51s cpu:38h39m20s gc:3m39s avg:38.1
+1:00:50 INF - lake_centerlines 2s cpu:5s avg:2.6
+1:00:50 INF - read 1x(84% 1s)
+1:00:50 INF - process 64x(1% 0s wait:2s)
+1:00:50 INF - write 1x(0% 0s wait:2s)
+1:00:50 INF - water_polygons 52s cpu:18m57s avg:22
+1:00:50 INF - read 1x(29% 15s sys:1s wait:31s done:5s)
+1:00:50 INF - process 64x(30% 16s wait:35s)
+1:00:50 INF - write 1x(84% 44s sys:5s wait:7s)
+1:00:50 INF - natural_earth 11s cpu:29s avg:2.6
+1:00:50 INF - read 1x(93% 10s sys:2s)
+1:00:50 INF - process 64x(1% 0.2s wait:10s)
+1:00:50 INF - write 1x(0% 0s wait:11s)
+1:00:50 INF - osm_pass1 3m4s cpu:1h42m11s gc:26s avg:33.4
+1:00:50 INF - read 1x(20% 37s sys:29s wait:1m48s done:11s)
+1:00:50 INF - process 63x(37% 1m7s sys:4s block:1m37s wait:2s done:1s)
+1:00:50 INF - osm_pass2 23m38s cpu:19h45m39s gc:1m56s avg:50.2
+1:00:50 INF - read 1x(3% 39s sys:31s wait:21m13s done:1m4s)
+1:00:50 INF - process 63x(67% 15m55s block:1m9s wait:4m24s)
+1:00:50 INF - write 1x(74% 17m23s sys:1m38s wait:4m29s)
+1:00:50 INF - boundaries 17s cpu:24s avg:1.4
+1:00:50 INF - sort 3m52s cpu:1h14m35s gc:15s avg:19.3
+1:00:50 INF - worker 64x(18% 41s sys:3s wait:2m35s done:19s)
+1:00:50 INF - mbtiles 28m47s cpu:15h36m44s gc:1m2s avg:32.5
+1:00:50 INF - read 1x(75% 21m37s sys:1m55s wait:5m24s done:13s)
+1:00:50 INF - encode 64x(47% 13m25s sys:4s wait:14m done:13s)
+1:00:50 INF - write 1x(43% 12m14s sys:1m21s wait:15m31s)
+1:00:50 INF - ----------------------------------------
+1:00:50 INF - features 199GB
+1:00:50 INF - mbtiles 103GB
diff --git a/planet-logs/v0.4.0-planet-c6gd-32gb.txt b/planet-logs/v0.4.0-planet-c6gd-32gb.txt
new file mode 100644
index 00000000..d08fff79
--- /dev/null
+++ b/planet-logs/v0.4.0-planet-c6gd-32gb.txt
@@ -0,0 +1,3631 @@
+
+0:00:00 DEB - argument: config=null (path to config file)
+0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
+0:00:00 INF - Using in-memory stats
+0:00:00 INF [overall] -
+0:00:00 INF [overall] - Starting...
+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: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
+0:00:00 DEB - argument: threads=16 (num threads)
+0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
+0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
+0:00:00 DEB - argument: maxzoom=14 (maximum zoom level (limit 14))
+0:00:00 DEB - argument: defer_mbtiles_index_creation=false (skip adding index to mbtiles file)
+0:00:00 DEB - argument: optimize_db=false (optimize mbtiles after writing)
+0:00:00 DEB - argument: emit_tiles_in_order=true (emit tiles in index order)
+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: 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=100 (Size of file chunks to download in parallel in megabytes)
+0:00:00 DEB - argument: download_threads=1 (Number of parallel threads to use when downloading each file)
+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=false (Read OSM blocks from disk in worker threads)
+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=false (download sources)
+0:00:00 DEB - argument: temp_node_db=data/tmp/node.db (temp node db location)
+0:00:00 DEB - argument: temp_multipolygon_db=data/tmp/multipolygon.db (temp multipolygon db location)
+0:00:00 DEB - argument: temp_feature_db=data/tmp/feature.db (temp feature db location)
+0:00:00 DEB - argument: only_fetch_wikidata=false (fetch wikidata translations then quit)
+0:00:00 DEB - argument: fetch_wikidata=false (fetch wikidata translations then continue)
+0:00:00 DEB - argument: use_wikidata=true (use wikidata translations)
+0:00:00 DEB - argument: wikidata_cache=data/sources/wikidata_names.json (wikidata cache file)
+0:00:00 DEB - argument: lake_centerlines_path=data/sources/lake_centerline.shp.zip (lake_centerlines shapefile path)
+0:00:00 DEB - argument: free_lake_centerlines_after_read=false (delete lake_centerlines input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: water_polygons_path=data/sources/water-polygons-split-3857.zip (water_polygons shapefile path)
+0:00:00 DEB - argument: free_water_polygons_after_read=false (delete water_polygons input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: natural_earth_path=data/sources/natural_earth_vector.sqlite.zip (natural_earth sqlite db path)
+0:00:00 DEB - argument: free_natural_earth_after_read=false (delete natural_earth input file after reading to make space for output (reduces peak disk usage))
+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: mbtiles=data/output.mbtiles (mbtiles output file)
+0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
+0:00:00 DEB - argument: languages=am,ar,az,be,bg,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fi,fr,fy,ga,gd,he,hi,hr,hu,hy,id,is,it,ja,ja_kana,ja_rm,ja-Latn,ja-Hira,ka,kk,kn,ko,ko-Latn,ku,la,lb,lt,lv,mk,mt,ml,nl,no,oc,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,zh (languages to use)
+0:00:00 DEB - argument: only_layers= (Include only certain layers)
+0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
+0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
+0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
+0:00:00 DEB - argument: building_merge_z13=true (building layer: merge nearby buildings at z13)
+0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
+0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
+0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
+0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
+0:00:00 DEB - argument: mbtiles_name=OpenMapTiles ('name' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_attribution=© OpenMapTiles © OpenStreetMap contributors ('attribution' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_version=3.13.0 ('version' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_type=baselayer ('type' attribute for mbtiles metadata)
+0:00:00 DEB - argument: help=false (show arguments then exit)
+0:00:00 INF - Building BasemapProfile profile into data/output.mbtiles in these phases:
+0:00:00 INF - lake_centerlines: Process features in data/sources/lake_centerline.shp.zip
+0:00:00 INF - water_polygons: Process features in data/sources/water-polygons-split-3857.zip
+0:00:00 INF - natural_earth: Process features in data/sources/natural_earth_vector.sqlite.zip
+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 - sort: Sort rendered features by tile ID
+0:00:00 INF - mbtiles: Encode each tile and write to data/output.mbtiles
+0:00:00 INF - error loading /data/data/sources/wikidata_names.json: java.nio.file.NoSuchFileException: data/sources/wikidata_names.json
+0:00:00 DEB - ✓ 310G storage on /data (/dev/nvme1n1) requested for read phase disk, 880G available
+0:00:00 DEB - - 76G used for temporary node location cache
+0:00:00 DEB - - 10G used for temporary multipolygon geometry cache
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - ✓ 335G storage on /data (/dev/nvme1n1) requested for write phase disk, 880G available
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - - 111G used for mbtiles output
+0:00:00 DEB - ✓ 86G storage on /data (/dev/nvme1n1) requested for read phase, 880G available
+0:00:00 DEB - - 76G used for array node location cache (switch to sparsearray to reduce size)
+0:00:00 DEB - - 10G used for multipolygon way geometries
+0:00:00 INF - ⚠️️ 20G JVM heap requested for read phase, 21G available (increase JVM -Xmx setting)
+0:00:00 INF - - 20G used for temporary profile storage
+0:00:00 WAR - Planetiler will use ~86G memory-mapped files for node locations and multipolygon geometries but the OS only
+has 11G available to cache pages, this may slow the import down. To speed up, run on a machine with more
+memory or reduce the -Xmx setting.
+
+0:00:00 INF - Using merge sort feature map, chunk size=671mb workers=16
+0:00:01 INF - dataFileCache open start
+0:00:02 INF [lake_centerlines] -
+0:00:02 INF [lake_centerlines] - Starting...
+0:00:03 INF [lake_centerlines] - read: [ 51k 100% 32k/s ] write: [ 0 0/s ] 0
+ cpus: 2.7 gc: 1% heap: 210M/21G direct: 73k postGC: 165M
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/67k) -> write( -%)
+0:00:03 INF [lake_centerlines] - Finished in 2s cpu:5s avg:2.7
+0:00:03 INF [lake_centerlines] - read 1x(86% 1s)
+0:00:03 INF [lake_centerlines] - process 16x(4% 0.1s wait:2s)
+0:00:03 INF [lake_centerlines] - write 1x(0% 0s wait:2s)
+0:00:03 INF [water_polygons] -
+0:00:03 INF [water_polygons] - Starting...
+0:00:13 INF [water_polygons] - read: [ 605 4% 60/s ] write: [ 2.9M 297k/s ] 171M
+ cpus: 15.7 gc: 3% heap: 3.2G/21G direct: 54M postGC: 1.6G
+ read(46%) -> (990/1k) -> process(87% 84% 82% 86% 84% 85% 82% 90% 85% 87% 84% 83% 88% 86% 87% 88%) -> (7.2k/67k) -> write( 8%)
+0:00:23 INF [water_polygons] - read: [ 1.9k 13% 131/s ] write: [ 10M 771k/s ] 623M
+ cpus: 15.8 gc: 4% heap: 2.8G/21G direct: 54M postGC: 2.6G
+ read(27%) -> (991/1k) -> process(94% 93% 93% 95% 93% 94% 87% 90% 95% 92% 94% 91% 92% 93% 92% 92%) -> (8.9k/67k) -> write(17%)
+0:00:33 INF [water_polygons] - read: [ 3.1k 22% 126/s ] write: [ 18M 790k/s ] 1G
+ cpus: 15.8 gc: 4% heap: 7.3G/21G direct: 54M postGC: 3.4G
+ read(26%) -> (1k/1k) -> process(94% 95% 95% 94% 92% 95% 94% 92% 95% 89% 91% 93% 92% 93% 94% 94%) -> (11k/67k) -> write(16%)
+0:00:43 INF [water_polygons] - read: [ 4.5k 32% 141/s ] write: [ 27M 853k/s ] 1.5G
+ cpus: 15.8 gc: 4% heap: 4.4G/21G direct: 54M postGC: 4.4G
+ read(26%) -> (1k/1k) -> process(94% 95% 92% 92% 93% 92% 93% 94% 90% 94% 93% 92% 89% 95% 91% 92%) -> (7.5k/67k) -> write(17%)
+0:00:53 INF [water_polygons] - read: [ 6.1k 42% 151/s ] write: [ 36M 919k/s ] 2G
+ cpus: 15.8 gc: 4% heap: 6G/21G direct: 54M postGC: 5.2G
+ read(18%) -> (1k/1k) -> process(95% 95% 92% 93% 91% 92% 95% 94% 91% 95% 95% 94% 94% 93% 93% 93%) -> (7.6k/67k) -> write(19%)
+0:01:03 INF [water_polygons] - read: [ 8k 55% 189/s ] write: [ 74M 3.8M/s ] 3.8G
+ cpus: 9.9 gc: 1% heap: 7.5G/21G direct: 54M postGC: 5.2G
+ read( 1%) -> (1k/1k) -> process(53% 63% 62% 56% 53% 58% 53% 53% 78% 52% 51% 53% 52% 52% 52% 56%) -> (66k/67k) -> write(72%)
+0:01:13 INF [water_polygons] - read: [ 10k 71% 233/s ] write: [ 127M 5.3M/s ] 6.1G
+ cpus: 5.6 gc: 0% heap: 6.2G/21G direct: 54M postGC: 5.2G
+ read( 1%) -> (1k/1k) -> process(28% 29% 28% 28% 28% 29% 28% 28% 28% 28% 28% 28% 29% 27% 28% 31%) -> (63k/67k) -> write(100%)
+0:01:23 INF [water_polygons] - read: [ 12k 87% 231/s ] write: [ 180M 5.3M/s ] 8.4G
+ cpus: 5.5 gc: 0% heap: 7.4G/21G direct: 54M postGC: 5.2G
+ read( 1%) -> (1k/1k) -> process(28% 27% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 28% 31%) -> (62k/67k) -> write(100%)
+0:01:31 INF [water_polygons] - read: [ 14k 100% 229/s ] write: [ 222M 5.2M/s ] 10G
+ cpus: 5.5 gc: 0% heap: 6.7G/21G direct: 54M postGC: 5.2G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/67k) -> write( -%)
+0:01:31 INF [water_polygons] - Finished in 1m28s cpu:17m24s gc:2s avg:11.9
+0:01:31 INF [water_polygons] - read 1x(16% 14s wait:1m3s done:4s)
+0:01:31 INF [water_polygons] - process 16x(67% 59s wait:24s)
+0:01:31 INF [water_polygons] - write 1x(49% 43s sys:4s wait:45s)
+0:01:31 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/natearth.sqlite
+0:01:36 INF [natural_earth] -
+0:01:36 INF [natural_earth] - Starting...
+0:01:46 INF [natural_earth] - read: [ 332k 95% 33k/s ] write: [ 21k 2k/s ] 10G
+ cpus: 2.4 gc: 0% heap: 5.5G/21G direct: 54M postGC: 5.2G
+ read(99%) -> (0/1k) -> process( 4% 5% 4% 5% 5% 6% 5% 5% 5% 14% 5% 5% 6% 4% 5% 5%) -> (8.5k/67k) -> write( 0%)
+0:01:47 INF [natural_earth] - read: [ 349k 100% 22k/s ] write: [ 33k 17k/s ] 10G
+ cpus: 2.9 gc: 0% heap: 6G/21G direct: 54M postGC: 5.2G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/67k) -> write( -%)
+0:01:47 INF [natural_earth] - Finished in 11s cpu:27s avg:2.4
+0:01:47 INF [natural_earth] - read 1x(94% 10s sys:2s)
+0:01:47 INF [natural_earth] - process 16x(5% 0.6s wait:10s)
+0:01:47 INF [natural_earth] - write 1x(0% 0s wait:11s)
+0:01:47 INF [osm_pass1] -
+0:01:47 INF [osm_pass1] - Starting...
+0:01:57 INF [osm_pass1] - nodes: [ 293M 29M/s ] 3.4G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 677 67/s ]
+ cpus: 13.9 gc: 4% heap: 3.3G/21G direct: 1.6G postGC: 2.7G hppc: 972
+ read(16%) -> (31/46) -> process(88% 86% 87% 86% 88% 88% 86% 87% 87% 87% 87% 87% 86% 86% 87%)
+0:02:07 INF [osm_pass1] - nodes: [ 661M 36M/s ] 8G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.4k 78/s ]
+ cpus: 14.2 gc: 2% heap: 2.1G/21G direct: 2G postGC: 1.8G hppc: 972
+ read(17%) -> (29/46) -> process(90% 89% 91% 91% 90% 90% 89% 91% 90% 90% 90% 91% 90% 90% 90%)
+0:02:17 INF [osm_pass1] - nodes: [ 1B 37M/s ] 11G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.2k 81/s ]
+ cpus: 13.9 gc: 3% heap: 5.5G/21G direct: 2G postGC: 3.1G hppc: 972
+ read(17%) -> (0/46) -> process(89% 89% 88% 88% 88% 89% 87% 88% 90% 89% 88% 89% 88% 89% 89%)
+0:02:27 INF [osm_pass1] - nodes: [ 1.4B 40M/s ] 16G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3k 80/s ]
+ cpus: 13.8 gc: 3% heap: 6.4G/21G direct: 2G postGC: 4.2G hppc: 972
+ read(15%) -> (21/46) -> process(88% 89% 88% 89% 87% 88% 89% 88% 88% 89% 89% 89% 90% 89% 89%)
+0:02:37 INF [osm_pass1] - nodes: [ 1.8B 41M/s ] 20G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.8k 77/s ]
+ cpus: 13.9 gc: 4% heap: 6G/21G direct: 2G postGC: 6.1G hppc: 972
+ read(13%) -> (8/46) -> process(88% 88% 88% 88% 89% 89% 87% 88% 88% 89% 87% 88% 87% 88% 88%)
+0:02:47 INF [osm_pass1] - nodes: [ 2.3B 44M/s ] 24G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.6k 77/s ]
+ cpus: 14.5 gc: 3% heap: 6.8G/21G direct: 2G postGC: 6.6G hppc: 972
+ read(13%) -> (0/46) -> process(93% 93% 93% 94% 94% 93% 92% 93% 92% 94% 93% 93% 94% 92% 93%)
+0:02:57 INF [osm_pass1] - nodes: [ 2.7B 44M/s ] 29G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.3k 66/s ]
+ cpus: 13.8 gc: 5% heap: 3.3G/21G direct: 2G postGC: 3.2G hppc: 972
+ read(11%) -> (13/46) -> process(86% 87% 86% 87% 87% 87% 86% 86% 86% 87% 86% 86% 86% 86% 86%)
+0:03:07 INF [osm_pass1] - nodes: [ 3.2B 47M/s ] 33G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6k 69/s ]
+ cpus: 14.4 gc: 3% heap: 6.3G/21G direct: 2G postGC: 6.3G hppc: 972
+ read(13%) -> (23/46) -> process(92% 93% 93% 93% 92% 93% 93% 93% 93% 92% 92% 93% 93% 92% 93%)
+0:03:17 INF [osm_pass1] - nodes: [ 3.6B 45M/s ] 38G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.6k 65/s ]
+ cpus: 14.1 gc: 7% heap: 8.5G/21G direct: 2G postGC: 8G hppc: 972
+ read(11%) -> (31/46) -> process(86% 87% 86% 87% 87% 87% 87% 86% 86% 88% 86% 87% 88% 87% 87%)
+0:03:27 INF [osm_pass1] - nodes: [ 4.1B 48M/s ] 43G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.3k 69/s ]
+ cpus: 14.4 gc: 4% heap: 8.6G/21G direct: 2G postGC: 5.6G hppc: 972
+ read(11%) -> (8/46) -> process(91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%)
+0:03:37 INF [osm_pass1] - nodes: [ 4.6B 45M/s ] 47G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8k 65/s ]
+ cpus: 14 gc: 6% heap: 6.5G/21G direct: 2G postGC: 4.2G hppc: 972
+ read(10%) -> (4/46) -> process(87% 87% 87% 87% 87% 86% 87% 86% 87% 86% 87% 87% 87% 88% 87%)
+0:03:47 INF [osm_pass1] - nodes: [ 5B 44M/s ] 51G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.6k 63/s ]
+ cpus: 13.7 gc: 6% heap: 5.9G/21G direct: 2G postGC: 2.9G hppc: 972
+ read(11%) -> (10/46) -> process(86% 85% 85% 86% 84% 85% 86% 85% 85% 86% 85% 85% 85% 85% 84%)
+0:03:57 INF [osm_pass1] - nodes: [ 5.5B 48M/s ] 56G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.3k 69/s ]
+ cpus: 14.5 gc: 4% heap: 8.7G/21G direct: 2G postGC: 5.2G hppc: 972
+ read(11%) -> (31/46) -> process(93% 92% 93% 92% 92% 93% 93% 94% 92% 94% 93% 92% 93% 93% 93%)
+0:04:07 INF [osm_pass1] - nodes: [ 6B 46M/s ] 61G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.9k 65/s ]
+ cpus: 14.2 gc: 7% heap: 12G/21G direct: 2G postGC: 12G hppc: 972
+ read(11%) -> (29/46) -> process(88% 88% 88% 88% 88% 88% 88% 89% 88% 88% 89% 88% 89% 88% 89%)
+0:04:17 INF [osm_pass1] - nodes: [ 6.4B 48M/s ] 66G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 67/s ]
+ cpus: 14.1 gc: 5% heap: 9.6G/21G direct: 2G postGC: 9.6G hppc: 972
+ read(10%) -> (31/46) -> process(89% 88% 88% 89% 89% 90% 89% 88% 89% 89% 89% 89% 88% 90% 89%)
+0:04:27 INF [osm_pass1] - nodes: [ 6.9B 45M/s ] 70G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 64/s ]
+ cpus: 14.1 gc: 5% heap: 7.6G/21G direct: 2G postGC: 6.4G hppc: 972
+ read(10%) -> (30/46) -> process(89% 89% 88% 88% 89% 89% 88% 88% 88% 89% 88% 89% 89% 88% 88%)
+0:04:37 INF [osm_pass1] - nodes: [ 7.4B 47M/s ] 75G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 65/s ]
+ cpus: 13.9 gc: 6% heap: 2.6G/21G direct: 2G postGC: 2.4G hppc: 972
+ read(10%) -> (31/46) -> process(87% 86% 87% 87% 88% 87% 87% 88% 88% 87% 87% 87% 87% 88% 88%)
+0:04:40 INF [osm_pass1:process] - Finished nodes: 7,546,573,682 (43M/s) in 2m52s cpu:40m25s gc:8s avg:14.1
+0:04:47 INF [osm_pass1] - nodes: [ 7.5B 12M/s ] 76G ways: [ 27M 2.7M/s ] rels: [ 0 0/s ] blocks: [ 12k 49/s ]
+ cpus: 12.3 gc: 11% heap: 6.2G/21G direct: 2G postGC: 4.2G hppc: 972
+ read(11%) -> (31/46) -> process(72% 67% 71% 70% 68% 69% 69% 70% 72% 68% 67% 70% 76% 69% 69%)
+0:04:57 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 100M 7.2M/s ] rels: [ 0 0/s ] blocks: [ 13k 67/s ]
+ cpus: 13.4 gc: 12% heap: 14G/21G direct: 2G postGC: 14G hppc: 972
+ read(14%) -> (31/46) -> process(74% 76% 77% 76% 77% 82% 78% 76% 80% 76% 76% 77% 78% 76% 77%)
+0:05:07 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 164M 6.3M/s ] rels: [ 0 0/s ] blocks: [ 13k 52/s ]
+ cpus: 13.2 gc: 14% heap: 4.9G/21G direct: 2G postGC: 4.9G hppc: 972
+ read(10%) -> (31/46) -> process(63% 60% 59% 62% 61% 60% 59% 62% 60% 62% 59% 64% 61% 64% 60%)
+0:05:17 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 240M 7.5M/s ] rels: [ 0 0/s ] blocks: [ 14k 61/s ]
+ cpus: 13.7 gc: 13% heap: 6.7G/21G direct: 2G postGC: 4.6G hppc: 972
+ read(11%) -> (31/46) -> process(71% 70% 70% 71% 72% 68% 70% 71% 69% 70% 69% 70% 69% 68% 69%)
+0:05:27 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 320M 7.9M/s ] rels: [ 0 0/s ] blocks: [ 14k 60/s ]
+ cpus: 13.6 gc: 12% heap: 7.4G/21G direct: 2G postGC: 3.3G hppc: 972
+ read(10%) -> (31/46) -> process(65% 66% 68% 69% 67% 66% 68% 66% 65% 66% 67% 66% 67% 67% 65%)
+0:05:37 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 402M 8.2M/s ] rels: [ 0 0/s ] blocks: [ 15k 60/s ]
+ cpus: 13.9 gc: 15% heap: 8.9G/21G direct: 2G postGC: 6.3G hppc: 972
+ read( 9%) -> (31/46) -> process(65% 66% 64% 66% 64% 65% 68% 64% 67% 65% 65% 66% 65% 66% 65%)
+0:05:47 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 496M 9.3M/s ] rels: [ 0 0/s ] blocks: [ 16k 64/s ]
+ cpus: 13.7 gc: 14% heap: 4.1G/21G direct: 2G postGC: 3.6G hppc: 972
+ read( 8%) -> (31/46) -> process(68% 68% 65% 68% 68% 67% 69% 70% 67% 70% 67% 67% 68% 66% 68%)
+0:05:57 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 581M 8.5M/s ] rels: [ 0 0/s ] blocks: [ 16k 61/s ]
+ cpus: 13.5 gc: 15% heap: 7.7G/21G direct: 2G postGC: 6.5G hppc: 972
+ read( 8%) -> (31/46) -> process(68% 66% 64% 64% 65% 66% 64% 67% 64% 66% 67% 67% 68% 65% 65%)
+0:06:07 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 656M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 17k 54/s ]
+ cpus: 12.9 gc: 15% heap: 3.9G/21G direct: 2G postGC: 3.4G hppc: 972
+ read( 8%) -> (31/46) -> process(60% 59% 56% 59% 59% 60% 56% 59% 57% 59% 61% 58% 60% 60% 58%)
+0:06:17 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 742M 8.5M/s ] rels: [ 0 0/s ] blocks: [ 17k 60/s ]
+ cpus: 13.6 gc: 15% heap: 4.2G/21G direct: 2G postGC: 4.3G hppc: 972
+ read( 8%) -> (31/46) -> process(65% 63% 62% 65% 63% 63% 62% 64% 64% 65% 64% 62% 64% 64% 63%)
+0:06:27 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 833M 9M/s ] rels: [ 0 0/s ] blocks: [ 18k 62/s ]
+ cpus: 14.2 gc: 16% heap: 4.8G/21G direct: 2G postGC: 4.8G hppc: 972
+ read( 8%) -> (31/46) -> process(64% 64% 64% 68% 66% 65% 64% 68% 64% 63% 65% 63% 64% 63% 64%)
+0:06:29 INF [osm_pass1:process] - Finished ways: 841,994,745 (7.7M/s) in 1m49s cpu:24m26s gc:15s avg:13.5
+0:06:37 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 823k/s ] rels: [ 6.9M 694k/s ] blocks: [ 18k 16/s ]
+ cpus: 8.2 gc: 5% heap: 8G/21G direct: 2G postGC: 4G hppc: 706M
+ read( -%) -> (28/46) -> process(41% 34% 42% 41% 36% 41% 34% 36% 39% 39% 36% 37% 40% 38% 37%)
+0:06:40 INF [osm_pass1:process] - Finished relations: 9,718,612 (834k/s) in 12s cpu:1m16s avg:6.6
+0:06:40 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 0/s ] rels: [ 9.7M 861k/s ] blocks: [ 18k 13/s ]
+ cpus: 5.6 gc: 4% heap: 8.5G/21G direct: 188M postGC: 4.1G hppc: 1G
+ read( -%) -> (0/46) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:06:40 DEB [osm_pass1] - Processed 18,767 blocks:
+0:06:40 DEB [osm_pass1] - nodes: 7,546,573,682 (43M/s) in 2m52s cpu:40m25s gc:8s avg:14.1
+0:06:40 DEB [osm_pass1] - ways: 841,994,745 (7.7M/s) in 1m49s cpu:24m26s gc:15s avg:13.5
+0:06:40 DEB [osm_pass1] - relations: 9,718,612 (834k/s) in 12s cpu:1m16s avg:6.6
+0:06:40 INF [osm_pass1] - Finished in 4m54s cpu:1h6m17s gc:23s avg:13.5
+0:06:40 INF [osm_pass1] - read 1x(11% 32s sys:26s wait:2m47s done:3s)
+0:06:40 INF [osm_pass1] - process 15x(78% 3m49s sys:7s block:27s wait:2s)
+0:06:40 INF [osm_pass2] -
+0:06:40 INF [osm_pass2] - Starting...
+0:06:50 INF [osm_pass2] - nodes: [ 85M 1% 8.5M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 227M 529k/s ] 10G blocks: [ 199 1% 19/s ]
+ cpus: 15.4 gc: 2% heap: 5.4G/21G direct: 60M postGC: 3G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (11/26) -> process(92% 90% 90% 92% 88% 90% 86% 91% 92% 90% 93% 90% 92% 89% 88%) -> (5.4k/66k) -> write(16%)
+0:07:00 INF [osm_pass2] - nodes: [ 174M 2% 8.8M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 237M 1M/s ] 12G blocks: [ 409 2% 20/s ]
+ cpus: 15.4 gc: 2% heap: 11G/21G direct: 60M postGC: 2.8G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (10/26) -> process(94% 92% 92% 91% 91% 95% 92% 94% 94% 93% 94% 95% 94% 96% 93%) -> (10k/66k) -> write(30%)
+0:07:10 INF [osm_pass2] - nodes: [ 244M 3% 6.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 251M 1.3M/s ] 13G blocks: [ 578 3% 16/s ]
+ cpus: 15.4 gc: 3% heap: 6.3G/21G direct: 60M postGC: 3.1G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(90% 87% 87% 90% 90% 89% 92% 89% 91% 89% 87% 88% 90% 89% 93%) -> (6.9k/66k) -> write(42%)
+0:07:20 INF [osm_pass2] - nodes: [ 331M 4% 8.7M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 260M 905k/s ] 14G blocks: [ 752 4% 17/s ]
+ cpus: 15.2 gc: 2% heap: 9.8G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(91% 94% 94% 93% 94% 92% 91% 88% 94% 91% 93% 94% 93% 95% 94%) -> (9.8k/66k) -> write(28%)
+0:07:30 INF [osm_pass2] - nodes: [ 426M 6% 9.5M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 267M 727k/s ] 15G blocks: [ 939 5% 18/s ]
+ cpus: 15.3 gc: 3% heap: 7.5G/21G direct: 60M postGC: 3.8G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(92% 94% 94% 96% 95% 97% 96% 95% 95% 95% 95% 95% 93% 95% 95%) -> (6.5k/66k) -> write(22%)
+0:07:40 INF [osm_pass2] - nodes: [ 525M 7% 9.8M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 272M 457k/s ] 16G blocks: [ 1.1k 6% 21/s ]
+ cpus: 15.1 gc: 2% heap: 6.6G/21G direct: 60M postGC: 3.4G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (11/26) -> process(94% 94% 93% 96% 95% 95% 95% 95% 96% 92% 92% 94% 96% 96% 94%) -> (7.8k/66k) -> write(15%)
+0:07:50 INF [osm_pass2] - nodes: [ 625M 8% 9.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 277M 511k/s ] 16G blocks: [ 1.3k 7% 22/s ]
+ cpus: 15.2 gc: 2% heap: 5.5G/21G direct: 60M postGC: 3.6G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (11/26) -> process(97% 96% 98% 97% 96% 97% 96% 96% 97% 96% 98% 97% 97% 96% 97%) -> (10k/66k) -> write(16%)
+0:08:00 INF [osm_pass2] - nodes: [ 731M 10% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 280M 272k/s ] 16G blocks: [ 1.6k 9% 24/s ]
+ cpus: 15.1 gc: 1% heap: 5.5G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 6%) -> (11/26) -> process(99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99%) -> (9.3k/66k) -> write( 9%)
+0:08:10 INF [osm_pass2] - nodes: [ 832M 11% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 285M 508k/s ] 17G blocks: [ 1.8k 10% 23/s ]
+ cpus: 15.2 gc: 1% heap: 6.2G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (11/26) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99%) -> (7.8k/66k) -> write(17%)
+0:08:20 INF [osm_pass2] - nodes: [ 931M 12% 9.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 293M 798k/s ] 18G blocks: [ 2k 11% 21/s ]
+ cpus: 15.3 gc: 1% heap: 11G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 98% 98% 99% 99%) -> (9.5k/66k) -> write(24%)
+0:08:30 INF [osm_pass2] - nodes: [ 1B 13% 7.6M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 296M 328k/s ] 18G blocks: [ 2.2k 12% 15/s ]
+ cpus: 11.8 gc: 1% heap: 4.2G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 46% 46% 46% 97% 47% 97% 97% 97% 46% 97% 98% 48% 98%) -> (10k/66k) -> write(10%)
+0:08:40 INF [osm_pass2] - nodes: [ 1B 14% 6.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 298M 210k/s ] 18G blocks: [ 2.3k 13% 13/s ]
+ cpus: 10.8 gc: 1% heap: 3.8G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 21% 22% 22% 97% 23% 98% 98% 98% 72% 97% 96% 23% 97%) -> (5.8k/66k) -> write( 7%)
+0:08:50 INF [osm_pass2] - nodes: [ 1.1B 15% 8.4M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 301M 299k/s ] 19G blocks: [ 2.5k 14% 17/s ]
+ cpus: 13.1 gc: 1% heap: 11G/21G direct: 60M postGC: 3.8G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(97% 98% 94% 41% 52% 98% 88% 98% 97% 98% 98% 98% 98% 40% 98%) -> (7.3k/66k) -> write(10%)
+0:09:00 INF [osm_pass2] - nodes: [ 1.2B 17% 9.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 305M 388k/s ] 19G blocks: [ 2.7k 15% 19/s ]
+ cpus: 14.9 gc: 1% heap: 10G/21G direct: 60M postGC: 3.9G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(98% 98% 98% 93% 98% 98% 98% 98% 98% 98% 98% 98% 98% 90% 98%) -> (9.5k/66k) -> write(13%)
+0:09:10 INF [osm_pass2] - nodes: [ 1.3B 18% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 309M 373k/s ] 19G blocks: [ 2.9k 16% 20/s ]
+ cpus: 15.1 gc: 1% heap: 7.6G/21G direct: 60M postGC: 3.9G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 98% 98% 98% 99% 99%) -> (7.7k/66k) -> write(12%)
+0:09:20 INF [osm_pass2] - nodes: [ 1.4B 20% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 311M 281k/s ] 20G blocks: [ 3.1k 17% 20/s ]
+ cpus: 15.1 gc: 1% heap: 4.4G/21G direct: 60M postGC: 3.9G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (11/26) -> process(99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99%) -> (10k/66k) -> write( 9%)
+0:09:30 INF [osm_pass2] - nodes: [ 1.5B 21% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 317M 534k/s ] 20G blocks: [ 3.3k 18% 18/s ]
+ cpus: 15.1 gc: 1% heap: 8.9G/21G direct: 60M postGC: 4.1G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(99% 98% 99% 98% 95% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98%) -> (6.3k/66k) -> write(16%)
+0:09:40 INF [osm_pass2] - nodes: [ 1.6B 22% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 321M 375k/s ] 21G blocks: [ 3.5k 19% 19/s ]
+ cpus: 15.1 gc: 1% heap: 10G/21G direct: 60M postGC: 4.4G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(99% 99% 98% 99% 98% 98% 99% 98% 98% 98% 98% 98% 98% 99% 98%) -> (6.3k/66k) -> write(12%)
+0:09:50 INF [osm_pass2] - nodes: [ 1.7B 24% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 325M 405k/s ] 21G blocks: [ 3.7k 20% 19/s ]
+ cpus: 15.1 gc: 1% heap: 5.9G/21G direct: 60M postGC: 4.6G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (7.8k/66k) -> write(13%)
+0:10:00 INF [osm_pass2] - nodes: [ 1.8B 25% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 330M 567k/s ] 22G blocks: [ 3.9k 21% 19/s ]
+ cpus: 15.1 gc: 1% heap: 7.4G/21G direct: 60M postGC: 4.9G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (8.2k/66k) -> write(18%)
+0:10:10 INF [osm_pass2] - nodes: [ 1.9B 26% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 334M 403k/s ] 22G blocks: [ 4.1k 22% 19/s ]
+ cpus: 15.1 gc: 1% heap: 11G/21G direct: 60M postGC: 6.4G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (8.4k/66k) -> write(13%)
+0:10:20 INF [osm_pass2] - nodes: [ 2B 28% 9.8M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 342M 758k/s ] 22G blocks: [ 4.3k 23% 18/s ]
+ cpus: 15.1 gc: 2% heap: 11G/21G direct: 60M postGC: 9.6G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (8.8k/66k) -> write(22%)
+0:10:30 INF [osm_pass2] - nodes: [ 2.1B 29% 9.8M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 349M 673k/s ] 23G blocks: [ 4.4k 24% 15/s ]
+ cpus: 14.9 gc: 3% heap: 11G/21G direct: 60M postGC: 4.2G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(94% 95% 95% 95% 95% 96% 95% 95% 96% 96% 95% 95% 95% 95% 94%) -> (9.7k/66k) -> write(19%)
+0:10:40 INF [osm_pass2] - nodes: [ 2.2B 30% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 355M 661k/s ] 23G blocks: [ 4.6k 25% 15/s ]
+ cpus: 15.1 gc: 2% heap: 11G/21G direct: 60M postGC: 5.6G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (8.9k/66k) -> write(19%)
+0:10:50 INF [osm_pass2] - nodes: [ 2.3B 32% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 361M 517k/s ] 24G blocks: [ 4.7k 25% 16/s ]
+ cpus: 15.1 gc: 2% heap: 9.5G/21G direct: 60M postGC: 8G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(98% 98% 98% 97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97%) -> (8.5k/66k) -> write(15%)
+0:11:01 INF [osm_pass2] - nodes: [ 2.5B 33% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 364M 346k/s ] 24G blocks: [ 4.9k 26% 15/s ]
+ cpus: 14.8 gc: 3% heap: 6.6G/21G direct: 60M postGC: 3.9G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(95% 95% 95% 94% 95% 94% 94% 95% 95% 95% 94% 94% 95% 95% 94%) -> (7k/66k) -> write(11%)
+0:11:11 INF [osm_pass2] - nodes: [ 2.6B 35% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 367M 317k/s ] 24G blocks: [ 5k 27% 15/s ]
+ cpus: 15 gc: 2% heap: 10G/21G direct: 60M postGC: 9G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (8.3k/66k) -> write(10%)
+0:11:21 INF [osm_pass2] - nodes: [ 2.7B 36% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 370M 302k/s ] 25G blocks: [ 5.2k 28% 15/s ]
+ cpus: 14.6 gc: 3% heap: 6.5G/21G direct: 60M postGC: 6.5G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (11/26) -> process(94% 95% 94% 94% 94% 94% 94% 94% 94% 93% 94% 93% 94% 94% 95%) -> (9k/66k) -> write( 9%)
+0:11:31 INF [osm_pass2] - nodes: [ 2.8B 37% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 374M 347k/s ] 25G blocks: [ 5.4k 29% 15/s ]
+ cpus: 14.7 gc: 3% heap: 9.6G/21G direct: 60M postGC: 4.9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 94% 94% 95% 94% 94% 94% 95% 94% 94% 94% 94% 94% 94%) -> (7.6k/66k) -> write(11%)
+0:11:41 INF [osm_pass2] - nodes: [ 2.9B 39% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 377M 328k/s ] 25G blocks: [ 5.5k 30% 15/s ]
+ cpus: 14.7 gc: 3% heap: 6.5G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 94% 94% 95% 95% 94% 94% 95% 94% 95% 94% 95% 95% 95% 94%) -> (6.2k/66k) -> write(10%)
+0:11:51 INF [osm_pass2] - nodes: [ 3B 40% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 380M 320k/s ] 26G blocks: [ 5.7k 30% 15/s ]
+ cpus: 14.5 gc: 3% heap: 10G/21G direct: 60M postGC: 10G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (6.3k/66k) -> write(10%)
+0:12:01 INF [osm_pass2] - nodes: [ 3.1B 41% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 383M 257k/s ] 26G blocks: [ 5.8k 31% 15/s ]
+ cpus: 14.9 gc: 3% heap: 10G/21G direct: 60M postGC: 9.5G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96%) -> (6.4k/66k) -> write( 8%)
+0:12:11 INF [osm_pass2] - nodes: [ 3.2B 43% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 386M 279k/s ] 26G blocks: [ 6k 32% 15/s ]
+ cpus: 14.8 gc: 3% heap: 9.5G/21G direct: 60M postGC: 7.6G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (8k/66k) -> write( 9%)
+0:12:21 INF [osm_pass2] - nodes: [ 3.3B 44% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 388M 283k/s ] 26G blocks: [ 6.1k 33% 14/s ]
+ cpus: 14.5 gc: 3% heap: 9.5G/21G direct: 60M postGC: 5.9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 93% 93% 93% 93% 93% 93% 93% 93% 94% 93% 93% 93% 93% 93%) -> (8.4k/66k) -> write( 9%)
+0:12:31 INF [osm_pass2] - nodes: [ 3.4B 45% 9.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 393M 500k/s ] 27G blocks: [ 6.3k 34% 14/s ]
+ cpus: 14.8 gc: 3% heap: 6.5G/21G direct: 60M postGC: 4.9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 94% 94% 94% 95% 94% 94% 94% 95% 94% 94% 94% 95%) -> (7.7k/66k) -> write(15%)
+0:12:41 INF [osm_pass2] - nodes: [ 3.5B 47% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 397M 310k/s ] 27G blocks: [ 6.4k 34% 14/s ]
+ cpus: 14.7 gc: 3% heap: 5.7G/21G direct: 60M postGC: 4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 93% 94% 94% 95% 95% 95% 95% 94% 95% 95% 95% 95%) -> (5.6k/66k) -> write(10%)
+0:12:51 INF [osm_pass2] - nodes: [ 3.6B 48% 9.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 401M 434k/s ] 28G blocks: [ 6.6k 35% 14/s ]
+ cpus: 14.7 gc: 3% heap: 8.4G/21G direct: 60M postGC: 3.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 93%) -> (7.3k/66k) -> write(13%)
+0:13:01 INF [osm_pass2] - nodes: [ 3.7B 50% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 403M 248k/s ] 28G blocks: [ 6.7k 36% 14/s ]
+ cpus: 14.7 gc: 3% heap: 4G/21G direct: 60M postGC: 4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 95% 94% 94% 95% 95% 95% 94% 94% 94% 94% 94% 94%) -> (6.9k/66k) -> write( 8%)
+0:13:11 INF [osm_pass2] - nodes: [ 3.8B 51% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 406M 243k/s ] 28G blocks: [ 6.9k 37% 14/s ]
+ cpus: 14.7 gc: 3% heap: 5.6G/21G direct: 60M postGC: 3.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 94% 94% 94% 95% 94% 94% 94% 94% 95% 93% 93% 94% 94% 95%) -> (8.1k/66k) -> write( 8%)
+0:13:21 INF [osm_pass2] - nodes: [ 3.9B 52% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 408M 269k/s ] 28G blocks: [ 7k 38% 14/s ]
+ cpus: 14.7 gc: 3% heap: 9.4G/21G direct: 60M postGC: 9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 96% 95% 95% 96% 95% 95% 95% 95% 96%) -> (7k/66k) -> write( 9%)
+0:13:31 INF [osm_pass2] - nodes: [ 4B 54% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 411M 291k/s ] 29G blocks: [ 7.1k 38% 14/s ]
+ cpus: 14.7 gc: 3% heap: 8.6G/21G direct: 60M postGC: 8.5G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 94% 95% 94% 94%) -> (7.8k/66k) -> write( 9%)
+0:13:41 INF [osm_pass2] - nodes: [ 4.1B 55% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 414M 299k/s ] 29G blocks: [ 7.3k 39% 14/s ]
+ cpus: 14.6 gc: 3% heap: 8.1G/21G direct: 60M postGC: 8.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 95% 94% 94% 94% 94% 94% 93% 94% 95% 94% 94% 94% 93%) -> (7.3k/66k) -> write( 9%)
+0:13:51 INF [osm_pass2] - nodes: [ 4.2B 56% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 418M 354k/s ] 29G blocks: [ 7.4k 40% 14/s ]
+ cpus: 14.6 gc: 3% heap: 8.7G/21G direct: 60M postGC: 8.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 94% 94% 94% 93% 94% 92% 94% 95% 93% 94% 93% 94% 94%) -> (7.5k/66k) -> write(11%)
+0:14:01 INF [osm_pass2] - nodes: [ 4.3B 58% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 422M 388k/s ] 30G blocks: [ 7.6k 41% 14/s ]
+ cpus: 14.6 gc: 3% heap: 9.1G/21G direct: 60M postGC: 8.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 93% 94% 93% 93% 94% 94% 93% 93% 94% 93% 94% 93%) -> (8.3k/66k) -> write(12%)
+0:14:11 INF [osm_pass2] - nodes: [ 4.4B 59% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 425M 288k/s ] 30G blocks: [ 7.7k 41% 14/s ]
+ cpus: 14.7 gc: 3% heap: 9.1G/21G direct: 60M postGC: 8.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 94% 95% 95% 94% 94% 94% 94% 94% 93% 94% 94% 94%) -> (8.2k/66k) -> write( 9%)
+0:14:21 INF [osm_pass2] - nodes: [ 4.5B 60% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 427M 255k/s ] 30G blocks: [ 7.9k 42% 14/s ]
+ cpus: 14.6 gc: 3% heap: 8.9G/21G direct: 60M postGC: 8.5G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 94% 94% 94% 93% 94% 94% 94% 93% 93% 93% 94% 94% 94% 93%) -> (9.5k/66k) -> write( 8%)
+0:14:31 INF [osm_pass2] - nodes: [ 4.6B 62% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 430M 296k/s ] 31G blocks: [ 8k 43% 14/s ]
+ cpus: 14.7 gc: 3% heap: 8.9G/21G direct: 60M postGC: 8.6G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 94% 95% 94% 95% 95% 95% 95% 95% 94% 95% 94% 95% 95% 94%) -> (9.8k/66k) -> write( 9%)
+0:14:41 INF [osm_pass2] - nodes: [ 4.7B 63% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 433M 251k/s ] 31G blocks: [ 8.2k 44% 15/s ]
+ cpus: 14.6 gc: 3% heap: 8.7G/21G direct: 60M postGC: 8.8G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 93% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94%) -> (6.7k/66k) -> write( 8%)
+0:14:51 INF [osm_pass2] - nodes: [ 4.8B 65% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 436M 290k/s ] 31G blocks: [ 8.3k 45% 14/s ]
+ cpus: 14.8 gc: 2% heap: 7.4G/21G direct: 60M postGC: 7.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(96% 95% 96% 95% 95% 95% 95% 96% 95% 95% 96% 95% 95% 94% 95%) -> (7.2k/66k) -> write( 9%)
+0:15:01 INF [osm_pass2] - nodes: [ 4.9B 66% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 438M 274k/s ] 31G blocks: [ 8.5k 45% 14/s ]
+ cpus: 14.5 gc: 3% heap: 7.5G/21G direct: 60M postGC: 4.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 93% 94% 93% 93% 93% 93% 94% 94% 93% 94% 93% 92% 93% 94%) -> (8.2k/66k) -> write( 9%)
+0:15:11 INF [osm_pass2] - nodes: [ 5B 67% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 441M 223k/s ] 31G blocks: [ 8.6k 46% 14/s ]
+ cpus: 14.6 gc: 3% heap: 4.5G/21G direct: 60M postGC: 4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (7.8k/66k) -> write( 7%)
+0:15:21 INF [osm_pass2] - nodes: [ 5.1B 69% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 443M 227k/s ] 32G blocks: [ 8.8k 47% 15/s ]
+ cpus: 14.6 gc: 3% heap: 3.4G/21G direct: 60M postGC: 3.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (6.9k/66k) -> write( 7%)
+0:15:31 INF [osm_pass2] - nodes: [ 5.2B 70% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 446M 276k/s ] 32G blocks: [ 8.9k 48% 14/s ]
+ cpus: 14.7 gc: 3% heap: 10G/21G direct: 60M postGC: 9.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (7.8k/66k) -> write( 9%)
+0:15:41 INF [osm_pass2] - nodes: [ 5.3B 72% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 448M 254k/s ] 32G blocks: [ 9.1k 49% 15/s ]
+ cpus: 14.8 gc: 3% heap: 9.4G/21G direct: 60M postGC: 9.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(96% 96% 95% 95% 95% 95% 96% 96% 95% 95% 96% 95% 95% 95% 96%) -> (8.8k/66k) -> write( 8%)
+0:15:51 INF [osm_pass2] - nodes: [ 5.5B 73% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 453M 435k/s ] 33G blocks: [ 9.2k 49% 14/s ]
+ cpus: 14.8 gc: 3% heap: 9.5G/21G direct: 60M postGC: 8.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95%) -> (7.3k/66k) -> write(14%)
+0:16:01 INF [osm_pass2] - nodes: [ 5.6B 74% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 456M 320k/s ] 33G blocks: [ 9.4k 50% 14/s ]
+ cpus: 14.6 gc: 3% heap: 7.7G/21G direct: 60M postGC: 7.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94% 94%) -> (8.3k/66k) -> write(10%)
+0:16:11 INF [osm_pass2] - nodes: [ 5.7B 76% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 460M 381k/s ] 33G blocks: [ 9.5k 51% 14/s ]
+ cpus: 14.6 gc: 3% heap: 8.8G/21G direct: 60M postGC: 6.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93%) -> (8.6k/66k) -> write(12%)
+0:16:21 INF [osm_pass2] - nodes: [ 5.8B 77% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 462M 265k/s ] 34G blocks: [ 9.7k 52% 14/s ]
+ cpus: 14.8 gc: 3% heap: 7G/21G direct: 60M postGC: 6.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 94% 95% 95% 94% 95% 95% 95% 95% 94%) -> (7.5k/66k) -> write( 8%)
+0:16:31 INF [osm_pass2] - nodes: [ 5.9B 78% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 466M 355k/s ] 34G blocks: [ 9.8k 53% 14/s ]
+ cpus: 14.7 gc: 3% heap: 8.7G/21G direct: 60M postGC: 5.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 95% 94% 95% 95% 94% 94% 95% 94% 94% 94% 94% 94% 94%) -> (8.7k/66k) -> write(11%)
+0:16:41 INF [osm_pass2] - nodes: [ 6B 80% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 468M 221k/s ] 34G blocks: [ 10k 53% 14/s ]
+ cpus: 14.7 gc: 3% heap: 7.2G/21G direct: 60M postGC: 5.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 95% 94% 95% 95% 95% 95% 94% 94% 95% 94% 95% 95%) -> (6.4k/66k) -> write( 7%)
+0:16:51 INF [osm_pass2] - nodes: [ 6.1B 81% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 471M 281k/s ] 34G blocks: [ 10k 54% 14/s ]
+ cpus: 14.5 gc: 3% heap: 8.7G/21G direct: 60M postGC: 5G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 93% 93% 93% 93% 94% 94% 94% 94% 93% 93% 93% 93% 93% 93%) -> (6k/66k) -> write( 9%)
+0:17:01 INF [osm_pass2] - nodes: [ 6.2B 83% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 474M 280k/s ] 35G blocks: [ 10k 55% 14/s ]
+ cpus: 14.7 gc: 3% heap: 7.5G/21G direct: 60M postGC: 5G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 95% 93% 94% 94% 94% 94% 94% 94% 94% 95% 95% 95% 94%) -> (8k/66k) -> write( 9%)
+0:17:11 INF [osm_pass2] - nodes: [ 6.3B 84% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 476M 239k/s ] 35G blocks: [ 10k 56% 14/s ]
+ cpus: 14.7 gc: 3% heap: 6.4G/21G direct: 60M postGC: 4.8G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 94% 94% 95% 94% 94% 94% 94% 94% 94% 95% 94% 94% 94% 94%) -> (7.6k/66k) -> write( 7%)
+0:17:21 INF [osm_pass2] - nodes: [ 6.4B 85% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 479M 263k/s ] 35G blocks: [ 10k 56% 14/s ]
+ cpus: 14.7 gc: 3% heap: 8.7G/21G direct: 60M postGC: 4.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 95% 95% 95% 95% 94% 95% 94% 94% 94% 95% 95% 95%) -> (6.5k/66k) -> write( 8%)
+0:17:31 INF [osm_pass2] - nodes: [ 6.5B 87% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 482M 286k/s ] 35G blocks: [ 10k 57% 14/s ]
+ cpus: 14.7 gc: 3% heap: 5G/21G direct: 60M postGC: 4.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (10/26) -> process(95% 95% 94% 95% 95% 95% 95% 94% 94% 94% 95% 94% 95% 94% 94%) -> (6.9k/66k) -> write( 9%)
+0:17:41 INF [osm_pass2] - nodes: [ 6.6B 88% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 486M 446k/s ] 36G blocks: [ 10k 58% 14/s ]
+ cpus: 15 gc: 2% heap: 8.1G/21G direct: 60M postGC: 7.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(97% 97% 98% 97% 98% 98% 98% 97% 97% 97% 97% 98% 97% 97% 98%) -> (8.4k/66k) -> write(13%)
+0:17:51 INF [osm_pass2] - nodes: [ 6.7B 90% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 490M 387k/s ] 36G blocks: [ 11k 59% 14/s ]
+ cpus: 14.8 gc: 3% heap: 4.2G/21G direct: 60M postGC: 3.8G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 96% 95% 95% 95%) -> (8.4k/66k) -> write(11%)
+0:18:01 INF [osm_pass2] - nodes: [ 6.8B 90% 6.8M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 493M 319k/s ] 36G blocks: [ 11k 59% 9/s ]
+ cpus: 10.4 gc: 2% heap: 7.7G/21G direct: 60M postGC: 6.9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(59% 68% 93% 63% 91% 45% 62% 56% 60% 69% 69% 75% 73% 49% 77%) -> (5.8k/66k) -> write(10%)
+0:18:11 INF [osm_pass2] - nodes: [ 6.9B 92% 8.9M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 497M 407k/s ] 37G blocks: [ 11k 60% 13/s ]
+ cpus: 13.5 gc: 3% heap: 5.9G/21G direct: 60M postGC: 4.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 94% 86% 90% 88% 73% 88% 77% 78% 82% 84% 94% 84% 91% 93%) -> (11k/66k) -> write(12%)
+0:18:21 INF [osm_pass2] - nodes: [ 7B 93% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 500M 298k/s ] 37G blocks: [ 11k 61% 13/s ]
+ cpus: 14.3 gc: 3% heap: 6.5G/21G direct: 60M postGC: 4.4G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(93% 93% 94% 92% 92% 89% 92% 93% 90% 90% 93% 92% 94% 91% 93%) -> (7.2k/66k) -> write( 9%)
+0:18:31 INF [osm_pass2] - nodes: [ 7.1B 94% 9.1M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 309k/s ] 37G blocks: [ 11k 61% 12/s ]
+ cpus: 13.5 gc: 3% heap: 4.4G/21G direct: 60M postGC: 3.9G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(88% 84% 91% 94% 72% 78% 82% 93% 86% 93% 83% 88% 86% 92% 93%) -> (8.2k/66k) -> write( 9%)
+0:18:41 INF [osm_pass2] - nodes: [ 7.2B 95% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 505M 215k/s ] 37G blocks: [ 11k 62% 13/s ]
+ cpus: 14.2 gc: 3% heap: 3.7G/21G direct: 60M postGC: 3.6G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(90% 93% 93% 90% 93% 93% 91% 93% 91% 91% 93% 90% 91% 90% 91%) -> (8.5k/66k) -> write( 7%)
+0:18:51 INF [osm_pass2] - nodes: [ 7.3B 97% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 508M 216k/s ] 38G blocks: [ 11k 63% 14/s ]
+ cpus: 14.7 gc: 3% heap: 5.2G/21G direct: 60M postGC: 3.7G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 94% 94% 94% 95% 95% 95% 94% 95% 95% 94% 95% 94%) -> (6.3k/66k) -> write( 7%)
+0:19:01 INF [osm_pass2] - nodes: [ 7.4B 98% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 510M 250k/s ] 38G blocks: [ 11k 64% 14/s ]
+ cpus: 14.7 gc: 3% heap: 5.7G/21G direct: 60M postGC: 4.3G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(94% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95%) -> (6.9k/66k) -> write( 8%)
+0:19:11 INF [osm_pass2] - nodes: [ 7.5B 100% 10M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 513M 294k/s ] 38G blocks: [ 12k 65% 14/s ]
+ cpus: 14.8 gc: 3% heap: 5.9G/21G direct: 60M postGC: 5.2G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (11/26) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (6.9k/66k) -> write( 9%)
+0:19:13 DEB [osm_pass2:process] - Sorting long long multimap...
+0:19:14 INF [osm_pass2:process] - Finished nodes: 7,546,573,682 (10M/s) in 12m34s cpu:3h3m35s gc:18s avg:14.6
+0:19:19 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:16s avg:2.7
+0:19:21 INF [osm_pass2] - nodes: [ 7.5B 100% 2.3M/s ] 76G ways: [ 98k 0% 9.8k/s ] rels: [ 0 0% 0/s ] features: [ 515M 158k/s ] 38G blocks: [ 12k 65% 3/s ]
+ cpus: 6.3 gc: 2% heap: 8.3G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 1.2M
+ read( 1%) -> (11/26) -> process(35% 29% 29% 33% 34% 33% 29% 28% 28% 84% 33% 38% 36% 29% 30%) -> (9.2k/66k) -> write( 5%)
+0:19:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 991k 0% 89k/s ] rels: [ 0 0% 0/s ] features: [ 521M 582k/s ] 39G blocks: [ 12k 65% <1/s ]
+ cpus: 6.8 gc: 1% heap: 8.4G/21G direct: 61M postGC: 7.7G relInfo: 962M mpGeoms: 21M
+ read( 0%) -> (11/26) -> process(51% 34% 35% 45% 46% 44% 36% 35% 40% 34% 51% 46% 52% 35% 35%) -> (7.3k/66k) -> write(20%)
+0:19:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 2M 0% 109k/s ] rels: [ 0 0% 0/s ] features: [ 528M 757k/s ] 39G blocks: [ 12k 65% 1/s ]
+ cpus: 7.7 gc: 3% heap: 8.7G/21G direct: 61M postGC: 8.6G relInfo: 962M mpGeoms: 31M
+ read( 0%) -> (11/26) -> process(54% 43% 40% 53% 46% 51% 43% 43% 45% 42% 47% 53% 47% 45% 46%) -> (7.8k/66k) -> write(25%)
+0:19:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 3.4M 0% 130k/s ] rels: [ 0 0% 0/s ] features: [ 537M 847k/s ] 40G blocks: [ 12k 65% 1/s ]
+ cpus: 8.5 gc: 2% heap: 9.2G/21G direct: 61M postGC: 2.9G relInfo: 962M mpGeoms: 39M
+ read( 0%) -> (11/26) -> process(49% 54% 58% 49% 52% 52% 55% 56% 41% 43% 45% 57% 46% 55% 57%) -> (9.7k/66k) -> write(29%)
+0:20:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 4.7M 1% 131k/s ] rels: [ 0 0% 0/s ] features: [ 545M 849k/s ] 41G blocks: [ 12k 65% 1/s ]
+ cpus: 8.2 gc: 3% heap: 5.2G/21G direct: 61M postGC: 4G relInfo: 962M mpGeoms: 49M
+ read( 0%) -> (11/26) -> process(51% 52% 54% 52% 51% 51% 51% 54% 42% 46% 51% 53% 44% 53% 54%) -> (6.3k/66k) -> write(29%)
+0:20:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 6.4M 1% 177k/s ] rels: [ 0 0% 0/s ] features: [ 556M 1.1M/s ] 42G blocks: [ 12k 65% 2/s ]
+ cpus: 10.4 gc: 4% heap: 6.6G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 72M
+ read( 0%) -> (11/26) -> process(61% 54% 68% 61% 70% 58% 68% 63% 61% 63% 61% 60% 65% 66% 66%) -> (6.4k/66k) -> write(38%)
+0:20:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 8.2M 1% 175k/s ] rels: [ 0 0% 0/s ] features: [ 566M 1M/s ] 43G blocks: [ 12k 65% 1/s ]
+ cpus: 9.3 gc: 3% heap: 10G/21G direct: 61M postGC: 6.6G relInfo: 962M mpGeoms: 83M
+ read( 0%) -> (11/26) -> process(61% 56% 59% 59% 55% 60% 52% 55% 56% 56% 57% 60% 54% 58% 59%) -> (6.9k/66k) -> write(34%)
+0:20:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 10M 1% 180k/s ] rels: [ 0 0% 0/s ] features: [ 578M 1.1M/s ] 44G blocks: [ 12k 65% 2/s ]
+ cpus: 10.3 gc: 4% heap: 8.6G/21G direct: 61M postGC: 7.9G relInfo: 962M mpGeoms: 89M
+ read( 0%) -> (11/26) -> process(62% 65% 64% 67% 66% 66% 64% 61% 64% 61% 61% 59% 55% 61% 65%) -> (8.9k/66k) -> write(39%)
+0:20:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 11M 1% 172k/s ] rels: [ 0 0% 0/s ] features: [ 587M 973k/s ] 45G blocks: [ 12k 65% 2/s ]
+ cpus: 9.5 gc: 3% heap: 9.6G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 94M
+ read( 0%) -> (11/26) -> process(52% 61% 63% 59% 57% 59% 59% 53% 58% 63% 57% 58% 57% 54% 60%) -> (5.9k/66k) -> write(34%)
+0:20:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 13M 2% 164k/s ] rels: [ 0 0% 0/s ] features: [ 597M 976k/s ] 46G blocks: [ 12k 66% 1/s ]
+ cpus: 9.5 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 123M
+ read( 1%) -> (11/26) -> process(56% 61% 62% 60% 56% 53% 52% 56% 59% 63% 62% 55% 55% 54% 61%) -> (7.4k/66k) -> write(33%)
+0:21:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 14M 2% 88k/s ] rels: [ 0 0% 0/s ] features: [ 603M 564k/s ] 46G blocks: [ 12k 66% <1/s ]
+ cpus: 7.4 gc: 2% heap: 11G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 157M
+ read( 0%) -> (11/26) -> process(46% 43% 55% 44% 46% 44% 43% 45% 46% 48% 45% 45% 47% 46% 46%) -> (6.3k/66k) -> write(19%)
+0:21:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 15M 2% 76k/s ] rels: [ 0 0% 0/s ] features: [ 607M 475k/s ] 47G blocks: [ 12k 66% 1/s ]
+ cpus: 7 gc: 1% heap: 3.9G/21G direct: 61M postGC: 3.2G relInfo: 962M mpGeoms: 178M
+ read( 0%) -> (11/26) -> process(42% 42% 41% 44% 40% 40% 42% 40% 43% 41% 45% 53% 41% 41% 44%) -> (7.4k/66k) -> write(17%)
+0:21:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 15M 2% 89k/s ] rels: [ 0 0% 0/s ] features: [ 613M 525k/s ] 47G blocks: [ 12k 66% <1/s ]
+ cpus: 7.6 gc: 2% heap: 5.4G/21G direct: 61M postGC: 3.9G relInfo: 962M mpGeoms: 198M
+ read( 0%) -> (11/26) -> process(45% 49% 56% 46% 49% 45% 49% 45% 44% 46% 45% 57% 47% 46% 45%) -> (11k/66k) -> write(19%)
+0:21:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 16M 2% 89k/s ] rels: [ 0 0% 0/s ] features: [ 618M 524k/s ] 48G blocks: [ 12k 66% <1/s ]
+ cpus: 7.2 gc: 2% heap: 6.4G/21G direct: 61M postGC: 4.4G relInfo: 962M mpGeoms: 218M
+ read( 0%) -> (11/26) -> process(45% 45% 45% 44% 45% 44% 46% 44% 44% 44% 44% 50% 42% 48% 44%) -> (7.2k/66k) -> write(19%)
+0:21:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 18M 2% 114k/s ] rels: [ 0 0% 0/s ] features: [ 624M 614k/s ] 48G blocks: [ 12k 66% 1/s ]
+ cpus: 9.2 gc: 3% heap: 6.1G/21G direct: 61M postGC: 5.2G relInfo: 962M mpGeoms: 243M
+ read( 0%) -> (11/26) -> process(56% 53% 57% 63% 51% 53% 68% 56% 55% 55% 63% 62% 54% 53% 54%) -> (6.2k/66k) -> write(22%)
+0:21:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 19M 2% 110k/s ] rels: [ 0 0% 0/s ] features: [ 630M 591k/s ] 49G blocks: [ 12k 66% 1/s ]
+ cpus: 8.5 gc: 2% heap: 10G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 262M
+ read( 0%) -> (11/26) -> process(53% 49% 46% 60% 50% 53% 50% 54% 52% 56% 63% 57% 54% 49% 51%) -> (8.7k/66k) -> write(21%)
+0:22:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 20M 2% 111k/s ] rels: [ 0 0% 0/s ] features: [ 636M 606k/s ] 50G blocks: [ 12k 66% 1/s ]
+ cpus: 8.6 gc: 3% heap: 7.6G/21G direct: 61M postGC: 6.9G relInfo: 962M mpGeoms: 292M
+ read( 0%) -> (11/26) -> process(52% 55% 55% 54% 52% 59% 51% 52% 56% 54% 54% 55% 57% 52% 52%) -> (6.5k/66k) -> write(22%)
+0:22:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 21M 3% 119k/s ] rels: [ 0 0% 0/s ] features: [ 642M 626k/s ] 50G blocks: [ 12k 66% 1/s ]
+ cpus: 9.3 gc: 3% heap: 8.4G/21G direct: 61M postGC: 7.9G relInfo: 962M mpGeoms: 335M
+ read( 0%) -> (11/26) -> process(56% 54% 57% 56% 55% 57% 54% 57% 69% 52% 64% 69% 55% 54% 59%) -> (7.1k/66k) -> write(22%)
+0:22:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 22M 3% 137k/s ] rels: [ 0 0% 0/s ] features: [ 648M 542k/s ] 51G blocks: [ 12k 66% 1/s ]
+ cpus: 9.4 gc: 3% heap: 9.7G/21G direct: 61M postGC: 8.9G relInfo: 962M mpGeoms: 355M
+ read( 0%) -> (11/26) -> process(51% 74% 67% 51% 74% 52% 48% 52% 76% 49% 63% 74% 52% 49% 49%) -> (5.8k/66k) -> write(19%)
+0:22:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 24M 3% 128k/s ] rels: [ 0 0% 0/s ] features: [ 654M 623k/s ] 51G blocks: [ 12k 66% 1/s ]
+ cpus: 9.2 gc: 3% heap: 10G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 385M
+ read( 0%) -> (11/26) -> process(55% 59% 57% 61% 61% 59% 54% 59% 57% 52% 56% 63% 61% 50% 56%) -> (8.9k/66k) -> write(22%)
+0:22:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 25M 3% 122k/s ] rels: [ 0 0% 0/s ] features: [ 660M 557k/s ] 52G blocks: [ 12k 66% 1/s ]
+ cpus: 9.1 gc: 3% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 417M
+ read( 0%) -> (11/26) -> process(58% 57% 52% 52% 62% 63% 53% 59% 58% 55% 61% 65% 54% 51% 52%) -> (7.2k/66k) -> write(19%)
+0:22:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 26M 3% 104k/s ] rels: [ 0 0% 0/s ] features: [ 664M 458k/s ] 52G blocks: [ 12k 66% 1/s ]
+ cpus: 10.7 gc: 2% heap: 10G/21G direct: 61M postGC: 3.1G relInfo: 962M mpGeoms: 457M
+ read( 0%) -> (11/26) -> process(67% 72% 60% 71% 73% 74% 59% 67% 69% 62% 73% 72% 61% 60% 67%) -> (7.1k/66k) -> write(16%)
+0:23:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 27M 3% 83k/s ] rels: [ 0 0% 0/s ] features: [ 668M 410k/s ] 53G blocks: [ 12k 66% <1/s ]
+ cpus: 11.2 gc: 3% heap: 5.8G/21G direct: 61M postGC: 3.4G relInfo: 962M mpGeoms: 492M
+ read( 0%) -> (11/26) -> process(63% 82% 59% 82% 76% 60% 66% 82% 78% 60% 84% 74% 63% 65% 72%) -> (8.7k/66k) -> write(16%)
+0:23:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 28M 3% 93k/s ] rels: [ 0 0% 0/s ] features: [ 673M 446k/s ] 53G blocks: [ 12k 66% 1/s ]
+ cpus: 11 gc: 3% heap: 7.8G/21G direct: 61M postGC: 3.9G relInfo: 962M mpGeoms: 530M
+ read( 0%) -> (11/26) -> process(61% 79% 61% 87% 80% 59% 64% 85% 65% 62% 75% 79% 65% 58% 63%) -> (8.8k/66k) -> write(17%)
+0:23:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 29M 3% 123k/s ] rels: [ 0 0% 0/s ] features: [ 678M 525k/s ] 53G blocks: [ 12k 67% 1/s ]
+ cpus: 10 gc: 4% heap: 5.6G/21G direct: 61M postGC: 5.1G relInfo: 962M mpGeoms: 573M
+ read( 0%) -> (11/26) -> process(63% 67% 54% 66% 65% 58% 57% 84% 54% 59% 75% 59% 56% 60% 53%) -> (8.6k/66k) -> write(19%)
+0:23:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 30M 4% 142k/s ] rels: [ 0 0% 0/s ] features: [ 684M 609k/s ] 54G blocks: [ 12k 67% 1/s ]
+ cpus: 10.1 gc: 3% heap: 8.2G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 599M
+ read( 0%) -> (11/26) -> process(72% 65% 56% 58% 66% 61% 59% 71% 65% 62% 69% 60% 61% 60% 59%) -> (9.5k/66k) -> write(22%)
+0:23:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 32M 4% 147k/s ] rels: [ 0 0% 0/s ] features: [ 690M 592k/s ] 54G blocks: [ 12k 67% 1/s ]
+ cpus: 10.3 gc: 3% heap: 10G/21G direct: 61M postGC: 6.9G relInfo: 962M mpGeoms: 629M
+ read( 0%) -> (11/26) -> process(64% 63% 67% 62% 63% 68% 60% 65% 61% 64% 62% 67% 68% 67% 68%) -> (9.7k/66k) -> write(21%)
+0:23:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 33M 4% 145k/s ] rels: [ 0 0% 0/s ] features: [ 696M 555k/s ] 55G blocks: [ 12k 67% 1/s ]
+ cpus: 9.6 gc: 3% heap: 8.9G/21G direct: 61M postGC: 8G relInfo: 962M mpGeoms: 650M
+ read( 0%) -> (11/26) -> process(60% 59% 66% 59% 57% 59% 60% 55% 60% 58% 57% 57% 72% 58% 56%) -> (7.3k/66k) -> write(20%)
+0:24:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 35M 4% 147k/s ] rels: [ 0 0% 0/s ] features: [ 701M 559k/s ] 55G blocks: [ 12k 67% 1/s ]
+ cpus: 10.8 gc: 4% heap: 9.2G/21G direct: 61M postGC: 9.2G relInfo: 962M mpGeoms: 684M
+ read( 1%) -> (11/26) -> process(73% 67% 68% 72% 64% 73% 71% 62% 69% 62% 73% 65% 61% 67% 67%) -> (5.1k/66k) -> write(20%)
+0:24:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 36M 4% 149k/s ] rels: [ 0 0% 0/s ] features: [ 707M 538k/s ] 56G blocks: [ 12k 67% 1/s ]
+ cpus: 10.9 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 706M
+ read( 0%) -> (11/26) -> process(68% 66% 73% 69% 72% 73% 66% 67% 64% 65% 66% 71% 70% 66% 68%) -> (8.4k/66k) -> write(19%)
+0:24:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 38M 5% 158k/s ] rels: [ 0 0% 0/s ] features: [ 712M 498k/s ] 56G blocks: [ 12k 67% 1/s ]
+ cpus: 10.4 gc: 3% heap: 11G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 722M
+ read( 0%) -> (11/26) -> process(66% 58% 70% 71% 71% 69% 61% 72% 63% 73% 54% 66% 63% 63% 64%) -> (8k/66k) -> write(18%)
+0:24:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 40M 5% 242k/s ] rels: [ 0 0% 0/s ] features: [ 718M 616k/s ] 57G blocks: [ 12k 67% 1/s ]
+ cpus: 12.7 gc: 3% heap: 4.8G/21G direct: 61M postGC: 3.7G relInfo: 962M mpGeoms: 741M
+ read( 0%) -> (11/26) -> process(79% 76% 83% 82% 82% 84% 81% 81% 80% 83% 66% 70% 77% 80% 83%) -> (7.4k/66k) -> write(22%)
+0:24:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 42M 5% 219k/s ] rels: [ 0 0% 0/s ] features: [ 724M 595k/s ] 57G blocks: [ 12k 67% 2/s ]
+ cpus: 11.8 gc: 4% heap: 5.3G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 758M
+ read( 1%) -> (11/26) -> process(70% 74% 71% 74% 72% 72% 77% 74% 76% 75% 73% 71% 76% 71% 79%) -> (8.1k/66k) -> write(21%)
+0:24:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 45M 5% 214k/s ] rels: [ 0 0% 0/s ] features: [ 730M 604k/s ] 57G blocks: [ 12k 67% 1/s ]
+ cpus: 12 gc: 4% heap: 9.9G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 779M
+ read( 0%) -> (11/26) -> process(77% 75% 76% 75% 74% 75% 76% 73% 74% 72% 74% 75% 82% 75% 73%) -> (8.8k/66k) -> write(22%)
+0:25:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 47M 6% 210k/s ] rels: [ 0 0% 0/s ] features: [ 736M 589k/s ] 58G blocks: [ 12k 67% 1/s ]
+ cpus: 11.8 gc: 4% heap: 10G/21G direct: 61M postGC: 7.6G relInfo: 962M mpGeoms: 801M
+ read( 0%) -> (11/26) -> process(73% 75% 71% 74% 72% 77% 75% 76% 71% 72% 75% 75% 80% 71% 74%) -> (5.9k/66k) -> write(21%)
+0:25:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 49M 6% 203k/s ] rels: [ 0 0% 0/s ] features: [ 741M 559k/s ] 58G blocks: [ 12k 68% 1/s ]
+ cpus: 11.7 gc: 4% heap: 10G/21G direct: 61M postGC: 8.7G relInfo: 962M mpGeoms: 826M
+ read( 0%) -> (11/26) -> process(71% 72% 75% 70% 71% 74% 76% 75% 74% 73% 71% 73% 74% 66% 75%) -> (8.7k/66k) -> write(20%)
+0:25:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 51M 6% 192k/s ] rels: [ 0 0% 0/s ] features: [ 747M 549k/s ] 58G blocks: [ 12k 68% 2/s ]
+ cpus: 11.5 gc: 4% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 851M
+ read( 1%) -> (11/26) -> process(73% 71% 71% 70% 71% 71% 73% 71% 73% 68% 73% 75% 72% 71% 74%) -> (8.2k/66k) -> write(20%)
+0:25:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 53M 6% 191k/s ] rels: [ 0 0% 0/s ] features: [ 752M 559k/s ] 59G blocks: [ 12k 68% 1/s ]
+ cpus: 11.3 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 874M
+ read( 1%) -> (11/26) -> process(66% 75% 73% 68% 73% 71% 70% 68% 72% 68% 66% 67% 71% 73% 71%) -> (8.3k/66k) -> write(20%)
+0:25:41 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 54M 7% 174k/s ] rels: [ 0 0% 0/s ] features: [ 758M 532k/s ] 59G blocks: [ 12k 68% 1/s ]
+ cpus: 11.5 gc: 4% heap: 11G/21G direct: 61M postGC: 5.1G relInfo: 962M mpGeoms: 892M
+ read( 0%) -> (11/26) -> process(70% 69% 74% 71% 70% 72% 75% 71% 73% 69% 72% 67% 68% 70% 74%) -> (6.4k/66k) -> write(19%)
+0:25:51 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 56M 7% 166k/s ] rels: [ 0 0% 0/s ] features: [ 763M 509k/s ] 60G blocks: [ 12k 68% 1/s ]
+ cpus: 11.9 gc: 2% heap: 8G/21G direct: 61M postGC: 4.3G relInfo: 962M mpGeoms: 945M
+ read( 0%) -> (11/26) -> process(77% 75% 77% 76% 72% 75% 79% 74% 77% 79% 77% 76% 77% 77% 78%) -> (6k/66k) -> write(19%)
+0:26:01 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 57M 7% 131k/s ] rels: [ 0 0% 0/s ] features: [ 767M 434k/s ] 60G blocks: [ 12k 68% <1/s ]
+ cpus: 12.3 gc: 3% heap: 10G/21G direct: 61M postGC: 4.9G relInfo: 962M mpGeoms: 967M
+ read( 0%) -> (11/26) -> process(77% 78% 83% 81% 84% 76% 71% 76% 85% 78% 69% 81% 79% 81% 78%) -> (7.8k/66k) -> write(17%)
+0:26:11 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 59M 7% 158k/s ] rels: [ 0 0% 0/s ] features: [ 772M 497k/s ] 60G blocks: [ 12k 68% 1/s ]
+ cpus: 11.7 gc: 4% heap: 9.5G/21G direct: 61M postGC: 5.8G relInfo: 962M mpGeoms: 991M
+ read( 1%) -> (11/26) -> process(73% 72% 78% 68% 88% 70% 68% 76% 81% 70% 70% 73% 68% 79% 72%) -> (7.3k/66k) -> write(18%)
+0:26:21 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 61M 7% 194k/s ] rels: [ 0 0% 0/s ] features: [ 778M 574k/s ] 61G blocks: [ 12k 68% 1/s ]
+ cpus: 11.5 gc: 4% heap: 11G/21G direct: 61M postGC: 7.3G relInfo: 962M mpGeoms: 1G
+ read( 1%) -> (11/26) -> process(70% 74% 72% 68% 70% 75% 72% 72% 74% 71% 72% 72% 73% 69% 74%) -> (6.7k/66k) -> write(21%)
+0:26:31 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 62M 7% 149k/s ] rels: [ 0 0% 0/s ] features: [ 783M 480k/s ] 61G blocks: [ 12k 68% 1/s ]
+ cpus: 11.7 gc: 4% heap: 8.7G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 1G
+ read( 0%) -> (11/26) -> process(77% 77% 72% 79% 76% 72% 71% 72% 71% 77% 76% 71% 73% 72% 70%) -> (9.1k/66k) -> write(18%)
+0:26:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 64M 8% 162k/s ] rels: [ 0 0% 0/s ] features: [ 788M 526k/s ] 61G blocks: [ 12k 68% 1/s ]
+ cpus: 11.2 gc: 4% heap: 11G/21G direct: 61M postGC: 9.2G relInfo: 962M mpGeoms: 1G
+ read( 0%) -> (11/26) -> process(68% 69% 71% 77% 71% 67% 70% 71% 69% 74% 72% 70% 73% 69% 65%) -> (8.3k/66k) -> write(19%)
+0:26:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 66M 8% 169k/s ] rels: [ 0 0% 0/s ] features: [ 793M 541k/s ] 62G blocks: [ 12k 68% 1/s ]
+ cpus: 10.9 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 1G
+ read( 1%) -> (11/26) -> process(68% 67% 70% 65% 72% 69% 68% 67% 67% 67% 67% 68% 70% 68% 71%) -> (6.5k/66k) -> write(20%)
+0:27:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 67M 8% 180k/s ] rels: [ 0 0% 0/s ] features: [ 799M 540k/s ] 62G blocks: [ 12k 69% 1/s ]
+ cpus: 11.1 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 1.1G
+ read( 0%) -> (11/26) -> process(67% 68% 70% 70% 68% 68% 69% 74% 65% 68% 69% 71% 66% 72% 75%) -> (7k/66k) -> write(19%)
+0:27:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 69M 8% 166k/s ] rels: [ 0 0% 0/s ] features: [ 804M 524k/s ] 63G blocks: [ 12k 69% 1/s ]
+ cpus: 11.2 gc: 3% heap: 10G/21G direct: 61M postGC: 3.2G relInfo: 962M mpGeoms: 1.1G
+ read( 1%) -> (11/26) -> process(75% 69% 68% 73% 67% 69% 66% 69% 68% 71% 68% 71% 67% 74% 68%) -> (8.1k/66k) -> write(18%)
+0:27:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 71M 8% 168k/s ] rels: [ 0 0% 0/s ] features: [ 810M 541k/s ] 63G blocks: [ 12k 69% 1/s ]
+ cpus: 11.4 gc: 4% heap: 5.4G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 1.1G
+ read( 0%) -> (11/26) -> process(70% 70% 75% 75% 70% 70% 74% 76% 71% 72% 73% 70% 71% 68% 73%) -> (10k/66k) -> write(20%)
+0:27:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 72M 9% 167k/s ] rels: [ 0 0% 0/s ] features: [ 815M 550k/s ] 63G blocks: [ 12k 69% 1/s ]
+ cpus: 11.3 gc: 4% heap: 6.6G/21G direct: 61M postGC: 5.4G relInfo: 962M mpGeoms: 1.1G
+ read( 0%) -> (11/26) -> process(71% 71% 73% 68% 73% 67% 70% 74% 69% 69% 74% 70% 69% 71% 73%) -> (7.4k/66k) -> write(20%)
+0:27:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 74M 9% 191k/s ] rels: [ 0 0% 0/s ] features: [ 821M 597k/s ] 64G blocks: [ 12k 69% 1/s ]
+ cpus: 10.7 gc: 4% heap: 8.9G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 1.2G
+ read( 0%) -> (11/26) -> process(68% 68% 69% 66% 64% 63% 63% 67% 66% 67% 68% 68% 70% 66% 69%) -> (9.6k/66k) -> write(21%)
+0:27:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 76M 9% 201k/s ] rels: [ 0 0% 0/s ] features: [ 827M 611k/s ] 64G blocks: [ 12k 69% 1/s ]
+ cpus: 11.1 gc: 4% heap: 11G/21G direct: 61M postGC: 7.7G relInfo: 962M mpGeoms: 1.2G
+ read( 0%) -> (11/26) -> process(69% 65% 71% 66% 68% 69% 63% 71% 66% 72% 74% 71% 73% 70% 75%) -> (7.5k/66k) -> write(22%)
+0:28:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 78M 9% 205k/s ] rels: [ 0 0% 0/s ] features: [ 834M 665k/s ] 65G blocks: [ 12k 69% 1/s ]
+ cpus: 11.2 gc: 4% heap: 10G/21G direct: 61M postGC: 9.1G relInfo: 962M mpGeoms: 1.2G
+ read( 0%) -> (11/26) -> process(68% 67% 67% 67% 68% 70% 71% 66% 68% 70% 73% 69% 71% 72% 74%) -> (10k/66k) -> write(23%)
+0:28:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 80M 10% 183k/s ] rels: [ 0 0% 0/s ] features: [ 840M 602k/s ] 65G blocks: [ 12k 69% 1/s ]
+ cpus: 10.5 gc: 4% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 1.2G
+ read( 0%) -> (11/26) -> process(62% 65% 62% 67% 66% 66% 65% 63% 65% 62% 67% 66% 65% 68% 68%) -> (7.2k/66k) -> write(21%)
+0:28:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 82M 10% 188k/s ] rels: [ 0 0% 0/s ] features: [ 846M 616k/s ] 66G blocks: [ 13k 69% 2/s ]
+ cpus: 11 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 1.2G
+ read( 1%) -> (11/26) -> process(66% 68% 73% 68% 71% 72% 68% 67% 68% 68% 66% 67% 67% 71% 70%) -> (7.5k/66k) -> write(22%)
+0:28:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 84M 10% 189k/s ] rels: [ 0 0% 0/s ] features: [ 852M 620k/s ] 66G blocks: [ 13k 69% 1/s ]
+ cpus: 11.1 gc: 5% heap: 6.4G/21G direct: 61M postGC: 5.1G relInfo: 962M mpGeoms: 1.3G
+ read( 0%) -> (11/26) -> process(70% 68% 65% 67% 70% 65% 68% 66% 70% 68% 63% 67% 70% 68% 67%) -> (7.4k/66k) -> write(21%)
+0:28:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 86M 10% 208k/s ] rels: [ 0 0% 0/s ] features: [ 859M 658k/s ] 66G blocks: [ 13k 69% 1/s ]
+ cpus: 11.5 gc: 3% heap: 10G/21G direct: 61M postGC: 4.4G relInfo: 962M mpGeoms: 1.3G
+ read( 0%) -> (11/26) -> process(71% 72% 75% 73% 71% 69% 71% 71% 74% 71% 72% 73% 74% 75% 72%) -> (8.7k/66k) -> write(23%)
+0:28:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 88M 11% 194k/s ] rels: [ 0 0% 0/s ] features: [ 865M 627k/s ] 67G blocks: [ 13k 70% 1/s ]
+ cpus: 10.9 gc: 4% heap: 10G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 1.3G
+ read( 0%) -> (11/26) -> process(71% 68% 68% 69% 65% 68% 65% 69% 66% 65% 68% 69% 69% 73% 67%) -> (8.8k/66k) -> write(22%)
+0:29:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 90M 11% 191k/s ] rels: [ 0 0% 0/s ] features: [ 871M 614k/s ] 67G blocks: [ 13k 70% 1/s ]
+ cpus: 10.8 gc: 4% heap: 8.1G/21G direct: 61M postGC: 6.6G relInfo: 962M mpGeoms: 1.3G
+ read( 0%) -> (11/26) -> process(67% 67% 66% 66% 63% 67% 67% 66% 70% 66% 69% 64% 70% 67% 71%) -> (8.3k/66k) -> write(22%)
+0:29:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 92M 11% 173k/s ] rels: [ 0 0% 0/s ] features: [ 877M 534k/s ] 68G blocks: [ 13k 70% 1/s ]
+ cpus: 10.3 gc: 3% heap: 9.4G/21G direct: 61M postGC: 7.7G relInfo: 962M mpGeoms: 1.3G
+ read( 0%) -> (11/26) -> process(65% 62% 66% 66% 67% 67% 64% 68% 60% 64% 64% 67% 65% 62% 62%) -> (6.4k/66k) -> write(19%)
+0:29:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 94M 11% 183k/s ] rels: [ 0 0% 0/s ] features: [ 883M 587k/s ] 68G blocks: [ 13k 70% 1/s ]
+ cpus: 11.6 gc: 4% heap: 11G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 1.4G
+ read( 0%) -> (11/26) -> process(73% 71% 69% 72% 72% 74% 78% 73% 74% 74% 71% 71% 71% 74% 69%) -> (6.2k/66k) -> write(21%)
+0:29:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 95M 11% 181k/s ] rels: [ 0 0% 0/s ] features: [ 888M 580k/s ] 69G blocks: [ 13k 70% 1/s ]
+ cpus: 11.5 gc: 4% heap: 10G/21G direct: 61M postGC: 9.9G relInfo: 962M mpGeoms: 1.4G
+ read( 0%) -> (11/26) -> process(72% 69% 69% 72% 73% 74% 74% 71% 70% 74% 72% 68% 72% 74% 74%) -> (8.5k/66k) -> write(21%)
+0:29:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 97M 12% 184k/s ] rels: [ 0 0% 0/s ] features: [ 894M 571k/s ] 69G blocks: [ 13k 70% 1/s ]
+ cpus: 11.5 gc: 4% heap: 11G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 1.4G
+ read( 0%) -> (11/26) -> process(72% 70% 71% 73% 71% 71% 70% 75% 74% 75% 71% 71% 68% 69% 74%) -> (8.8k/66k) -> write(20%)
+0:29:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 99M 12% 198k/s ] rels: [ 0 0% 0/s ] features: [ 900M 587k/s ] 69G blocks: [ 13k 70% 1/s ]
+ cpus: 11.8 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 1.4G
+ read( 0%) -> (11/26) -> process(76% 76% 76% 79% 74% 73% 70% 74% 74% 72% 71% 75% 74% 73% 72%) -> (6.7k/66k) -> write(20%)
+0:30:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 101M 12% 181k/s ] rels: [ 0 0% 0/s ] features: [ 906M 564k/s ] 70G blocks: [ 13k 70% 1/s ]
+ cpus: 11.5 gc: 2% heap: 11G/21G direct: 61M postGC: 3.8G relInfo: 962M mpGeoms: 1.5G
+ read( 0%) -> (11/26) -> process(74% 72% 72% 73% 71% 70% 70% 73% 68% 72% 71% 70% 75% 67% 77%) -> (9k/66k) -> write(20%)
+0:30:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 103M 12% 200k/s ] rels: [ 0 0% 0/s ] features: [ 912M 612k/s ] 70G blocks: [ 13k 70% 1/s ]
+ cpus: 11.2 gc: 4% heap: 9.6G/21G direct: 61M postGC: 5.1G relInfo: 962M mpGeoms: 1.5G
+ read( 0%) -> (11/26) -> process(69% 69% 70% 68% 75% 69% 75% 67% 71% 63% 71% 68% 75% 69% 71%) -> (9.1k/66k) -> write(22%)
+0:30:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 105M 13% 192k/s ] rels: [ 0 0% 0/s ] features: [ 918M 600k/s ] 71G blocks: [ 13k 70% 1/s ]
+ cpus: 11.3 gc: 4% heap: 11G/21G direct: 61M postGC: 6.3G relInfo: 962M mpGeoms: 1.6G
+ read( 0%) -> (11/26) -> process(70% 70% 71% 67% 68% 72% 70% 70% 71% 72% 66% 72% 70% 68% 78%) -> (8.4k/66k) -> write(21%)
+0:30:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 107M 13% 190k/s ] rels: [ 0 0% 0/s ] features: [ 924M 587k/s ] 71G blocks: [ 13k 70% 1/s ]
+ cpus: 11.1 gc: 4% heap: 7.6G/21G direct: 61M postGC: 7.6G relInfo: 962M mpGeoms: 1.6G
+ read( 0%) -> (11/26) -> process(67% 68% 67% 71% 65% 72% 70% 70% 67% 70% 67% 70% 69% 69% 71%) -> (8.3k/66k) -> write(21%)
+0:30:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 109M 13% 185k/s ] rels: [ 0 0% 0/s ] features: [ 929M 578k/s ] 71G blocks: [ 13k 70% 1/s ]
+ cpus: 10.5 gc: 4% heap: 10G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 1.6G
+ read( 0%) -> (11/26) -> process(69% 67% 66% 66% 62% 64% 67% 66% 64% 66% 66% 65% 64% 69% 62%) -> (7.7k/66k) -> write(21%)
+0:30:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 111M 13% 201k/s ] rels: [ 0 0% 0/s ] features: [ 936M 645k/s ] 72G blocks: [ 13k 71% 1/s ]
+ cpus: 11.2 gc: 4% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 1.6G
+ read( 0%) -> (11/26) -> process(68% 69% 70% 69% 70% 72% 69% 74% 70% 71% 70% 71% 68% 70% 66%) -> (6.9k/66k) -> write(23%)
+0:31:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 113M 13% 188k/s ] rels: [ 0 0% 0/s ] features: [ 942M 608k/s ] 72G blocks: [ 13k 71% 1/s ]
+ cpus: 11.1 gc: 4% heap: 11G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 1.6G
+ read( 0%) -> (11/26) -> process(69% 71% 68% 70% 68% 67% 69% 67% 68% 67% 74% 68% 67% 73% 68%) -> (8.5k/66k) -> write(22%)
+0:31:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 115M 14% 183k/s ] rels: [ 0 0% 0/s ] features: [ 948M 597k/s ] 73G blocks: [ 13k 71% 1/s ]
+ cpus: 10.8 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 1.7G
+ read( 0%) -> (11/26) -> process(68% 69% 67% 67% 67% 68% 68% 67% 68% 71% 64% 69% 69% 68% 68%) -> (7.4k/66k) -> write(21%)
+0:31:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 116M 14% 176k/s ] rels: [ 0 0% 0/s ] features: [ 954M 558k/s ] 73G blocks: [ 13k 71% 1/s ]
+ cpus: 10.5 gc: 3% heap: 6.3G/21G direct: 61M postGC: 3.7G relInfo: 962M mpGeoms: 1.7G
+ read( 0%) -> (11/26) -> process(63% 61% 64% 63% 64% 63% 64% 67% 66% 71% 67% 63% 68% 67% 63%) -> (8.3k/66k) -> write(19%)
+0:31:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 118M 14% 202k/s ] rels: [ 0 0% 0/s ] features: [ 960M 641k/s ] 74G blocks: [ 13k 71% 1/s ]
+ cpus: 11.1 gc: 3% heap: 7.6G/21G direct: 61M postGC: 4.9G relInfo: 962M mpGeoms: 1.7G
+ read( 0%) -> (11/26) -> process(70% 71% 67% 69% 66% 76% 67% 67% 73% 68% 70% 73% 71% 71% 71%) -> (6.9k/66k) -> write(22%)
+0:31:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 120M 14% 190k/s ] rels: [ 0 0% 0/s ] features: [ 966M 599k/s ] 74G blocks: [ 13k 71% 1/s ]
+ cpus: 10.7 gc: 3% heap: 10G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 1.7G
+ read( 0%) -> (11/26) -> process(66% 70% 66% 66% 66% 66% 69% 68% 67% 66% 65% 67% 66% 67% 69%) -> (6.9k/66k) -> write(22%)
+0:31:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 122M 15% 181k/s ] rels: [ 0 0% 0/s ] features: [ 972M 574k/s ] 74G blocks: [ 13k 71% 1/s ]
+ cpus: 10.3 gc: 4% heap: 13G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 1.7G
+ read( 0%) -> (11/26) -> process(63% 63% 63% 64% 70% 63% 64% 62% 64% 63% 61% 66% 66% 62% 66%) -> (6k/66k) -> write(21%)
+0:32:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 124M 15% 181k/s ] rels: [ 0 0% 0/s ] features: [ 978M 623k/s ] 75G blocks: [ 13k 71% 1/s ]
+ cpus: 10.5 gc: 4% heap: 9.6G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 1.8G
+ read( 0%) -> (11/26) -> process(69% 63% 63% 67% 63% 62% 66% 67% 63% 68% 64% 64% 65% 64% 68%) -> (7k/66k) -> write(22%)
+0:32:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 126M 15% 168k/s ] rels: [ 0 0% 0/s ] features: [ 984M 573k/s ] 75G blocks: [ 13k 71% 1/s ]
+ cpus: 9.9 gc: 3% heap: 12G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 1.8G
+ read( 0%) -> (11/26) -> process(62% 59% 65% 64% 60% 64% 59% 67% 59% 60% 65% 63% 61% 62% 60%) -> (8.9k/66k) -> write(20%)
+0:32:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 127M 15% 182k/s ] rels: [ 0 0% 0/s ] features: [ 990M 581k/s ] 76G blocks: [ 13k 71% 1/s ]
+ cpus: 10.5 gc: 3% heap: 13G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 1.8G
+ read( 0%) -> (11/26) -> process(66% 64% 66% 68% 65% 63% 68% 67% 67% 64% 69% 64% 66% 61% 68%) -> (9k/66k) -> write(21%)
+0:32:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 129M 15% 180k/s ] rels: [ 0 0% 0/s ] features: [ 995M 565k/s ] 76G blocks: [ 13k 71% 1/s ]
+ cpus: 10.5 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 1.8G
+ read( 0%) -> (11/26) -> process(65% 65% 66% 68% 63% 67% 68% 63% 64% 65% 63% 67% 65% 64% 65%) -> (9.6k/66k) -> write(20%)
+0:32:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 131M 16% 187k/s ] rels: [ 0 0% 0/s ] features: [ 1B 596k/s ] 76G blocks: [ 13k 71% 1/s ]
+ cpus: 11 gc: 3% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 1.8G
+ read( 0%) -> (11/26) -> process(65% 67% 72% 71% 72% 74% 69% 65% 67% 66% 68% 74% 71% 68% 70%) -> (7.2k/66k) -> write(21%)
+0:32:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 133M 16% 175k/s ] rels: [ 0 0% 0/s ] features: [ 1B 557k/s ] 77G blocks: [ 13k 71% 1/s ]
+ cpus: 11.1 gc: 3% heap: 3.7G/21G direct: 61M postGC: 3.6G relInfo: 962M mpGeoms: 1.9G
+ read( 0%) -> (11/26) -> process(68% 67% 69% 73% 66% 72% 71% 66% 66% 69% 64% 68% 72% 70% 68%) -> (8.4k/66k) -> write(20%)
+0:33:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 134M 16% 155k/s ] rels: [ 0 0% 0/s ] features: [ 1B 492k/s ] 77G blocks: [ 13k 72% 1/s ]
+ cpus: 10.3 gc: 3% heap: 4.8G/21G direct: 61M postGC: 4.7G relInfo: 962M mpGeoms: 1.9G
+ read( 0%) -> (11/26) -> process(61% 63% 64% 65% 61% 65% 69% 69% 64% 66% 64% 66% 68% 63% 64%) -> (7.7k/66k) -> write(18%)
+0:33:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 136M 16% 183k/s ] rels: [ 0 0% 0/s ] features: [ 1B 580k/s ] 78G blocks: [ 13k 72% 1/s ]
+ cpus: 11.6 gc: 3% heap: 12G/21G direct: 61M postGC: 5.7G relInfo: 962M mpGeoms: 1.9G
+ read( 0%) -> (11/26) -> process(73% 73% 73% 76% 70% 78% 71% 76% 69% 74% 71% 73% 70% 75% 76%) -> (7.2k/66k) -> write(21%)
+0:33:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 138M 16% 197k/s ] rels: [ 0 0% 0/s ] features: [ 1B 603k/s ] 78G blocks: [ 13k 72% 1/s ]
+ cpus: 11.5 gc: 4% heap: 9.3G/21G direct: 61M postGC: 7.1G relInfo: 962M mpGeoms: 1.9G
+ read( 0%) -> (11/26) -> process(72% 73% 73% 69% 69% 71% 69% 73% 70% 71% 76% 71% 70% 72% 71%) -> (10k/66k) -> write(21%)
+0:33:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 140M 17% 195k/s ] rels: [ 0 0% 0/s ] features: [ 1B 592k/s ] 78G blocks: [ 13k 72% 1/s ]
+ cpus: 11.2 gc: 4% heap: 12G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 2G
+ read( 0%) -> (11/26) -> process(72% 70% 69% 68% 75% 70% 72% 71% 69% 69% 70% 68% 70% 69% 71%) -> (7.5k/66k) -> write(21%)
+0:33:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 142M 17% 200k/s ] rels: [ 0 0% 0/s ] features: [ 1B 613k/s ] 79G blocks: [ 13k 72% 1/s ]
+ cpus: 11.7 gc: 4% heap: 12G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 2G
+ read( 0%) -> (11/26) -> process(75% 72% 72% 73% 73% 74% 71% 72% 71% 75% 72% 74% 76% 72% 75%) -> (7.7k/66k) -> write(22%)
+0:33:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 144M 17% 204k/s ] rels: [ 0 0% 0/s ] features: [ 1B 625k/s ] 79G blocks: [ 13k 72% 1/s ]
+ cpus: 11.6 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 2G
+ read( 0%) -> (11/26) -> process(70% 72% 72% 77% 72% 76% 76% 73% 70% 72% 73% 71% 74% 71% 69%) -> (8.3k/66k) -> write(22%)
+0:34:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 146M 17% 197k/s ] rels: [ 0 0% 0/s ] features: [ 1B 613k/s ] 80G blocks: [ 13k 72% 1/s ]
+ cpus: 11 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 2G
+ read( 0%) -> (11/26) -> process(68% 72% 67% 67% 70% 68% 68% 70% 68% 69% 66% 67% 67% 69% 72%) -> (8.2k/66k) -> write(22%)
+0:34:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 148M 18% 175k/s ] rels: [ 0 0% 0/s ] features: [ 1B 546k/s ] 80G blocks: [ 13k 72% 1/s ]
+ cpus: 10.5 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 2.1G
+ read( 0%) -> (11/26) -> process(67% 66% 66% 67% 64% 64% 66% 66% 66% 66% 64% 64% 62% 66% 67%) -> (6.3k/66k) -> write(19%)
+0:34:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 150M 18% 183k/s ] rels: [ 0 0% 0/s ] features: [ 1B 564k/s ] 80G blocks: [ 13k 72% 1/s ]
+ cpus: 11.1 gc: 3% heap: 7.6G/21G direct: 61M postGC: 3.6G relInfo: 962M mpGeoms: 2.1G
+ read( 0%) -> (11/26) -> process(67% 70% 68% 71% 71% 66% 69% 69% 68% 67% 70% 72% 66% 74% 66%) -> (9.2k/66k) -> write(20%)
+0:34:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 152M 18% 192k/s ] rels: [ 0 0% 0/s ] features: [ 1B 598k/s ] 81G blocks: [ 13k 72% 1/s ]
+ cpus: 11.1 gc: 3% heap: 5.5G/21G direct: 61M postGC: 4.8G relInfo: 962M mpGeoms: 2.1G
+ read( 0%) -> (11/26) -> process(67% 71% 73% 68% 70% 71% 70% 73% 70% 69% 70% 69% 70% 70% 70%) -> (7.3k/66k) -> write(21%)
+0:34:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 154M 18% 191k/s ] rels: [ 0 0% 0/s ] features: [ 1B 587k/s ] 81G blocks: [ 13k 72% 1/s ]
+ cpus: 10.8 gc: 4% heap: 9.2G/21G direct: 61M postGC: 5.9G relInfo: 962M mpGeoms: 2.1G
+ read( 0%) -> (11/26) -> process(68% 70% 66% 66% 70% 71% 69% 69% 63% 68% 69% 66% 66% 69% 65%) -> (6.9k/66k) -> write(21%)
+0:34:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 156M 19% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1B 635k/s ] 82G blocks: [ 13k 72% 1/s ]
+ cpus: 11.7 gc: 4% heap: 10G/21G direct: 61M postGC: 7.2G relInfo: 962M mpGeoms: 2.1G
+ read( 0%) -> (11/26) -> process(75% 73% 78% 70% 70% 73% 73% 78% 71% 78% 71% 72% 69% 69% 75%) -> (7.4k/66k) -> write(22%)
+0:35:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 158M 19% 230k/s ] rels: [ 0 0% 0/s ] features: [ 1B 686k/s ] 82G blocks: [ 13k 73% 1/s ]
+ cpus: 12.5 gc: 5% heap: 12G/21G direct: 61M postGC: 8.5G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(82% 71% 73% 80% 72% 75% 80% 83% 81% 81% 83% 79% 74% 80% 74%) -> (6.3k/66k) -> write(24%)
+0:35:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 160M 19% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1B 661k/s ] 82G blocks: [ 13k 73% 1/s ]
+ cpus: 12.2 gc: 4% heap: 11G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(85% 76% 79% 74% 82% 70% 71% 78% 76% 72% 74% 82% 80% 70% 74%) -> (5.4k/66k) -> write(23%)
+0:35:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 162M 19% 173k/s ] rels: [ 0 0% 0/s ] features: [ 1B 528k/s ] 83G blocks: [ 13k 73% 1/s ]
+ cpus: 10.1 gc: 3% heap: 12G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(66% 63% 60% 64% 62% 60% 62% 66% 60% 61% 61% 67% 70% 59% 62%) -> (6.8k/66k) -> write(19%)
+0:35:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 164M 20% 192k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 571k/s ] 83G blocks: [ 13k 73% 1/s ]
+ cpus: 10.9 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(68% 67% 67% 67% 69% 68% 67% 72% 67% 69% 70% 67% 66% 65% 67%) -> (7.2k/66k) -> write(20%)
+0:35:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 166M 20% 174k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 545k/s ] 84G blocks: [ 13k 73% 1/s ]
+ cpus: 10.5 gc: 3% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(70% 64% 69% 64% 63% 66% 72% 64% 66% 70% 69% 66% 66% 63% 63%) -> (8.3k/66k) -> write(19%)
+0:35:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 167M 20% 173k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 538k/s ] 84G blocks: [ 13k 73% 1/s ]
+ cpus: 10.6 gc: 2% heap: 3.8G/21G direct: 61M postGC: 3.8G relInfo: 962M mpGeoms: 2.2G
+ read( 0%) -> (11/26) -> process(65% 62% 64% 68% 65% 65% 63% 68% 66% 69% 66% 66% 64% 67% 66%) -> (6.5k/66k) -> write(19%)
+0:36:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 169M 20% 191k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 603k/s ] 84G blocks: [ 13k 73% 1/s ]
+ cpus: 11.4 gc: 3% heap: 9.6G/21G direct: 61M postGC: 5G relInfo: 962M mpGeoms: 2.3G
+ read( 0%) -> (11/26) -> process(70% 69% 71% 69% 77% 70% 72% 79% 74% 72% 75% 68% 71% 70% 73%) -> (7.7k/66k) -> write(22%)
+0:36:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 171M 20% 182k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 571k/s ] 85G blocks: [ 13k 73% 1/s ]
+ cpus: 11.1 gc: 3% heap: 11G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 2.3G
+ read( 0%) -> (11/26) -> process(69% 69% 74% 68% 67% 76% 71% 79% 73% 67% 67% 67% 69% 69% 70%) -> (8.6k/66k) -> write(21%)
+0:36:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 173M 21% 187k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 591k/s ] 85G blocks: [ 13k 73% 1/s ]
+ cpus: 10.9 gc: 3% heap: 13G/21G direct: 61M postGC: 7.1G relInfo: 962M mpGeoms: 2.3G
+ read( 0%) -> (11/26) -> process(73% 67% 67% 70% 66% 70% 67% 71% 66% 67% 68% 67% 69% 68% 69%) -> (7.6k/66k) -> write(21%)
+0:36:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 175M 21% 182k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 569k/s ] 86G blocks: [ 13k 73% 1/s ]
+ cpus: 11.1 gc: 4% heap: 10G/21G direct: 61M postGC: 8.4G relInfo: 962M mpGeoms: 2.3G
+ read( 0%) -> (11/26) -> process(69% 68% 66% 71% 67% 71% 68% 70% 66% 70% 82% 67% 68% 67% 68%) -> (8.3k/66k) -> write(21%)
+0:36:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 177M 21% 183k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 532k/s ] 86G blocks: [ 13k 73% 1/s ]
+ cpus: 10.4 gc: 3% heap: 13G/21G direct: 61M postGC: 9.5G relInfo: 962M mpGeoms: 2.4G
+ read( 0%) -> (11/26) -> process(63% 68% 66% 67% 65% 67% 62% 67% 64% 66% 67% 69% 67% 64% 66%) -> (8.9k/66k) -> write(19%)
+0:36:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 179M 21% 183k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 544k/s ] 86G blocks: [ 13k 73% 1/s ]
+ cpus: 10.5 gc: 4% heap: 13G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 2.4G
+ read( 0%) -> (11/26) -> process(63% 67% 67% 66% 65% 68% 65% 67% 66% 64% 67% 70% 64% 63% 67%) -> (7.9k/66k) -> write(19%)
+0:37:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 180M 21% 181k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 542k/s ] 87G blocks: [ 13k 74% 1/s ]
+ cpus: 10.3 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 2.4G
+ read( 0%) -> (10/26) -> process(63% 62% 64% 64% 66% 63% 64% 68% 64% 63% 64% 65% 66% 63% 63%) -> (4.7k/66k) -> write(19%)
+0:37:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 182M 22% 191k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 565k/s ] 87G blocks: [ 13k 74% 1/s ]
+ cpus: 10.7 gc: 4% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 2.4G
+ read( 0%) -> (11/26) -> process(67% 64% 67% 66% 67% 65% 64% 70% 68% 66% 68% 67% 65% 66% 65%) -> (6.2k/66k) -> write(20%)
+0:37:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 184M 22% 188k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 545k/s ] 87G blocks: [ 13k 74% 1/s ]
+ cpus: 10.6 gc: 3% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 2.4G
+ read( 0%) -> (11/26) -> process(66% 66% 65% 67% 66% 66% 67% 66% 70% 64% 68% 66% 66% 65% 67%) -> (7.1k/66k) -> write(19%)
+0:37:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 186M 22% 213k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 601k/s ] 88G blocks: [ 13k 74% 1/s ]
+ cpus: 11.7 gc: 3% heap: 8.3G/21G direct: 61M postGC: 4.6G relInfo: 962M mpGeoms: 2.5G
+ read( 0%) -> (11/26) -> process(71% 72% 72% 73% 72% 71% 73% 72% 73% 71% 73% 75% 71% 75% 75%) -> (6.1k/66k) -> write(21%)
+0:37:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 188M 22% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 629k/s ] 88G blocks: [ 13k 74% 1/s ]
+ cpus: 11.9 gc: 5% heap: 8.2G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 2.5G
+ read( 0%) -> (11/26) -> process(72% 72% 73% 72% 76% 73% 73% 74% 77% 73% 75% 71% 73% 75% 75%) -> (7.6k/66k) -> write(22%)
+0:37:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 190M 23% 201k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 587k/s ] 88G blocks: [ 13k 74% 1/s ]
+ cpus: 11.2 gc: 4% heap: 7.2G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 2.5G
+ read( 0%) -> (11/26) -> process(69% 74% 71% 70% 71% 70% 69% 71% 66% 70% 70% 69% 68% 69% 68%) -> (7.9k/66k) -> write(21%)
+0:38:02 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 193M 23% 208k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 615k/s ] 89G blocks: [ 13k 74% 1/s ]
+ cpus: 11.6 gc: 5% heap: 8.6G/21G direct: 61M postGC: 8.6G relInfo: 962M mpGeoms: 2.5G
+ read( 0%) -> (11/26) -> process(73% 73% 76% 72% 72% 71% 71% 73% 72% 72% 72% 72% 71% 73% 70%) -> (7.3k/66k) -> write(22%)
+0:38:12 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 195M 23% 199k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 602k/s ] 89G blocks: [ 13k 74% 1/s ]
+ cpus: 11.2 gc: 4% heap: 10G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 2.5G
+ read( 0%) -> (11/26) -> process(69% 67% 71% 68% 71% 71% 69% 73% 70% 70% 70% 70% 68% 70% 71%) -> (8.3k/66k) -> write(21%)
+0:38:22 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 197M 23% 204k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 586k/s ] 90G blocks: [ 13k 74% 1/s ]
+ cpus: 11.7 gc: 4% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 2.6G
+ read( 0%) -> (11/26) -> process(73% 70% 73% 74% 74% 74% 75% 73% 73% 75% 74% 71% 71% 73% 73%) -> (8.6k/66k) -> write(21%)
+0:38:32 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 198M 24% 181k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 530k/s ] 90G blocks: [ 13k 74% 1/s ]
+ cpus: 11.2 gc: 4% heap: 14G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 2.6G
+ read( 0%) -> (11/26) -> process(72% 71% 66% 71% 70% 71% 73% 68% 67% 68% 71% 71% 71% 68% 71%) -> (6k/66k) -> write(19%)
+0:38:42 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 201M 24% 207k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 587k/s ] 90G blocks: [ 13k 74% 1/s ]
+ cpus: 11.7 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 2.6G
+ read( 0%) -> (11/26) -> process(74% 76% 70% 73% 72% 74% 73% 73% 78% 71% 72% 73% 71% 73% 74%) -> (6.4k/66k) -> write(21%)
+0:38:52 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 203M 24% 212k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 583k/s ] 91G blocks: [ 13k 74% 1/s ]
+ cpus: 12.1 gc: 3% heap: 11G/21G direct: 61M postGC: 3.7G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(75% 74% 74% 77% 74% 76% 76% 76% 73% 76% 75% 75% 77% 79% 75%) -> (8.6k/66k) -> write(20%)
+0:39:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 205M 24% 239k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 619k/s ] 91G blocks: [ 13k 75% 1/s ]
+ cpus: 12.6 gc: 4% heap: 13G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(82% 79% 81% 78% 80% 79% 79% 78% 77% 75% 77% 76% 77% 77% 79%) -> (7.7k/66k) -> write(22%)
+0:39:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 207M 25% 236k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 599k/s ] 91G blocks: [ 14k 75% 2/s ]
+ cpus: 12.4 gc: 6% heap: 8.8G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(79% 77% 78% 76% 79% 80% 76% 78% 75% 80% 75% 79% 73% 78% 77%) -> (6.5k/66k) -> write(22%)
+0:39:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 210M 25% 225k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 588k/s ] 92G blocks: [ 14k 75% 1/s ]
+ cpus: 12.3 gc: 5% heap: 11G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(77% 78% 77% 75% 75% 78% 79% 75% 78% 76% 81% 78% 74% 79% 77%) -> (7.9k/66k) -> write(21%)
+0:39:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 212M 25% 227k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 599k/s ] 92G blocks: [ 14k 75% 1/s ]
+ cpus: 12.1 gc: 5% heap: 10G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(74% 75% 75% 74% 75% 74% 76% 75% 76% 75% 73% 75% 75% 75% 75%) -> (7.1k/66k) -> write(21%)
+0:39:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 214M 26% 231k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 615k/s ] 92G blocks: [ 14k 75% 2/s ]
+ cpus: 12.2 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 2.8G
+ read( 0%) -> (11/26) -> process(77% 78% 76% 76% 77% 74% 72% 71% 75% 77% 72% 79% 77% 78% 74%) -> (5.6k/66k) -> write(22%)
+0:39:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 217M 26% 231k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 605k/s ] 93G blocks: [ 14k 75% 1/s ]
+ cpus: 12.2 gc: 5% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(78% 74% 75% 76% 79% 76% 78% 76% 77% 73% 78% 77% 74% 74% 73%) -> (8k/66k) -> write(21%)
+0:40:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 219M 26% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 571k/s ] 93G blocks: [ 14k 75% 1/s ]
+ cpus: 11.6 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(73% 73% 72% 71% 73% 71% 74% 71% 72% 79% 75% 71% 72% 71% 73%) -> (9.8k/66k) -> write(20%)
+0:40:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 221M 26% 208k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 569k/s ] 93G blocks: [ 14k 75% 1/s ]
+ cpus: 11.8 gc: 3% heap: 4.6G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(73% 72% 73% 70% 70% 78% 78% 73% 72% 76% 72% 73% 72% 74% 71%) -> (6.4k/66k) -> write(21%)
+0:40:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 223M 27% 204k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 573k/s ] 94G blocks: [ 14k 75% 1/s ]
+ cpus: 11.4 gc: 4% heap: 5.9G/21G direct: 61M postGC: 5.8G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(72% 71% 73% 68% 72% 75% 72% 68% 73% 71% 72% 68% 69% 72% 71%) -> (6.4k/66k) -> write(21%)
+0:40:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 225M 27% 189k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 533k/s ] 94G blocks: [ 14k 76% 1/s ]
+ cpus: 10.7 gc: 3% heap: 11G/21G direct: 61M postGC: 6.9G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(67% 68% 70% 69% 68% 66% 66% 65% 64% 67% 67% 68% 67% 69% 68%) -> (6.5k/66k) -> write(19%)
+0:40:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 227M 27% 198k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 557k/s ] 95G blocks: [ 14k 76% 1/s ]
+ cpus: 11 gc: 4% heap: 14G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 2.9G
+ read( 0%) -> (11/26) -> process(69% 68% 69% 70% 68% 69% 69% 70% 66% 70% 65% 69% 69% 70% 68%) -> (8.1k/66k) -> write(20%)
+0:40:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 229M 27% 207k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 570k/s ] 95G blocks: [ 14k 76% 1/s ]
+ cpus: 11.5 gc: 4% heap: 11G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 3G
+ read( 0%) -> (11/26) -> process(75% 71% 77% 72% 71% 75% 70% 73% 70% 73% 70% 74% 69% 72% 71%) -> (7.6k/66k) -> write(20%)
+0:41:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 231M 27% 209k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 580k/s ] 95G blocks: [ 14k 76% 1/s ]
+ cpus: 11.7 gc: 4% heap: 12G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 3G
+ read( 0%) -> (11/26) -> process(73% 75% 74% 73% 70% 72% 70% 74% 72% 73% 70% 75% 74% 73% 73%) -> (6k/66k) -> write(21%)
+0:41:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 233M 28% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 585k/s ] 96G blocks: [ 14k 76% 1/s ]
+ cpus: 11.6 gc: 4% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 3G
+ read( 0%) -> (11/26) -> process(73% 73% 71% 75% 73% 73% 72% 72% 74% 76% 70% 69% 73% 72% 71%) -> (8.4k/66k) -> write(21%)
+0:41:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 235M 28% 198k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 557k/s ] 96G blocks: [ 14k 76% 1/s ]
+ cpus: 11.2 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 3G
+ read( 0%) -> (11/26) -> process(70% 73% 70% 70% 68% 69% 72% 71% 72% 72% 68% 68% 71% 70% 72%) -> (7.4k/66k) -> write(20%)
+0:41:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 237M 28% 191k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 553k/s ] 96G blocks: [ 14k 76% 1/s ]
+ cpus: 11.3 gc: 3% heap: 7.9G/21G direct: 61M postGC: 3.5G relInfo: 962M mpGeoms: 3.1G
+ read( 0%) -> (11/26) -> process(69% 68% 69% 70% 71% 69% 69% 69% 69% 69% 71% 69% 70% 68% 70%) -> (7.9k/66k) -> write(19%)
+0:41:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 239M 28% 200k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 576k/s ] 97G blocks: [ 14k 76% 1/s ]
+ cpus: 11.3 gc: 3% heap: 11G/21G direct: 61M postGC: 4.7G relInfo: 962M mpGeoms: 3.1G
+ read( 0%) -> (11/26) -> process(71% 71% 71% 70% 72% 72% 72% 70% 73% 72% 71% 71% 71% 71% 70%) -> (9.8k/66k) -> write(21%)
+0:41:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 241M 29% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 578k/s ] 97G blocks: [ 14k 76% 1/s ]
+ cpus: 11.6 gc: 4% heap: 6.1G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 3.1G
+ read( 0%) -> (11/26) -> process(72% 74% 72% 71% 73% 72% 73% 72% 74% 72% 74% 72% 72% 71% 70%) -> (9k/66k) -> write(21%)
+0:42:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 243M 29% 204k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 589k/s ] 98G blocks: [ 14k 76% 1/s ]
+ cpus: 11.5 gc: 3% heap: 11G/21G direct: 61M postGC: 7.1G relInfo: 962M mpGeoms: 3.1G
+ read( 0%) -> (11/26) -> process(73% 73% 71% 70% 71% 74% 73% 70% 70% 75% 73% 74% 74% 72% 72%) -> (8k/66k) -> write(21%)
+0:42:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 245M 29% 201k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 579k/s ] 98G blocks: [ 14k 76% 1/s ]
+ cpus: 11.4 gc: 4% heap: 13G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 3.2G
+ read( 0%) -> (11/26) -> process(72% 71% 69% 71% 72% 71% 71% 71% 71% 71% 70% 72% 70% 72% 70%) -> (9.1k/66k) -> write(21%)
+0:42:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 247M 29% 199k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 583k/s ] 98G blocks: [ 14k 76% 1/s ]
+ cpus: 11.3 gc: 4% heap: 14G/21G direct: 61M postGC: 9.5G relInfo: 962M mpGeoms: 3.2G
+ read( 0%) -> (11/26) -> process(72% 71% 72% 70% 71% 71% 69% 71% 70% 71% 71% 71% 71% 70% 70%) -> (7k/66k) -> write(21%)
+0:42:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 249M 30% 184k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 541k/s ] 99G blocks: [ 14k 77% 1/s ]
+ cpus: 10.8 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 3.2G
+ read( 0%) -> (11/26) -> process(69% 67% 67% 68% 69% 67% 66% 70% 67% 66% 67% 68% 67% 66% 65%) -> (7.3k/66k) -> write(19%)
+0:42:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 251M 30% 199k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 587k/s ] 99G blocks: [ 14k 77% 1/s ]
+ cpus: 11.6 gc: 4% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 3.2G
+ read( 0%) -> (11/26) -> process(75% 75% 75% 73% 73% 74% 69% 74% 75% 73% 70% 72% 69% 73% 70%) -> (6.4k/66k) -> write(21%)
+0:42:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 253M 30% 201k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 564k/s ] 99G blocks: [ 14k 77% 1/s ]
+ cpus: 11.1 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 3.3G
+ read( 0%) -> (11/26) -> process(68% 69% 69% 72% 68% 69% 69% 70% 72% 67% 69% 69% 69% 70% 69%) -> (5.9k/66k) -> write(20%)
+0:43:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 255M 30% 196k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 545k/s ] 100G blocks: [ 14k 77% 1/s ]
+ cpus: 11.3 gc: 3% heap: 8.5G/21G direct: 61M postGC: 5.6G relInfo: 962M mpGeoms: 3.3G
+ read( 0%) -> (11/26) -> process(68% 70% 67% 69% 75% 69% 69% 72% 71% 72% 70% 68% 69% 68% 73%) -> (9.9k/66k) -> write(19%)
+0:43:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 257M 31% 209k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 586k/s ] 100G blocks: [ 14k 77% 1/s ]
+ cpus: 11.7 gc: 3% heap: 13G/21G direct: 61M postGC: 4.7G relInfo: 962M mpGeoms: 3.3G
+ read( 0%) -> (11/26) -> process(74% 74% 75% 74% 73% 73% 75% 74% 76% 73% 76% 72% 72% 75% 75%) -> (10k/66k) -> write(21%)
+0:43:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 259M 31% 203k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 579k/s ] 101G blocks: [ 14k 77% 1/s ]
+ cpus: 11.6 gc: 5% heap: 8.6G/21G direct: 61M postGC: 6.2G relInfo: 962M mpGeoms: 3.3G
+ read( 0%) -> (11/26) -> process(74% 71% 72% 72% 72% 71% 72% 72% 71% 71% 72% 71% 70% 71% 73%) -> (7k/66k) -> write(21%)
+0:43:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 261M 31% 201k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 572k/s ] 101G blocks: [ 14k 77% 1/s ]
+ cpus: 11.4 gc: 4% heap: 7.6G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 3.4G
+ read( 0%) -> (11/26) -> process(75% 72% 72% 71% 71% 73% 71% 68% 70% 72% 69% 69% 70% 70% 74%) -> (6.7k/66k) -> write(20%)
+0:43:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 263M 31% 210k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 593k/s ] 101G blocks: [ 14k 77% 1/s ]
+ cpus: 11.7 gc: 4% heap: 10G/21G direct: 61M postGC: 8.7G relInfo: 962M mpGeoms: 3.4G
+ read( 0%) -> (11/26) -> process(68% 72% 71% 81% 71% 72% 72% 77% 80% 71% 71% 71% 73% 72% 70%) -> (4.9k/66k) -> write(21%)
+0:43:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 265M 32% 210k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 570k/s ] 102G blocks: [ 14k 77% 1/s ]
+ cpus: 11.4 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 3.4G
+ read( 0%) -> (11/26) -> process(68% 74% 70% 72% 67% 67% 74% 70% 72% 70% 72% 74% 74% 71% 71%) -> (8.1k/66k) -> write(20%)
+0:44:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 268M 32% 221k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 560k/s ] 102G blocks: [ 14k 77% 1/s ]
+ cpus: 11.3 gc: 4% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 3.5G
+ read( 0%) -> (11/26) -> process(70% 70% 75% 70% 70% 66% 72% 68% 70% 67% 72% 71% 71% 70% 69%) -> (6.1k/66k) -> write(20%)
+0:44:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 270M 32% 236k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 601k/s ] 102G blocks: [ 14k 77% 1/s ]
+ cpus: 11.9 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 3.5G
+ read( 0%) -> (11/26) -> process(76% 73% 76% 76% 77% 71% 74% 74% 75% 74% 70% 76% 74% 75% 75%) -> (7k/66k) -> write(22%)
+0:44:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 272M 32% 225k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 557k/s ] 103G blocks: [ 14k 78% 1/s ]
+ cpus: 11.3 gc: 4% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 3.5G
+ read( 0%) -> (11/26) -> process(77% 71% 71% 67% 76% 66% 73% 68% 67% 68% 72% 69% 70% 67% 77%) -> (7.2k/66k) -> write(19%)
+0:44:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 274M 33% 216k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 529k/s ] 103G blocks: [ 14k 78% 1/s ]
+ cpus: 11.1 gc: 3% heap: 8.2G/21G direct: 61M postGC: 4.7G relInfo: 962M mpGeoms: 3.6G
+ read( 0%) -> (11/26) -> process(73% 72% 70% 71% 64% 65% 74% 71% 67% 68% 68% 66% 66% 65% 68%) -> (7.2k/66k) -> write(19%)
+0:44:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 277M 33% 213k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 542k/s ] 103G blocks: [ 14k 78% 1/s ]
+ cpus: 11.3 gc: 4% heap: 10G/21G direct: 61M postGC: 5.9G relInfo: 962M mpGeoms: 3.6G
+ read( 0%) -> (11/26) -> process(71% 67% 75% 74% 73% 68% 66% 71% 70% 69% 70% 70% 72% 73% 67%) -> (8.4k/66k) -> write(20%)
+0:44:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 279M 33% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 611k/s ] 104G blocks: [ 14k 78% 1/s ]
+ cpus: 11.9 gc: 5% heap: 9.1G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 3.6G
+ read( 0%) -> (11/26) -> process(75% 74% 73% 71% 77% 76% 78% 75% 72% 76% 71% 72% 77% 71% 72%) -> (7k/66k) -> write(22%)
+0:45:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 281M 33% 242k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 616k/s ] 104G blocks: [ 14k 78% 1/s ]
+ cpus: 11.8 gc: 4% heap: 10G/21G direct: 61M postGC: 8.7G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(76% 76% 74% 79% 72% 72% 73% 69% 76% 69% 77% 71% 76% 71% 74%) -> (10k/66k) -> write(22%)
+0:45:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 284M 34% 215k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 580k/s ] 104G blocks: [ 14k 78% 1/s ]
+ cpus: 11.3 gc: 4% heap: 10G/21G direct: 61M postGC: 9.9G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(70% 70% 74% 69% 68% 68% 72% 69% 66% 68% 71% 70% 70% 69% 75%) -> (6.8k/66k) -> write(21%)
+0:45:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 286M 34% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 591k/s ] 105G blocks: [ 14k 78% 1/s ]
+ cpus: 11.6 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(73% 70% 71% 74% 71% 75% 73% 73% 72% 74% 71% 73% 72% 72% 71%) -> (6.9k/66k) -> write(21%)
+0:45:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 288M 34% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 587k/s ] 105G blocks: [ 14k 78% 1/s ]
+ cpus: 11.5 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(75% 72% 72% 71% 69% 71% 73% 72% 71% 74% 71% 75% 70% 72% 74%) -> (8.9k/66k) -> write(21%)
+0:45:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 290M 35% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 590k/s ] 105G blocks: [ 14k 78% 1/s ]
+ cpus: 11.5 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(70% 70% 75% 74% 72% 70% 70% 71% 73% 73% 71% 73% 70% 71% 72%) -> (9.2k/66k) -> write(20%)
+0:45:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 292M 35% 191k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 545k/s ] 106G blocks: [ 14k 78% 1/s ]
+ cpus: 10.8 gc: 2% heap: 10G/21G direct: 61M postGC: 3.9G relInfo: 962M mpGeoms: 3.7G
+ read( 0%) -> (11/26) -> process(66% 68% 67% 66% 67% 66% 66% 67% 68% 69% 68% 66% 69% 67% 68%) -> (6.5k/66k) -> write(19%)
+0:46:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 294M 35% 210k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 580k/s ] 106G blocks: [ 14k 78% 1/s ]
+ cpus: 11.3 gc: 4% heap: 12G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 3.8G
+ read( 0%) -> (11/26) -> process(72% 70% 73% 71% 69% 76% 71% 71% 74% 69% 69% 72% 69% 69% 69%) -> (6.8k/66k) -> write(21%)
+0:46:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 296M 35% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 586k/s ] 107G blocks: [ 14k 78% 1/s ]
+ cpus: 11.4 gc: 4% heap: 12G/21G direct: 61M postGC: 6.6G relInfo: 962M mpGeoms: 3.8G
+ read( 0%) -> (11/26) -> process(71% 71% 72% 72% 71% 71% 70% 70% 69% 69% 69% 71% 74% 70% 74%) -> (10k/66k) -> write(21%)
+0:46:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 298M 35% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 588k/s ] 107G blocks: [ 14k 79% 1/s ]
+ cpus: 11.5 gc: 4% heap: 9.6G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 3.8G
+ read( 0%) -> (11/26) -> process(76% 70% 73% 73% 70% 69% 68% 69% 70% 70% 75% 75% 71% 71% 71%) -> (8.5k/66k) -> write(21%)
+0:46:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 300M 36% 210k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 560k/s ] 107G blocks: [ 14k 79% 1/s ]
+ cpus: 11.2 gc: 4% heap: 12G/21G direct: 61M postGC: 9.2G relInfo: 962M mpGeoms: 3.8G
+ read( 0%) -> (11/26) -> process(75% 68% 71% 70% 67% 69% 70% 73% 68% 74% 71% 68% 68% 69% 71%) -> (5.7k/66k) -> write(20%)
+0:46:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 303M 36% 224k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 605k/s ] 108G blocks: [ 14k 79% 1/s ]
+ cpus: 12.1 gc: 4% heap: 14G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 3.9G
+ read( 0%) -> (11/26) -> process(74% 75% 77% 77% 75% 76% 77% 72% 77% 78% 73% 73% 76% 75% 74%) -> (7.8k/66k) -> write(21%)
+0:46:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 305M 36% 221k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 589k/s ] 108G blocks: [ 14k 79% 1/s ]
+ cpus: 11.9 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 3.9G
+ read( 0%) -> (11/26) -> process(72% 76% 74% 73% 77% 74% 75% 75% 75% 74% 75% 74% 75% 75% 75%) -> (8.8k/66k) -> write(21%)
+0:47:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 307M 37% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 571k/s ] 108G blocks: [ 14k 79% 1/s ]
+ cpus: 11.5 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 3.9G
+ read( 0%) -> (11/26) -> process(74% 70% 71% 71% 73% 72% 73% 71% 74% 74% 72% 76% 72% 71% 72%) -> (9.6k/66k) -> write(20%)
+0:47:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 309M 37% 215k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 568k/s ] 109G blocks: [ 14k 79% 1/s ]
+ cpus: 11.6 gc: 4% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 4G
+ read( 0%) -> (11/26) -> process(71% 74% 72% 75% 73% 73% 72% 72% 71% 73% 72% 76% 72% 74% 73%) -> (10k/66k) -> write(20%)
+0:47:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 311M 37% 221k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 571k/s ] 109G blocks: [ 14k 79% 1/s ]
+ cpus: 11.5 gc: 3% heap: 6.3G/21G direct: 61M postGC: 4.2G relInfo: 962M mpGeoms: 4G
+ read( 0%) -> (11/26) -> process(73% 70% 70% 71% 71% 72% 72% 72% 69% 69% 71% 70% 73% 72% 72%) -> (8.4k/66k) -> write(20%)
+0:47:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 313M 37% 198k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 531k/s ] 109G blocks: [ 14k 79% 1/s ]
+ cpus: 10.4 gc: 3% heap: 13G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 4G
+ read( 0%) -> (11/26) -> process(65% 67% 66% 69% 67% 65% 65% 66% 64% 62% 68% 65% 63% 63% 64%) -> (6.7k/66k) -> write(19%)
+0:47:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 316M 38% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 620k/s ] 110G blocks: [ 14k 79% 1/s ]
+ cpus: 11.9 gc: 4% heap: 13G/21G direct: 61M postGC: 6.8G relInfo: 962M mpGeoms: 4G
+ read( 0%) -> (11/26) -> process(74% 74% 73% 73% 75% 71% 74% 75% 73% 75% 73% 72% 77% 76% 73%) -> (6.1k/66k) -> write(22%)
+0:47:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 318M 38% 230k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 611k/s ] 110G blocks: [ 14k 79% 1/s ]
+ cpus: 12.1 gc: 5% heap: 12G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 4.1G
+ read( 0%) -> (11/26) -> process(79% 74% 80% 75% 72% 73% 75% 73% 75% 77% 73% 73% 78% 73% 75%) -> (6.2k/66k) -> write(22%)
+0:48:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 320M 38% 227k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 610k/s ] 110G blocks: [ 14k 79% 1/s ]
+ cpus: 11.7 gc: 5% heap: 13G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 4.1G
+ read( 0%) -> (11/26) -> process(75% 71% 73% 73% 72% 71% 71% 75% 72% 73% 74% 71% 75% 73% 72%) -> (8.3k/66k) -> write(22%)
+0:48:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 323M 38% 230k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 595k/s ] 111G blocks: [ 14k 80% 1/s ]
+ cpus: 12.1 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 4.1G
+ read( 0%) -> (11/26) -> process(78% 72% 76% 74% 73% 74% 78% 74% 79% 75% 81% 74% 76% 71% 76%) -> (7.7k/66k) -> write(21%)
+0:48:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 325M 39% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 607k/s ] 111G blocks: [ 14k 80% 1/s ]
+ cpus: 12.5 gc: 5% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 4.1G
+ read( 0%) -> (11/26) -> process(78% 77% 77% 75% 78% 80% 78% 76% 80% 73% 81% 79% 77% 77% 81%) -> (7.5k/66k) -> write(22%)
+0:48:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 327M 39% 246k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 617k/s ] 112G blocks: [ 14k 80% 1/s ]
+ cpus: 12.4 gc: 4% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 4.1G
+ read( 0%) -> (11/26) -> process(78% 76% 76% 75% 80% 77% 75% 76% 74% 79% 79% 77% 78% 79% 82%) -> (7.7k/66k) -> write(22%)
+0:48:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 330M 39% 240k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 617k/s ] 112G blocks: [ 14k 80% 1/s ]
+ cpus: 11.9 gc: 4% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 4.2G
+ read( 0%) -> (11/26) -> process(74% 76% 77% 73% 75% 73% 77% 74% 77% 72% 73% 77% 72% 74% 78%) -> (7.7k/66k) -> write(21%)
+0:48:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 332M 40% 253k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 644k/s ] 112G blocks: [ 14k 80% 2/s ]
+ cpus: 12.2 gc: 3% heap: 10G/21G direct: 61M postGC: 4.9G relInfo: 962M mpGeoms: 4.2G
+ read( 0%) -> (11/26) -> process(75% 77% 74% 73% 76% 76% 75% 78% 75% 75% 73% 75% 77% 77% 76%) -> (11k/66k) -> write(23%)
+0:49:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 335M 40% 248k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 636k/s ] 113G blocks: [ 15k 80% 1/s ]
+ cpus: 12.2 gc: 5% heap: 13G/21G direct: 61M postGC: 6.3G relInfo: 962M mpGeoms: 4.2G
+ read( 0%) -> (11/26) -> process(76% 72% 76% 76% 76% 73% 72% 76% 72% 77% 77% 77% 77% 78% 76%) -> (8.2k/66k) -> write(23%)
+0:49:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 337M 40% 237k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 609k/s ] 113G blocks: [ 15k 80% 1/s ]
+ cpus: 11.8 gc: 4% heap: 9.1G/21G direct: 61M postGC: 7.6G relInfo: 962M mpGeoms: 4.2G
+ read( 0%) -> (11/26) -> process(74% 77% 73% 72% 76% 71% 75% 73% 76% 73% 73% 74% 73% 70% 76%) -> (9.1k/66k) -> write(22%)
+0:49:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 340M 40% 238k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 602k/s ] 113G blocks: [ 15k 80% 1/s ]
+ cpus: 11.9 gc: 4% heap: 12G/21G direct: 61M postGC: 8.9G relInfo: 962M mpGeoms: 4.3G
+ read( 0%) -> (11/26) -> process(72% 73% 73% 71% 78% 71% 78% 75% 75% 78% 77% 77% 73% 71% 76%) -> (6.7k/66k) -> write(21%)
+0:49:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 342M 41% 223k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 567k/s ] 114G blocks: [ 15k 80% 2/s ]
+ cpus: 12.1 gc: 5% heap: 14G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 4.3G
+ read( 0%) -> (11/26) -> process(75% 80% 72% 76% 76% 74% 76% 72% 79% 72% 75% 77% 75% 75% 70%) -> (7.6k/66k) -> write(20%)
+0:49:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 344M 41% 231k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 622k/s ] 114G blocks: [ 15k 80% 2/s ]
+ cpus: 11.7 gc: 5% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 4.3G
+ read( 0%) -> (11/26) -> process(71% 74% 68% 69% 78% 71% 72% 75% 72% 74% 77% 73% 73% 73% 71%) -> (6.9k/66k) -> write(22%)
+0:49:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 346M 41% 223k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 619k/s ] 114G blocks: [ 15k 80% 1/s ]
+ cpus: 11.5 gc: 3% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 4.3G
+ read( 0%) -> (11/26) -> process(73% 75% 72% 73% 73% 71% 73% 72% 73% 71% 73% 72% 71% 73% 71%) -> (7.5k/66k) -> write(22%)
+0:50:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 349M 41% 214k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 556k/s ] 115G blocks: [ 15k 81% 1/s ]
+ cpus: 11.4 gc: 4% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 4.4G
+ read( 0%) -> (11/26) -> process(69% 71% 71% 71% 70% 76% 68% 71% 76% 70% 72% 70% 76% 67% 74%) -> (8.1k/66k) -> write(20%)
+0:50:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 351M 42% 208k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 555k/s ] 115G blocks: [ 15k 81% 1/s ]
+ cpus: 11.3 gc: 4% heap: 15G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 4.4G
+ read( 0%) -> (11/26) -> process(67% 70% 72% 70% 71% 69% 71% 73% 72% 69% 71% 66% 74% 75% 70%) -> (9k/66k) -> write(19%)
+0:50:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 353M 42% 233k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 598k/s ] 115G blocks: [ 15k 81% 1/s ]
+ cpus: 12 gc: 2% heap: 6G/21G direct: 61M postGC: 4.3G relInfo: 962M mpGeoms: 4.4G
+ read( 0%) -> (11/26) -> process(76% 74% 73% 77% 72% 73% 73% 74% 76% 73% 69% 75% 78% 76% 78%) -> (7.5k/66k) -> write(21%)
+0:50:33 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 355M 42% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 611k/s ] 116G blocks: [ 15k 81% 1/s ]
+ cpus: 12 gc: 3% heap: 8.1G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 4.4G
+ read( 0%) -> (11/26) -> process(76% 75% 74% 77% 73% 75% 73% 75% 74% 80% 76% 74% 77% 77% 77%) -> (6.1k/66k) -> write(22%)
+0:50:43 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 358M 43% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 584k/s ] 116G blocks: [ 15k 81% 2/s ]
+ cpus: 11.9 gc: 4% heap: 14G/21G direct: 61M postGC: 6.7G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(73% 73% 75% 76% 73% 73% 78% 77% 77% 72% 79% 73% 72% 75% 75%) -> (6.9k/66k) -> write(21%)
+0:50:53 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 360M 43% 246k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 609k/s ] 116G blocks: [ 15k 81% 1/s ]
+ cpus: 12.1 gc: 5% heap: 15G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(75% 74% 74% 76% 74% 74% 77% 78% 75% 75% 78% 75% 73% 76% 76%) -> (10k/66k) -> write(21%)
+0:51:03 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 363M 43% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 608k/s ] 117G blocks: [ 15k 81% 1/s ]
+ cpus: 12.1 gc: 4% heap: 13G/21G direct: 61M postGC: 9.4G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(75% 78% 76% 75% 74% 73% 77% 79% 74% 78% 74% 74% 78% 73% 77%) -> (8.3k/66k) -> write(22%)
+0:51:13 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 365M 43% 240k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 606k/s ] 117G blocks: [ 15k 81% 1/s ]
+ cpus: 12 gc: 4% heap: 13G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(72% 77% 77% 74% 78% 76% 75% 77% 76% 74% 75% 74% 75% 72% 73%) -> (9.7k/66k) -> write(21%)
+0:51:23 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 367M 44% 233k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 605k/s ] 118G blocks: [ 15k 81% 1/s ]
+ cpus: 11.9 gc: 5% heap: 14G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(73% 77% 73% 71% 73% 75% 72% 74% 72% 75% 73% 74% 74% 75% 73%) -> (8.5k/66k) -> write(21%)
+0:51:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 370M 44% 229k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 604k/s ] 118G blocks: [ 15k 81% 1/s ]
+ cpus: 12 gc: 5% heap: 16G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(72% 77% 74% 75% 75% 75% 76% 75% 74% 74% 76% 75% 75% 73% 75%) -> (9k/66k) -> write(22%)
+0:51:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 372M 44% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 602k/s ] 118G blocks: [ 15k 81% 1/s ]
+ cpus: 12 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 4.5G
+ read( 0%) -> (11/26) -> process(72% 76% 75% 71% 76% 78% 76% 73% 74% 73% 77% 75% 78% 74% 74%) -> (6.5k/66k) -> write(21%)
+0:51:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 374M 45% 223k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 579k/s ] 119G blocks: [ 15k 82% 1/s ]
+ cpus: 11.8 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 4.6G
+ read( 0%) -> (11/26) -> process(73% 74% 77% 71% 74% 72% 77% 74% 72% 78% 74% 75% 73% 71% 76%) -> (7.2k/66k) -> write(21%)
+0:52:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 377M 45% 229k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 578k/s ] 119G blocks: [ 15k 82% 2/s ]
+ cpus: 12.5 gc: 3% heap: 9.2G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 4.6G
+ read( 0%) -> (11/26) -> process(78% 77% 77% 73% 77% 75% 74% 77% 76% 81% 77% 81% 84% 81% 73%) -> (7.4k/66k) -> write(21%)
+0:52:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 379M 45% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 621k/s ] 119G blocks: [ 15k 82% 1/s ]
+ cpus: 11.9 gc: 4% heap: 11G/21G direct: 61M postGC: 6.2G relInfo: 962M mpGeoms: 4.8G
+ read( 0%) -> (11/26) -> process(73% 74% 74% 75% 72% 72% 73% 74% 77% 75% 74% 74% 73% 73% 76%) -> (8.5k/66k) -> write(22%)
+0:52:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 381M 45% 235k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 610k/s ] 120G blocks: [ 15k 82% 1/s ]
+ cpus: 11.9 gc: 5% heap: 10G/21G direct: 61M postGC: 7.5G relInfo: 962M mpGeoms: 4.8G
+ read( 0%) -> (11/26) -> process(74% 75% 72% 75% 74% 72% 76% 72% 75% 73% 75% 74% 75% 73% 75%) -> (7.1k/66k) -> write(22%)
+0:52:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 384M 46% 221k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 576k/s ] 120G blocks: [ 15k 82% 1/s ]
+ cpus: 11.4 gc: 5% heap: 9.2G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 4.8G
+ read( 0%) -> (11/26) -> process(72% 69% 70% 69% 71% 72% 70% 70% 71% 69% 70% 71% 71% 73% 70%) -> (7.3k/66k) -> write(21%)
+0:52:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 386M 46% 237k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 598k/s ] 120G blocks: [ 15k 82% 1/s ]
+ cpus: 12 gc: 4% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 4.9G
+ read( 0%) -> (11/26) -> process(76% 75% 77% 76% 75% 74% 77% 77% 75% 75% 75% 74% 74% 74% 72%) -> (6.1k/66k) -> write(21%)
+0:52:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 388M 46% 243k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 606k/s ] 121G blocks: [ 15k 82% 1/s ]
+ cpus: 12.1 gc: 5% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 4.9G
+ read( 0%) -> (11/26) -> process(74% 75% 79% 75% 75% 73% 73% 74% 76% 76% 79% 75% 75% 73% 75%) -> (6.6k/66k) -> write(22%)
+0:53:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 391M 46% 252k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 609k/s ] 121G blocks: [ 15k 82% 1/s ]
+ cpus: 12.3 gc: 5% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 4.9G
+ read( 0%) -> (11/26) -> process(80% 75% 78% 76% 78% 77% 74% 75% 77% 76% 77% 76% 75% 79% 74%) -> (9.4k/66k) -> write(22%)
+0:53:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 393M 47% 235k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 573k/s ] 121G blocks: [ 15k 82% 1/s ]
+ cpus: 11.6 gc: 4% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 4.9G
+ read( 0%) -> (11/26) -> process(72% 72% 73% 73% 73% 70% 69% 70% 75% 73% 74% 70% 72% 75% 75%) -> (6.1k/66k) -> write(20%)
+0:53:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 396M 47% 249k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 600k/s ] 122G blocks: [ 15k 82% 1/s ]
+ cpus: 12.2 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 4.9G
+ read( 0%) -> (11/26) -> process(77% 78% 76% 76% 75% 78% 79% 76% 73% 76% 75% 74% 77% 73% 78%) -> (7k/66k) -> write(21%)
+0:53:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 398M 47% 245k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 606k/s ] 122G blocks: [ 15k 83% 1/s ]
+ cpus: 12.2 gc: 3% heap: 6.8G/21G direct: 61M postGC: 4.2G relInfo: 962M mpGeoms: 5G
+ read( 0%) -> (11/26) -> process(73% 74% 76% 74% 74% 78% 76% 74% 76% 72% 77% 76% 77% 76% 76%) -> (8.1k/66k) -> write(21%)
+0:53:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 401M 48% 254k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 622k/s ] 122G blocks: [ 15k 83% 1/s ]
+ cpus: 12.2 gc: 4% heap: 9.7G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 5G
+ read( 0%) -> (11/26) -> process(76% 77% 76% 78% 73% 78% 75% 79% 77% 77% 75% 76% 75% 75% 78%) -> (6.9k/66k) -> write(22%)
+0:53:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 403M 48% 253k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 619k/s ] 123G blocks: [ 15k 83% 1/s ]
+ cpus: 12.1 gc: 5% heap: 8.6G/21G direct: 61M postGC: 7.1G relInfo: 962M mpGeoms: 5G
+ read( 0%) -> (11/26) -> process(73% 75% 75% 77% 76% 78% 76% 72% 77% 77% 75% 75% 74% 74% 73%) -> (6.3k/66k) -> write(22%)
+0:54:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 406M 48% 238k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 597k/s ] 123G blocks: [ 15k 83% 1/s ]
+ cpus: 11.6 gc: 4% heap: 14G/21G direct: 61M postGC: 8.4G relInfo: 962M mpGeoms: 5G
+ read( 0%) -> (11/26) -> process(73% 70% 73% 71% 73% 73% 72% 72% 72% 69% 75% 72% 71% 69% 73%) -> (8.8k/66k) -> write(21%)
+0:54:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 408M 49% 252k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 627k/s ] 123G blocks: [ 15k 83% 1/s ]
+ cpus: 12.4 gc: 5% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 5G
+ read( 0%) -> (11/26) -> process(76% 77% 75% 79% 77% 77% 78% 76% 77% 77% 74% 78% 77% 77% 76%) -> (6.8k/66k) -> write(22%)
+0:54:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 411M 49% 260k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 638k/s ] 124G blocks: [ 15k 83% 1/s ]
+ cpus: 12.5 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(79% 79% 78% 77% 75% 81% 79% 79% 75% 75% 79% 77% 77% 75% 75%) -> (6.5k/66k) -> write(23%)
+0:54:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 413M 49% 262k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 643k/s ] 124G blocks: [ 15k 83% 1/s ]
+ cpus: 12.4 gc: 5% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(79% 78% 74% 76% 76% 77% 78% 77% 77% 81% 76% 75% 78% 77% 81%) -> (8.5k/66k) -> write(23%)
+0:54:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 416M 49% 256k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 624k/s ] 124G blocks: [ 15k 83% 1/s ]
+ cpus: 12.2 gc: 4% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(76% 77% 77% 75% 78% 77% 77% 74% 77% 77% 74% 76% 79% 73% 75%) -> (8.3k/66k) -> write(22%)
+0:54:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 419M 50% 259k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 625k/s ] 125G blocks: [ 15k 83% 1/s ]
+ cpus: 12.4 gc: 4% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(79% 76% 78% 77% 77% 77% 80% 79% 77% 80% 76% 76% 76% 76% 74%) -> (6.7k/66k) -> write(22%)
+0:55:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 421M 50% 253k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 602k/s ] 125G blocks: [ 15k 83% 1/s ]
+ cpus: 12.2 gc: 5% heap: 17G/21G direct: 61M postGC: 16G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(79% 75% 75% 76% 77% 76% 75% 77% 77% 78% 79% 76% 77% 72% 76%) -> (9.3k/66k) -> write(20%)
+0:55:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 424M 50% 260k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 644k/s ] 125G blocks: [ 15k 83% 1/s ]
+ cpus: 12.7 gc: 3% heap: 14G/21G direct: 61M postGC: 5.2G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(78% 78% 78% 78% 79% 78% 78% 81% 78% 79% 77% 78% 80% 81% 79%) -> (7.2k/66k) -> write(23%)
+0:55:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 426M 51% 263k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 654k/s ] 126G blocks: [ 15k 84% 1/s ]
+ cpus: 12.5 gc: 5% heap: 12G/21G direct: 61M postGC: 6.8G relInfo: 962M mpGeoms: 5.1G
+ read( 0%) -> (11/26) -> process(78% 79% 78% 76% 79% 76% 76% 76% 79% 80% 76% 77% 79% 77% 77%) -> (7.2k/66k) -> write(23%)
+0:55:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 429M 51% 246k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 625k/s ] 126G blocks: [ 15k 84% 1/s ]
+ cpus: 12.2 gc: 5% heap: 9.5G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(76% 72% 77% 75% 73% 77% 75% 74% 78% 75% 76% 75% 74% 76% 72%) -> (8k/66k) -> write(22%)
+0:55:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 432M 51% 265k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 645k/s ] 126G blocks: [ 15k 84% 1/s ]
+ cpus: 12.3 gc: 5% heap: 15G/21G direct: 61M postGC: 9.6G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(76% 74% 75% 77% 76% 76% 75% 75% 78% 77% 78% 78% 78% 77% 79%) -> (8.9k/66k) -> write(23%)
+0:55:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 434M 52% 261k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 655k/s ] 127G blocks: [ 15k 84% 1/s ]
+ cpus: 12.4 gc: 5% heap: 15G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(77% 76% 73% 76% 79% 77% 75% 75% 75% 77% 79% 77% 79% 77% 79%) -> (7.5k/66k) -> write(23%)
+0:56:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 437M 52% 255k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 646k/s ] 127G blocks: [ 15k 84% 1/s ]
+ cpus: 12.3 gc: 5% heap: 16G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(77% 75% 74% 74% 78% 74% 76% 80% 75% 74% 77% 76% 78% 76% 80%) -> (8.1k/66k) -> write(23%)
+0:56:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 439M 52% 221k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 568k/s ] 127G blocks: [ 15k 84% 1/s ]
+ cpus: 11.2 gc: 4% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(71% 72% 69% 69% 70% 68% 70% 69% 72% 66% 70% 69% 71% 70% 70%) -> (7.9k/66k) -> write(20%)
+0:56:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 441M 52% 242k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 614k/s ] 128G blocks: [ 15k 84% 1/s ]
+ cpus: 12 gc: 4% heap: 16G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.2G
+ read( 0%) -> (11/26) -> process(74% 77% 75% 75% 74% 72% 74% 75% 76% 75% 75% 76% 75% 75% 75%) -> (7k/66k) -> write(22%)
+0:56:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 444M 53% 235k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 606k/s ] 128G blocks: [ 15k 84% 1/s ]
+ cpus: 11.9 gc: 5% heap: 16G/21G direct: 61M postGC: 16G relInfo: 962M mpGeoms: 5.3G
+ read( 0%) -> (11/26) -> process(73% 72% 71% 73% 79% 75% 74% 73% 73% 74% 73% 72% 74% 73% 73%) -> (7.9k/66k) -> write(21%)
+0:56:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 446M 53% 234k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 591k/s ] 129G blocks: [ 15k 84% 1/s ]
+ cpus: 11.5 gc: 2% heap: 14G/21G direct: 61M postGC: 4.8G relInfo: 962M mpGeoms: 5.3G
+ read( 0%) -> (11/26) -> process(72% 71% 74% 72% 69% 72% 71% 74% 73% 72% 74% 73% 72% 73% 68%) -> (7.9k/66k) -> write(21%)
+0:56:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 449M 53% 251k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 630k/s ] 129G blocks: [ 15k 84% 1/s ]
+ cpus: 12.2 gc: 4% heap: 15G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 5.3G
+ read( 0%) -> (11/26) -> process(76% 75% 76% 77% 76% 77% 78% 74% 74% 75% 77% 78% 80% 74% 74%) -> (9.4k/66k) -> write(22%)
+0:57:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 451M 54% 254k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 633k/s ] 129G blocks: [ 15k 84% 1/s ]
+ cpus: 12.3 gc: 5% heap: 14G/21G direct: 61M postGC: 7.5G relInfo: 962M mpGeoms: 5.3G
+ read( 0%) -> (11/26) -> process(75% 77% 75% 77% 78% 77% 77% 78% 77% 74% 76% 75% 77% 78% 78%) -> (8.2k/66k) -> write(22%)
+0:57:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 454M 54% 243k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 625k/s ] 130G blocks: [ 15k 85% 1/s ]
+ cpus: 11.8 gc: 4% heap: 12G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 5.4G
+ read( 0%) -> (11/26) -> process(73% 74% 70% 72% 75% 76% 74% 75% 74% 73% 75% 73% 74% 74% 72%) -> (7.7k/66k) -> write(22%)
+0:57:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 456M 54% 249k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 630k/s ] 130G blocks: [ 15k 85% 1/s ]
+ cpus: 11.8 gc: 4% heap: 16G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 5.4G
+ read( 0%) -> (11/26) -> process(72% 73% 73% 74% 80% 73% 73% 72% 71% 75% 74% 75% 74% 73% 73%) -> (8.8k/66k) -> write(22%)
+0:57:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 459M 55% 268k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 655k/s ] 130G blocks: [ 15k 85% 2/s ]
+ cpus: 12.4 gc: 5% heap: 16G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.4G
+ read( 0%) -> (11/26) -> process(79% 81% 80% 73% 77% 77% 79% 76% 74% 76% 75% 77% 80% 75% 80%) -> (6.9k/66k) -> write(23%)
+0:57:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 461M 55% 256k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 638k/s ] 131G blocks: [ 15k 85% 1/s ]
+ cpus: 12.2 gc: 5% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 5.4G
+ read( 0%) -> (11/26) -> process(74% 74% 75% 75% 74% 77% 74% 75% 75% 75% 75% 76% 75% 78% 74%) -> (7.3k/66k) -> write(22%)
+0:57:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 464M 55% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 630k/s ] 131G blocks: [ 15k 85% 1/s ]
+ cpus: 11.9 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.4G
+ read( 0%) -> (11/26) -> process(70% 72% 72% 70% 76% 72% 76% 71% 75% 76% 70% 73% 76% 79% 75%) -> (9.4k/66k) -> write(22%)
+0:58:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 467M 55% 279k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 669k/s ] 131G blocks: [ 15k 85% 1/s ]
+ cpus: 12.6 gc: 6% heap: 16G/21G direct: 61M postGC: 16G relInfo: 962M mpGeoms: 5.5G
+ read( 0%) -> (11/26) -> process(75% 77% 77% 77% 77% 78% 78% 79% 75% 80% 78% 80% 80% 82% 80%) -> (8.1k/66k) -> write(23%)
+0:58:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 469M 56% 276k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 660k/s ] 132G blocks: [ 15k 85% 1/s ]
+ cpus: 12.7 gc: 4% heap: 9.3G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 5.5G
+ read( 0%) -> (11/26) -> process(80% 76% 76% 76% 73% 78% 76% 79% 78% 83% 77% 79% 79% 81% 76%) -> (8.3k/66k) -> write(23%)
+0:58:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 472M 56% 270k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 654k/s ] 132G blocks: [ 15k 85% 1/s ]
+ cpus: 12.3 gc: 4% heap: 11G/21G direct: 61M postGC: 5.9G relInfo: 962M mpGeoms: 5.5G
+ read( 0%) -> (11/26) -> process(78% 76% 80% 76% 77% 78% 77% 75% 74% 77% 74% 82% 75% 75% 77%) -> (8.2k/66k) -> write(23%)
+0:58:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 475M 56% 250k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 609k/s ] 132G blocks: [ 16k 85% 1/s ]
+ cpus: 11.8 gc: 5% heap: 13G/21G direct: 61M postGC: 7.3G relInfo: 962M mpGeoms: 5.5G
+ read( 0%) -> (11/26) -> process(75% 79% 74% 77% 71% 73% 70% 75% 76% 74% 72% 74% 71% 71% 71%) -> (7.3k/66k) -> write(21%)
+0:58:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 477M 57% 255k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 626k/s ] 133G blocks: [ 16k 85% 1/s ]
+ cpus: 12.3 gc: 5% heap: 11G/21G direct: 61M postGC: 8.9G relInfo: 962M mpGeoms: 5.5G
+ read( 0%) -> (11/26) -> process(75% 77% 74% 78% 77% 77% 74% 78% 77% 76% 73% 77% 74% 76% 75%) -> (8.4k/66k) -> write(22%)
+0:58:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 480M 57% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 628k/s ] 133G blocks: [ 16k 86% 1/s ]
+ cpus: 12.2 gc: 5% heap: 16G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(77% 73% 78% 75% 80% 75% 75% 73% 75% 76% 78% 78% 77% 74% 76%) -> (8.1k/66k) -> write(22%)
+0:59:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 483M 57% 286k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 675k/s ] 133G blocks: [ 16k 86% 1/s ]
+ cpus: 12.6 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(81% 76% 79% 77% 76% 80% 81% 79% 79% 77% 76% 79% 79% 78% 76%) -> (7k/66k) -> write(24%)
+0:59:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 485M 58% 285k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 677k/s ] 134G blocks: [ 16k 86% 1/s ]
+ cpus: 12.8 gc: 6% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(77% 78% 79% 78% 77% 76% 79% 76% 79% 82% 78% 77% 81% 83% 80%) -> (8.1k/66k) -> write(24%)
+0:59:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 488M 58% 284k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 670k/s ] 134G blocks: [ 16k 86% 1/s ]
+ cpus: 12.7 gc: 5% heap: 16G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(76% 77% 80% 80% 82% 75% 76% 81% 80% 79% 78% 77% 77% 82% 78%) -> (8.8k/66k) -> write(23%)
+0:59:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 491M 58% 268k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 646k/s ] 134G blocks: [ 16k 86% 1/s ]
+ cpus: 12.5 gc: 5% heap: 12G/21G direct: 61M postGC: 5.6G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(74% 75% 75% 75% 80% 79% 77% 73% 74% 76% 74% 79% 74% 76% 78%) -> (6.5k/66k) -> write(22%)
+0:59:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 494M 59% 274k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 670k/s ] 135G blocks: [ 16k 86% 1/s ]
+ cpus: 12.2 gc: 3% heap: 11G/21G direct: 61M postGC: 5.4G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(82% 77% 80% 75% 78% 75% 73% 77% 78% 75% 75% 77% 78% 76% 80%) -> (6.9k/66k) -> write(23%)
+0:59:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 496M 59% 267k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 652k/s ] 135G blocks: [ 16k 86% 1/s ]
+ cpus: 12 gc: 4% heap: 14G/21G direct: 61M postGC: 6.8G relInfo: 962M mpGeoms: 5.6G
+ read( 0%) -> (11/26) -> process(76% 74% 76% 71% 74% 72% 78% 73% 75% 76% 74% 75% 78% 72% 73%) -> (7.3k/66k) -> write(23%)
+Mar 30, 2022 10:58:24 PM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
+INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
+1:00:01 INF - Database closed
+1:00:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 499M 59% 271k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 666k/s ] 136G blocks: [ 16k 86% 1/s ]
+ cpus: 12.5 gc: 5% heap: 11G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 5.7G
+ read( 0%) -> (11/26) -> process(79% 78% 77% 75% 77% 76% 76% 79% 76% 79% 77% 79% 79% 80% 76%) -> (9k/66k) -> write(23%)
+1:00:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 502M 60% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 637k/s ] 136G blocks: [ 16k 86% 2/s ]
+ cpus: 12.2 gc: 5% heap: 10G/21G direct: 61M postGC: 9.9G relInfo: 962M mpGeoms: 5.7G
+ read( 0%) -> (11/26) -> process(75% 76% 77% 77% 76% 76% 77% 75% 74% 76% 74% 75% 80% 72% 74%) -> (8k/66k) -> write(22%)
+1:00:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 504M 60% 247k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 598k/s ] 136G blocks: [ 16k 86% 1/s ]
+ cpus: 11.7 gc: 4% heap: 15G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.7G
+ read( 0%) -> (11/26) -> process(71% 71% 72% 70% 73% 70% 72% 68% 81% 70% 77% 75% 71% 81% 75%) -> (15k/66k) -> write(21%)
+1:00:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 507M 60% 264k/s ] rels: [ 0 0% 0/s ] features: [ 2B 639k/s ] 137G blocks: [ 16k 87% 1/s ]
+ cpus: 12.4 gc: 5% heap: 14G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 5.7G
+ read( 0%) -> (11/26) -> process(75% 78% 78% 76% 78% 77% 76% 78% 83% 77% 77% 76% 76% 72% 81%) -> (9.3k/66k) -> write(23%)
+1:00:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 509M 61% 246k/s ] rels: [ 0 0% 0/s ] features: [ 2B 624k/s ] 137G blocks: [ 16k 87% 1/s ]
+ cpus: 12 gc: 5% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.8G
+ read( 0%) -> (11/26) -> process(74% 74% 73% 75% 75% 76% 74% 74% 77% 77% 74% 73% 77% 72% 74%) -> (7.7k/66k) -> write(22%)
+1:00:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 512M 61% 233k/s ] rels: [ 0 0% 0/s ] features: [ 2B 579k/s ] 137G blocks: [ 16k 87% 1/s ]
+ cpus: 11.3 gc: 4% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 5.8G
+ read( 0%) -> (11/26) -> process(69% 72% 69% 70% 69% 72% 70% 71% 71% 72% 73% 71% 70% 73% 70%) -> (6.4k/66k) -> write(20%)
+1:01:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 514M 61% 229k/s ] rels: [ 0 0% 0/s ] features: [ 2B 556k/s ] 138G blocks: [ 16k 87% 1/s ]
+ cpus: 11.1 gc: 2% heap: 13G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 5.8G
+ read( 0%) -> (11/26) -> process(66% 69% 70% 71% 70% 69% 68% 70% 70% 69% 70% 69% 69% 67% 67%) -> (5.6k/66k) -> write(19%)
+1:01:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 517M 61% 256k/s ] rels: [ 0 0% 0/s ] features: [ 2B 612k/s ] 138G blocks: [ 16k 87% 1/s ]
+ cpus: 12 gc: 4% heap: 13G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 5.8G
+ read( 0%) -> (11/26) -> process(74% 75% 73% 75% 77% 72% 70% 71% 77% 82% 77% 77% 73% 74% 73%) -> (6.8k/66k) -> write(22%)
+1:01:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 519M 62% 245k/s ] rels: [ 0 0% 0/s ] features: [ 2B 604k/s ] 138G blocks: [ 16k 87% 1/s ]
+ cpus: 11.7 gc: 4% heap: 16G/21G direct: 61M postGC: 7.5G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(74% 70% 70% 73% 79% 74% 70% 69% 76% 76% 71% 75% 73% 77% 69%) -> (8.6k/66k) -> write(21%)
+1:01:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 521M 62% 242k/s ] rels: [ 0 0% 0/s ] features: [ 2B 604k/s ] 139G blocks: [ 16k 87% 1/s ]
+ cpus: 11.4 gc: 5% heap: 11G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(67% 66% 69% 69% 70% 71% 72% 70% 71% 68% 73% 72% 76% 76% 69%) -> (6.5k/66k) -> write(21%)
+1:01:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 524M 62% 244k/s ] rels: [ 0 0% 0/s ] features: [ 2B 599k/s ] 139G blocks: [ 16k 87% 1/s ]
+ cpus: 11.4 gc: 5% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(67% 69% 69% 70% 71% 73% 68% 69% 71% 72% 70% 73% 72% 71% 69%) -> (6.2k/66k) -> write(21%)
+1:01:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 527M 63% 267k/s ] rels: [ 0 0% 0/s ] features: [ 2B 637k/s ] 139G blocks: [ 16k 87% 1/s ]
+ cpus: 11.9 gc: 4% heap: 16G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(75% 73% 74% 73% 73% 73% 73% 75% 73% 69% 73% 75% 73% 75% 70%) -> (8.3k/66k) -> write(22%)
+1:02:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 529M 63% 274k/s ] rels: [ 0 0% 0/s ] features: [ 2B 655k/s ] 140G blocks: [ 16k 87% 2/s ]
+ cpus: 12 gc: 5% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(74% 76% 78% 77% 73% 73% 75% 73% 71% 73% 78% 76% 75% 72% 78%) -> (8.7k/66k) -> write(23%)
+1:02:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 532M 63% 235k/s ] rels: [ 0 0% 0/s ] features: [ 2B 589k/s ] 140G blocks: [ 16k 87% 1/s ]
+ cpus: 11.2 gc: 4% heap: 16G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(71% 71% 69% 68% 78% 66% 69% 71% 67% 70% 71% 71% 71% 68% 69%) -> (9k/66k) -> write(21%)
+1:02:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 534M 63% 208k/s ] rels: [ 0 0% 0/s ] features: [ 2B 539k/s ] 140G blocks: [ 16k 88% 1/s ]
+ cpus: 10.3 gc: 4% heap: 15G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 5.9G
+ read( 0%) -> (11/26) -> process(61% 64% 64% 62% 62% 65% 65% 65% 64% 64% 67% 64% 66% 66% 64%) -> (10k/66k) -> write(19%)
+1:02:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 536M 64% 220k/s ] rels: [ 0 0% 0/s ] features: [ 2B 534k/s ] 140G blocks: [ 16k 88% 1/s ]
+ cpus: 11.5 gc: 3% heap: 13G/21G direct: 61M postGC: 5.4G relInfo: 962M mpGeoms: 6G
+ read( 0%) -> (11/26) -> process(75% 68% 72% 69% 70% 69% 69% 68% 78% 68% 73% 71% 69% 68% 71%) -> (8.8k/66k) -> write(19%)
+1:02:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 538M 64% 220k/s ] rels: [ 0 0% 0/s ] features: [ 2B 558k/s ] 141G blocks: [ 16k 88% 1/s ]
+ cpus: 11.1 gc: 3% heap: 11G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 6G
+ read( 0%) -> (11/26) -> process(68% 71% 72% 73% 69% 69% 69% 70% 70% 70% 71% 70% 74% 69% 69%) -> (7.4k/66k) -> write(20%)
+1:02:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 541M 64% 231k/s ] rels: [ 0 0% 0/s ] features: [ 2B 564k/s ] 141G blocks: [ 16k 88% 1/s ]
+ cpus: 11.3 gc: 4% heap: 16G/21G direct: 61M postGC: 6.6G relInfo: 962M mpGeoms: 6G
+ read( 0%) -> (11/26) -> process(72% 70% 67% 74% 70% 70% 72% 70% 69% 69% 70% 69% 71% 71% 72%) -> (6.8k/66k) -> write(20%)
+1:03:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 543M 65% 215k/s ] rels: [ 0 0% 0/s ] features: [ 2B 545k/s ] 141G blocks: [ 16k 88% 1/s ]
+ cpus: 11 gc: 4% heap: 14G/21G direct: 61M postGC: 7.8G relInfo: 962M mpGeoms: 6G
+ read( 0%) -> (11/26) -> process(66% 71% 67% 70% 70% 72% 67% 68% 67% 67% 70% 66% 66% 69% 68%) -> (7.7k/66k) -> write(20%)
+1:03:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 545M 65% 207k/s ] rels: [ 0 0% 0/s ] features: [ 2B 532k/s ] 142G blocks: [ 16k 88% 1/s ]
+ cpus: 10.8 gc: 4% heap: 10G/21G direct: 61M postGC: 9.1G relInfo: 962M mpGeoms: 6G
+ read( 0%) -> (11/26) -> process(69% 65% 69% 65% 65% 64% 66% 65% 68% 66% 68% 67% 70% 67% 67%) -> (5.6k/66k) -> write(19%)
+1:03:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 547M 65% 210k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 544k/s ] 142G blocks: [ 16k 88% 1/s ]
+ cpus: 10.6 gc: 4% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(65% 68% 67% 68% 68% 66% 68% 70% 65% 66% 64% 65% 66% 64% 65%) -> (6.4k/66k) -> write(20%)
+1:03:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 549M 65% 204k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 518k/s ] 142G blocks: [ 16k 88% 1/s ]
+ cpus: 10.4 gc: 4% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(64% 64% 67% 66% 65% 63% 65% 65% 63% 64% 65% 64% 65% 67% 64%) -> (7.2k/66k) -> write(19%)
+1:03:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 551M 65% 200k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 509k/s ] 143G blocks: [ 16k 88% 1/s ]
+ cpus: 9.9 gc: 4% heap: 16G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(59% 64% 61% 61% 63% 60% 61% 66% 62% 58% 62% 61% 62% 61% 64%) -> (9k/66k) -> write(18%)
+1:03:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 553M 66% 224k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 566k/s ] 143G blocks: [ 16k 88% 1/s ]
+ cpus: 10.9 gc: 4% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(71% 67% 69% 66% 66% 68% 68% 68% 66% 68% 69% 67% 70% 66% 67%) -> (8.8k/66k) -> write(20%)
+1:04:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 555M 66% 205k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 527k/s ] 143G blocks: [ 16k 88% 1/s ]
+ cpus: 9.9 gc: 4% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(59% 63% 65% 61% 62% 62% 60% 62% 61% 60% 60% 62% 62% 64% 62%) -> (7.9k/66k) -> write(19%)
+1:04:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 557M 66% 214k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 560k/s ] 144G blocks: [ 16k 88% 1/s ]
+ cpus: 10.7 gc: 4% heap: 16G/21G direct: 61M postGC: 16G relInfo: 962M mpGeoms: 6.1G
+ read( 0%) -> (11/26) -> process(67% 69% 64% 68% 67% 69% 68% 65% 67% 67% 66% 68% 65% 66% 66%) -> (7.5k/66k) -> write(20%)
+1:04:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 560M 67% 215k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 573k/s ] 144G blocks: [ 16k 89% 1/s ]
+ cpus: 11.5 gc: 3% heap: 8.1G/21G direct: 61M postGC: 4.4G relInfo: 962M mpGeoms: 6.2G
+ read( 0%) -> (11/26) -> process(71% 74% 80% 70% 71% 68% 70% 69% 69% 69% 72% 68% 70% 70% 72%) -> (8.3k/66k) -> write(20%)
+1:04:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 562M 67% 235k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 594k/s ] 144G blocks: [ 16k 89% 1/s ]
+ cpus: 11.8 gc: 4% heap: 6.1G/21G direct: 61M postGC: 6.1G relInfo: 962M mpGeoms: 6.2G
+ read( 0%) -> (11/26) -> process(72% 73% 73% 73% 73% 74% 73% 75% 76% 72% 73% 74% 71% 73% 73%) -> (7.7k/66k) -> write(21%)
+1:04:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 564M 67% 220k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 566k/s ] 145G blocks: [ 16k 89% 1/s ]
+ cpus: 11.1 gc: 4% heap: 7.4G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 6.2G
+ read( 0%) -> (11/26) -> process(69% 68% 69% 69% 69% 69% 70% 70% 68% 69% 69% 68% 71% 68% 69%) -> (7.7k/66k) -> write(20%)
+1:04:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 566M 67% 234k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 598k/s ] 145G blocks: [ 16k 89% 1/s ]
+ cpus: 11.9 gc: 4% heap: 15G/21G direct: 61M postGC: 8.6G relInfo: 962M mpGeoms: 6.2G
+ read( 0%) -> (11/26) -> process(74% 75% 76% 72% 75% 76% 75% 74% 76% 75% 75% 74% 73% 76% 75%) -> (4.5k/66k) -> write(21%)
+1:05:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 569M 68% 231k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 599k/s ] 145G blocks: [ 16k 89% 1/s ]
+ cpus: 11.9 gc: 5% heap: 12G/21G direct: 61M postGC: 9.9G relInfo: 962M mpGeoms: 6.3G
+ read( 0%) -> (11/26) -> process(74% 73% 75% 73% 74% 74% 73% 75% 73% 71% 77% 69% 75% 76% 73%) -> (5.8k/66k) -> write(21%)
+1:05:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 571M 68% 228k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 578k/s ] 146G blocks: [ 16k 89% 1/s ]
+ cpus: 11.3 gc: 4% heap: 15G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 6.3G
+ read( 0%) -> (11/26) -> process(73% 69% 69% 67% 71% 70% 73% 71% 69% 69% 71% 70% 71% 71% 73%) -> (7.3k/66k) -> write(21%)
+1:05:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 573M 68% 236k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 615k/s ] 146G blocks: [ 16k 89% 1/s ]
+ cpus: 11.8 gc: 5% heap: 14G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 6.3G
+ read( 0%) -> (11/26) -> process(74% 75% 76% 73% 72% 72% 73% 75% 70% 72% 72% 74% 74% 74% 72%) -> (8k/66k) -> write(22%)
+1:05:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 576M 68% 245k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 625k/s ] 147G blocks: [ 16k 89% 1/s ]
+ cpus: 12.1 gc: 5% heap: 16G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 6.3G
+ read( 0%) -> (11/26) -> process(72% 75% 78% 75% 76% 76% 78% 75% 72% 75% 76% 76% 77% 75% 75%) -> (6.3k/66k) -> write(22%)
+1:05:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 578M 69% 235k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 592k/s ] 147G blocks: [ 16k 89% 1/s ]
+ cpus: 11.5 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 6.4G
+ read( 0%) -> (11/26) -> process(71% 71% 73% 69% 72% 70% 73% 73% 73% 71% 73% 73% 74% 70% 71%) -> (5.4k/66k) -> write(21%)
+1:05:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 581M 69% 245k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 615k/s ] 147G blocks: [ 16k 89% 1/s ]
+ cpus: 12.2 gc: 4% heap: 11G/21G direct: 61M postGC: 4G relInfo: 962M mpGeoms: 6.4G
+ read( 0%) -> (11/26) -> process(76% 72% 74% 76% 77% 78% 73% 76% 76% 73% 73% 73% 74% 74% 74%) -> (10k/66k) -> write(21%)
+1:06:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 583M 69% 260k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 638k/s ] 148G blocks: [ 16k 89% 1/s ]
+ cpus: 12.4 gc: 4% heap: 5.6G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 6.4G
+ read( 0%) -> (11/26) -> process(80% 77% 77% 82% 78% 77% 77% 77% 80% 79% 77% 79% 74% 79% 78%) -> (8.3k/66k) -> write(23%)
+1:06:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 586M 70% 275k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 667k/s ] 148G blocks: [ 16k 90% 1/s ]
+ cpus: 12.6 gc: 5% heap: 10G/21G direct: 61M postGC: 7.2G relInfo: 962M mpGeoms: 6.4G
+ read( 0%) -> (11/26) -> process(76% 78% 78% 76% 74% 83% 76% 81% 76% 84% 78% 79% 81% 77% 76%) -> (6k/66k) -> write(24%)
+1:06:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 589M 70% 257k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 641k/s ] 148G blocks: [ 16k 90% 1/s ]
+ cpus: 12.1 gc: 5% heap: 13G/21G direct: 61M postGC: 8.5G relInfo: 962M mpGeoms: 6.4G
+ read( 0%) -> (11/26) -> process(74% 73% 74% 75% 73% 77% 73% 76% 73% 76% 76% 76% 77% 79% 75%) -> (6.2k/66k) -> write(23%)
+1:06:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 591M 70% 255k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 646k/s ] 149G blocks: [ 16k 90% 1/s ]
+ cpus: 11.7 gc: 5% heap: 11G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 6.5G
+ read( 0%) -> (11/26) -> process(71% 70% 70% 71% 71% 70% 68% 69% 70% 71% 68% 71% 71% 69% 70%) -> (7.9k/66k) -> write(22%)
+1:06:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 594M 71% 248k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 635k/s ] 149G blocks: [ 16k 90% 1/s ]
+ cpus: 11.6 gc: 4% heap: 16G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 6.5G
+ read( 0%) -> (11/26) -> process(73% 73% 72% 73% 76% 76% 73% 77% 72% 73% 75% 77% 73% 76% 74%) -> (9.1k/66k) -> write(23%)
+1:06:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 596M 71% 251k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 640k/s ] 149G blocks: [ 16k 90% 1/s ]
+ cpus: 12 gc: 5% heap: 16G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 6.5G
+ read( 0%) -> (11/26) -> process(76% 74% 73% 74% 74% 74% 76% 76% 73% 71% 74% 75% 77% 76% 76%) -> (5.6k/66k) -> write(23%)
+1:07:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 599M 71% 251k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 628k/s ] 150G blocks: [ 16k 90% 1/s ]
+ cpus: 11.9 gc: 5% heap: 16G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 6.5G
+ read( 0%) -> (11/26) -> process(76% 73% 75% 74% 72% 72% 76% 73% 73% 77% 76% 73% 73% 75% 75%) -> (8.3k/66k) -> write(22%)
+1:07:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 601M 71% 241k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 597k/s ] 150G blocks: [ 16k 90% 1/s ]
+ cpus: 11.4 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 6.6G
+ read( 0%) -> (11/26) -> process(73% 71% 73% 71% 72% 69% 69% 71% 70% 69% 70% 69% 70% 71% 71%) -> (4.7k/66k) -> write(21%)
+1:07:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 604M 72% 251k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 634k/s ] 151G blocks: [ 16k 90% 1/s ]
+ cpus: 12.1 gc: 3% heap: 6.8G/21G direct: 61M postGC: 4.4G relInfo: 962M mpGeoms: 6.6G
+ read( 0%) -> (11/26) -> process(76% 74% 74% 74% 77% 77% 72% 74% 74% 74% 74% 75% 75% 77% 74%) -> (7.3k/66k) -> write(22%)
+1:07:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 606M 72% 262k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 655k/s ] 151G blocks: [ 16k 90% 2/s ]
+ cpus: 12.3 gc: 4% heap: 11G/21G direct: 61M postGC: 5.9G relInfo: 962M mpGeoms: 6.6G
+ read( 0%) -> (11/26) -> process(79% 80% 75% 80% 74% 77% 73% 76% 76% 78% 78% 78% 78% 75% 76%) -> (8.6k/66k) -> write(23%)
+1:07:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 609M 72% 248k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 605k/s ] 151G blocks: [ 16k 90% 1/s ]
+ cpus: 11.1 gc: 4% heap: 13G/21G direct: 61M postGC: 7.3G relInfo: 962M mpGeoms: 6.6G
+ read( 0%) -> (11/26) -> process(68% 69% 69% 66% 71% 67% 70% 70% 66% 68% 69% 68% 70% 68% 71%) -> (6.8k/66k) -> write(21%)
+1:07:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 612M 73% 268k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 663k/s ] 152G blocks: [ 16k 91% 1/s ]
+ cpus: 12.1 gc: 5% heap: 10G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 6.7G
+ read( 0%) -> (11/26) -> process(76% 75% 75% 75% 74% 73% 78% 77% 75% 72% 76% 73% 74% 77% 73%) -> (8.7k/66k) -> write(24%)
+1:08:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 614M 73% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 642k/s ] 152G blocks: [ 17k 91% 1/s ]
+ cpus: 12.2 gc: 5% heap: 15G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 6.7G
+ read( 0%) -> (11/26) -> process(76% 78% 76% 78% 75% 74% 77% 76% 75% 74% 76% 78% 74% 76% 75%) -> (6.6k/66k) -> write(23%)
+1:08:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 617M 73% 236k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 577k/s ] 152G blocks: [ 17k 91% 2/s ]
+ cpus: 11.8 gc: 4% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 6.7G
+ read( 0%) -> (11/26) -> process(74% 75% 75% 73% 73% 74% 74% 72% 75% 72% 77% 72% 74% 73% 75%) -> (7.2k/66k) -> write(21%)
+1:08:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 619M 74% 223k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 559k/s ] 153G blocks: [ 17k 91% 1/s ]
+ cpus: 11.4 gc: 4% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 6.8G
+ read( 0%) -> (11/26) -> process(69% 74% 69% 70% 70% 75% 71% 70% 72% 70% 69% 70% 71% 72% 70%) -> (5.9k/66k) -> write(20%)
+1:08:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 621M 74% 247k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 619k/s ] 153G blocks: [ 17k 91% 1/s ]
+ cpus: 12.2 gc: 4% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 6.8G
+ read( 0%) -> (11/26) -> process(76% 76% 75% 75% 74% 74% 76% 76% 76% 80% 77% 76% 76% 75% 75%) -> (7.8k/66k) -> write(22%)
+1:08:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 624M 74% 236k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 613k/s ] 153G blocks: [ 17k 91% 1/s ]
+ cpus: 11.6 gc: 5% heap: 15G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 6.8G
+ read( 0%) -> (11/26) -> process(72% 70% 71% 72% 72% 73% 72% 75% 71% 71% 73% 72% 71% 72% 73%) -> (6.5k/66k) -> write(22%)
+1:08:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 626M 74% 226k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 580k/s ] 154G blocks: [ 17k 91% 1/s ]
+ cpus: 11.4 gc: 3% heap: 7.1G/21G direct: 61M postGC: 4.2G relInfo: 962M mpGeoms: 6.9G
+ read( 0%) -> (11/26) -> process(68% 69% 70% 70% 70% 68% 70% 73% 74% 73% 71% 73% 69% 73% 70%) -> (6.9k/66k) -> write(21%)
+1:09:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 628M 75% 230k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 601k/s ] 154G blocks: [ 17k 91% 1/s ]
+ cpus: 11.2 gc: 3% heap: 10G/21G direct: 61M postGC: 5.6G relInfo: 962M mpGeoms: 6.9G
+ read( 0%) -> (11/26) -> process(70% 70% 71% 72% 68% 73% 73% 69% 72% 72% 68% 72% 68% 68% 67%) -> (6.5k/66k) -> write(21%)
+1:09:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 631M 75% 240k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 600k/s ] 155G blocks: [ 17k 91% 1/s ]
+ cpus: 11.6 gc: 4% heap: 11G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 6.9G
+ read( 0%) -> (11/26) -> process(71% 75% 73% 73% 71% 70% 73% 70% 72% 72% 71% 71% 72% 71% 75%) -> (6.7k/66k) -> write(22%)
+1:09:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 633M 75% 248k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 612k/s ] 155G blocks: [ 17k 91% 1/s ]
+ cpus: 11.5 gc: 4% heap: 15G/21G direct: 61M postGC: 8.4G relInfo: 962M mpGeoms: 7G
+ read( 0%) -> (11/26) -> process(71% 69% 71% 73% 75% 74% 71% 70% 72% 71% 69% 72% 73% 72% 69%) -> (7k/66k) -> write(22%)
+1:09:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 636M 76% 246k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 599k/s ] 155G blocks: [ 17k 91% 1/s ]
+ cpus: 12.1 gc: 5% heap: 13G/21G direct: 61M postGC: 9.8G relInfo: 962M mpGeoms: 7G
+ read( 0%) -> (11/26) -> process(72% 71% 78% 75% 75% 80% 76% 75% 74% 74% 73% 77% 78% 77% 76%) -> (8.8k/66k) -> write(22%)
+1:09:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 638M 76% 228k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 561k/s ] 156G blocks: [ 17k 92% 1/s ]
+ cpus: 12.4 gc: 4% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 7.1G
+ read( 0%) -> (11/26) -> process(77% 76% 76% 79% 75% 76% 79% 80% 76% 86% 75% 76% 76% 76% 77%) -> (6.4k/66k) -> write(20%)
+1:09:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 640M 76% 249k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 610k/s ] 156G blocks: [ 17k 92% 1/s ]
+ cpus: 12.1 gc: 5% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 7.1G
+ read( 0%) -> (11/26) -> process(73% 71% 76% 76% 75% 76% 77% 76% 80% 74% 80% 73% 77% 74% 76%) -> (8.3k/66k) -> write(22%)
+1:10:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 643M 76% 235k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 574k/s ] 156G blocks: [ 17k 92% 1/s ]
+ cpus: 11.8 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 7.1G
+ read( 0%) -> (11/26) -> process(72% 71% 70% 74% 74% 71% 74% 84% 73% 71% 76% 71% 75% 73% 70%) -> (7.1k/66k) -> write(20%)
+1:10:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 645M 77% 259k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 634k/s ] 157G blocks: [ 17k 92% 1/s ]
+ cpus: 12.3 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 7.1G
+ read( 0%) -> (11/26) -> process(75% 77% 76% 76% 76% 77% 75% 78% 76% 75% 77% 77% 77% 76% 75%) -> (7.6k/66k) -> write(22%)
+1:10:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 648M 77% 254k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 623k/s ] 157G blocks: [ 17k 92% 1/s ]
+ cpus: 12.2 gc: 4% heap: 4.5G/21G direct: 61M postGC: 4.1G relInfo: 962M mpGeoms: 7.1G
+ read( 0%) -> (11/26) -> process(76% 75% 76% 73% 73% 73% 77% 74% 77% 71% 76% 75% 76% 76% 74%) -> (10k/66k) -> write(22%)
+1:10:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 650M 77% 257k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 620k/s ] 157G blocks: [ 17k 92% 1/s ]
+ cpus: 11.7 gc: 3% heap: 12G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 7.2G
+ read( 0%) -> (11/26) -> process(73% 74% 75% 73% 73% 72% 74% 72% 74% 75% 74% 77% 72% 74% 73%) -> (5.7k/66k) -> write(22%)
+1:10:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 653M 78% 246k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 594k/s ] 158G blocks: [ 17k 92% 1/s ]
+ cpus: 11.3 gc: 4% heap: 13G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 7.2G
+ read( 0%) -> (11/26) -> process(71% 68% 71% 69% 71% 68% 69% 69% 70% 71% 70% 71% 71% 69% 73%) -> (8k/66k) -> write(21%)
+1:10:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 656M 78% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 641k/s ] 158G blocks: [ 17k 92% 1/s ]
+ cpus: 12.2 gc: 5% heap: 14G/21G direct: 61M postGC: 8.7G relInfo: 962M mpGeoms: 7.2G
+ read( 0%) -> (11/26) -> process(75% 75% 75% 73% 75% 76% 76% 74% 78% 78% 73% 74% 75% 76% 75%) -> (7.5k/66k) -> write(23%)
+1:11:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 658M 78% 238k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 585k/s ] 158G blocks: [ 17k 92% 1/s ]
+ cpus: 11.1 gc: 4% heap: 13G/21G direct: 61M postGC: 9.8G relInfo: 962M mpGeoms: 7.2G
+ read( 0%) -> (11/26) -> process(68% 67% 72% 66% 68% 68% 68% 70% 71% 71% 66% 72% 70% 67% 68%) -> (10k/66k) -> write(21%)
+1:11:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 661M 79% 264k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 653k/s ] 159G blocks: [ 17k 92% 1/s ]
+ cpus: 12 gc: 4% heap: 16G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 7.3G
+ read( 0%) -> (11/26) -> process(77% 75% 77% 72% 74% 76% 77% 73% 73% 73% 76% 75% 75% 72% 75%) -> (8.5k/66k) -> write(23%)
+1:11:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 663M 79% 244k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 600k/s ] 159G blocks: [ 17k 93% 1/s ]
+ cpus: 11 gc: 4% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 7.3G
+ read( 0%) -> (11/26) -> process(68% 75% 66% 68% 69% 68% 68% 67% 67% 66% 67% 67% 70% 68% 66%) -> (5.6k/66k) -> write(21%)
+1:11:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 666M 79% 272k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 670k/s ] 159G blocks: [ 17k 93% 2/s ]
+ cpus: 12.3 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 7.3G
+ read( 0%) -> (11/26) -> process(75% 80% 76% 76% 77% 81% 76% 74% 75% 76% 77% 75% 74% 75% 75%) -> (8.7k/66k) -> write(23%)
+1:11:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 668M 79% 267k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 653k/s ] 160G blocks: [ 17k 93% 1/s ]
+ cpus: 12.3 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 7.3G
+ read( 0%) -> (11/26) -> process(75% 74% 77% 75% 77% 79% 76% 76% 77% 75% 79% 75% 75% 77% 79%) -> (7.2k/66k) -> write(22%)
+1:11:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 671M 80% 260k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 638k/s ] 160G blocks: [ 17k 93% 1/s ]
+ cpus: 12.1 gc: 4% heap: 4.6G/21G direct: 61M postGC: 4.5G relInfo: 962M mpGeoms: 7.3G
+ read( 0%) -> (11/26) -> process(75% 76% 73% 76% 73% 76% 75% 74% 74% 74% 75% 74% 74% 75% 77%) -> (6.3k/66k) -> write(22%)
+1:12:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 674M 80% 250k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 660k/s ] 161G blocks: [ 17k 93% 1/s ]
+ cpus: 12.6 gc: 4% heap: 10G/21G direct: 61M postGC: 5.7G relInfo: 962M mpGeoms: 7.4G
+ read( 0%) -> (11/26) -> process(75% 76% 79% 78% 89% 78% 89% 77% 76% 79% 90% 76% 75% 74% 77%) -> (5.5k/66k) -> write(24%)
+1:12:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 676M 80% 257k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 639k/s ] 161G blocks: [ 17k 93% 1/s ]
+ cpus: 12.5 gc: 5% heap: 8.9G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 7.4G
+ read( 0%) -> (11/26) -> process(76% 77% 77% 75% 81% 77% 85% 75% 76% 81% 77% 77% 78% 76% 76%) -> (7k/66k) -> write(23%)
+1:12:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 679M 81% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 637k/s ] 161G blocks: [ 17k 93% 1/s ]
+ cpus: 12 gc: 4% heap: 14G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 7.4G
+ read( 0%) -> (11/26) -> process(76% 73% 75% 74% 76% 77% 73% 75% 74% 75% 75% 75% 75% 72% 75%) -> (8.6k/66k) -> write(23%)
+1:12:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 681M 81% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 643k/s ] 162G blocks: [ 17k 93% 1/s ]
+ cpus: 11.8 gc: 4% heap: 15G/21G direct: 61M postGC: 9.8G relInfo: 962M mpGeoms: 7.4G
+ read( 0%) -> (11/26) -> process(74% 75% 74% 74% 73% 73% 73% 72% 73% 73% 71% 73% 73% 74% 75%) -> (6.1k/66k) -> write(23%)
+1:12:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 684M 81% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 657k/s ] 162G blocks: [ 17k 93% 2/s ]
+ cpus: 12.3 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 7.4G
+ read( 0%) -> (11/26) -> process(78% 77% 76% 76% 75% 75% 75% 77% 75% 76% 77% 76% 77% 76% 75%) -> (11k/66k) -> write(23%)
+1:12:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 687M 82% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 633k/s ] 162G blocks: [ 17k 93% 1/s ]
+ cpus: 12.3 gc: 4% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 7.5G
+ read( 0%) -> (11/26) -> process(77% 79% 76% 77% 77% 75% 76% 75% 80% 79% 77% 77% 75% 76% 76%) -> (6.8k/66k) -> write(23%)
+1:13:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 689M 82% 262k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 622k/s ] 163G blocks: [ 17k 94% 1/s ]
+ cpus: 11.7 gc: 5% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 7.5G
+ read( 0%) -> (11/26) -> process(73% 74% 72% 75% 73% 71% 69% 74% 76% 72% 73% 72% 73% 72% 71%) -> (6.4k/66k) -> write(22%)
+1:13:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 692M 82% 259k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 649k/s ] 163G blocks: [ 17k 94% 2/s ]
+ cpus: 12.3 gc: 5% heap: 16G/21G direct: 61M postGC: 16G relInfo: 962M mpGeoms: 7.6G
+ read( 0%) -> (11/26) -> process(77% 77% 76% 80% 78% 75% 75% 77% 77% 76% 75% 76% 73% 74% 75%) -> (8.1k/66k) -> write(23%)
+1:13:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 695M 83% 270k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 641k/s ] 163G blocks: [ 17k 94% 1/s ]
+ cpus: 12.2 gc: 3% heap: 8.4G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 7.6G
+ read( 0%) -> (11/26) -> process(76% 77% 74% 76% 73% 75% 73% 75% 76% 80% 76% 76% 76% 74% 75%) -> (8.3k/66k) -> write(23%)
+1:13:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 697M 83% 249k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 593k/s ] 164G blocks: [ 17k 94% 1/s ]
+ cpus: 11.3 gc: 5% heap: 6.6G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 7.6G
+ read( 0%) -> (11/26) -> process(71% 71% 70% 71% 72% 68% 70% 70% 71% 75% 68% 68% 72% 68% 69%) -> (7.8k/66k) -> write(21%)
+1:13:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 700M 83% 264k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 629k/s ] 164G blocks: [ 17k 94% 1/s ]
+ cpus: 12.4 gc: 4% heap: 9.3G/21G direct: 61M postGC: 7.8G relInfo: 962M mpGeoms: 7.6G
+ read( 0%) -> (11/26) -> process(79% 77% 78% 76% 76% 76% 76% 78% 77% 80% 78% 79% 79% 75% 75%) -> (8.4k/66k) -> write(23%)
+1:13:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 703M 83% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 632k/s ] 165G blocks: [ 17k 94% 1/s ]
+ cpus: 12.5 gc: 4% heap: 9.3G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 7.6G
+ read( 0%) -> (11/26) -> process(78% 78% 78% 77% 77% 77% 77% 79% 76% 81% 77% 77% 82% 78% 78%) -> (8.6k/66k) -> write(23%)
+1:14:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 705M 84% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 616k/s ] 165G blocks: [ 17k 94% 2/s ]
+ cpus: 12.1 gc: 4% heap: 15G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 7.7G
+ read( 0%) -> (11/26) -> process(76% 75% 74% 76% 74% 76% 76% 74% 75% 77% 75% 75% 75% 76% 76%) -> (7.5k/66k) -> write(22%)
+1:14:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 708M 84% 252k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 588k/s ] 165G blocks: [ 17k 94% 1/s ]
+ cpus: 11.5 gc: 5% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 7.7G
+ read( 0%) -> (11/26) -> process(73% 72% 68% 73% 72% 71% 71% 70% 68% 73% 72% 68% 71% 71% 72%) -> (8.2k/66k) -> write(21%)
+1:14:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 710M 84% 270k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 643k/s ] 166G blocks: [ 17k 94% 1/s ]
+ cpus: 12.2 gc: 5% heap: 13G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 7.7G
+ read( 0%) -> (11/26) -> process(78% 76% 74% 76% 74% 76% 76% 76% 76% 78% 75% 76% 77% 75% 77%) -> (8.1k/66k) -> write(23%)
+1:14:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 713M 85% 263k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 627k/s ] 166G blocks: [ 17k 94% 1/s ]
+ cpus: 12.2 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 7.7G
+ read( 0%) -> (11/26) -> process(76% 74% 73% 77% 75% 77% 75% 75% 74% 77% 76% 74% 76% 75% 77%) -> (6.8k/66k) -> write(22%)
+1:14:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 716M 85% 262k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 610k/s ] 166G blocks: [ 17k 95% 2/s ]
+ cpus: 12.3 gc: 5% heap: 5.6G/21G direct: 61M postGC: 5.6G relInfo: 962M mpGeoms: 7.8G
+ read( 0%) -> (11/26) -> process(76% 74% 77% 76% 74% 74% 74% 79% 72% 76% 76% 77% 74% 75% 76%) -> (5k/66k) -> write(21%)
+1:14:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 718M 85% 231k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 549k/s ] 167G blocks: [ 17k 95% 1/s ]
+ cpus: 10.7 gc: 2% heap: 11G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 7.8G
+ read( 0%) -> (11/26) -> process(67% 67% 66% 69% 65% 65% 69% 69% 68% 70% 69% 69% 66% 66% 64%) -> (8.4k/66k) -> write(20%)
+1:15:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 721M 86% 257k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 613k/s ] 167G blocks: [ 17k 95% 1/s ]
+ cpus: 11.9 gc: 4% heap: 10G/21G direct: 61M postGC: 6.7G relInfo: 962M mpGeoms: 7.8G
+ read( 0%) -> (11/26) -> process(75% 75% 74% 77% 75% 74% 71% 72% 75% 75% 78% 73% 74% 76% 76%) -> (6.3k/66k) -> write(22%)
+1:15:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 723M 86% 270k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 634k/s ] 167G blocks: [ 17k 95% 1/s ]
+ cpus: 12.3 gc: 4% heap: 10G/21G direct: 61M postGC: 7.8G relInfo: 962M mpGeoms: 7.8G
+ read( 0%) -> (11/26) -> process(75% 74% 78% 80% 76% 77% 76% 78% 77% 77% 77% 75% 76% 79% 76%) -> (7.9k/66k) -> write(23%)
+1:15:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 726M 86% 279k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 654k/s ] 168G blocks: [ 17k 95% 2/s ]
+ cpus: 12.5 gc: 5% heap: 10G/21G direct: 61M postGC: 9.4G relInfo: 962M mpGeoms: 7.9G
+ read( 0%) -> (11/26) -> process(80% 77% 76% 78% 76% 77% 75% 79% 77% 77% 77% 78% 76% 77% 77%) -> (8.7k/66k) -> write(23%)
+1:15:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 729M 87% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 620k/s ] 168G blocks: [ 17k 95% 1/s ]
+ cpus: 11.8 gc: 5% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 7.9G
+ read( 0%) -> (11/26) -> process(71% 75% 73% 73% 75% 73% 72% 72% 73% 74% 72% 73% 74% 72% 74%) -> (8.8k/66k) -> write(22%)
+1:15:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 732M 87% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 649k/s ] 168G blocks: [ 17k 95% 1/s ]
+ cpus: 12.3 gc: 5% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 7.9G
+ read( 0%) -> (11/26) -> process(75% 78% 76% 79% 76% 76% 76% 76% 79% 77% 75% 76% 76% 75% 75%) -> (7.6k/66k) -> write(23%)
+1:15:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 734M 87% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 637k/s ] 169G blocks: [ 17k 95% 1/s ]
+ cpus: 12.2 gc: 5% heap: 17G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 7.9G
+ read( 0%) -> (11/26) -> process(75% 78% 76% 77% 75% 74% 76% 76% 78% 75% 76% 75% 74% 75% 76%) -> (6.9k/66k) -> write(23%)
+1:16:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 737M 88% 249k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 586k/s ] 169G blocks: [ 17k 95% 1/s ]
+ cpus: 11.1 gc: 5% heap: 17G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 7.9G
+ read( 0%) -> (11/26) -> process(70% 70% 70% 70% 72% 65% 70% 70% 69% 67% 66% 66% 70% 68% 68%) -> (7.1k/66k) -> write(21%)
+1:16:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 739M 88% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 628k/s ] 169G blocks: [ 17k 95% 2/s ]
+ cpus: 12.1 gc: 3% heap: 8.7G/21G direct: 61M postGC: 4.9G relInfo: 962M mpGeoms: 8G
+ read( 0%) -> (11/26) -> process(74% 79% 78% 76% 75% 76% 74% 75% 74% 75% 75% 73% 77% 76% 73%) -> (9.6k/66k) -> write(23%)
+1:16:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 742M 88% 274k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 634k/s ] 170G blocks: [ 17k 95% 1/s ]
+ cpus: 12.1 gc: 5% heap: 9.2G/21G direct: 61M postGC: 6.3G relInfo: 962M mpGeoms: 8G
+ read( 0%) -> (11/26) -> process(73% 77% 79% 76% 76% 74% 74% 75% 76% 74% 75% 72% 78% 79% 74%) -> (7.8k/66k) -> write(23%)
+1:16:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 745M 89% 282k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 647k/s ] 170G blocks: [ 17k 96% 1/s ]
+ cpus: 12.5 gc: 4% heap: 10G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 8G
+ read( 0%) -> (11/26) -> process(78% 78% 76% 81% 75% 76% 78% 79% 77% 80% 75% 73% 81% 77% 82%) -> (6.8k/66k) -> write(23%)
+1:16:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 748M 89% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 632k/s ] 170G blocks: [ 17k 96% 2/s ]
+ cpus: 12.1 gc: 4% heap: 11G/21G direct: 61M postGC: 9.3G relInfo: 962M mpGeoms: 8G
+ read( 0%) -> (11/26) -> process(74% 75% 75% 74% 78% 74% 76% 78% 75% 75% 74% 74% 75% 75% 76%) -> (5.9k/66k) -> write(23%)
+1:16:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 751M 89% 276k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 644k/s ] 171G blocks: [ 17k 96% 1/s ]
+ cpus: 12.2 gc: 5% heap: 14G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 8G
+ read( 0%) -> (11/26) -> process(76% 75% 74% 76% 77% 77% 75% 77% 75% 76% 76% 72% 75% 74% 79%) -> (9k/66k) -> write(23%)
+1:17:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 753M 90% 291k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 668k/s ] 171G blocks: [ 17k 96% 1/s ]
+ cpus: 12.7 gc: 4% heap: 16G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 8.1G
+ read( 0%) -> (11/26) -> process(80% 79% 81% 83% 80% 82% 78% 79% 80% 78% 80% 77% 77% 80% 80%) -> (7.7k/66k) -> write(24%)
+1:17:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 756M 90% 273k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 629k/s ] 171G blocks: [ 18k 96% 1/s ]
+ cpus: 11.9 gc: 5% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 8.1G
+ read( 0%) -> (11/26) -> process(75% 74% 74% 77% 73% 76% 73% 75% 73% 74% 71% 72% 78% 73% 72%) -> (7.4k/66k) -> write(22%)
+1:17:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 759M 90% 278k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 638k/s ] 172G blocks: [ 18k 96% 2/s ]
+ cpus: 12.4 gc: 5% heap: 6G/21G direct: 61M postGC: 5G relInfo: 962M mpGeoms: 8.1G
+ read( 0%) -> (11/26) -> process(75% 74% 74% 77% 74% 77% 74% 74% 74% 74% 76% 77% 78% 81% 74%) -> (7.2k/66k) -> write(22%)
+1:17:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 762M 91% 278k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 639k/s ] 172G blocks: [ 18k 96% 1/s ]
+ cpus: 12.4 gc: 3% heap: 5.6G/21G direct: 61M postGC: 5.5G relInfo: 962M mpGeoms: 8.1G
+ read( 0%) -> (11/26) -> process(80% 78% 77% 78% 79% 76% 76% 79% 80% 75% 80% 78% 77% 78% 79%) -> (10k/66k) -> write(23%)
+1:17:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 765M 91% 277k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 638k/s ] 172G blocks: [ 18k 96% 1/s ]
+ cpus: 12.2 gc: 5% heap: 9.9G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 8.1G
+ read( 0%) -> (11/26) -> process(78% 78% 77% 77% 78% 73% 77% 74% 74% 76% 75% 74% 76% 76% 73%) -> (7.1k/66k) -> write(23%)
+1:17:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 767M 91% 269k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 620k/s ] 173G blocks: [ 18k 96% 2/s ]
+ cpus: 12 gc: 4% heap: 15G/21G direct: 61M postGC: 8.5G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(78% 75% 74% 75% 77% 74% 76% 75% 72% 78% 73% 77% 74% 75% 74%) -> (8.4k/66k) -> write(22%)
+1:18:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 770M 91% 260k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 606k/s ] 173G blocks: [ 18k 96% 1/s ]
+ cpus: 12 gc: 5% heap: 16G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(75% 75% 75% 75% 73% 75% 76% 76% 73% 72% 73% 72% 75% 74% 72%) -> (7k/66k) -> write(22%)
+1:18:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 772M 92% 264k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 618k/s ] 173G blocks: [ 18k 97% 1/s ]
+ cpus: 11.9 gc: 5% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(75% 73% 75% 79% 74% 73% 78% 75% 72% 71% 73% 74% 74% 74% 73%) -> (7k/66k) -> write(22%)
+1:18:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 775M 92% 265k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 617k/s ] 174G blocks: [ 18k 97% 1/s ]
+ cpus: 12 gc: 4% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(74% 76% 76% 76% 76% 73% 76% 73% 75% 74% 70% 75% 74% 75% 72%) -> (7k/66k) -> write(22%)
+1:18:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 778M 92% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 616k/s ] 174G blocks: [ 18k 97% 1/s ]
+ cpus: 12 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(74% 74% 73% 73% 74% 76% 75% 76% 75% 76% 75% 75% 76% 72% 77%) -> (9.6k/66k) -> write(22%)
+1:18:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 780M 93% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 620k/s ] 174G blocks: [ 18k 97% 2/s ]
+ cpus: 12.4 gc: 5% heap: 7.9G/21G direct: 61M postGC: 5.4G relInfo: 962M mpGeoms: 8.2G
+ read( 0%) -> (11/26) -> process(75% 74% 75% 75% 73% 76% 75% 75% 79% 72% 77% 76% 74% 76% 75%) -> (8k/66k) -> write(22%)
+1:18:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 783M 93% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 645k/s ] 175G blocks: [ 18k 97% 1/s ]
+ cpus: 12.2 gc: 3% heap: 11G/21G direct: 61M postGC: 5.3G relInfo: 962M mpGeoms: 8.3G
+ read( 0%) -> (11/26) -> process(74% 81% 78% 77% 77% 77% 74% 78% 76% 77% 76% 79% 78% 76% 80%) -> (5.7k/66k) -> write(23%)
+1:19:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 786M 93% 260k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 620k/s ] 175G blocks: [ 18k 97% 1/s ]
+ cpus: 12.1 gc: 5% heap: 9.9G/21G direct: 61M postGC: 6.8G relInfo: 962M mpGeoms: 8.3G
+ read( 0%) -> (11/26) -> process(75% 74% 76% 79% 75% 75% 72% 75% 74% 73% 75% 76% 76% 76% 73%) -> (8.3k/66k) -> write(22%)
+1:19:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 788M 94% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 619k/s ] 176G blocks: [ 18k 97% 1/s ]
+ cpus: 12.2 gc: 5% heap: 13G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 8.3G
+ read( 0%) -> (11/26) -> process(76% 76% 77% 78% 76% 75% 76% 76% 76% 76% 77% 75% 76% 76% 76%) -> (5.1k/66k) -> write(22%)
+1:19:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 791M 94% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 614k/s ] 176G blocks: [ 18k 97% 1/s ]
+ cpus: 12 gc: 5% heap: 14G/21G direct: 61M postGC: 9.6G relInfo: 962M mpGeoms: 8.3G
+ read( 0%) -> (11/26) -> process(75% 74% 73% 75% 76% 74% 74% 76% 75% 75% 74% 75% 73% 76% 73%) -> (8.8k/66k) -> write(22%)
+1:19:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 794M 94% 268k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 630k/s ] 176G blocks: [ 18k 97% 2/s ]
+ cpus: 12.6 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 8.4G
+ read( 0%) -> (11/26) -> process(80% 78% 77% 77% 77% 77% 80% 78% 81% 76% 78% 78% 79% 78% 76%) -> (8.7k/66k) -> write(22%)
+1:19:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 796M 95% 277k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 638k/s ] 177G blocks: [ 18k 97% 1/s ]
+ cpus: 12.8 gc: 5% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 8.4G
+ read( 0%) -> (11/26) -> process(78% 80% 79% 78% 82% 78% 83% 81% 78% 78% 79% 79% 78% 79% 84%) -> (8.3k/66k) -> write(23%)
+1:19:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 799M 95% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 620k/s ] 177G blocks: [ 18k 98% 1/s ]
+ cpus: 12.5 gc: 5% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 8.4G
+ read( 0%) -> (11/26) -> process(76% 77% 78% 76% 78% 79% 80% 81% 73% 80% 76% 75% 78% 76% 78%) -> (7.2k/66k) -> write(22%)
+1:20:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 802M 95% 270k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 627k/s ] 177G blocks: [ 18k 98% 1/s ]
+ cpus: 12.2 gc: 5% heap: 16G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 8.4G
+ read( 0%) -> (11/26) -> process(77% 76% 77% 75% 76% 77% 75% 77% 81% 76% 73% 76% 74% 76% 75%) -> (9k/66k) -> write(22%)
+1:20:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 804M 96% 266k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 617k/s ] 178G blocks: [ 18k 98% 2/s ]
+ cpus: 12.4 gc: 3% heap: 10G/21G direct: 61M postGC: 5G relInfo: 962M mpGeoms: 8.4G
+ read( 0%) -> (11/26) -> process(75% 77% 76% 79% 76% 76% 76% 78% 77% 76% 75% 78% 83% 77% 77%) -> (6k/66k) -> write(22%)
+1:20:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 807M 96% 253k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 594k/s ] 178G blocks: [ 18k 98% 1/s ]
+ cpus: 11.9 gc: 5% heap: 14G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 8.5G
+ read( 0%) -> (11/26) -> process(71% 74% 75% 74% 73% 72% 74% 73% 76% 74% 77% 77% 73% 73% 73%) -> (6.1k/66k) -> write(21%)
+1:20:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 810M 96% 277k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 638k/s ] 178G blocks: [ 18k 98% 1/s ]
+ cpus: 12.8 gc: 5% heap: 11G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 8.5G
+ read( 0%) -> (11/26) -> process(82% 79% 85% 76% 76% 81% 83% 77% 78% 81% 81% 75% 75% 80% 79%) -> (7.5k/66k) -> write(23%)
+1:20:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 813M 97% 279k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 647k/s ] 179G blocks: [ 18k 98% 1/s ]
+ cpus: 12.8 gc: 5% heap: 9.6G/21G direct: 61M postGC: 9.5G relInfo: 962M mpGeoms: 8.5G
+ read( 0%) -> (11/26) -> process(77% 79% 81% 80% 79% 80% 78% 78% 83% 79% 79% 77% 79% 80% 78%) -> (7.4k/66k) -> write(23%)
+1:20:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 815M 97% 278k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 637k/s ] 179G blocks: [ 18k 98% 1/s ]
+ cpus: 12.7 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 8.5G
+ read( 0%) -> (11/26) -> process(79% 79% 79% 79% 77% 78% 77% 78% 79% 76% 83% 80% 79% 79% 80%) -> (7.4k/66k) -> write(23%)
+1:21:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 818M 97% 259k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 605k/s ] 179G blocks: [ 18k 98% 1/s ]
+ cpus: 12.2 gc: 5% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 8.5G
+ read( 0%) -> (11/26) -> process(76% 74% 77% 75% 73% 76% 75% 74% 75% 77% 77% 76% 78% 76% 77%) -> (7.5k/66k) -> write(21%)
+1:21:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 821M 98% 269k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 630k/s ] 180G blocks: [ 18k 98% 1/s ]
+ cpus: 12.6 gc: 5% heap: 14G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 8.6G
+ read( 0%) -> (11/26) -> process(77% 77% 79% 76% 77% 77% 78% 76% 79% 77% 78% 77% 79% 78% 82%) -> (7.8k/66k) -> write(22%)
+1:21:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 823M 98% 273k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 634k/s ] 180G blocks: [ 18k 98% 1/s ]
+ cpus: 12.7 gc: 5% heap: 15G/21G direct: 61M postGC: 15G relInfo: 962M mpGeoms: 8.6G
+ read( 0%) -> (11/26) -> process(78% 77% 78% 78% 78% 77% 82% 78% 79% 80% 79% 81% 83% 79% 78%) -> (6.2k/66k) -> write(22%)
+1:21:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 826M 98% 263k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 615k/s ] 180G blocks: [ 18k 99% 1/s ]
+ cpus: 12.6 gc: 3% heap: 9.3G/21G direct: 61M postGC: 5G relInfo: 962M mpGeoms: 8.6G
+ read( 0%) -> (11/26) -> process(80% 78% 78% 78% 76% 77% 79% 78% 78% 78% 79% 76% 77% 81% 77%) -> (7.9k/66k) -> write(22%)
+1:21:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 829M 98% 261k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 600k/s ] 181G blocks: [ 18k 99% 1/s ]
+ cpus: 12.2 gc: 4% heap: 15G/21G direct: 61M postGC: 6.3G relInfo: 962M mpGeoms: 8.6G
+ read( 0%) -> (11/26) -> process(77% 79% 74% 75% 75% 75% 78% 76% 75% 75% 75% 77% 76% 76% 75%) -> (5k/66k) -> write(21%)
+1:21:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 831M 99% 272k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 614k/s ] 181G blocks: [ 18k 99% 2/s ]
+ cpus: 12.7 gc: 5% heap: 8.3G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 8.7G
+ read( 0%) -> (11/26) -> process(77% 81% 78% 78% 79% 77% 79% 78% 76% 79% 80% 80% 79% 80% 78%) -> (7k/66k) -> write(22%)
+1:22:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 834M 99% 272k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 630k/s ] 181G blocks: [ 18k 99% 1/s ]
+ cpus: 12.7 gc: 5% heap: 11G/21G direct: 61M postGC: 9.6G relInfo: 962M mpGeoms: 8.7G
+ read( 0%) -> (11/26) -> process(78% 78% 79% 81% 80% 80% 81% 77% 79% 79% 79% 80% 80% 80% 79%) -> (7k/66k) -> write(22%)
+1:22:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 837M 99% 271k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 635k/s ] 182G blocks: [ 18k 99% 1/s ]
+ cpus: 12.6 gc: 5% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 8.7G
+ read( 0%) -> (11/26) -> process(77% 76% 79% 83% 76% 79% 78% 78% 79% 82% 79% 76% 79% 77% 78%) -> (7.1k/66k) -> write(23%)
+1:22:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 839M 100% 265k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 617k/s ] 182G blocks: [ 18k 99% 1/s ]
+ cpus: 12.6 gc: 5% heap: 15G/21G direct: 61M postGC: 4.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 76% 76% 76% 77% 78% 74% 78% 75% 77% 77% 77% 79% 77% 74%) -> (8.1k/66k) -> write(22%)
+1:22:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 199k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 458k/s ] 182G blocks: [ 18k 99% 1/s ]
+ cpus: 9 gc: 3% heap: 6.5G/21G direct: 61M postGC: 5.6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 64% 77% 67% 61% 77% 28% 53% 41% 32% 78% 57% 48% 47% 41%) -> (8.3k/66k) -> write(16%)
+1:22:36 INF [osm_pass2:process] - Finished ways: 841,994,745 (221k/s) in 1h3m23s cpu:12h8m11s gc:2m34s avg:11.5
+1:22:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 623/s ] rels: [ 147k 2% 14k/s ] features: [ 2.8B 64k/s ] 183G blocks: [ 18k 99% <1/s ]
+ cpus: 11.6 gc: 2% heap: 11G/21G direct: 61M postGC: 5.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(71% 64% 72% 63% 79% 72% 65% 76% 68% 67% 73% 76% 81% 75% 77%) -> (6.5k/66k) -> write( 3%)
+1:22:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 230k 2% 8.2k/s ] features: [ 2.8B 70k/s ] 183G blocks: [ 18k 99% <1/s ]
+ cpus: 11.8 gc: 2% heap: 8G/21G direct: 61M postGC: 5.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(71% 76% 83% 75% 82% 76% 74% 80% 71% 67% 75% 80% 81% 78% 71%) -> (7k/66k) -> write( 3%)
+1:23:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 326k 3% 9.5k/s ] features: [ 2.8B 53k/s ] 183G blocks: [ 18k 99% 0/s ]
+ cpus: 12 gc: 2% heap: 13G/21G direct: 61M postGC: 5.8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(70% 83% 84% 74% 78% 85% 73% 81% 79% 76% 77% 78% 78% 78% 76%) -> (6.4k/66k) -> write( 3%)
+1:23:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 405k 4% 7.9k/s ] features: [ 2.8B 474k/s ] 183G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 1% heap: 12G/21G direct: 61M postGC: 5.9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 94% 85% 79% 82% 85% 66% 86% 78% 76% 80% 82% 85% 86% 81%) -> (8.6k/66k) -> write(10%)
+1:23:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 481k 5% 7.5k/s ] features: [ 2.8B 209k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 12.4 gc: 1% heap: 12G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(74% 92% 83% 81% 80% 79% 67% 83% 79% 75% 83% 86% 83% 89% 80%) -> (6.8k/66k) -> write( 6%)
+1:23:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 564k 6% 8.2k/s ] features: [ 2.8B 65k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 11.9 gc: 1% heap: 12G/21G direct: 61M postGC: 6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 86% 78% 73% 75% 75% 73% 79% 81% 77% 80% 81% 81% 79% 73%) -> (8.9k/66k) -> write( 3%)
+1:23:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 651k 7% 8.6k/s ] features: [ 2.8B 56k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 2% heap: 15G/21G direct: 61M postGC: 6.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 88% 82% 79% 74% 84% 75% 90% 87% 81% 81% 79% 83% 82% 81%) -> (6.9k/66k) -> write( 3%)
+1:23:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 730k 8% 7.9k/s ] features: [ 2.8B 59k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 12.2 gc: 2% heap: 6.3G/21G direct: 61M postGC: 6.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 83% 77% 78% 75% 75% 71% 77% 85% 87% 84% 80% 92% 76% 78%) -> (5k/66k) -> write( 3%)
+1:24:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 814k 8% 8.4k/s ] features: [ 2.8B 79k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 12.1 gc: 1% heap: 10G/21G direct: 61M postGC: 6.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 85% 83% 76% 79% 79% 76% 79% 82% 84% 81% 75% 82% 81% 78%) -> (8.4k/66k) -> write( 4%)
+1:24:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 894k 9% 7.9k/s ] features: [ 2.8B 66k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 1% heap: 16G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(84% 86% 87% 86% 84% 78% 80% 81% 82% 79% 78% 82% 84% 87% 79%) -> (7.2k/66k) -> write( 3%)
+1:24:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 981k 10% 8.7k/s ] features: [ 2.8B 65k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 1% heap: 11G/21G direct: 61M postGC: 6.5G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(82% 82% 77% 83% 87% 78% 82% 85% 84% 83% 83% 75% 83% 85% 85%) -> (8.2k/66k) -> write( 3%)
+1:24:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1M 11% 10k/s ] features: [ 2.8B 90k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 12.4 gc: 1% heap: 7.4G/21G direct: 61M postGC: 6.6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(86% 78% 80% 83% 82% 81% 83% 80% 85% 79% 84% 82% 76% 82% 81%) -> (7.2k/66k) -> write( 4%)
+1:24:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.1M 12% 10k/s ] features: [ 2.8B 66k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 11.6 gc: 1% heap: 9.6G/21G direct: 61M postGC: 6.8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 68% 76% 77% 78% 74% 74% 77% 82% 77% 75% 76% 71% 76% 78%) -> (10k/66k) -> write( 3%)
+1:24:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.2M 13% 10k/s ] features: [ 2.8B 482k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 12 gc: 2% heap: 7.7G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(73% 76% 73% 74% 79% 79% 76% 78% 77% 88% 79% 80% 81% 80% 73%) -> (7.5k/66k) -> write(11%)
+1:25:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.3M 14% 9.5k/s ] features: [ 2.8B 557k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 11.8 gc: 2% heap: 15G/21G direct: 61M postGC: 7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 73% 73% 73% 79% 76% 81% 77% 67% 91% 76% 77% 76% 73% 73%) -> (7.5k/66k) -> write(12%)
+1:25:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.4M 15% 10k/s ] features: [ 2.8B 64k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 11.8 gc: 1% heap: 12G/21G direct: 61M postGC: 7.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 74% 81% 78% 83% 74% 79% 80% 74% 80% 78% 79% 68% 74% 79%) -> (6.4k/66k) -> write( 3%)
+1:25:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.5M 16% 10k/s ] features: [ 2.8B 80k/s ] 186G blocks: [ 18k 99% 0/s ]
+ cpus: 11.8 gc: 1% heap: 9.8G/21G direct: 61M postGC: 7.1G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 70% 77% 79% 79% 72% 81% 78% 75% 79% 81% 80% 72% 75% 82%) -> (7.3k/66k) -> write( 4%)
+1:25:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.7M 18% 11k/s ] features: [ 2.8B 118k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 12.2 gc: 1% heap: 9.8G/21G direct: 61M postGC: 7.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 80% 76% 81% 85% 80% 80% 83% 78% 79% 82% 78% 81% 78% 78%) -> (9.5k/66k) -> write( 5%)
+1:25:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.8M 19% 10k/s ] features: [ 2.8B 89k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 12 gc: 1% heap: 10G/21G direct: 61M postGC: 7.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(84% 81% 74% 84% 81% 76% 80% 85% 80% 80% 77% 75% 69% 75% 83%) -> (6.4k/66k) -> write( 4%)
+1:25:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.9M 20% 12k/s ] features: [ 2.8B 90k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 12.1 gc: 1% heap: 12G/21G direct: 61M postGC: 7.6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(91% 86% 77% 82% 79% 80% 79% 79% 83% 78% 76% 76% 69% 78% 76%) -> (6.3k/66k) -> write( 4%)
+1:26:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2M 21% 13k/s ] features: [ 2.8B 77k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 11.4 gc: 2% heap: 14G/21G direct: 61M postGC: 7.8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(74% 78% 71% 82% 69% 79% 75% 68% 74% 76% 70% 74% 70% 73% 74%) -> (7.3k/66k) -> write( 4%)
+1:26:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.1M 23% 13k/s ] features: [ 2.8B 67k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 11.3 gc: 2% heap: 15G/21G direct: 61M postGC: 8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(73% 76% 73% 79% 70% 73% 80% 58% 74% 71% 73% 75% 70% 79% 73%) -> (7.1k/66k) -> write( 3%)
+1:26:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.3M 24% 12k/s ] features: [ 2.8B 73k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 11 gc: 2% heap: 15G/21G direct: 61M postGC: 8.1G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 80% 67% 75% 71% 71% 72% 63% 70% 73% 74% 71% 72% 67% 67%) -> (7.6k/66k) -> write( 3%)
+1:26:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.4M 25% 13k/s ] features: [ 2.8B 82k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 12.2 gc: 2% heap: 15G/21G direct: 61M postGC: 8.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(93% 80% 76% 88% 79% 81% 81% 78% 78% 76% 81% 79% 83% 76% 66%) -> (8.3k/66k) -> write( 4%)
+1:26:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.6M 27% 15k/s ] features: [ 2.8B 90k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 1% heap: 8.9G/21G direct: 61M postGC: 8.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(86% 79% 79% 85% 78% 84% 78% 81% 82% 78% 83% 87% 83% 83% 76%) -> (7k/66k) -> write( 4%)
+1:26:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.7M 28% 15k/s ] features: [ 2.8B 77k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 12.2 gc: 1% heap: 9G/21G direct: 61M postGC: 8.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(83% 79% 82% 79% 80% 82% 79% 82% 81% 82% 82% 79% 85% 79% 68%) -> (7.7k/66k) -> write( 4%)
+1:27:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.9M 30% 15k/s ] features: [ 2.8B 96k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 12.3 gc: 2% heap: 12G/21G direct: 61M postGC: 8.8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 75% 77% 85% 79% 83% 80% 78% 85% 82% 81% 71% 83% 86% 77%) -> (6.6k/66k) -> write( 4%)
+1:27:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3M 31% 12k/s ] features: [ 2.8B 81k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 12.3 gc: 3% heap: 10G/21G direct: 61M postGC: 8.9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(82% 80% 74% 85% 76% 87% 85% 64% 81% 81% 81% 76% 84% 79% 79%) -> (7.2k/66k) -> write( 4%)
+1:27:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.1M 33% 14k/s ] features: [ 2.8B 98k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 12.1 gc: 1% heap: 15G/21G direct: 61M postGC: 8.9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 77% 77% 75% 86% 79% 84% 73% 83% 78% 78% 77% 82% 82% 80%) -> (7.9k/66k) -> write( 4%)
+1:27:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.3M 35% 15k/s ] features: [ 2.8B 91k/s ] 189G blocks: [ 18k 99% <1/s ]
+ cpus: 12.4 gc: 1% heap: 14G/21G direct: 61M postGC: 9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(82% 83% 78% 82% 81% 81% 77% 81% 86% 79% 81% 78% 88% 82% 80%) -> (7.5k/66k) -> write( 4%)
+1:27:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.5M 36% 15k/s ] features: [ 2.8B 118k/s ] 189G blocks: [ 18k 99% <1/s ]
+ cpus: 12.5 gc: 1% heap: 14G/21G direct: 61M postGC: 9.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(83% 75% 81% 81% 87% 90% 81% 80% 82% 82% 87% 85% 79% 77% 83%) -> (6.8k/66k) -> write( 5%)
+1:27:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.6M 38% 14k/s ] features: [ 2.8B 78k/s ] 189G blocks: [ 18k 99% <1/s ]
+ cpus: 11.6 gc: 2% heap: 12G/21G direct: 61M postGC: 9.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(73% 98% 74% 73% 79% 74% 73% 72% 69% 74% 74% 77% 75% 69% 80%) -> (6.4k/66k) -> write( 4%)
+1:28:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.8M 39% 14k/s ] features: [ 2.8B 119k/s ] 189G blocks: [ 18k 100% <1/s ]
+ cpus: 11.8 gc: 2% heap: 11G/21G direct: 61M postGC: 9.5G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 84% 77% 78% 87% 73% 79% 73% 73% 78% 76% 83% 66% 77% 71%) -> (7.8k/66k) -> write( 5%)
+1:28:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.9M 41% 14k/s ] features: [ 2.8B 73k/s ] 190G blocks: [ 18k 100% <1/s ]
+ cpus: 12.1 gc: 2% heap: 12G/21G direct: 61M postGC: 9.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(84% 79% 74% 77% 87% 79% 86% 79% 73% 81% 73% 85% 70% 73% 79%) -> (7.1k/66k) -> write( 4%)
+1:28:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.1M 42% 16k/s ] features: [ 2.8B 68k/s ] 190G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 3% heap: 11G/21G direct: 61M postGC: 9.9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 79% 77% 80% 84% 83% 86% 78% 78% 79% 78% 78% 78% 77% 78%) -> (7.1k/66k) -> write( 3%)
+1:28:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.2M 44% 16k/s ] features: [ 2.8B 84k/s ] 190G blocks: [ 18k 100% <1/s ]
+ cpus: 12.2 gc: 2% heap: 16G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 80% 80% 76% 76% 80% 79% 73% 80% 80% 84% 77% 80% 78% 81%) -> (5.7k/66k) -> write( 4%)
+1:28:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.4M 46% 16k/s ] features: [ 2.8B 79k/s ] 190G blocks: [ 18k 100% 0/s ]
+ cpus: 12 gc: 2% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 81% 77% 79% 74% 73% 69% 81% 78% 81% 97% 76% 75% 74% 76%) -> (6.8k/66k) -> write( 4%)
+1:28:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.6M 47% 16k/s ] features: [ 2.8B 215k/s ] 191G blocks: [ 18k 100% <1/s ]
+ cpus: 12.5 gc: 1% heap: 13G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(84% 85% 82% 81% 82% 81% 82% 70% 81% 88% 96% 79% 78% 85% 78%) -> (8.2k/66k) -> write( 8%)
+1:29:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.7M 49% 15k/s ] features: [ 2.8B 67k/s ] 191G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 2% heap: 10G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 76% 77% 78% 77% 84% 77% 81% 82% 82% 90% 73% 79% 80% 78%) -> (6.6k/66k) -> write( 3%)
+1:29:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.9M 51% 15k/s ] features: [ 2.8B 84k/s ] 191G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 3% heap: 12G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 90% 82% 78% 77% 78% 78% 82% 77% 80% 83% 82% 80% 83% 76%) -> (9.4k/66k) -> write( 4%)
+1:29:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5M 52% 15k/s ] features: [ 2.8B 108k/s ] 191G blocks: [ 18k 100% <1/s ]
+ cpus: 12.2 gc: 2% heap: 13G/21G direct: 61M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 77% 81% 79% 85% 80% 78% 73% 76% 82% 80% 78% 81% 82% 82%) -> (8.6k/66k) -> write( 4%)
+1:29:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.2M 54% 16k/s ] features: [ 2.8B 674k/s ] 193G blocks: [ 18k 100% <1/s ]
+ cpus: 11.8 gc: 2% heap: 13G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(72% 72% 79% 77% 74% 76% 73% 72% 79% 76% 70% 84% 78% 77% 76%) -> (7.4k/66k) -> write(20%)
+1:29:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.4M 56% 21k/s ] features: [ 2.8B 86k/s ] 193G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 3% heap: 15G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(72% 76% 84% 84% 78% 79% 77% 80% 83% 78% 77% 81% 81% 80% 79%) -> (6.9k/66k) -> write( 4%)
+1:29:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.6M 58% 17k/s ] features: [ 2.8B 123k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 12.5 gc: 1% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(85% 78% 87% 82% 88% 82% 80% 83% 77% 78% 79% 80% 84% 81% 85%) -> (8.8k/66k) -> write( 5%)
+1:30:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.7M 60% 15k/s ] features: [ 2.8B 168k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 1% heap: 14G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(76% 78% 86% 85% 84% 79% 79% 79% 77% 84% 82% 84% 82% 83% 82%) -> (8.4k/66k) -> write( 6%)
+1:30:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.9M 61% 15k/s ] features: [ 2.8B 159k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 1% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(69% 78% 81% 83% 83% 76% 79% 84% 76% 83% 81% 85% 83% 83% 86%) -> (6.9k/66k) -> write( 6%)
+1:30:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.1M 63% 18k/s ] features: [ 2.8B 134k/s ] 195G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 3% heap: 12G/21G direct: 61M postGC: 11G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(75% 79% 82% 88% 84% 71% 76% 85% 73% 81% 81% 80% 79% 76% 83%) -> (8.8k/66k) -> write( 6%)
+1:30:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.3M 65% 16k/s ] features: [ 2.8B 77k/s ] 195G blocks: [ 18k 100% <1/s ]
+ cpus: 11.9 gc: 2% heap: 12G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(75% 76% 81% 81% 80% 67% 72% 82% 75% 76% 85% 75% 78% 75% 80%) -> (6.6k/66k) -> write( 4%)
+1:30:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.4M 67% 18k/s ] features: [ 2.8B 95k/s ] 195G blocks: [ 18k 100% <1/s ]
+ cpus: 12.1 gc: 2% heap: 14G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(77% 77% 85% 82% 83% 78% 77% 78% 80% 78% 87% 78% 77% 77% 72%) -> (8.4k/66k) -> write( 4%)
+1:30:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.6M 69% 16k/s ] features: [ 2.8B 129k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 12.1 gc: 2% heap: 13G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(79% 75% 81% 77% 79% 80% 77% 78% 81% 75% 82% 78% 77% 79% 78%) -> (8.1k/66k) -> write( 5%)
+1:31:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.8M 70% 18k/s ] features: [ 2.8B 73k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 1% heap: 16G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(87% 80% 79% 83% 83% 78% 78% 76% 87% 83% 82% 82% 79% 87% 78%) -> (9.5k/66k) -> write( 4%)
+1:31:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7M 72% 17k/s ] features: [ 2.8B 71k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 13 gc: 2% heap: 15G/21G direct: 61M postGC: 12G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(87% 82% 87% 82% 86% 88% 83% 82% 87% 85% 89% 83% 79% 85% 84%) -> (8.1k/66k) -> write( 3%)
+1:31:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.1M 74% 13k/s ] features: [ 2.8B 111k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 12.9 gc: 3% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(81% 80% 80% 84% 85% 90% 86% 77% 87% 85% 84% 80% 81% 84% 81%) -> (5.3k/66k) -> write( 4%)
+1:31:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.3M 75% 14k/s ] features: [ 2.8B 84k/s ] 196G blocks: [ 18k 100% 0/s ]
+ cpus: 12.6 gc: 2% heap: 16G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(78% 78% 79% 84% 83% 88% 87% 76% 85% 80% 83% 75% 84% 87% 83%) -> (6.8k/66k) -> write( 4%)
+1:31:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.4M 77% 15k/s ] features: [ 2.8B 74k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 12.8 gc: 1% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(88% 79% 85% 86% 81% 85% 85% 82% 87% 83% 84% 81% 84% 84% 89%) -> (7.6k/66k) -> write( 3%)
+1:31:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.6M 78% 16k/s ] features: [ 2.8B 71k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 12.8 gc: 1% heap: 14G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(86% 84% 81% 83% 80% 90% 88% 84% 82% 84% 81% 79% 88% 86% 86%) -> (4.7k/66k) -> write( 3%)
+1:32:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.7M 80% 14k/s ] features: [ 2.8B 64k/s ] 197G blocks: [ 18k 100% 0/s ]
+ cpus: 12.7 gc: 1% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(91% 82% 82% 78% 80% 84% 91% 82% 85% 82% 86% 83% 83% 81% 86%) -> (6.9k/66k) -> write( 3%)
+1:32:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.9M 81% 13k/s ] features: [ 2.8B 65k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 13 gc: 1% heap: 16G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(89% 86% 88% 81% 84% 92% 93% 84% 83% 83% 84% 86% 86% 87% 82%) -> (7.6k/66k) -> write( 3%)
+1:32:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8M 83% 14k/s ] features: [ 2.8B 83k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 12.6 gc: 2% heap: 15G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(82% 81% 78% 79% 82% 85% 84% 80% 82% 80% 78% 86% 84% 85% 82%) -> (7k/66k) -> write( 3%)
+1:32:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.2M 85% 16k/s ] features: [ 2.8B 66k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 12.8 gc: 3% heap: 16G/21G direct: 61M postGC: 13G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(84% 80% 82% 84% 80% 81% 89% 84% 88% 84% 81% 78% 79% 82% 84%) -> (6.6k/66k) -> write( 3%)
+1:32:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.4M 87% 19k/s ] features: [ 2.8B 75k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 12.6 gc: 2% heap: 15G/21G direct: 61M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (11/26) -> process(80% 79% 80% 85% 81% 80% 87% 86% 82% 81% 78% 79% 78% 88% 83%) -> (6.6k/66k) -> write( 3%)
+1:32:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.6M 89% 19k/s ] features: [ 2.8B 75k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 12.5 gc: 2% heap: 16G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (9/26) -> process(85% 81% 80% 80% 82% 80% 79% 86% 82% 77% 75% 80% 79% 93% 82%) -> (7.8k/66k) -> write( 3%)
+1:33:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.7M 90% 17k/s ] features: [ 2.8B 86k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 2% heap: 15G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (7/26) -> process(78% 79% 79% 77% 82% 77% 81% 90% 81% 76% 77% 77% 79% 80% 83%) -> (6k/66k) -> write( 4%)
+1:33:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.9M 92% 19k/s ] features: [ 2.8B 116k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 12.5 gc: 2% heap: 15G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (5/26) -> process(81% 82% 81% 80% 81% 80% 81% 84% 80% 78% 81% 84% 81% 80% 81%) -> (8.1k/66k) -> write( 5%)
+1:33:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.1M 94% 18k/s ] features: [ 2.8B 73k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 12.5 gc: 3% heap: 15G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/26) -> process(80% 79% 77% 80% 78% 81% 82% 91% 85% 80% 85% 78% 75% 82% 80%) -> (7.3k/66k) -> write( 3%)
+1:33:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.3M 96% 17k/s ] features: [ 2.8B 76k/s ] 199G blocks: [ 18k 100% <1/s ]
+ cpus: 12.3 gc: 1% heap: 15G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/26) -> process(82% 80% 77% 81% 79% 81% 80% 89% 83% 81% 83% 83% 75% 84% 81%) -> (8.6k/66k) -> write( 3%)
+1:33:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.5M 98% 19k/s ] features: [ 2.8B 83k/s ] 199G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 1% heap: 15G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/26) -> process(83% 80% 82% 84% 81% 86% 81% 84% 84% 86% 84% 81% 75% 82% 82%) -> (7.2k/66k) -> write( 4%)
+1:33:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.7M 100% 18k/s ] features: [ 2.8B 90k/s ] 199G blocks: [ 18k 100% <1/s ]
+ cpus: 12.4 gc: 0% heap: 16G/21G direct: 55M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/26) -> process(82% 79% 81% 84% 78% 83% 85% 84% 83% 83% 84% 79% 80% 84% 82%) -> (7k/66k) -> write( 4%)
+1:33:57 INF [osm_pass2:process] - Finished relations: 9,718,612 (14k/s) in 11m21s cpu:2h18m56s gc:11s avg:12.2
+1:33:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.7M 100% 18k/s ] features: [ 2.8B 94k/s ] 199G blocks: [ 18k 100% 4/s ]
+ cpus: 11.5 gc: 1% heap: 15G/21G direct: 54M postGC: 14G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/26) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/66k) -> write( -%)
+1:33:57 DEB [osm_pass2] - Processed 18,767 blocks:
+1:33:57 DEB [osm_pass2] - nodes: 7,546,573,682 (10M/s) in 12m34s cpu:3h3m35s gc:18s avg:14.6
+1:33:57 DEB [osm_pass2] - ways: 841,994,745 (221k/s) in 1h3m23s cpu:12h8m11s gc:2m34s avg:11.5
+1:33:57 DEB [osm_pass2] - relations: 9,718,612 (14k/s) in 11m21s cpu:2h18m56s gc:11s avg:12.2
+1:33:57 INF [osm_pass2] - Finished in 1h27m17s cpu:17h30m33s gc:3m3s avg:12
+1:33:57 INF [osm_pass2] - read 1x(1% 34s sys:28s wait:1h25m1s done:1m10s)
+1:33:57 INF [osm_pass2] - process 15x(76% 1h6m8s sys:1m49s block:22s wait:3s)
+1:33:57 INF [osm_pass2] - write 1x(18% 15m35s sys:1m38s wait:1h11m23s)
+1:33:57 INF [boundaries] -
+1:33:57 INF [boundaries] - Starting...
+1:33:57 INF [boundaries] - Creating polygons for 218 boundaries
+1:34:06 INF [boundaries] - Finished creating 218 country polygons
+1:34:12 WAR [boundaries] - no left or right country for border between OSM country relations: [449220] around https://www.openstreetmap.org/#map=10/24.37468/118.13815
+1:34:15 INF [boundaries] - Finished in 18s cpu:23s avg:1.3
+1:34:15 INF - Deleting node.db to make room for output file
+1:34:15 INF [sort] -
+1:34:15 INF [sort] - Starting...
+1:34:25 INF [sort] - chunks: [ 8 / 522 2% ] 199G
+ cpus: 9.1 gc: 12% heap: 15G/21G direct: 4.8M postGC: 15G
+ -> (498/539) -> worker(54% 49% 54% 19% 43% 43% 36% 29% 26% 57% 20% 25% 32% 32% 32% 32%)
+1:34:36 INF [sort] - chunks: [ 26 / 522 5% ] 199G
+ cpus: 7 gc: 9% heap: 11G/21G direct: 4.8M postGC: 11G
+ -> (480/539) -> worker(36% 29% 20% 25% 36% 29% 31% 28% 30% 32% 34% 33% 29% 29% 29% 28%)
+1:34:46 INF [sort] - chunks: [ 37 / 522 7% ] 199G
+ cpus: 9.7 gc: 7% heap: 14G/21G direct: 4.8M postGC: 14G
+ -> (469/539) -> worker(55% 54% 68% 57% 50% 56% 49% 41% 34% 38% 35% 42% 44% 42% 47% 44%)
+1:34:56 INF [sort] - chunks: [ 48 / 522 9% ] 199G
+ cpus: 4.6 gc: 2% heap: 10G/21G direct: 4.8M postGC: 9.4G
+ -> (458/539) -> worker(43% 41% 12% 10% 15% 46% 10% 34% 10% 10% 9% 7% 10% 11% 8% 9%)
+1:35:06 INF [sort] - chunks: [ 60 / 522 11% ] 199G
+ cpus: 9.9 gc: 8% heap: 13G/21G direct: 4.8M postGC: 13G
+ -> (446/539) -> worker(32% 34% 44% 47% 52% 34% 47% 41% 47% 50% 45% 45% 49% 56% 41% 49%)
+1:35:16 INF [sort] - chunks: [ 72 / 522 14% ] 199G
+ cpus: 5.5 gc: 5% heap: 10G/21G direct: 4.8M postGC: 10G
+ -> (434/539) -> worker(12% 19% 9% 24% 36% 12% 25% 10% 39% 26% 16% 40% 38% 10% 37% 34%)
+1:35:26 INF [sort] - chunks: [ 85 / 522 16% ] 199G
+ cpus: 7.4 gc: 6% heap: 11G/21G direct: 4.8M postGC: 11G
+ -> (421/539) -> worker(46% 32% 37% 26% 30% 48% 42% 39% 13% 25% 31% 21% 42% 37% 24% 40%)
+1:35:36 INF [sort] - chunks: [ 97 / 522 19% ] 199G
+ cpus: 7.4 gc: 6% heap: 12G/21G direct: 4.8M postGC: 12G
+ -> (409/539) -> worker(42% 46% 41% 38% 27% 44% 28% 37% 34% 38% 36% 35% 12% 37% 33% 12%)
+1:35:46 INF [sort] - chunks: [ 108 / 522 21% ] 198G
+ cpus: 12.6 gc: 7% heap: 14G/21G direct: 4.8M postGC: 14G
+ -> (398/539) -> worker(55% 44% 60% 62% 57% 54% 71% 59% 60% 65% 61% 62% 84% 59% 61% 65%)
+1:35:56 INF [sort] - chunks: [ 120 / 522 23% ] 199G
+ cpus: 9.2 gc: 6% heap: 20G/21G direct: 4.8M postGC: 20G
+ -> (386/539) -> worker(23% 26% 37% 43% 44% 44% 29% 38% 47% 48% 47% 49% 24% 55% 48% 33%)
+1:36:06 INF [sort] - chunks: [ 132 / 522 25% ] 199G
+ cpus: 7.3 gc: 5% heap: 15G/21G direct: 4.8M postGC: 15G
+ -> (374/539) -> worker(35% 41% 33% 22% 40% 30% 41% 33% 16% 17% 18% 12% 44% 14% 25% 43%)
+1:36:16 INF [sort] - chunks: [ 143 / 522 27% ] 199G
+ cpus: 8.4 gc: 8% heap: 10G/21G direct: 4.8M postGC: 10G
+ -> (363/539) -> worker(37% 28% 39% 41% 27% 37% 32% 35% 39% 45% 41% 40% 23% 41% 44% 26%)
+1:36:26 INF [sort] - chunks: [ 154 / 522 30% ] 199G
+ cpus: 11.1 gc: 7% heap: 17G/21G direct: 4.8M postGC: 17G
+ -> (352/539) -> worker(38% 32% 68% 36% 46% 69% 73% 76% 63% 35% 34% 38% 46% 63% 33% 36%)
+1:36:36 INF [sort] - chunks: [ 168 / 522 32% ] 199G
+ cpus: 7.6 gc: 6% heap: 18G/21G direct: 4.8M postGC: 17G
+ -> (338/539) -> worker(40% 40% 21% 35% 35% 22% 20% 14% 20% 43% 26% 40% 34% 25% 44% 37%)
+1:36:46 INF [sort] - chunks: [ 182 / 522 35% ] 199G
+ cpus: 13.1 gc: 10% heap: 11G/21G direct: 4.8M postGC: 17G
+ -> (324/539) -> worker(47% 49% 81% 70% 50% 66% 49% 51% 64% 51% 81% 58% 49% 71% 58% 51%)
+1:36:56 INF [sort] - chunks: [ 195 / 522 37% ] 199G
+ cpus: 8.4 gc: 7% heap: 18G/21G direct: 4.8M postGC: 18G
+ -> (311/539) -> worker(45% 37% 29% 29% 33% 27% 34% 40% 26% 39% 29% 40% 40% 28% 40% 41%)
+1:37:06 INF [sort] - chunks: [ 210 / 522 40% ] 198G
+ cpus: 8.7 gc: 6% heap: 9.4G/21G direct: 4.8M postGC: 7.9G
+ -> (296/539) -> worker(27% 23% 38% 41% 27% 40% 44% 49% 48% 41% 38% 41% 24% 40% 27% 25%)
+1:37:16 INF [sort] - chunks: [ 222 / 522 43% ] 199G
+ cpus: 13.2 gc: 9% heap: 13G/21G direct: 4.8M postGC: 13G
+ -> (284/539) -> worker(72% 66% 60% 54% 54% 59% 62% 64% 73% 45% 64% 40% 69% 70% 40% 67%)
+1:37:26 INF [sort] - chunks: [ 237 / 522 45% ] 199G
+ cpus: 8.6 gc: 17% heap: 6.9G/21G direct: 4.8M postGC: 21G
+ -> (269/539) -> worker(29% 18% 45% 42% 23% 35% 25% 25% 25% 37% 31% 38% 22% 28% 35% 22%)
+1:37:36 INF [sort] - chunks: [ 249 / 522 48% ] 198G
+ cpus: 13.8 gc: 8% heap: 16G/21G direct: 4.8M postGC: 16G
+ -> (257/539) -> worker(70% 66% 56% 58% 50% 68% 76% 73% 72% 45% 71% 57% 68% 71% 55% 62%)
+1:37:46 INF [sort] - chunks: [ 262 / 522 50% ] 199G
+ cpus: 9.2 gc: 6% heap: 15G/21G direct: 4.8M postGC: 15G
+ -> (244/539) -> worker(26% 61% 37% 26% 38% 19% 26% 52% 23% 22% 21% 53% 60% 25% 38% 61%)
+1:37:56 INF [sort] - chunks: [ 278 / 522 53% ] 198G
+ cpus: 11.5 gc: 10% heap: 14G/21G direct: 4.8M postGC: 14G
+ -> (228/539) -> worker(58% 46% 44% 60% 47% 50% 58% 48% 60% 59% 57% 38% 45% 60% 39% 43%)
+1:38:06 INF [sort] - chunks: [ 292 / 522 56% ] 198G
+ cpus: 11.7 gc: 8% heap: 17G/21G direct: 4.8M postGC: 17G
+ -> (214/539) -> worker(55% 43% 27% 41% 51% 67% 57% 57% 59% 43% 63% 42% 42% 58% 48% 42%)
+1:38:16 INF [sort] - chunks: [ 305 / 522 58% ] 199G
+ cpus: 9.7 gc: 6% heap: 13G/21G direct: 4.8M postGC: 11G
+ -> (201/539) -> worker(53% 28% 34% 24% 29% 37% 62% 51% 61% 23% 60% 30% 42% 57% 23% 39%)
+1:38:26 INF [sort] - chunks: [ 319 / 522 61% ] 199G
+ cpus: 11.2 gc: 11% heap: 14G/21G direct: 4.8M postGC: 12G
+ -> (187/539) -> worker(45% 39% 47% 60% 44% 54% 46% 37% 53% 56% 52% 46% 43% 47% 57% 41%)
+1:38:36 INF [sort] - chunks: [ 334 / 522 64% ] 199G
+ cpus: 12.4 gc: 10% heap: 21G/21G direct: 4.8M postGC: 21G
+ -> (172/539) -> worker(65% 53% 39% 53% 49% 45% 61% 68% 51% 41% 46% 61% 67% 61% 48% 53%)
+1:38:46 INF [sort] - chunks: [ 348 / 522 67% ] 199G
+ cpus: 11.8 gc: 16% heap: 14G/21G direct: 4.8M postGC: 13G
+ -> (158/539) -> worker(43% 54% 44% 60% 60% 43% 39% 46% 38% 42% 40% 49% 27% 39% 43% 58%)
+1:38:56 INF [sort] - chunks: [ 364 / 522 70% ] 199G
+ cpus: 11.3 gc: 9% heap: 14G/21G direct: 4.8M postGC: 14G
+ -> (142/539) -> worker(28% 59% 45% 60% 61% 46% 34% 34% 46% 47% 47% 62% 53% 40% 45% 66%)
+1:39:06 INF [sort] - chunks: [ 379 / 522 73% ] 199G
+ cpus: 7.7 gc: 7% heap: 10G/21G direct: 4.8M postGC: 10G
+ -> (127/539) -> worker(35% 28% 27% 55% 53% 31% 32% 32% 18% 28% 21% 33% 33% 28% 19% 41%)
+1:39:16 INF [sort] - chunks: [ 391 / 522 75% ] 198G
+ cpus: 12.6 gc: 9% heap: 16G/21G direct: 4.8M postGC: 16G
+ -> (115/539) -> worker(53% 58% 64% 47% 43% 56% 51% 62% 56% 60% 59% 50% 68% 62% 59% 49%)
+1:39:26 INF [sort] - chunks: [ 405 / 522 78% ] 199G
+ cpus: 8.3 gc: 6% heap: 13G/21G direct: 4.8M postGC: 11G
+ -> (101/539) -> worker(30% 24% 24% 28% 28% 23% 32% 35% 45% 24% 54% 30% 45% 48% 57% 28%)
+1:39:36 INF [sort] - chunks: [ 415 / 522 80% ] 199G
+ cpus: 10 gc: 7% heap: 14G/21G direct: 4.8M postGC: 13G
+ -> (91/539) -> worker(47% 43% 42% 50% 49% 42% 48% 47% 39% 43% 42% 42% 44% 44% 44% 51%)
+1:39:46 INF [sort] - chunks: [ 431 / 522 83% ] 198G
+ cpus: 11.9 gc: 9% heap: 14G/21G direct: 4.8M postGC: 12G
+ -> (75/539) -> worker(68% 58% 63% 56% 60% 48% 56% 48% 46% 61% 41% 57% 44% 41% 55% 67%)
+1:39:56 INF [sort] - chunks: [ 443 / 522 85% ] 199G
+ cpus: 9.2 gc: 7% heap: 12G/21G direct: 4.8M postGC: 11G
+ -> (63/539) -> worker(18% 55% 52% 45% 55% 22% 46% 37% 17% 50% 16% 56% 19% 21% 56% 16%)
+1:40:06 INF [sort] - chunks: [ 456 / 522 87% ] 198G
+ cpus: 11.8 gc: 11% heap: 13G/21G direct: 4.8M postGC: 13G
+ -> (50/539) -> worker(65% 51% 36% 54% 49% 61% 56% 45% 61% 37% 60% 49% 59% 63% 40% 57%)
+1:40:16 INF [sort] - chunks: [ 470 / 522 90% ] 199G
+ cpus: 7 gc: 5% heap: 9.4G/21G direct: 4.8M postGC: 7.7G
+ -> (36/539) -> worker(38% 29% 17% 29% 26% 13% 55% 14% 39% 21% 40% 17% 35% 34% 24% 48%)
+1:40:26 INF [sort] - chunks: [ 483 / 522 93% ] 198G
+ cpus: 12.2 gc: 11% heap: 16G/21G direct: 4.8M postGC: 16G
+ -> (23/539) -> worker(54% 56% 67% 50% 42% 62% 44% 61% 39% 59% 46% 54% 56% 59% 54% 35%)
+1:40:36 INF [sort] - chunks: [ 497 / 522 95% ] 197G
+ cpus: 4.8 gc: 3% heap: 11G/21G direct: 4.8M postGC: 9.6G
+ -> (9/539) -> worker(27% 21% 16% 14% 12% 20% 22% 20% 16% 18% 23% 10% 20% 18% 15% 19%)
+1:40:46 INF [sort] - chunks: [ 505 / 522 97% ] 198G
+ cpus: 5.7 gc: 6% heap: 12G/21G direct: 4.8M postGC: 12G
+ -> (1/539) -> worker(27% 31% 11% 24% 22% 16% 33% 14% 17% 15% 28% 11% 21% 15% 30% 21%)
+1:40:56 INF [sort] - chunks: [ 515 / 522 99% ] 198G
+ cpus: 1.3 gc: 0% heap: 12G/21G direct: 4.3M postGC: 12G
+ -> (0/539) -> worker( 6% 4% -% -% -% -% 4% -% 11% -% 5% -% -% -% 5% 15%)
+1:41:01 INF [sort] - chunks: [ 522 / 522 100% ] 199G
+ cpus: 0.5 gc: 0% heap: 12G/21G direct: 3.9M postGC: 12G
+ -> (0/539) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+1:41:01 INF [sort] - Finished in 6m45s cpu:1h2m31s gc:31s avg:9.3
+1:41:01 INF [sort] - worker 16x(40% 2m41s sys:12s wait:1m2s done:6s)
+1:41:01 INF - read:2026s write:1912s sort:1459s
+1:41:01 INF [mbtiles] -
+1:41:01 INF [mbtiles] - Starting...
+1:41:01 DEB [mbtiles:write] - Execute mbtiles: create table metadata (name text, value text);
+1:41:01 DEB [mbtiles:write] - Execute mbtiles: create unique index name on metadata (name);
+1:41:01 DEB [mbtiles:write] - Execute mbtiles: create table tiles (zoom_level integer, tile_column integer, tile_row, tile_data blob);
+1:41:01 DEB [mbtiles:write] - Execute mbtiles: create unique index tile_index on tiles (zoom_level, tile_column, tile_row)
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: name=OpenMapTiles
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: format=pbf
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: attribution=© OpenMapTiles © OpenStreetMap contributors
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: version=3.13.0
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: type=baselayer
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: center=0,0,0
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: minzoom=0
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: maxzoom=14
+1:41:01 DEB [mbtiles:write] - Set mbtiles metadata: json={"vector_layers":[{"id":"aerodrome_label","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","ele":"Number","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","iata":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","icao":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":8,"maxzoom":14},{"id":"aeroway","fields":{"ref":"String","class":"String"},"minzoom":10,"maxzoom":14},{"id":"boundary","fields":{"adm0_r":"String","disputed":"Number","admin_level":"Number","disputed_name":"String","maritime":"Number","adm0_l":"String","claimed_by":"String"},"minzoom":0,"maxzoom":14},{"id":"building","fields":{"colour":"String","render_height":"Number","render_min_height":"Number","hide_3d":"Boolean"},"minzoom":13,"maxzoom":14},{"id":"housenumber","fields":{"housenumber":"String"},"minzoom":14,"maxzoom":14},{"id":"landcover","fields":{"subclass":"String","class":"String","_numpoints":"Number"},"minzoom":0,"maxzoom":14},{"id":"landuse","fields":{"class":"String"},"minzoom":4,"maxzoom":14},{"id":"mountain_peak","fields":{"name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","rank":"Number","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","customary_ft":"Number","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":7,"maxzoom":14},{"id":"park","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":4,"maxzoom":14},{"id":"place","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","capital":"Number","name:sk":"String","name:nonlatin":"String","name:ka":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:ru":"String","name:be":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","iso_a2":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"poi","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","level":"Number","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","indoor":"Number","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","layer":"Number","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:cy":"String","name:lb":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","subclass":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":12,"maxzoom":14},{"id":"transportation","fields":{"access":"String","brunnel":"String","expressway":"Number","surface":"String","bicycle":"String","level":"Number","ramp":"Number","mtb_scale":"String","toll":"Number","layer":"Number","oneway":"Number","network":"String","horse":"String","service":"String","subclass":"String","indoor":"Number","class":"String","foot":"String"},"minzoom":4,"maxzoom":14},{"id":"transportation_name","fields":{"name_int":"String","level":"Number","name:nonlatin":"String","route_5":"String","route_4":"String","route_3":"String","route_2":"String","route_1":"String","layer":"Number","network":"String","ref":"String","route_6":"String","name_de":"String","ref_length":"Number","subclass":"String","name":"String","indoor":"Number","class":"String","name_en":"String","name:latin":"String"},"minzoom":6,"maxzoom":14},{"id":"water","fields":{"brunnel":"String","intermittent":"Number","class":"String"},"minzoom":0,"maxzoom":14},{"id":"water_name","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","intermittent":"Number","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"waterway","fields":{"name:fy":"String","name_int":"String","name:oc":"String","name:bs":"String","name:sk":"String","name:nonlatin":"String","name:ka":"String","intermittent":"Number","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:ca":"String","name:sq":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:ru":"String","name:be":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","brunnel":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:mt":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","_relid":"Number","name:cy":"String","name:lb":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:de":"String","name:hi":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":3,"maxzoom":14}]}
+1:41:02 INF [mbtiles:write] - Starting z0
+1:41:02 INF [mbtiles:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
+1:41:02 INF [mbtiles:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
+1:41:02 INF [mbtiles:write] - Finished z2 in 0.2s cpu:3s avg:15.9, now starting z3
+1:41:03 INF [mbtiles:write] - Finished z3 in 0.6s cpu:9s avg:15.6, now starting z4
+1:41:06 INF [mbtiles:write] - Finished z4 in 3s cpu:43s avg:15, now starting z5
+1:41:06 INF [mbtiles:write] - Finished z5 in 0.6s cpu:10s avg:15.4, now starting z6
+1:41:08 INF [mbtiles:write] - Finished z6 in 2s cpu:30s avg:15.2, now starting z7
+1:41:11 INF [mbtiles] - features: [ 13M 0% 1.3M/s ] 199G tiles: [ 11k 1.1k/s ] 91M
+ cpus: 14.7 gc: 13% heap: 2G/21G direct: 4M postGC: 873M
+ read(68%) -> (20/1k) -> encode(65% 65% 69% 63% 66% 65% 65% 69% 73% 65% 66% 67% 63% 64% 56% 68%) -> (83/1k) -> write( 3%)
+ last tile: 7/48/65 (z7 38%) https://www.openstreetmap.org/#map=7/-2.81137/-45.00000
+1:41:18 INF [mbtiles:write] - Finished z7 in 10s cpu:2m32s avg:15.4, now starting z8
+1:41:21 INF [mbtiles] - features: [ 25M 1% 1.1M/s ] 199G tiles: [ 41k 3k/s ] 228M
+ cpus: 15.6 gc: 7% heap: 2.8G/21G direct: 4M postGC: 1.1G
+ read(84%) -> (225/1k) -> encode(84% 82% 85% 75% 83% 85% 87% 85% 77% 81% 85% 87% 88% 85% 86% 88%) -> (248/1k) -> write( 3%)
+ last tile: 8/96/141 (z8 37%) https://www.openstreetmap.org/#map=8/-17.97873/-45.00000
+1:41:31 INF [mbtiles] - features: [ 33M 1% 877k/s ] 199G tiles: [ 49k 859/s ] 263M
+ cpus: 15.8 gc: 6% heap: 8.7G/21G direct: 4M postGC: 2.2G
+ read(83%) -> (540/1k) -> encode(87% 88% 88% 92% 91% 90% 88% 83% 91% 86% 92% 87% 85% 90% 91% 90%) -> (716/1k) -> write( 1%)
+ last tile: 8/136/126 (z8 53%) https://www.openstreetmap.org/#map=8/2.81137/11.25000
+1:41:38 INF [mbtiles:write] - Finished z8 in 20s cpu:5m19s gc:1s avg:15.7, now starting z9
+1:41:41 INF [mbtiles] - features: [ 48M 2% 1.5M/s ] 199G tiles: [ 112k 6.2k/s ] 429M
+ cpus: 15.7 gc: 8% heap: 4G/21G direct: 4M postGC: 4G
+ read(68%) -> (1k/1k) -> encode(86% 89% 91% 91% 83% 82% 89% 87% 90% 90% 83% 87% 86% 86% 87% 84%) -> (1k/1k) -> write( 4%)
+ last tile: 9/83/175 (z9 16%) https://www.openstreetmap.org/#map=9/49.38237/-121.64063
+1:41:51 INF [mbtiles] - features: [ 54M 2% 542k/s ] 199G tiles: [ 141k 2.8k/s ] 558M
+ cpus: 15.7 gc: 7% heap: 13G/21G direct: 4M postGC: 4.7G
+ read(35%) -> (1k/1k) -> encode(91% 90% 93% 92% 89% 93% 89% 86% 89% 92% 91% 89% 85% 93% 91% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 9/152/178 (z9 29%) https://www.openstreetmap.org/#map=9/47.98992/-73.12500
+1:42:01 INF [mbtiles] - features: [ 61M 2% 726k/s ] 199G tiles: [ 191k 4.9k/s ] 720M
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 5.6G
+ read(48%) -> (1k/1k) -> encode(90% 86% 91% 90% 91% 92% 88% 92% 88% 86% 89% 90% 89% 91% 89% 89%) -> (1k/1k) -> write( 3%)
+ last tile: 9/264/152 (z9 51%) https://www.openstreetmap.org/#map=9/58.81374/5.62500
+1:42:11 INF [mbtiles] - features: [ 65M 2% 401k/s ] 199G tiles: [ 195k 363/s ] 782M
+ cpus: 15.8 gc: 4% heap: 10G/21G direct: 4M postGC: 3G
+ read(25%) -> (988/1k) -> encode(94% 91% 95% 92% 90% 93% 95% 90% 94% 95% 90% 94% 95% 90% 95% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 9/273/147 (z9 53%) https://www.openstreetmap.org/#map=9/60.58697/11.95313
+1:42:21 INF [mbtiles] - features: [ 69M 2% 337k/s ] 199G tiles: [ 200k 556/s ] 872M
+ cpus: 15.8 gc: 4% heap: 11G/21G direct: 4M postGC: 3.3G
+ read(25%) -> (1k/1k) -> encode(94% 93% 95% 93% 95% 94% 94% 94% 93% 93% 86% 94% 95% 96% 92% 96%) -> (1k/1k) -> write( 1%)
+ last tile: 9/287/189 (z9 56%) https://www.openstreetmap.org/#map=9/42.55308/21.79688
+1:42:31 INF [mbtiles] - features: [ 72M 3% 331k/s ] 199G tiles: [ 206k 602/s ] 965M
+ cpus: 15.8 gc: 3% heap: 13G/21G direct: 4M postGC: 3.8G
+ read(17%) -> (1k/1k) -> encode(95% 94% 95% 94% 96% 96% 96% 94% 96% 96% 95% 95% 97% 96% 96% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 9/302/172 (z9 59%) https://www.openstreetmap.org/#map=9/50.73646/32.34375
+1:42:41 INF [mbtiles] - features: [ 78M 3% 599k/s ] 199G tiles: [ 220k 1.3k/s ] 1G
+ cpus: 15.8 gc: 5% heap: 6.1G/21G direct: 4M postGC: 4.2G
+ read(10%) -> (901/1k) -> encode(91% 94% 94% 94% 95% 94% 94% 95% 94% 95% 94% 91% 94% 95% 95% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 9/337/170 (z9 66%) https://www.openstreetmap.org/#map=9/51.61802/56.95313
+1:42:51 INF [mbtiles] - features: [ 87M 3% 900k/s ] 199G tiles: [ 254k 3.3k/s ] 1.2G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 5G
+ read(28%) -> (829/1k) -> encode(95% 89% 94% 92% 94% 94% 94% 94% 91% 90% 94% 92% 90% 91% 93% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 9/425/213 (z9 83%) https://www.openstreetmap.org/#map=9/28.92163/118.82813
+1:42:57 INF [mbtiles:write] - Finished z9 in 1m18s cpu:20m33s gc:4s avg:15.8, now starting z10
+1:43:01 INF [mbtiles] - features: [ 96M 3% 914k/s ] 199G tiles: [ 557k 30k/s ] 1.6G
+ cpus: 15.7 gc: 7% heap: 6.6G/21G direct: 4M postGC: 6.2G
+ read(43%) -> (622/1k) -> encode(89% 90% 89% 83% 84% 91% 92% 93% 87% 90% 91% 87% 90% 91% 86% 91%) -> (644/1k) -> write(12%)
+ last tile: 10/310/564 (z10 30%) https://www.openstreetmap.org/#map=10/-17.97873/-71.01563
+1:43:11 INF [mbtiles] - features: [ 108M 4% 1.2M/s ] 199G tiles: [ 764k 20k/s ] 2G
+ cpus: 15.7 gc: 6% heap: 7.9G/21G direct: 4M postGC: 3.3G
+ read(81%) -> (798/1k) -> encode(89% 88% 81% 81% 90% 86% 88% 85% 92% 87% 88% 89% 89% 92% 84% 88%) -> (847/1k) -> write(10%)
+ last tile: 10/546/365 (z10 53%) https://www.openstreetmap.org/#map=10/45.82880/11.95313
+1:43:21 INF [mbtiles] - features: [ 116M 4% 825k/s ] 199G tiles: [ 810k 4.6k/s ] 2.3G
+ cpus: 15.7 gc: 6% heap: 8G/21G direct: 4M postGC: 5.1G
+ read(66%) -> (1k/1k) -> encode(91% 87% 89% 83% 80% 88% 90% 90% 90% 88% 90% 90% 87% 92% 91% 91%) -> (1k/1k) -> write( 6%)
+ last tile: 10/605/257 (z10 59%) https://www.openstreetmap.org/#map=10/66.37276/32.69531
+1:43:31 INF [mbtiles] - features: [ 131M 5% 1.4M/s ] 199G tiles: [ 1M 18k/s ] 2.8G
+ cpus: 15.8 gc: 5% heap: 8.6G/21G direct: 4M postGC: 3.9G
+ read(39%) -> (995/1k) -> encode(93% 92% 87% 92% 92% 88% 90% 89% 87% 92% 94% 87% 91% 91% 88% 90%) -> (1k/1k) -> write(13%)
+ last tile: 10/856/384 (z10 83%) https://www.openstreetmap.org/#map=10/40.97990/120.93750
+1:43:34 INF [mbtiles:write] - Finished z10 in 37s cpu:9m44s gc:2s avg:15.7, now starting z11
+1:43:41 INF [mbtiles] - features: [ 148M 5% 1.6M/s ] 199G tiles: [ 2.1M 113k/s ] 3.6G
+ cpus: 15.7 gc: 6% heap: 10G/21G direct: 4M postGC: 4.6G
+ read(75%) -> (252/1k) -> encode(87% 87% 88% 89% 90% 87% 87% 85% 89% 86% 77% 87% 85% 88% 91% 86%) -> (282/1k) -> write(36%)
+ last tile: 11/590/741 (z11 28%) https://www.openstreetmap.org/#map=11/44.46515/-76.28906
+1:43:51 INF [mbtiles] - features: [ 165M 6% 1.7M/s ] 199G tiles: [ 2.9M 78k/s ] 4.3G
+ cpus: 15.8 gc: 3% heap: 4.2G/21G direct: 4M postGC: 4.2G
+ read(82%) -> (27/1k) -> encode(91% 92% 93% 85% 94% 92% 85% 88% 90% 92% 92% 89% 90% 84% 90% 89%) -> (61/1k) -> write(27%)
+ last tile: 11/1045/738 (z11 51%) https://www.openstreetmap.org/#map=11/44.84029/3.69141
+1:44:01 INF [mbtiles] - features: [ 179M 6% 1.4M/s ] 199G tiles: [ 3M 14k/s ] 4.8G
+ cpus: 15.8 gc: 2% heap: 7.6G/21G direct: 4M postGC: 4.5G
+ read(88%) -> (222/1k) -> encode(89% 97% 94% 90% 91% 92% 91% 92% 89% 92% 95% 92% 91% 89% 91% 88%) -> (254/1k) -> write( 9%)
+ last tile: 11/1136/759 (z11 55%) https://www.openstreetmap.org/#map=11/42.16340/19.68750
+1:44:11 INF [mbtiles] - features: [ 189M 7% 1M/s ] 199G tiles: [ 3.2M 18k/s ] 5.4G
+ cpus: 15.7 gc: 6% heap: 9.6G/21G direct: 4M postGC: 6.2G
+ read(82%) -> (589/1k) -> encode(92% 87% 85% 86% 93% 89% 88% 92% 89% 90% 86% 81% 88% 87% 88% 84%) -> (612/1k) -> write(11%)
+ last tile: 11/1255/632 (z11 61%) https://www.openstreetmap.org/#map=11/56.55948/40.60547
+1:44:21 INF [mbtiles] - features: [ 203M 7% 1.3M/s ] 199G tiles: [ 3.8M 56k/s ] 6.1G
+ cpus: 15.7 gc: 6% heap: 3.7G/21G direct: 4M postGC: 3.6G
+ read(86%) -> (684/1k) -> encode(86% 91% 87% 85% 81% 88% 86% 83% 89% 82% 76% 87% 86% 90% 86% 85%) -> (702/1k) -> write(22%)
+ last tile: 11/1641/848 (z11 80%) https://www.openstreetmap.org/#map=11/29.53523/108.45703
+1:44:28 INF [mbtiles:write] - Finished z11 in 54s cpu:14m16s gc:2s avg:15.7, now starting z12
+1:44:31 INF [mbtiles] - features: [ 220M 8% 1.6M/s ] 199G tiles: [ 5.6M 181k/s ] 6.8G
+ cpus: 13.1 gc: 5% heap: 5.9G/21G direct: 4M postGC: 4.4G
+ read(49%) -> (0/1k) -> encode(73% 68% 73% 71% 69% 73% 73% 71% 72% 72% 74% 74% 71% 72% 73% 69%) -> (1k/1k) -> write(46%)
+ last tile: 12/301/1441 (z12 7%) https://www.openstreetmap.org/#map=12/46.98025/-153.54492
+1:44:41 INF [mbtiles] - features: [ 240M 8% 2M/s ] 199G tiles: [ 7.7M 206k/s ] 7.6G
+ cpus: 13.7 gc: 2% heap: 13G/21G direct: 4M postGC: 3.9G
+ read(95%) -> (0/1k) -> encode(77% 78% 77% 76% 71% 74% 72% 76% 76% 70% 75% 76% 67% 77% 75% 74%) -> (11/1k) -> write(53%)
+ last tile: 12/955/1511 (z12 23%) https://www.openstreetmap.org/#map=12/42.61779/-96.06445
+1:44:51 INF [mbtiles] - features: [ 260M 9% 2M/s ] 199G tiles: [ 8.2M 52k/s ] 8.1G
+ cpus: 12.9 gc: 0% heap: 4.5G/21G direct: 4M postGC: 3.9G
+ read(99%) -> (0/1k) -> encode(72% 75% 72% 75% 72% 73% 74% 73% 73% 73% 71% 73% 72% 75% 73% 72%) -> (12/1k) -> write(18%)
+ last tile: 12/1139/1486 (z12 27%) https://www.openstreetmap.org/#map=12/44.21371/-79.89258
+1:45:01 INF [mbtiles] - features: [ 280M 10% 1.9M/s ] 199G tiles: [ 9M 81k/s ] 8.8G
+ cpus: 14.9 gc: 1% heap: 3.9G/21G direct: 4M postGC: 3.9G
+ read(97%) -> (0/1k) -> encode(78% 86% 89% 84% 85% 82% 83% 87% 86% 85% 85% 86% 85% 84% 82% 86%) -> (22/1k) -> write(28%)
+ last tile: 12/1386/2436 (z12 33%) https://www.openstreetmap.org/#map=12/-32.24997/-58.18359
+1:45:11 INF [mbtiles] - features: [ 299M 10% 1.9M/s ] 199G tiles: [ 11M 209k/s ] 9.6G
+ cpus: 14.2 gc: 1% heap: 10G/21G direct: 4M postGC: 3.9G
+ read(95%) -> (0/1k) -> encode(80% 82% 78% 81% 76% 78% 79% 82% 80% 78% 78% 81% 77% 77% 76% 77%) -> (18/1k) -> write(54%)
+ last tile: 12/1982/1305 (z12 48%) https://www.openstreetmap.org/#map=12/54.52108/-5.80078
+1:45:21 INF [mbtiles] - features: [ 319M 11% 1.9M/s ] 199G tiles: [ 11M 33k/s ] 10G
+ cpus: 14.1 gc: 0% heap: 13G/21G direct: 4M postGC: 3.9G
+ read(98%) -> (0/1k) -> encode(81% 81% 82% 81% 80% 82% 81% 81% 81% 80% 82% 78% 81% 82% 83% 82%) -> (22/1k) -> write(13%)
+ last tile: 12/2089/1475 (z12 51%) https://www.openstreetmap.org/#map=12/44.90258/3.60352
+1:45:31 INF [mbtiles] - features: [ 338M 12% 1.9M/s ] 199G tiles: [ 11M 21k/s ] 10G
+ cpus: 13.8 gc: 0% heap: 4.1G/21G direct: 4M postGC: 3.9G
+ read(98%) -> (0/1k) -> encode(81% 80% 79% 79% 79% 78% 79% 79% 79% 79% 77% 79% 80% 79% 78% 79%) -> (23/1k) -> write(10%)
+ last tile: 12/2159/1195 (z12 52%) https://www.openstreetmap.org/#map=12/59.75640/9.75586
+1:45:41 INF [mbtiles] - features: [ 355M 12% 1.6M/s ] 199G tiles: [ 11M 21k/s ] 11G
+ cpus: 15.4 gc: 1% heap: 13G/21G direct: 4M postGC: 4G
+ read(93%) -> (91/1k) -> encode(90% 90% 88% 91% 91% 86% 88% 87% 88% 90% 87% 87% 93% 85% 90% 91%) -> (155/1k) -> write(11%)
+ last tile: 12/2228/3166 (z12 54%) https://www.openstreetmap.org/#map=12/-69.59589/15.82031
+1:45:51 INF [mbtiles] - features: [ 370M 13% 1.5M/s ] 199G tiles: [ 12M 33k/s ] 11G
+ cpus: 15.8 gc: 2% heap: 13G/21G direct: 4M postGC: 4.1G
+ read(85%) -> (187/1k) -> encode(86% 95% 94% 86% 93% 92% 94% 89% 90% 95% 92% 91% 89% 90% 89% 96%) -> (208/1k) -> write(16%)
+ last tile: 12/2339/1063 (z12 57%) https://www.openstreetmap.org/#map=12/65.10915/25.57617
+1:46:01 INF [mbtiles] - features: [ 386M 13% 1.5M/s ] 199G tiles: [ 12M 35k/s ] 12G
+ cpus: 15.8 gc: 3% heap: 9.1G/21G direct: 4M postGC: 4.3G
+ read(85%) -> (317/1k) -> encode(91% 93% 91% 90% 87% 86% 88% 89% 87% 93% 96% 88% 90% 91% 88% 90%) -> (363/1k) -> write(16%)
+ last tile: 12/2456/1353 (z12 59%) https://www.openstreetmap.org/#map=12/51.99841/35.85938
+1:46:11 INF [mbtiles] - features: [ 402M 14% 1.6M/s ] 199G tiles: [ 13M 76k/s ] 13G
+ cpus: 15.8 gc: 5% heap: 4.9G/21G direct: 4M postGC: 4.6G
+ read(88%) -> (526/1k) -> encode(88% 94% 80% 91% 90% 86% 83% 90% 85% 88% 92% 84% 89% 90% 88% 88%) -> (614/1k) -> write(27%)
+ last tile: 12/2713/1217 (z12 66%) https://www.openstreetmap.org/#map=12/58.76820/58.44727
+1:46:21 INF [mbtiles] - features: [ 420M 15% 1.7M/s ] 199G tiles: [ 14M 128k/s ] 13G
+ cpus: 15.8 gc: 3% heap: 10G/21G direct: 4M postGC: 4.3G
+ read(83%) -> (281/1k) -> encode(86% 95% 88% 89% 86% 89% 87% 90% 87% 83% 87% 87% 93% 94% 86% 88%) -> (355/1k) -> write(39%)
+ last tile: 12/3166/1933 (z12 77%) https://www.openstreetmap.org/#map=12/10.05540/98.26172
+1:46:31 INF [mbtiles] - features: [ 441M 15% 2.1M/s ] 199G tiles: [ 15M 65k/s ] 14G
+ cpus: 14.5 gc: 1% heap: 8.7G/21G direct: 4M postGC: 3.9G
+ read(91%) -> (0/1k) -> encode(82% 85% 82% 83% 78% 84% 83% 80% 84% 84% 81% 82% 82% 84% 84% 81%) -> (16/1k) -> write(23%)
+ last tile: 12/3414/1775 (z12 83%) https://www.openstreetmap.org/#map=12/23.32208/120.05859
+1:46:41 INF [mbtiles] - features: [ 461M 16% 1.9M/s ] 199G tiles: [ 16M 127k/s ] 15G
+ cpus: 14.9 gc: 1% heap: 11G/21G direct: 4M postGC: 4G
+ read(95%) -> (0/1k) -> encode(82% 86% 85% 77% 84% 85% 81% 87% 81% 81% 88% 86% 88% 86% 88% 84%) -> (469/1k) -> write(37%)
+ last tile: 12/3860/3019 (z12 94%) https://www.openstreetmap.org/#map=12/-64.58618/159.25781
+1:46:43 INF [mbtiles:write] - Finished z12 in 2m15s cpu:32m32s gc:2s avg:14.5, now starting z13
+1:46:51 INF [mbtiles] - features: [ 469M 16% 730k/s ] 199G tiles: [ 20M 438k/s ] 15G
+ cpus: 5.6 gc: 1% heap: 6.5G/21G direct: 4M postGC: 4.3G
+ read(36%) -> (0/1k) -> encode(21% 24% 24% 29% 21% 29% 19% 18% 19% 27% 26% 19% 24% 20% 23% 19%) -> (1k/1k) -> write(99%)
+ last tile: 13/443/3480 (z13 5%) https://www.openstreetmap.org/#map=13/26.11599/-160.53223
+1:47:01 INF [mbtiles] - features: [ 475M 16% 676k/s ] 199G tiles: [ 25M 440k/s ] 16G
+ cpus: 5.5 gc: 1% heap: 4.4G/21G direct: 4M postGC: 4.4G
+ read(33%) -> (0/1k) -> encode(22% 23% 30% 23% 24% 23% 25% 23% 26% 26% 26% 23% 27% 24% 23% 26%) -> (1k/1k) -> write(99%)
+ last tile: 13/1088/135 (z13 13%) https://www.openstreetmap.org/#map=13/84.51202/-132.18750
+1:47:11 INF [mbtiles] - features: [ 480M 17% 510k/s ] 199G tiles: [ 26M 134k/s ] 16G
+ cpus: 15.7 gc: 6% heap: 9.2G/21G direct: 4M postGC: 5.3G
+ read(58%) -> (1k/1k) -> encode(84% 87% 90% 82% 86% 85% 91% 91% 84% 86% 87% 83% 84% 91% 91% 89%) -> (1k/1k) -> write(32%)
+ last tile: 13/1306/2931 (z13 15%) https://www.openstreetmap.org/#map=13/45.49095/-122.60742
+1:47:21 INF [mbtiles] - features: [ 484M 17% 309k/s ] 199G tiles: [ 26M 5.4k/s ] 16G
+ cpus: 15.8 gc: 6% heap: 6.6G/21G direct: 4M postGC: 5.6G
+ read( 9%) -> (995/1k) -> encode(92% 94% 94% 93% 94% 93% 92% 92% 93% 94% 94% 93% 92% 93% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/1315/3167 (z13 16%) https://www.openstreetmap.org/#map=13/37.75334/-122.21191
+1:47:31 INF [mbtiles] - features: [ 488M 17% 417k/s ] 199G tiles: [ 26M 21k/s ] 17G
+ cpus: 15.8 gc: 5% heap: 13G/21G direct: 4M postGC: 6G
+ read(25%) -> (1k/1k) -> encode(92% 95% 93% 95% 92% 95% 92% 91% 91% 92% 91% 95% 92% 91% 91% 93%) -> (1k/1k) -> write( 6%)
+ last tile: 13/1350/3238 (z13 16%) https://www.openstreetmap.org/#map=13/35.24562/-120.67383
+1:47:41 INF [mbtiles] - features: [ 492M 17% 399k/s ] 199G tiles: [ 27M 30k/s ] 17G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 6.8G
+ read(15%) -> (1k/1k) -> encode(93% 92% 93% 93% 92% 90% 92% 93% 89% 93% 89% 90% 93% 87% 93% 92%) -> (1k/1k) -> write( 8%)
+ last tile: 13/1401/3273 (z13 17%) https://www.openstreetmap.org/#map=13/33.97981/-118.43262
+1:47:51 INF [mbtiles] - features: [ 494M 17% 195k/s ] 199G tiles: [ 27M 3.6k/s ] 17G
+ cpus: 15.8 gc: 5% heap: 10G/21G direct: 4M postGC: 6.8G
+ read( 4%) -> (1k/1k) -> encode(93% 92% 93% 94% 93% 93% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/1407/3279 (z13 17%) https://www.openstreetmap.org/#map=13/33.76088/-118.16895
+1:48:01 INF [mbtiles] - features: [ 497M 17% 302k/s ] 199G tiles: [ 27M 13k/s ] 17G
+ cpus: 15.8 gc: 4% heap: 13G/21G direct: 4M postGC: 6.8G
+ read( 9%) -> (982/1k) -> encode(95% 95% 94% 96% 96% 95% 93% 96% 96% 96% 96% 94% 93% 96% 96% 96%) -> (1k/1k) -> write( 3%)
+ last tile: 13/1429/3272 (z13 17%) https://www.openstreetmap.org/#map=13/34.01624/-117.20215
+1:48:11 INF [mbtiles] - features: [ 502M 17% 557k/s ] 199G tiles: [ 28M 58k/s ] 17G
+ cpus: 15.8 gc: 6% heap: 10G/21G direct: 4M postGC: 7.8G
+ read(27%) -> (933/1k) -> encode(90% 91% 90% 89% 92% 87% 94% 92% 93% 90% 92% 89% 93% 93% 92% 91%) -> (1k/1k) -> write(15%)
+ last tile: 13/1528/3292 (z13 18%) https://www.openstreetmap.org/#map=13/33.28462/-112.85156
+1:48:21 INF [mbtiles] - features: [ 507M 18% 440k/s ] 199G tiles: [ 28M 27k/s ] 17G
+ cpus: 15.7 gc: 6% heap: 10G/21G direct: 4M postGC: 8.2G
+ read(17%) -> (897/1k) -> encode(90% 94% 92% 91% 89% 93% 94% 92% 93% 90% 93% 93% 93% 90% 94% 89%) -> (1k/1k) -> write( 7%)
+ last tile: 13/1574/3322 (z13 19%) https://www.openstreetmap.org/#map=13/32.17561/-110.83008
+1:48:31 INF [mbtiles] - features: [ 513M 18% 666k/s ] 199G tiles: [ 29M 82k/s ] 17G
+ cpus: 15.7 gc: 7% heap: 9.3G/21G direct: 4M postGC: 9.3G
+ read(36%) -> (1k/1k) -> encode(88% 92% 88% 87% 89% 88% 90% 88% 91% 90% 88% 89% 89% 89% 91% 89%) -> (1k/1k) -> write(21%)
+ last tile: 13/1713/2838 (z13 20%) https://www.openstreetmap.org/#map=13/48.28319/-104.72168
+1:48:41 INF [mbtiles] - features: [ 523M 18% 987k/s ] 199G tiles: [ 29M 76k/s ] 18G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 2.4G
+ read(47%) -> (787/1k) -> encode(93% 90% 90% 89% 92% 88% 88% 89% 88% 89% 92% 85% 86% 90% 90% 92%) -> (1k/1k) -> write(21%)
+ last tile: 13/1844/5338 (z13 22%) https://www.openstreetmap.org/#map=13/-47.81315/-98.96484
+1:48:51 INF [mbtiles] - features: [ 528M 18% 483k/s ] 199G tiles: [ 30M 23k/s ] 18G
+ cpus: 15.8 gc: 6% heap: 3.3G/21G direct: 4M postGC: 3.2G
+ read(30%) -> (1k/1k) -> encode(91% 92% 93% 94% 94% 88% 90% 91% 89% 90% 92% 90% 94% 93% 90% 94%) -> (1k/1k) -> write( 7%)
+ last tile: 13/1884/2783 (z13 23%) https://www.openstreetmap.org/#map=13/49.86632/-97.20703
+1:49:01 INF [mbtiles] - features: [ 533M 18% 491k/s ] 199G tiles: [ 30M 13k/s ] 18G
+ cpus: 15.8 gc: 5% heap: 6.4G/21G direct: 4M postGC: 3.6G
+ read(19%) -> (953/1k) -> encode(94% 94% 93% 94% 93% 94% 93% 94% 88% 92% 94% 93% 93% 89% 92% 94%) -> (1k/1k) -> write( 4%)
+ last tile: 13/1907/3066 (z13 23%) https://www.openstreetmap.org/#map=13/41.17865/-96.19629
+1:49:11 INF [mbtiles] - features: [ 540M 19% 712k/s ] 199G tiles: [ 30M 37k/s ] 18G
+ cpus: 15.8 gc: 6% heap: 11G/21G direct: 4M postGC: 4.6G
+ read(34%) -> (996/1k) -> encode(90% 89% 92% 92% 91% 92% 93% 88% 84% 92% 93% 84% 91% 93% 93% 92%) -> (1k/1k) -> write(11%)
+ last tile: 13/1973/2950 (z13 24%) https://www.openstreetmap.org/#map=13/44.90258/-93.29590
+1:49:21 INF [mbtiles] - features: [ 546M 19% 537k/s ] 199G tiles: [ 30M 30k/s ] 18G
+ cpus: 15.7 gc: 7% heap: 8.3G/21G direct: 4M postGC: 5.2G
+ read(27%) -> (1k/1k) -> encode(93% 92% 92% 84% 92% 90% 92% 86% 90% 92% 90% 93% 89% 93% 93% 93%) -> (1k/1k) -> write( 9%)
+ last tile: 13/2029/3763 (z13 24%) https://www.openstreetmap.org/#map=13/14.47723/-90.83496
+1:49:31 INF [mbtiles] - features: [ 551M 19% 524k/s ] 199G tiles: [ 31M 19k/s ] 18G
+ cpus: 15.7 gc: 7% heap: 7.8G/21G direct: 4M postGC: 5.9G
+ read(26%) -> (993/1k) -> encode(92% 85% 91% 91% 92% 93% 91% 93% 93% 92% 91% 89% 91% 88% 93% 93%) -> (1k/1k) -> write( 6%)
+ last tile: 13/2064/2835 (z13 25%) https://www.openstreetmap.org/#map=13/48.37085/-89.29688
+1:49:41 INF [mbtiles] - features: [ 556M 19% 486k/s ] 199G tiles: [ 31M 16k/s ] 19G
+ cpus: 15.8 gc: 7% heap: 7.6G/21G direct: 4M postGC: 6.5G
+ read(20%) -> (987/1k) -> encode(90% 91% 93% 93% 92% 88% 93% 93% 92% 91% 92% 87% 90% 93% 93% 93%) -> (1k/1k) -> write( 5%)
+ last tile: 13/2094/3740 (z13 25%) https://www.openstreetmap.org/#map=13/15.45368/-87.97852
+1:49:51 INF [mbtiles] - features: [ 560M 19% 476k/s ] 199G tiles: [ 31M 19k/s ] 19G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 6.7G
+ read(18%) -> (918/1k) -> encode(94% 94% 93% 93% 91% 94% 94% 94% 93% 94% 94% 91% 94% 92% 87% 90%) -> (975/1k) -> write( 6%)
+ last tile: 13/2129/3772 (z13 26%) https://www.openstreetmap.org/#map=13/14.09396/-86.44043
+1:50:01 INF [mbtiles] - features: [ 567M 20% 608k/s ] 199G tiles: [ 31M 24k/s ] 19G
+ cpus: 15.7 gc: 7% heap: 7.9G/21G direct: 4M postGC: 7.7G
+ read(33%) -> (1k/1k) -> encode(87% 89% 93% 91% 93% 91% 91% 92% 90% 89% 88% 92% 93% 87% 91% 88%) -> (1k/1k) -> write( 7%)
+ last tile: 13/2172/3161 (z13 26%) https://www.openstreetmap.org/#map=13/37.96152/-84.55078
+1:50:11 INF [mbtiles] - features: [ 573M 20% 632k/s ] 199G tiles: [ 31M 16k/s ] 19G
+ cpus: 15.7 gc: 6% heap: 8.9G/21G direct: 4M postGC: 8.5G
+ read(28%) -> (1k/1k) -> encode(93% 92% 93% 86% 93% 92% 93% 93% 87% 93% 89% 92% 90% 91% 93% 88%) -> (1k/1k) -> write( 5%)
+ last tile: 13/2201/3029 (z13 26%) https://www.openstreetmap.org/#map=13/42.39101/-83.27637
+1:50:21 INF [mbtiles] - features: [ 578M 20% 536k/s ] 199G tiles: [ 32M 16k/s ] 19G
+ cpus: 15.8 gc: 6% heap: 11G/21G direct: 4M postGC: 8.8G
+ read(18%) -> (878/1k) -> encode(89% 91% 92% 94% 92% 93% 89% 94% 93% 94% 89% 94% 93% 92% 94% 92%) -> (915/1k) -> write( 5%)
+ last tile: 13/2231/4620 (z13 27%) https://www.openstreetmap.org/#map=13/-22.43134/-81.95801
+1:50:31 INF [mbtiles] - features: [ 583M 20% 470k/s ] 199G tiles: [ 32M 11k/s ] 19G
+ cpus: 15.7 gc: 6% heap: 11G/21G direct: 4M postGC: 9.5G
+ read(28%) -> (989/1k) -> encode(92% 92% 91% 93% 92% 91% 93% 93% 85% 93% 92% 92% 86% 90% 90% 93%) -> (1k/1k) -> write( 4%)
+ last tile: 13/2250/3326 (z13 27%) https://www.openstreetmap.org/#map=13/32.02671/-81.12305
+1:50:41 INF [mbtiles] - features: [ 587M 20% 443k/s ] 199G tiles: [ 32M 11k/s ] 19G
+ cpus: 15.7 gc: 6% heap: 14G/21G direct: 4M postGC: 10G
+ read(20%) -> (1k/1k) -> encode(89% 89% 93% 92% 92% 90% 93% 91% 91% 92% 92% 93% 91% 91% 92% 93%) -> (1k/1k) -> write( 4%)
+ last tile: 13/2270/4176 (z13 27%) https://www.openstreetmap.org/#map=13/-3.51342/-80.24414
+1:50:51 INF [mbtiles] - features: [ 592M 20% 440k/s ] 199G tiles: [ 32M 10k/s ] 19G
+ cpus: 15.7 gc: 6% heap: 12G/21G direct: 4M postGC: 10G
+ read(20%) -> (1k/1k) -> encode(93% 93% 88% 89% 91% 93% 92% 91% 92% 93% 89% 93% 93% 92% 93% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 13/2287/2990 (z13 27%) https://www.openstreetmap.org/#map=13/43.64403/-79.49707
+1:51:01 INF [mbtiles] - features: [ 597M 21% 532k/s ] 199G tiles: [ 32M 17k/s ] 19G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 11G
+ read(25%) -> (1k/1k) -> encode(90% 93% 89% 92% 92% 90% 89% 93% 92% 92% 90% 90% 91% 91% 90% 88%) -> (1k/1k) -> write( 6%)
+ last tile: 13/2317/5062 (z13 28%) https://www.openstreetmap.org/#map=13/-39.02772/-78.17871
+1:51:11 INF [mbtiles] - features: [ 602M 21% 527k/s ] 199G tiles: [ 32M 15k/s ] 20G
+ cpus: 15.7 gc: 7% heap: 14G/21G direct: 4M postGC: 11G
+ read(25%) -> (1k/1k) -> encode(92% 90% 92% 89% 91% 90% 89% 90% 91% 92% 92% 90% 92% 88% 91% 89%) -> (1k/1k) -> write( 5%)
+ last tile: 13/2342/3137 (z13 28%) https://www.openstreetmap.org/#map=13/38.78835/-77.08008
+1:51:21 INF [mbtiles] - features: [ 606M 21% 382k/s ] 199G tiles: [ 32M 6k/s ] 20G
+ cpus: 15.7 gc: 7% heap: 12G/21G direct: 4M postGC: 12G
+ read(14%) -> (965/1k) -> encode(91% 92% 89% 91% 92% 92% 90% 92% 92% 90% 92% 92% 91% 89% 91% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/2352/3122 (z13 28%) https://www.openstreetmap.org/#map=13/39.30030/-76.64063
+1:51:31 INF [mbtiles] - features: [ 610M 21% 417k/s ] 199G tiles: [ 32M 12k/s ] 20G
+ cpus: 15.7 gc: 7% heap: 15G/21G direct: 4M postGC: 12G
+ read(22%) -> (973/1k) -> encode(92% 92% 89% 91% 89% 92% 90% 93% 92% 89% 91% 90% 92% 90% 92% 91%) -> (1k/1k) -> write( 4%)
+ last tile: 13/2373/3993 (z13 28%) https://www.openstreetmap.org/#map=13/4.52167/-75.71777
+1:51:41 INF [mbtiles] - features: [ 615M 21% 439k/s ] 199G tiles: [ 33M 12k/s ] 20G
+ cpus: 15.7 gc: 7% heap: 7G/21G direct: 4M postGC: 2.9G
+ read(16%) -> (884/1k) -> encode(89% 88% 93% 91% 89% 91% 89% 91% 91% 89% 88% 89% 92% 89% 87% 89%) -> (1k/1k) -> write( 4%)
+ last tile: 13/2393/3846 (z13 29%) https://www.openstreetmap.org/#map=13/10.91962/-74.83887
+1:51:51 INF [mbtiles] - features: [ 618M 21% 302k/s ] 199G tiles: [ 33M 12k/s ] 20G
+ cpus: 15.8 gc: 4% heap: 9G/21G direct: 4M postGC: 3.7G
+ read(15%) -> (993/1k) -> encode(94% 92% 96% 95% 91% 96% 96% 96% 92% 96% 96% 96% 96% 95% 96% 96%) -> (1k/1k) -> write( 4%)
+ last tile: 13/2412/3083 (z13 29%) https://www.openstreetmap.org/#map=13/40.61395/-74.00391
+1:52:02 INF [mbtiles] - features: [ 621M 21% 279k/s ] 199G tiles: [ 33M 6.9k/s ] 20G
+ cpus: 15.8 gc: 6% heap: 12G/21G direct: 4M postGC: 3.7G
+ read(12%) -> (1k/1k) -> encode(94% 94% 94% 94% 94% 93% 94% 94% 94% 93% 93% 93% 93% 87% 94% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/2423/3070 (z13 29%) https://www.openstreetmap.org/#map=13/41.04622/-73.52051
+1:52:12 INF [mbtiles] - features: [ 625M 22% 407k/s ] 199G tiles: [ 33M 9k/s ] 20G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 4.1G
+ read(17%) -> (949/1k) -> encode(94% 93% 92% 94% 94% 93% 94% 94% 94% 93% 94% 94% 91% 93% 91% 89%) -> (1k/1k) -> write( 3%)
+ last tile: 13/2438/6210 (z13 29%) https://www.openstreetmap.org/#map=13/-67.64268/-72.86133
+1:52:22 INF [mbtiles] - features: [ 629M 22% 395k/s ] 199G tiles: [ 33M 7.1k/s ] 20G
+ cpus: 15.8 gc: 6% heap: 9.4G/21G direct: 4M postGC: 4.6G
+ read(14%) -> (855/1k) -> encode(93% 93% 89% 93% 91% 94% 90% 93% 94% 94% 91% 94% 93% 93% 93% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/2449/3667 (z13 29%) https://www.openstreetmap.org/#map=13/18.52128/-72.37793
+1:52:32 INF [mbtiles] - features: [ 633M 22% 452k/s ] 199G tiles: [ 33M 16k/s ] 20G
+ cpus: 15.8 gc: 6% heap: 8.6G/21G direct: 4M postGC: 5.1G
+ read(22%) -> (1k/1k) -> encode(93% 94% 90% 93% 94% 92% 89% 92% 93% 93% 92% 87% 92% 92% 93% 93%) -> (1k/1k) -> write( 6%)
+ last tile: 13/2477/3033 (z13 30%) https://www.openstreetmap.org/#map=13/42.26105/-71.14746
+1:52:42 INF [mbtiles] - features: [ 640M 22% 647k/s ] 199G tiles: [ 33M 33k/s ] 20G
+ cpus: 15.8 gc: 6% heap: 5.9G/21G direct: 4M postGC: 5.9G
+ read(22%) -> (799/1k) -> encode(88% 94% 92% 93% 86% 93% 93% 92% 93% 91% 91% 92% 91% 88% 93% 93%) -> (1k/1k) -> write(10%)
+ last tile: 13/2536/4853 (z13 30%) https://www.openstreetmap.org/#map=13/-31.54109/-68.55469
+1:52:52 INF [mbtiles] - features: [ 644M 22% 416k/s ] 199G tiles: [ 34M 44k/s ] 21G
+ cpus: 15.8 gc: 5% heap: 15G/21G direct: 4M postGC: 6.2G
+ read(20%) -> (918/1k) -> encode(93% 92% 94% 94% 88% 90% 93% 93% 89% 88% 94% 94% 94% 90% 94% 94%) -> (1k/1k) -> write(13%)
+ last tile: 13/2608/3412 (z13 31%) https://www.openstreetmap.org/#map=13/28.76766/-65.39063
+1:53:02 INF [mbtiles] - features: [ 650M 22% 589k/s ] 199G tiles: [ 35M 66k/s ] 21G
+ cpus: 15.7 gc: 7% heap: 7.6G/21G direct: 4M postGC: 6.9G
+ read(23%) -> (836/1k) -> encode(92% 90% 93% 91% 91% 90% 93% 93% 91% 90% 86% 88% 91% 93% 85% 91%) -> (1k/1k) -> write(19%)
+ last tile: 13/2706/3760 (z13 33%) https://www.openstreetmap.org/#map=13/14.60485/-61.08398
+1:53:12 INF [mbtiles] - features: [ 655M 23% 529k/s ] 199G tiles: [ 35M 81k/s ] 21G
+ cpus: 15.7 gc: 6% heap: 11G/21G direct: 4M postGC: 7.7G
+ read(24%) -> (854/1k) -> encode(89% 94% 93% 94% 88% 93% 93% 92% 93% 92% 83% 86% 90% 89% 93% 92%) -> (1k/1k) -> write(21%)
+ last tile: 13/2815/4725 (z13 34%) https://www.openstreetmap.org/#map=13/-26.62782/-56.29395
+1:53:22 INF [mbtiles] - features: [ 660M 23% 526k/s ] 199G tiles: [ 36M 66k/s ] 21G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 8.6G
+ read(26%) -> (812/1k) -> encode(90% 91% 90% 93% 92% 92% 87% 91% 92% 91% 93% 89% 84% 90% 91% 85%) -> (1k/1k) -> write(17%)
+ last tile: 13/2905/3984 (z13 35%) https://www.openstreetmap.org/#map=13/4.91583/-52.33887
+1:53:32 INF [mbtiles] - features: [ 665M 23% 456k/s ] 199G tiles: [ 37M 56k/s ] 21G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 9.4G
+ read(27%) -> (874/1k) -> encode(91% 91% 93% 89% 90% 91% 93% 89% 91% 87% 92% 88% 86% 90% 91% 92%) -> (1k/1k) -> write(15%)
+ last tile: 13/2984/4718 (z13 36%) https://www.openstreetmap.org/#map=13/-26.35250/-48.86719
+1:53:42 INF [mbtiles] - features: [ 669M 23% 362k/s ] 199G tiles: [ 37M 33k/s ] 22G
+ cpus: 15.6 gc: 9% heap: 11G/21G direct: 4M postGC: 11G
+ read(12%) -> (958/1k) -> encode(90% 89% 87% 90% 90% 88% 89% 87% 89% 90% 89% 89% 88% 88% 89% 90%) -> (1k/1k) -> write( 9%)
+ last tile: 13/3031/4651 (z13 37%) https://www.openstreetmap.org/#map=13/-23.68477/-46.80176
+1:53:52 INF [mbtiles] - features: [ 670M 23% 168k/s ] 199G tiles: [ 37M 3.6k/s ] 22G
+ cpus: 15.7 gc: 7% heap: 12G/21G direct: 4M postGC: 3.8G
+ read( 2%) -> (834/1k) -> encode(92% 91% 87% 89% 86% 91% 90% 88% 92% 91% 88% 91% 91% 89% 90% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/3036/4649 (z13 37%) https://www.openstreetmap.org/#map=13/-23.60426/-46.58203
+1:54:02 INF [mbtiles] - features: [ 676M 23% 540k/s ] 199G tiles: [ 37M 49k/s ] 22G
+ cpus: 15.7 gc: 7% heap: 7.8G/21G direct: 4M postGC: 4.5G
+ read(15%) -> (315/1k) -> encode(88% 88% 91% 91% 89% 91% 89% 92% 92% 91% 92% 91% 92% 91% 92% 92%) -> (1k/1k) -> write(13%)
+ last tile: 13/3104/4632 (z13 37%) https://www.openstreetmap.org/#map=13/-22.91792/-43.59375
+1:54:12 INF [mbtiles] - features: [ 681M 24% 542k/s ] 199G tiles: [ 39M 114k/s ] 22G
+ cpus: 12.4 gc: 5% heap: 9.9G/21G direct: 4M postGC: 5.1G
+ read(19%) -> (0/1k) -> encode(65% 73% 64% 81% 67% 72% 75% 71% 91% 61% 66% 63% 62% 66% 81% 67%) -> (1k/1k) -> write(29%)
+ last tile: 13/3258/2261 (z13 39%) https://www.openstreetmap.org/#map=13/62.49203/-36.82617
+1:54:22 INF [mbtiles] - features: [ 685M 24% 412k/s ] 199G tiles: [ 41M 289k/s ] 23G
+ cpus: 7.4 gc: 2% heap: 9.6G/21G direct: 4M postGC: 5.1G
+ read(31%) -> (548/1k) -> encode(38% 30% 40% 33% 32% 33% 33% 40% 68% 34% 38% 31% 41% 35% 42% 42%) -> (902/1k) -> write(67%)
+ last tile: 13/3676/5285 (z13 44%) https://www.openstreetmap.org/#map=13/-46.22545/-18.45703
+1:54:32 INF [mbtiles] - features: [ 688M 24% 310k/s ] 199G tiles: [ 42M 71k/s ] 23G
+ cpus: 15.8 gc: 7% heap: 13G/21G direct: 4M postGC: 5.8G
+ read(25%) -> (945/1k) -> encode(88% 90% 90% 91% 92% 91% 89% 93% 92% 90% 93% 92% 90% 90% 84% 91%) -> (1k/1k) -> write(17%)
+ last tile: 13/3785/3878 (z13 46%) https://www.openstreetmap.org/#map=13/9.53575/-13.66699
+1:54:42 INF [mbtiles] - features: [ 691M 24% 273k/s ] 199G tiles: [ 43M 49k/s ] 23G
+ cpus: 15.8 gc: 6% heap: 11G/21G direct: 4M postGC: 6G
+ read(25%) -> (1k/1k) -> encode(94% 92% 91% 89% 91% 94% 87% 94% 94% 91% 94% 93% 94% 86% 94% 91%) -> (1k/1k) -> write(12%)
+ last tile: 13/3863/3899 (z13 47%) https://www.openstreetmap.org/#map=13/8.62447/-10.23926
+1:54:52 INF [mbtiles] - features: [ 695M 24% 341k/s ] 199G tiles: [ 43M 21k/s ] 23G
+ cpus: 15.7 gc: 6% heap: 9.1G/21G direct: 4M postGC: 6.5G
+ read(16%) -> (1k/1k) -> encode(93% 92% 90% 93% 90% 94% 94% 94% 93% 88% 93% 90% 93% 93% 93% 93%) -> (1k/1k) -> write( 6%)
+ last tile: 13/3898/3067 (z13 47%) https://www.openstreetmap.org/#map=13/41.14557/-8.70117
+1:55:02 INF [mbtiles] - features: [ 698M 24% 372k/s ] 199G tiles: [ 43M 9.3k/s ] 23G
+ cpus: 15.7 gc: 6% heap: 7.7G/21G direct: 4M postGC: 7G
+ read(12%) -> (939/1k) -> encode(93% 93% 93% 93% 92% 93% 92% 92% 91% 93% 91% 93% 90% 93% 93% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 13/3913/3808 (z13 47%) https://www.openstreetmap.org/#map=13/12.55456/-8.04199
+1:55:12 INF [mbtiles] - features: [ 702M 24% 419k/s ] 199G tiles: [ 43M 23k/s ] 23G
+ cpus: 15.8 gc: 5% heap: 9.6G/21G direct: 4M postGC: 7.5G
+ read(24%) -> (1k/1k) -> encode(94% 93% 95% 92% 95% 94% 95% 93% 91% 94% 90% 92% 92% 93% 95% 92%) -> (1k/1k) -> write( 7%)
+ last tile: 13/3951/2658 (z13 48%) https://www.openstreetmap.org/#map=13/53.27835/-6.37207
+1:55:22 INF [mbtiles] - features: [ 706M 24% 383k/s ] 199G tiles: [ 43M 18k/s ] 23G
+ cpus: 15.8 gc: 6% heap: 12G/21G direct: 4M postGC: 7.9G
+ read(17%) -> (984/1k) -> encode(93% 90% 93% 94% 90% 90% 93% 92% 92% 94% 90% 94% 94% 94% 93% 93%) -> (1k/1k) -> write( 5%)
+ last tile: 13/3981/3921 (z13 48%) https://www.openstreetmap.org/#map=13/7.66744/-5.05371
+1:55:32 INF [mbtiles] - features: [ 709M 25% 318k/s ] 199G tiles: [ 44M 12k/s ] 23G
+ cpus: 15.8 gc: 6% heap: 8.4G/21G direct: 4M postGC: 8.2G
+ read(16%) -> (1k/1k) -> encode(93% 91% 93% 93% 88% 93% 91% 94% 94% 93% 94% 93% 90% 93% 91% 94%) -> (1k/1k) -> write( 4%)
+ last tile: 13/4001/2765 (z13 48%) https://www.openstreetmap.org/#map=13/50.37350/-4.17480
+1:55:42 INF [mbtiles] - features: [ 713M 25% 302k/s ] 199G tiles: [ 44M 7.3k/s ] 23G
+ cpus: 15.8 gc: 6% heap: 10G/21G direct: 4M postGC: 8.4G
+ read(13%) -> (1k/1k) -> encode(92% 92% 93% 94% 93% 92% 93% 94% 92% 94% 93% 94% 91% 94% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4013/3961 (z13 48%) https://www.openstreetmap.org/#map=13/5.92204/-3.64746
+1:55:52 INF [mbtiles] - features: [ 716M 25% 325k/s ] 199G tiles: [ 44M 6.2k/s ] 23G
+ cpus: 15.8 gc: 5% heap: 12G/21G direct: 4M postGC: 8.9G
+ read(16%) -> (1k/1k) -> encode(94% 93% 93% 93% 93% 93% 93% 93% 94% 93% 94% 94% 89% 94% 92% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4023/2554 (z13 49%) https://www.openstreetmap.org/#map=13/55.92459/-3.20801
+1:56:02 INF [mbtiles] - features: [ 719M 25% 349k/s ] 199G tiles: [ 44M 6.7k/s ] 23G
+ cpus: 15.8 gc: 5% heap: 14G/21G direct: 4M postGC: 9.2G
+ read(16%) -> (1k/1k) -> encode(94% 94% 92% 94% 94% 92% 91% 93% 94% 93% 94% 94% 91% 94% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4034/2641 (z13 49%) https://www.openstreetmap.org/#map=13/53.72272/-2.72461
+1:56:12 INF [mbtiles] - features: [ 722M 25% 315k/s ] 199G tiles: [ 44M 6k/s ] 23G
+ cpus: 15.7 gc: 6% heap: 12G/21G direct: 4M postGC: 9.5G
+ read(16%) -> (1k/1k) -> encode(92% 92% 92% 93% 94% 93% 93% 89% 94% 93% 92% 93% 92% 92% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4044/2872 (z13 49%) https://www.openstreetmap.org/#map=13/47.27923/-2.28516
+1:56:22 INF [mbtiles] - features: [ 726M 25% 312k/s ] 199G tiles: [ 44M 4.3k/s ] 23G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 9.9G
+ read(14%) -> (1k/1k) -> encode(92% 94% 92% 92% 93% 93% 92% 93% 94% 91% 93% 92% 91% 94% 93% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4051/2691 (z13 49%) https://www.openstreetmap.org/#map=13/52.40242/-1.97754
+1:56:32 INF [mbtiles] - features: [ 729M 25% 299k/s ] 199G tiles: [ 44M 4.1k/s ] 23G
+ cpus: 15.7 gc: 5% heap: 14G/21G direct: 4M postGC: 10G
+ read(14%) -> (1k/1k) -> encode(93% 93% 91% 92% 94% 94% 94% 94% 94% 94% 91% 93% 94% 93% 94% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4058/3944 (z13 49%) https://www.openstreetmap.org/#map=13/6.66461/-1.66992
+1:56:42 INF [mbtiles] - features: [ 731M 25% 260k/s ] 199G tiles: [ 44M 1.9k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 12G/21G direct: 4M postGC: 10G
+ read(10%) -> (1k/1k) -> encode(93% 93% 93% 92% 94% 93% 93% 91% 94% 93% 92% 92% 93% 92% 92% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4061/2692 (z13 49%) https://www.openstreetmap.org/#map=13/52.37560/-1.53809
+1:56:52 INF [mbtiles] - features: [ 734M 25% 272k/s ] 199G tiles: [ 44M 2.4k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 10G
+ read(12%) -> (1k/1k) -> encode(94% 90% 94% 93% 93% 93% 94% 93% 94% 93% 92% 94% 94% 94% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4065/2746 (z13 49%) https://www.openstreetmap.org/#map=13/50.90303/-1.36230
+1:57:02 INF [mbtiles] - features: [ 737M 25% 283k/s ] 199G tiles: [ 44M 3k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 11G
+ read(14%) -> (1k/1k) -> encode(94% 93% 93% 94% 91% 94% 91% 93% 93% 93% 93% 94% 92% 92% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4070/2672 (z13 49%) https://www.openstreetmap.org/#map=13/52.90890/-1.14258
+1:57:12 INF [mbtiles] - features: [ 740M 26% 295k/s ] 199G tiles: [ 44M 4.1k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 11G/21G direct: 4M postGC: 11G
+ read(14%) -> (1k/1k) -> encode(92% 92% 93% 94% 94% 92% 92% 93% 93% 92% 94% 94% 92% 93% 93% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4077/3876 (z13 49%) https://www.openstreetmap.org/#map=13/9.62241/-0.83496
+1:57:22 INF [mbtiles] - features: [ 743M 26% 303k/s ] 199G tiles: [ 44M 3.1k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 11G/21G direct: 4M postGC: 11G
+ read(12%) -> (998/1k) -> encode(92% 92% 92% 93% 92% 93% 91% 92% 93% 89% 93% 93% 93% 93% 93% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4082/2953 (z13 49%) https://www.openstreetmap.org/#map=13/44.80912/-0.61523
+1:57:32 INF [mbtiles] - features: [ 745M 26% 270k/s ] 199G tiles: [ 44M 3k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 14G/21G direct: 4M postGC: 11G
+ read(12%) -> (1k/1k) -> encode(92% 92% 92% 92% 93% 93% 93% 93% 93% 93% 92% 91% 91% 92% 93% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4087/3118 (z13 49%) https://www.openstreetmap.org/#map=13/39.43619/-0.39551
+1:57:42 INF [mbtiles] - features: [ 748M 26% 260k/s ] 199G tiles: [ 44M 2.5k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 12G
+ read(12%) -> (1k/1k) -> encode(93% 92% 93% 92% 92% 93% 92% 93% 94% 93% 94% 93% 92% 93% 91% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4091/2725 (z13 49%) https://www.openstreetmap.org/#map=13/51.48138/-0.21973
+1:57:52 INF [mbtiles] - features: [ 751M 26% 272k/s ] 199G tiles: [ 44M 2.4k/s ] 24G
+ cpus: 15.6 gc: 6% heap: 13G/21G direct: 4M postGC: 12G
+ read(10%) -> (992/1k) -> encode(93% 93% 93% 91% 93% 91% 92% 92% 93% 92% 90% 92% 92% 92% 93% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4095/2722 (z13 50%) https://www.openstreetmap.org/#map=13/51.56341/-0.04395
+1:58:02 INF [mbtiles] - features: [ 753M 26% 262k/s ] 199G tiles: [ 44M 3k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 12G
+ read(11%) -> (963/1k) -> encode(92% 89% 92% 90% 92% 93% 91% 92% 93% 92% 91% 92% 92% 92% 92% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4100/2848 (z13 50%) https://www.openstreetmap.org/#map=13/47.98992/0.17578
+1:58:12 INF [mbtiles] - features: [ 756M 26% 306k/s ] 199G tiles: [ 44M 6.1k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 13G
+ read(18%) -> (1k/1k) -> encode(92% 91% 92% 90% 92% 92% 91% 91% 92% 90% 92% 89% 89% 90% 91% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4110/2973 (z13 50%) https://www.openstreetmap.org/#map=13/44.18220/0.61523
+1:58:22 INF [mbtiles] - features: [ 760M 26% 304k/s ] 199G tiles: [ 44M 4.9k/s ] 24G
+ cpus: 15.6 gc: 6% heap: 14G/21G direct: 4M postGC: 13G
+ read(14%) -> (1k/1k) -> encode(92% 91% 90% 92% 92% 91% 91% 91% 90% 91% 91% 91% 91% 92% 91% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4118/2879 (z13 50%) https://www.openstreetmap.org/#map=13/47.07012/0.96680
+1:58:32 INF [mbtiles] - features: [ 762M 26% 275k/s ] 199G tiles: [ 44M 3.6k/s ] 24G
+ cpus: 15.5 gc: 7% heap: 14G/21G direct: 4M postGC: 14G
+ read(11%) -> (1k/1k) -> encode(89% 89% 90% 89% 91% 91% 89% 91% 92% 91% 90% 91% 91% 91% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4124/3956 (z13 50%) https://www.openstreetmap.org/#map=13/6.14055/1.23047
+1:58:42 INF [mbtiles] - features: [ 765M 26% 262k/s ] 199G tiles: [ 44M 3.1k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 15G/21G direct: 4M postGC: 14G
+ read(13%) -> (1k/1k) -> encode(90% 91% 91% 90% 91% 90% 90% 92% 91% 89% 92% 91% 90% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4129/2992 (z13 50%) https://www.openstreetmap.org/#map=13/43.58039/1.45020
+1:58:52 INF [mbtiles] - features: [ 768M 27% 263k/s ] 199G tiles: [ 44M 3.6k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 14G/21G direct: 4M postGC: 14G
+ read(13%) -> (990/1k) -> encode(92% 92% 92% 91% 92% 92% 90% 92% 90% 92% 91% 90% 89% 92% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4135/3065 (z13 50%) https://www.openstreetmap.org/#map=13/41.21172/1.71387
+1:59:02 INF [mbtiles] - features: [ 770M 27% 260k/s ] 199G tiles: [ 44M 4.2k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 16G/21G direct: 4M postGC: 15G
+ read(13%) -> (1k/1k) -> encode(90% 91% 90% 90% 91% 91% 91% 91% 91% 91% 92% 91% 91% 92% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4142/2822 (z13 50%) https://www.openstreetmap.org/#map=13/48.74895/2.02148
+1:59:12 INF [mbtiles] - features: [ 772M 27% 230k/s ] 199G tiles: [ 44M 1.8k/s ] 24G
+ cpus: 15.6 gc: 7% heap: 4.6G/21G direct: 4M postGC: 2.2G
+ read( 6%) -> (964/1k) -> encode(89% 91% 91% 88% 88% 88% 90% 90% 90% 91% 89% 88% 90% 91% 90% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4145/3060 (z13 50%) https://www.openstreetmap.org/#map=13/41.37681/2.15332
+1:59:22 INF [mbtiles] - features: [ 775M 27% 203k/s ] 199G tiles: [ 44M 1.8k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 6.5G/21G direct: 4M postGC: 2.4G
+ read( 9%) -> (1k/1k) -> encode(94% 92% 94% 94% 94% 94% 94% 93% 92% 94% 94% 94% 94% 94% 92% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4148/2783 (z13 50%) https://www.openstreetmap.org/#map=13/49.86632/2.28516
+1:59:32 INF [mbtiles] - features: [ 777M 27% 213k/s ] 199G tiles: [ 45M 2.4k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 7.7G/21G direct: 4M postGC: 2.5G
+ read( 9%) -> (1k/1k) -> encode(95% 90% 95% 95% 94% 92% 95% 95% 95% 95% 95% 95% 95% 95% 92% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4152/2821 (z13 50%) https://www.openstreetmap.org/#map=13/48.77791/2.46094
+1:59:42 INF [mbtiles] - features: [ 779M 27% 235k/s ] 199G tiles: [ 45M 3k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 4.8G/21G direct: 4M postGC: 2.6G
+ read(10%) -> (1k/1k) -> encode(95% 95% 94% 94% 95% 94% 95% 94% 93% 94% 95% 95% 94% 95% 95% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4157/2839 (z13 50%) https://www.openstreetmap.org/#map=13/48.25394/2.68066
+1:59:52 INF [mbtiles] - features: [ 781M 27% 245k/s ] 199G tiles: [ 45M 3k/s ] 24G
+ cpus: 15.8 gc: 4% heap: 3G/21G direct: 4M postGC: 2.9G
+ read(10%) -> (1k/1k) -> encode(95% 95% 95% 95% 95% 95% 95% 94% 93% 95% 95% 95% 94% 92% 94% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4162/3020 (z13 50%) https://www.openstreetmap.org/#map=13/42.68244/2.90039
+2:00:02 INF [mbtiles] - features: [ 784M 27% 229k/s ] 199G tiles: [ 45M 2.4k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 7.1G/21G direct: 4M postGC: 3.1G
+ read(11%) -> (1k/1k) -> encode(94% 95% 95% 94% 92% 95% 94% 94% 93% 94% 95% 94% 95% 95% 95% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4166/2766 (z13 50%) https://www.openstreetmap.org/#map=13/50.34546/3.07617
+2:00:12 INF [mbtiles] - features: [ 786M 27% 222k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 4.1G/21G direct: 4M postGC: 3.3G
+ read( 8%) -> (997/1k) -> encode(92% 94% 95% 94% 95% 92% 94% 95% 93% 94% 94% 95% 94% 95% 94% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4169/2735 (z13 50%) https://www.openstreetmap.org/#map=13/51.20688/3.20801
+2:00:22 INF [mbtiles] - features: [ 788M 27% 239k/s ] 199G tiles: [ 45M 3.6k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 6.1G/21G direct: 4M postGC: 3.6G
+ read(13%) -> (1k/1k) -> encode(95% 95% 95% 95% 95% 93% 95% 92% 95% 92% 95% 94% 95% 95% 95% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4175/2766 (z13 50%) https://www.openstreetmap.org/#map=13/50.34546/3.47168
+2:00:32 INF [mbtiles] - features: [ 791M 27% 252k/s ] 199G tiles: [ 45M 4.8k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 4G/21G direct: 4M postGC: 3.8G
+ read(14%) -> (1k/1k) -> encode(94% 94% 95% 93% 92% 94% 92% 95% 95% 91% 91% 94% 94% 94% 94% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4183/2992 (z13 51%) https://www.openstreetmap.org/#map=13/43.58039/3.82324
+2:00:42 INF [mbtiles] - features: [ 793M 27% 247k/s ] 199G tiles: [ 45M 3k/s ] 24G
+ cpus: 15.8 gc: 5% heap: 8.1G/21G direct: 4M postGC: 4.1G
+ read(11%) -> (1k/1k) -> encode(94% 93% 92% 93% 94% 94% 91% 94% 94% 93% 94% 93% 94% 94% 94% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4188/2838 (z13 51%) https://www.openstreetmap.org/#map=13/48.28319/4.04297
+2:00:52 INF [mbtiles] - features: [ 796M 28% 260k/s ] 199G tiles: [ 45M 2.4k/s ] 24G
+ cpus: 15.7 gc: 5% heap: 4.5G/21G direct: 4M postGC: 4.4G
+ read(10%) -> (1k/1k) -> encode(94% 93% 93% 93% 93% 94% 92% 93% 93% 94% 93% 93% 94% 93% 93% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4192/2704 (z13 51%) https://www.openstreetmap.org/#map=13/52.05249/4.21875
+2:01:02 INF [mbtiles] - features: [ 798M 28% 190k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 4.6G/21G direct: 4M postGC: 4.5G
+ read( 8%) -> (1k/1k) -> encode(93% 92% 93% 93% 93% 92% 91% 93% 93% 94% 93% 94% 93% 93% 93% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4195/2749 (z13 51%) https://www.openstreetmap.org/#map=13/50.81982/4.35059
+2:01:12 INF [mbtiles] - features: [ 800M 28% 217k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.8 gc: 6% heap: 8.6G/21G direct: 4M postGC: 4.8G
+ read(10%) -> (1k/1k) -> encode(90% 93% 94% 93% 94% 94% 92% 94% 93% 93% 94% 93% 94% 94% 94% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4198/2712 (z13 51%) https://www.openstreetmap.org/#map=13/51.83578/4.48242
+2:01:22 INF [mbtiles] - features: [ 802M 28% 224k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 8.3G/21G direct: 4M postGC: 5G
+ read( 9%) -> (1k/1k) -> encode(93% 93% 93% 92% 94% 92% 94% 90% 93% 94% 93% 93% 93% 94% 94% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4201/2722 (z13 51%) https://www.openstreetmap.org/#map=13/51.56341/4.61426
+2:01:32 INF [mbtiles] - features: [ 805M 28% 229k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 5% heap: 5.4G/21G direct: 4M postGC: 5.1G
+ read(11%) -> (1k/1k) -> encode(94% 91% 92% 93% 93% 94% 93% 93% 94% 93% 94% 94% 94% 94% 94% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4204/2738 (z13 51%) https://www.openstreetmap.org/#map=13/51.12421/4.74609
+2:01:42 INF [mbtiles] - features: [ 807M 28% 222k/s ] 199G tiles: [ 45M 1.2k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 7.7G/21G direct: 4M postGC: 5.4G
+ read( 9%) -> (1k/1k) -> encode(94% 93% 93% 92% 92% 94% 91% 93% 93% 93% 92% 93% 93% 92% 93% 93%) -> (1k/1k) -> write( 0%)
+ last tile: 13/4206/2720 (z13 51%) https://www.openstreetmap.org/#map=13/51.61802/4.83398
+2:01:52 INF [mbtiles] - features: [ 809M 28% 237k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 8.6G/21G direct: 4M postGC: 5.6G
+ read(11%) -> (1k/1k) -> encode(94% 93% 92% 94% 94% 93% 94% 92% 92% 94% 94% 93% 91% 94% 94% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4209/2722 (z13 51%) https://www.openstreetmap.org/#map=13/51.56341/4.96582
+2:02:02 INF [mbtiles] - features: [ 812M 28% 236k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 7.2G/21G direct: 4M postGC: 5.9G
+ read(10%) -> (1k/1k) -> encode(92% 93% 94% 93% 91% 92% 93% 93% 93% 94% 94% 91% 93% 93% 93% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4212/2704 (z13 51%) https://www.openstreetmap.org/#map=13/52.05249/5.09766
+2:02:12 INF [mbtiles] - features: [ 814M 28% 235k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 6.1G/21G direct: 4M postGC: 6.1G
+ read( 9%) -> (1k/1k) -> encode(93% 93% 94% 94% 93% 94% 92% 93% 92% 94% 91% 92% 93% 94% 93% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4215/2703 (z13 51%) https://www.openstreetmap.org/#map=13/52.07951/5.22949
+2:02:22 INF [mbtiles] - features: [ 816M 28% 238k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 6.9G/21G direct: 4M postGC: 6.4G
+ read( 8%) -> (975/1k) -> encode(92% 90% 92% 93% 92% 93% 93% 92% 93% 93% 93% 91% 93% 92% 93% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4218/3002 (z13 51%) https://www.openstreetmap.org/#map=13/43.26121/5.36133
+2:02:32 INF [mbtiles] - features: [ 819M 28% 227k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 7% heap: 8.9G/21G direct: 4M postGC: 6.7G
+ read(11%) -> (1k/1k) -> encode(92% 92% 92% 92% 93% 91% 93% 92% 90% 92% 92% 92% 91% 93% 88% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4221/2727 (z13 51%) https://www.openstreetmap.org/#map=13/51.42661/5.49316
+2:02:42 INF [mbtiles] - features: [ 821M 28% 254k/s ] 199G tiles: [ 45M 2.4k/s ] 24G
+ cpus: 15.7 gc: 6% heap: 7.9G/21G direct: 4M postGC: 7G
+ read(12%) -> (1k/1k) -> encode(93% 91% 92% 93% 93% 93% 92% 93% 91% 92% 91% 93% 92% 90% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4225/2749 (z13 51%) https://www.openstreetmap.org/#map=13/50.81982/5.66895
+2:02:52 INF [mbtiles] - features: [ 824M 28% 252k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 7% heap: 7.3G/21G direct: 4M postGC: 7.3G
+ read(10%) -> (1k/1k) -> encode(92% 93% 93% 92% 90% 93% 92% 91% 93% 93% 93% 92% 92% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4228/2744 (z13 51%) https://www.openstreetmap.org/#map=13/50.95843/5.80078
+2:03:02 INF [mbtiles] - features: [ 826M 29% 237k/s ] 199G tiles: [ 45M 1.8k/s ] 24G
+ cpus: 15.7 gc: 7% heap: 9.1G/21G direct: 4M postGC: 7.6G
+ read(10%) -> (1k/1k) -> encode(92% 91% 93% 93% 92% 92% 92% 91% 91% 91% 92% 92% 92% 93% 91% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4231/2707 (z13 51%) https://www.openstreetmap.org/#map=13/51.97135/5.93262
+2:03:12 INF [mbtiles] - features: [ 828M 29% 237k/s ] 199G tiles: [ 45M 1.8k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 7.9G/21G direct: 4M postGC: 7.9G
+ read(10%) -> (1k/1k) -> encode(92% 90% 92% 91% 92% 92% 92% 90% 91% 92% 92% 93% 91% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4234/2751 (z13 51%) https://www.openstreetmap.org/#map=13/50.76426/6.06445
+2:03:22 INF [mbtiles] - features: [ 831M 29% 239k/s ] 199G tiles: [ 45M 1.2k/s ] 25G
+ cpus: 15.7 gc: 6% heap: 9G/21G direct: 4M postGC: 8.1G
+ read( 9%) -> (1k/1k) -> encode(93% 92% 93% 93% 92% 92% 92% 92% 93% 93% 91% 93% 92% 92% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4236/2697 (z13 51%) https://www.openstreetmap.org/#map=13/52.24126/6.15234
+2:03:32 INF [mbtiles] - features: [ 834M 29% 264k/s ] 199G tiles: [ 45M 3k/s ] 25G
+ cpus: 15.6 gc: 6% heap: 8.6G/21G direct: 4M postGC: 8.4G
+ read(14%) -> (1k/1k) -> encode(93% 92% 93% 92% 93% 92% 92% 92% 92% 89% 92% 93% 93% 90% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4241/2746 (z13 51%) https://www.openstreetmap.org/#map=13/50.90303/6.37207
+2:03:42 INF [mbtiles] - features: [ 836M 29% 253k/s ] 199G tiles: [ 45M 2.3k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 10G/21G direct: 4M postGC: 8.6G
+ read(11%) -> (1k/1k) -> encode(90% 92% 92% 92% 91% 92% 91% 93% 90% 92% 92% 92% 92% 92% 92% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4245/3808 (z13 51%) https://www.openstreetmap.org/#map=13/12.55456/6.54785
+2:03:52 INF [mbtiles] - features: [ 839M 29% 243k/s ] 199G tiles: [ 45M 1.9k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 10G/21G direct: 4M postGC: 9G
+ read(10%) -> (1k/1k) -> encode(92% 91% 92% 91% 92% 92% 92% 92% 91% 90% 92% 91% 93% 92% 92% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4248/2848 (z13 51%) https://www.openstreetmap.org/#map=13/47.98992/6.67969
+2:04:02 INF [mbtiles] - features: [ 841M 29% 253k/s ] 199G tiles: [ 45M 1.8k/s ] 25G
+ cpus: 15.6 gc: 6% heap: 10G/21G direct: 4M postGC: 9.3G
+ read(12%) -> (1k/1k) -> encode(92% 91% 91% 91% 93% 92% 92% 92% 93% 92% 92% 92% 92% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4251/2752 (z13 51%) https://www.openstreetmap.org/#map=13/50.73646/6.81152
+2:04:12 INF [mbtiles] - features: [ 844M 29% 252k/s ] 199G tiles: [ 45M 1.8k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 10G/21G direct: 4M postGC: 9.7G
+ read(11%) -> (1k/1k) -> encode(91% 91% 92% 92% 90% 92% 92% 92% 92% 91% 92% 92% 92% 92% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4254/2756 (z13 51%) https://www.openstreetmap.org/#map=13/50.62507/6.94336
+2:04:22 INF [mbtiles] - features: [ 846M 29% 245k/s ] 199G tiles: [ 45M 1.7k/s ] 25G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 10G
+ read(10%) -> (1k/1k) -> encode(90% 92% 93% 92% 92% 93% 93% 93% 92% 91% 92% 91% 92% 92% 93% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4257/3787 (z13 51%) https://www.openstreetmap.org/#map=13/13.45374/7.07520
+2:04:33 INF [mbtiles] - features: [ 849M 29% 268k/s ] 199G tiles: [ 45M 1.9k/s ] 25G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 10G
+ read(12%) -> (1k/1k) -> encode(91% 93% 92% 92% 91% 92% 92% 91% 93% 92% 91% 92% 91% 93% 92% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4260/2756 (z13 52%) https://www.openstreetmap.org/#map=13/50.62507/7.20703
+2:04:43 INF [mbtiles] - features: [ 852M 29% 291k/s ] 199G tiles: [ 45M 2.4k/s ] 25G
+ cpus: 15.6 gc: 6% heap: 11G/21G direct: 4M postGC: 10G
+ read(13%) -> (1k/1k) -> encode(92% 91% 92% 89% 92% 93% 92% 93% 92% 92% 91% 92% 92% 93% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4264/2857 (z13 52%) https://www.openstreetmap.org/#map=13/47.72454/7.38281
+2:04:53 INF [mbtiles] - features: [ 855M 30% 308k/s ] 199G tiles: [ 45M 2.4k/s ] 25G
+ cpus: 15.6 gc: 6% heap: 12G/21G direct: 4M postGC: 10G
+ read(12%) -> (1k/1k) -> encode(92% 91% 92% 93% 93% 92% 91% 91% 92% 92% 92% 92% 91% 92% 92% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4268/2863 (z13 52%) https://www.openstreetmap.org/#map=13/47.54687/7.55859
+2:05:03 INF [mbtiles] - features: [ 858M 30% 306k/s ] 199G tiles: [ 45M 2.4k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 12G/21G direct: 4M postGC: 11G
+ read(14%) -> (1k/1k) -> encode(92% 92% 91% 92% 92% 91% 92% 90% 92% 92% 91% 91% 92% 92% 91% 89%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4272/2828 (z13 52%) https://www.openstreetmap.org/#map=13/48.57479/7.73438
+2:05:13 INF [mbtiles] - features: [ 861M 30% 334k/s ] 199G tiles: [ 45M 3.6k/s ] 25G
+ cpus: 15.6 gc: 6% heap: 12G/21G direct: 4M postGC: 11G
+ read(16%) -> (1k/1k) -> encode(92% 92% 92% 91% 92% 92% 92% 92% 92% 91% 90% 91% 90% 92% 90% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4278/3917 (z13 52%) https://www.openstreetmap.org/#map=13/7.84162/7.99805
+2:05:23 INF [mbtiles] - features: [ 865M 30% 372k/s ] 199G tiles: [ 45M 3.8k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 12G/21G direct: 4M postGC: 11G
+ read(16%) -> (1k/1k) -> encode(90% 91% 90% 91% 91% 91% 92% 91% 90% 90% 91% 91% 90% 91% 91% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4284/2815 (z13 52%) https://www.openstreetmap.org/#map=13/48.95137/8.26172
+2:05:33 INF [mbtiles] - features: [ 868M 30% 354k/s ] 199G tiles: [ 45M 3.1k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 12G
+ read(16%) -> (1k/1k) -> encode(88% 91% 90% 90% 91% 92% 92% 91% 92% 92% 91% 92% 91% 89% 90% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4289/2720 (z13 52%) https://www.openstreetmap.org/#map=13/51.61802/8.48145
+2:05:43 INF [mbtiles] - features: [ 872M 30% 337k/s ] 199G tiles: [ 45M 2.4k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 12G
+ read(15%) -> (1k/1k) -> encode(91% 92% 91% 90% 92% 90% 91% 89% 91% 91% 90% 91% 91% 90% 92% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4293/2779 (z13 52%) https://www.openstreetmap.org/#map=13/49.97949/8.65723
+2:05:53 INF [mbtiles] - features: [ 875M 30% 333k/s ] 199G tiles: [ 45M 1.8k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 12G
+ read(13%) -> (1k/1k) -> encode(92% 92% 91% 91% 92% 90% 92% 92% 91% 91% 91% 92% 90% 92% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4296/2666 (z13 52%) https://www.openstreetmap.org/#map=13/53.06763/8.78906
+2:06:03 INF [mbtiles] - features: [ 879M 30% 356k/s ] 199G tiles: [ 45M 3.1k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 14G/21G direct: 4M postGC: 13G
+ read(18%) -> (1k/1k) -> encode(91% 91% 90% 90% 91% 91% 91% 92% 91% 92% 92% 92% 91% 92% 89% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4301/2667 (z13 52%) https://www.openstreetmap.org/#map=13/53.04121/9.00879
+2:06:13 INF [mbtiles] - features: [ 882M 31% 342k/s ] 199G tiles: [ 45M 2.9k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 13G/21G direct: 4M postGC: 13G
+ read(16%) -> (1k/1k) -> encode(91% 90% 91% 90% 90% 89% 91% 91% 92% 91% 90% 91% 89% 91% 91% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4306/4002 (z13 52%) https://www.openstreetmap.org/#map=13/4.12729/9.22852
+2:06:23 INF [mbtiles] - features: [ 886M 31% 369k/s ] 199G tiles: [ 45M 3.1k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 14G/21G direct: 4M postGC: 13G
+ read(17%) -> (1k/1k) -> encode(91% 91% 92% 90% 92% 91% 91% 90% 90% 92% 90% 92% 93% 90% 90% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4311/3898 (z13 52%) https://www.openstreetmap.org/#map=13/8.66792/9.44824
+2:06:33 INF [mbtiles] - features: [ 890M 31% 372k/s ] 199G tiles: [ 46M 3k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 15G/21G direct: 4M postGC: 14G
+ read(15%) -> (1k/1k) -> encode(90% 92% 91% 91% 90% 90% 91% 91% 91% 91% 90% 91% 91% 90% 91% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4316/4004 (z13 52%) https://www.openstreetmap.org/#map=13/4.03962/9.66797
+2:06:43 INF [mbtiles] - features: [ 893M 31% 341k/s ] 199G tiles: [ 46M 3.2k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 15G/21G direct: 4M postGC: 15G
+ read(16%) -> (1k/1k) -> encode(89% 91% 91% 91% 91% 90% 89% 91% 89% 89% 91% 91% 89% 90% 91% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4321/2840 (z13 52%) https://www.openstreetmap.org/#map=13/48.22467/9.88770
+2:06:53 INF [mbtiles] - features: [ 896M 31% 348k/s ] 199G tiles: [ 46M 3k/s ] 25G
+ cpus: 15.6 gc: 7% heap: 15G/21G direct: 4M postGC: 15G
+ read(15%) -> (1k/1k) -> encode(90% 91% 91% 92% 90% 90% 90% 92% 91% 91% 91% 90% 90% 89% 92% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4326/2979 (z13 52%) https://www.openstreetmap.org/#map=13/43.99281/10.10742
+2:07:03 INF [mbtiles] - features: [ 900M 31% 372k/s ] 199G tiles: [ 46M 3.1k/s ] 25G
+ cpus: 15.5 gc: 7% heap: 16G/21G direct: 4M postGC: 15G
+ read(17%) -> (1k/1k) -> encode(90% 91% 91% 90% 90% 90% 91% 90% 91% 89% 92% 91% 91% 91% 90% 89%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4331/2704 (z13 52%) https://www.openstreetmap.org/#map=13/52.05249/10.32715
+2:07:13 INF [mbtiles] - features: [ 904M 31% 367k/s ] 199G tiles: [ 46M 3.7k/s ] 25G
+ cpus: 15.5 gc: 7% heap: 16G/21G direct: 4M postGC: 16G
+ read(16%) -> (1k/1k) -> encode(90% 90% 90% 91% 91% 90% 90% 89% 89% 90% 90% 89% 88% 91% 90% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4337/2852 (z13 52%) https://www.openstreetmap.org/#map=13/47.87214/10.59082
+2:07:23 INF [mbtiles] - features: [ 908M 31% 373k/s ] 199G tiles: [ 46M 3.6k/s ] 25G
+ cpus: 15.7 gc: 5% heap: 2.7G/21G direct: 4M postGC: 1.9G
+ read(17%) -> (1k/1k) -> encode(92% 92% 91% 91% 93% 94% 95% 92% 88% 92% 94% 90% 91% 91% 92% 90%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4343/3966 (z13 53%) https://www.openstreetmap.org/#map=13/5.70345/10.85449
+2:07:33 INF [mbtiles] - features: [ 911M 32% 373k/s ] 199G tiles: [ 46M 3.2k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 5G/21G direct: 4M postGC: 2.3G
+ read(17%) -> (1k/1k) -> encode(93% 92% 92% 93% 94% 92% 91% 92% 94% 91% 94% 93% 94% 93% 91% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4348/2798 (z13 53%) https://www.openstreetmap.org/#map=13/49.43956/11.07422
+2:07:43 INF [mbtiles] - features: [ 915M 32% 382k/s ] 199G tiles: [ 46M 4.3k/s ] 26G
+ cpus: 15.8 gc: 6% heap: 3.1G/21G direct: 4M postGC: 2.7G
+ read(19%) -> (1k/1k) -> encode(93% 92% 94% 92% 94% 93% 93% 93% 93% 90% 92% 93% 93% 92% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4355/2770 (z13 53%) https://www.openstreetmap.org/#map=13/50.23315/11.38184
+2:07:53 INF [mbtiles] - features: [ 919M 32% 334k/s ] 199G tiles: [ 46M 1.7k/s ] 26G
+ cpus: 15.8 gc: 5% heap: 6.4G/21G direct: 4M postGC: 2.9G
+ read( 7%) -> (879/1k) -> encode(94% 94% 94% 93% 94% 93% 94% 94% 94% 93% 93% 94% 94% 94% 94% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4358/4008 (z13 53%) https://www.openstreetmap.org/#map=13/3.86425/11.51367
+2:08:03 INF [mbtiles] - features: [ 922M 32% 379k/s ] 199G tiles: [ 46M 4.9k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 3.6G/21G direct: 4M postGC: 3.4G
+ read(21%) -> (992/1k) -> encode(93% 94% 90% 88% 93% 93% 94% 92% 94% 94% 93% 89% 93% 93% 92% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4366/4206 (z13 53%) https://www.openstreetmap.org/#map=13/-4.82826/11.86523
+2:08:13 INF [mbtiles] - features: [ 926M 32% 361k/s ] 199G tiles: [ 46M 3.8k/s ] 26G
+ cpus: 15.8 gc: 5% heap: 7.6G/21G direct: 4M postGC: 3.8G
+ read(19%) -> (1k/1k) -> encode(93% 93% 94% 95% 93% 92% 94% 93% 91% 94% 95% 94% 93% 94% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4372/2918 (z13 53%) https://www.openstreetmap.org/#map=13/45.89001/12.12891
+2:08:23 INF [mbtiles] - features: [ 930M 32% 392k/s ] 199G tiles: [ 46M 3.7k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 6.8G/21G direct: 4M postGC: 4.2G
+ read(18%) -> (1k/1k) -> encode(91% 92% 94% 89% 93% 94% 91% 92% 93% 92% 94% 93% 93% 92% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4378/2744 (z13 53%) https://www.openstreetmap.org/#map=13/50.95843/12.39258
+2:08:33 INF [mbtiles] - features: [ 934M 32% 398k/s ] 199G tiles: [ 46M 4.2k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 5.2G/21G direct: 4M postGC: 4.6G
+ read(18%) -> (1k/1k) -> encode(90% 93% 92% 93% 91% 92% 93% 92% 90% 92% 91% 93% 92% 91% 90% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4385/2735 (z13 53%) https://www.openstreetmap.org/#map=13/51.20688/12.70020
+2:08:43 INF [mbtiles] - features: [ 938M 32% 422k/s ] 199G tiles: [ 46M 5.3k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 7.3G/21G direct: 4M postGC: 5.1G
+ read(18%) -> (1k/1k) -> encode(91% 92% 93% 93% 89% 93% 91% 93% 92% 91% 93% 92% 93% 91% 92% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4394/3826 (z13 53%) https://www.openstreetmap.org/#map=13/11.78133/13.09570
+2:08:53 INF [mbtiles] - features: [ 942M 33% 368k/s ] 199G tiles: [ 46M 4.1k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 8.5G/21G direct: 4M postGC: 5.5G
+ read(17%) -> (1k/1k) -> encode(92% 93% 92% 92% 91% 93% 91% 93% 90% 93% 90% 92% 92% 93% 92% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4401/3883 (z13 53%) https://www.openstreetmap.org/#map=13/9.31899/13.40332
+2:09:03 INF [mbtiles] - features: [ 946M 33% 401k/s ] 199G tiles: [ 46M 4.9k/s ] 26G
+ cpus: 15.7 gc: 6% heap: 7.8G/21G direct: 4M postGC: 5.9G
+ read(20%) -> (1k/1k) -> encode(93% 92% 93% 93% 91% 92% 91% 91% 93% 93% 93% 91% 93% 91% 89% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4410/6352 (z13 53%) https://www.openstreetmap.org/#map=13/-69.90012/13.79883
+2:09:13 INF [mbtiles] - features: [ 950M 33% 428k/s ] 199G tiles: [ 46M 6.4k/s ] 26G
+ cpus: 15.7 gc: 7% heap: 7.9G/21G direct: 4M postGC: 6.3G
+ read(20%) -> (1k/1k) -> encode(92% 89% 91% 92% 92% 93% 90% 91% 90% 93% 93% 91% 93% 91% 90% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4420/3076 (z13 53%) https://www.openstreetmap.org/#map=13/40.84706/14.23828
+2:09:23 INF [mbtiles] - features: [ 954M 33% 383k/s ] 199G tiles: [ 46M 4.7k/s ] 26G
+ cpus: 15.6 gc: 6% heap: 7.3G/21G direct: 4M postGC: 6.8G
+ read(19%) -> (1k/1k) -> encode(93% 92% 92% 89% 92% 91% 91% 91% 92% 91% 93% 89% 91% 90% 92% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4428/2720 (z13 54%) https://www.openstreetmap.org/#map=13/51.61802/14.58984
+2:09:33 INF [mbtiles] - features: [ 958M 33% 406k/s ] 199G tiles: [ 46M 6.3k/s ] 26G
+ cpus: 15.6 gc: 7% heap: 8.8G/21G direct: 4M postGC: 7.2G
+ read(17%) -> (1k/1k) -> encode(92% 91% 93% 90% 90% 90% 91% 90% 92% 91% 92% 92% 92% 91% 91% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4439/2628 (z13 54%) https://www.openstreetmap.org/#map=13/54.05939/15.07324
+2:09:43 INF [mbtiles] - features: [ 961M 33% 344k/s ] 199G tiles: [ 46M 2.2k/s ] 26G
+ cpus: 15.7 gc: 5% heap: 6.3G/21G direct: 4M postGC: 2.2G
+ read( 7%) -> (851/1k) -> encode(94% 92% 93% 92% 93% 92% 93% 93% 93% 93% 92% 94% 92% 89% 93% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4443/4193 (z13 54%) https://www.openstreetmap.org/#map=13/-4.25877/15.24902
+2:09:53 INF [mbtiles] - features: [ 965M 33% 367k/s ] 199G tiles: [ 46M 8.3k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 8.2G/21G direct: 4M postGC: 2.5G
+ read(24%) -> (1k/1k) -> encode(91% 94% 91% 92% 94% 95% 88% 94% 94% 93% 95% 89% 94% 94% 94% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4457/2830 (z13 54%) https://www.openstreetmap.org/#map=13/48.51660/15.86426
+2:10:03 INF [mbtiles] - features: [ 969M 34% 400k/s ] 199G tiles: [ 46M 5.7k/s ] 27G
+ cpus: 15.7 gc: 6% heap: 5G/21G direct: 4M postGC: 2.9G
+ read(16%) -> (1k/1k) -> encode(92% 93% 92% 94% 93% 90% 90% 93% 93% 91% 93% 93% 94% 89% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4467/2841 (z13 54%) https://www.openstreetmap.org/#map=13/48.19539/16.30371
+2:10:13 INF [mbtiles] - features: [ 973M 34% 356k/s ] 199G tiles: [ 46M 6.3k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 6.7G/21G direct: 4M postGC: 3.2G
+ read(17%) -> (1k/1k) -> encode(95% 94% 89% 90% 94% 95% 95% 94% 94% 95% 95% 95% 94% 93% 94% 95%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4478/3134 (z13 54%) https://www.openstreetmap.org/#map=13/38.89103/16.78711
+2:10:23 INF [mbtiles] - features: [ 976M 34% 340k/s ] 199G tiles: [ 47M 5.1k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 7.8G/21G direct: 4M postGC: 3.6G
+ read(14%) -> (1k/1k) -> encode(95% 94% 95% 95% 95% 94% 95% 91% 93% 92% 95% 93% 95% 94% 94% 95%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4487/2954 (z13 54%) https://www.openstreetmap.org/#map=13/44.77794/17.18262
+2:10:33 INF [mbtiles] - features: [ 980M 34% 371k/s ] 199G tiles: [ 47M 6.2k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 3.9G
+ read(16%) -> (1k/1k) -> encode(94% 95% 95% 95% 94% 94% 94% 95% 95% 95% 95% 95% 93% 94% 92% 90%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4498/4434 (z13 54%) https://www.openstreetmap.org/#map=13/-14.68988/17.66602
+2:10:43 INF [mbtiles] - features: [ 984M 34% 399k/s ] 199G tiles: [ 47M 6.3k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 9.9G/21G direct: 4M postGC: 4.3G
+ read(18%) -> (1k/1k) -> encode(90% 95% 94% 95% 94% 94% 95% 92% 94% 93% 91% 94% 94% 91% 94% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4509/2733 (z13 55%) https://www.openstreetmap.org/#map=13/51.26191/18.14941
+2:10:53 INF [mbtiles] - features: [ 988M 34% 390k/s ] 199G tiles: [ 47M 4.3k/s ] 27G
+ cpus: 15.8 gc: 6% heap: 6.8G/21G direct: 4M postGC: 4.8G
+ read(13%) -> (958/1k) -> encode(94% 90% 93% 92% 94% 94% 94% 93% 94% 93% 92% 94% 93% 94% 94% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4517/3997 (z13 55%) https://www.openstreetmap.org/#map=13/4.34641/18.50098
+2:11:03 INF [mbtiles] - features: [ 992M 34% 403k/s ] 199G tiles: [ 47M 6.8k/s ] 27G
+ cpus: 15.8 gc: 5% heap: 10G/21G direct: 4M postGC: 5.2G
+ read(21%) -> (1k/1k) -> encode(89% 93% 93% 93% 94% 94% 93% 93% 94% 92% 95% 91% 93% 92% 93% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4529/2769 (z13 55%) https://www.openstreetmap.org/#map=13/50.26125/19.02832
+2:11:13 INF [mbtiles] - features: [ 996M 34% 439k/s ] 199G tiles: [ 47M 7.9k/s ] 27G
+ cpus: 15.7 gc: 6% heap: 10G/21G direct: 4M postGC: 5.6G
+ read(20%) -> (1k/1k) -> encode(90% 88% 93% 91% 93% 92% 92% 93% 92% 92% 93% 93% 93% 93% 88% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4543/2837 (z13 55%) https://www.openstreetmap.org/#map=13/48.31243/19.64355
+2:11:23 INF [mbtiles] - features: [ 1B 35% 451k/s ] 199G tiles: [ 47M 9k/s ] 27G
+ cpus: 15.7 gc: 6% heap: 7.7G/21G direct: 4M postGC: 6.2G
+ read(20%) -> (1k/1k) -> encode(93% 88% 91% 88% 93% 91% 91% 91% 93% 93% 91% 93% 93% 92% 94% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4559/4318 (z13 55%) https://www.openstreetmap.org/#map=13/-9.70906/20.34668
+2:11:33 INF [mbtiles] - features: [ 1B 35% 473k/s ] 199G tiles: [ 47M 9.8k/s ] 27G
+ cpus: 15.7 gc: 6% heap: 9.6G/21G direct: 4M postGC: 6.6G
+ read(23%) -> (1k/1k) -> encode(91% 93% 91% 93% 90% 92% 93% 92% 91% 93% 93% 92% 90% 89% 91% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/4576/2745 (z13 55%) https://www.openstreetmap.org/#map=13/50.93074/21.09375
+2:11:43 INF [mbtiles] - features: [ 1B 35% 517k/s ] 199G tiles: [ 47M 10k/s ] 27G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 7.2G
+ read(23%) -> (1k/1k) -> encode(91% 92% 92% 90% 92% 92% 90% 92% 92% 93% 87% 93% 92% 91% 88% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/4594/3001 (z13 56%) https://www.openstreetmap.org/#map=13/43.29320/21.88477
+2:11:53 INF [mbtiles] - features: [ 1B 35% 540k/s ] 199G tiles: [ 47M 12k/s ] 27G
+ cpus: 15.7 gc: 7% heap: 9.1G/21G direct: 4M postGC: 7.8G
+ read(26%) -> (1k/1k) -> encode(93% 91% 92% 90% 89% 91% 88% 92% 93% 91% 92% 92% 91% 89% 88% 92%) -> (1k/1k) -> write( 5%)
+ last tile: 13/4615/4148 (z13 56%) https://www.openstreetmap.org/#map=13/-2.28455/22.80762
+2:12:03 INF [mbtiles] - features: [ 1B 35% 551k/s ] 199G tiles: [ 47M 11k/s ] 28G
+ cpus: 15.7 gc: 7% heap: 8.8G/21G direct: 4M postGC: 8.6G
+ read(23%) -> (1k/1k) -> encode(90% 91% 91% 93% 91% 92% 91% 91% 90% 92% 92% 90% 92% 88% 87% 91%) -> (1k/1k) -> write( 4%)
+ last tile: 13/4635/3162 (z13 56%) https://www.openstreetmap.org/#map=13/37.92687/23.68652
+2:12:13 INF [mbtiles] - features: [ 1B 36% 584k/s ] 199G tiles: [ 48M 16k/s ] 28G
+ cpus: 15.7 gc: 5% heap: 6.2G/21G direct: 4M postGC: 2.4G
+ read(28%) -> (1k/1k) -> encode(88% 90% 93% 93% 89% 89% 87% 93% 94% 88% 91% 90% 88% 93% 88% 92%) -> (1k/1k) -> write( 6%)
+ last tile: 13/4663/5239 (z13 56%) https://www.openstreetmap.org/#map=13/-44.80912/24.91699
+2:12:23 INF [mbtiles] - features: [ 1B 36% 535k/s ] 199G tiles: [ 48M 12k/s ] 28G
+ cpus: 15.7 gc: 7% heap: 6.3G/21G direct: 4M postGC: 3.1G
+ read(24%) -> (1k/1k) -> encode(89% 91% 92% 93% 91% 92% 90% 92% 88% 89% 93% 90% 93% 91% 91% 91%) -> (1k/1k) -> write( 5%)
+ last tile: 13/4684/4675 (z13 57%) https://www.openstreetmap.org/#map=13/-24.64702/25.83984
+2:12:33 INF [mbtiles] - features: [ 1B 36% 512k/s ] 199G tiles: [ 48M 14k/s ] 28G
+ cpus: 15.7 gc: 7% heap: 7.6G/21G direct: 4M postGC: 3.6G
+ read(24%) -> (1k/1k) -> encode(93% 92% 91% 91% 92% 88% 92% 92% 93% 92% 93% 90% 84% 93% 92% 91%) -> (1k/1k) -> write( 5%)
+ last tile: 13/4709/4485 (z13 57%) https://www.openstreetmap.org/#map=13/-16.84661/26.93848
+2:12:43 INF [mbtiles] - features: [ 1B 36% 390k/s ] 199G tiles: [ 48M 6.5k/s ] 28G
+ cpus: 15.7 gc: 7% heap: 4.3G/21G direct: 4M postGC: 4.1G
+ read(14%) -> (986/1k) -> encode(93% 93% 91% 92% 91% 93% 93% 92% 93% 93% 91% 93% 88% 91% 91% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4720/4365 (z13 57%) https://www.openstreetmap.org/#map=13/-11.73830/27.42188
+2:12:53 INF [mbtiles] - features: [ 1B 36% 445k/s ] 199G tiles: [ 48M 8.8k/s ] 28G
+ cpus: 15.7 gc: 6% heap: 5.9G/21G direct: 4M postGC: 4.4G
+ read(22%) -> (1k/1k) -> encode(94% 90% 91% 91% 92% 94% 90% 94% 94% 92% 93% 91% 92% 93% 94% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4735/4703 (z13 57%) https://www.openstreetmap.org/#map=13/-25.76032/28.08105
+2:13:03 INF [mbtiles] - features: [ 1B 36% 353k/s ] 199G tiles: [ 48M 5.8k/s ] 28G
+ cpus: 15.7 gc: 6% heap: 7.5G/21G direct: 4M postGC: 4.8G
+ read(15%) -> (1k/1k) -> encode(92% 93% 93% 93% 93% 86% 93% 93% 93% 92% 92% 92% 90% 93% 93% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4745/4566 (z13 57%) https://www.openstreetmap.org/#map=13/-20.22097/28.52051
+2:13:13 INF [mbtiles] - features: [ 1B 36% 357k/s ] 199G tiles: [ 48M 4.1k/s ] 28G
+ cpus: 15.7 gc: 7% heap: 7.4G/21G direct: 4M postGC: 5.1G
+ read(12%) -> (957/1k) -> encode(93% 93% 92% 92% 92% 93% 93% 93% 92% 93% 91% 93% 90% 90% 92% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4752/4154 (z13 58%) https://www.openstreetmap.org/#map=13/-2.54799/28.82813
+2:13:23 INF [mbtiles] - features: [ 1B 37% 325k/s ] 199G tiles: [ 48M 4.7k/s ] 28G
+ cpus: 15.7 gc: 5% heap: 8.2G/21G direct: 4M postGC: 5.7G
+ read(12%) -> (954/1k) -> encode(94% 94% 94% 90% 94% 94% 92% 91% 92% 94% 92% 94% 94% 94% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4760/4134 (z13 58%) https://www.openstreetmap.org/#map=13/-1.66969/29.17969
+2:13:33 INF [mbtiles] - features: [ 1B 37% 289k/s ] 199G tiles: [ 48M 6.4k/s ] 28G
+ cpus: 15.7 gc: 6% heap: 2.3G/21G direct: 4M postGC: 2.2G
+ read(16%) -> (1k/1k) -> encode(90% 92% 93% 87% 90% 92% 94% 87% 89% 93% 94% 93% 92% 93% 89% 89%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4771/4126 (z13 58%) https://www.openstreetmap.org/#map=13/-1.31824/29.66309
+2:13:43 INF [mbtiles] - features: [ 1B 37% 353k/s ] 199G tiles: [ 48M 4.7k/s ] 28G
+ cpus: 15.8 gc: 6% heap: 6.3G/21G direct: 4M postGC: 2.5G
+ read(14%) -> (1k/1k) -> encode(93% 93% 92% 92% 92% 93% 93% 91% 94% 93% 94% 91% 94% 94% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4779/4141 (z13 58%) https://www.openstreetmap.org/#map=13/-1.97715/30.01465
+2:13:53 INF [mbtiles] - features: [ 1B 37% 377k/s ] 199G tiles: [ 48M 2.9k/s ] 29G
+ cpus: 15.8 gc: 5% heap: 7.8G/21G direct: 4M postGC: 2.8G
+ read(11%) -> (874/1k) -> encode(94% 94% 94% 91% 93% 92% 94% 92% 94% 94% 94% 95% 93% 93% 93% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4784/4061 (z13 58%) https://www.openstreetmap.org/#map=13/1.53790/30.23438
+2:14:03 INF [mbtiles] - features: [ 1B 37% 379k/s ] 199G tiles: [ 48M 6k/s ] 29G
+ cpus: 15.8 gc: 5% heap: 3.3G/21G direct: 4M postGC: 3.3G
+ read(19%) -> (952/1k) -> encode(92% 95% 92% 93% 91% 93% 95% 92% 95% 94% 95% 93% 95% 95% 94% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4794/4025 (z13 58%) https://www.openstreetmap.org/#map=13/3.11858/30.67383
+2:14:13 INF [mbtiles] - features: [ 1B 37% 347k/s ] 199G tiles: [ 48M 4.7k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 8G/21G direct: 4M postGC: 3.6G
+ read(17%) -> (1k/1k) -> encode(93% 91% 90% 93% 93% 93% 91% 93% 92% 92% 93% 93% 90% 93% 94% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4802/4513 (z13 58%) https://www.openstreetmap.org/#map=13/-18.02053/31.02539
+2:14:23 INF [mbtiles] - features: [ 1B 37% 405k/s ] 199G tiles: [ 48M 6.5k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 7.8G/21G direct: 4M postGC: 4G
+ read(21%) -> (1k/1k) -> encode(93% 93% 92% 92% 93% 90% 93% 92% 92% 87% 93% 90% 93% 93% 92% 88%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4813/4737 (z13 58%) https://www.openstreetmap.org/#map=13/-27.09825/31.50879
+2:14:33 INF [mbtiles] - features: [ 1B 37% 328k/s ] 199G tiles: [ 48M 5.4k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 6.9G/21G direct: 4M postGC: 4.3G
+ read( 5%) -> (826/1k) -> encode(94% 94% 94% 94% 93% 94% 94% 93% 92% 93% 94% 94% 94% 94% 93% 94%) -> (901/1k) -> write( 2%)
+ last tile: 13/4822/4165 (z13 58%) https://www.openstreetmap.org/#map=13/-3.03081/31.90430
+2:14:43 INF [mbtiles] - features: [ 1B 38% 345k/s ] 199G tiles: [ 49M 7.6k/s ] 29G
+ cpus: 15.7 gc: 7% heap: 8.6G/21G direct: 4M postGC: 4.9G
+ read(21%) -> (1k/1k) -> encode(92% 91% 93% 92% 92% 91% 90% 92% 92% 90% 90% 90% 93% 93% 89% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4835/4094 (z13 59%) https://www.openstreetmap.org/#map=13/0.08789/32.47559
+2:14:53 INF [mbtiles] - features: [ 1B 38% 226k/s ] 199G tiles: [ 49M 1.1k/s ] 29G
+ cpus: 15.7 gc: 8% heap: 7.7G/21G direct: 4M postGC: 5.5G
+ read( 4%) -> (885/1k) -> encode(92% 92% 92% 92% 92% 92% 91% 92% 91% 91% 92% 92% 92% 91% 91% 92%) -> (1k/1k) -> write( 0%)
+ last tile: 13/4837/4090 (z13 59%) https://www.openstreetmap.org/#map=13/0.26367/32.56348
+2:15:03 INF [mbtiles] - features: [ 1B 38% 279k/s ] 199G tiles: [ 49M 7.7k/s ] 29G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 5.9G
+ read(17%) -> (1k/1k) -> encode(93% 92% 92% 91% 93% 90% 91% 91% 92% 93% 93% 92% 93% 87% 93% 89%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4850/4369 (z13 59%) https://www.openstreetmap.org/#map=13/-11.91035/33.13477
+2:15:13 INF [mbtiles] - features: [ 1B 38% 322k/s ] 199G tiles: [ 49M 4.1k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 7G/21G direct: 4M postGC: 6.3G
+ read(10%) -> (973/1k) -> encode(93% 93% 91% 93% 92% 90% 93% 93% 93% 92% 93% 92% 93% 93% 94% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4857/4540 (z13 59%) https://www.openstreetmap.org/#map=13/-19.14517/33.44238
+2:15:23 INF [mbtiles] - features: [ 1B 38% 272k/s ] 199G tiles: [ 49M 4.1k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 7.5G/21G direct: 4M postGC: 6.5G
+ read(11%) -> (956/1k) -> encode(93% 94% 93% 92% 92% 94% 94% 93% 94% 94% 92% 91% 91% 93% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4864/4416 (z13 59%) https://www.openstreetmap.org/#map=13/-13.92340/33.75000
+2:15:33 INF [mbtiles] - features: [ 1B 38% 333k/s ] 199G tiles: [ 49M 7.1k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 7.6G/21G direct: 4M postGC: 6.8G
+ read(17%) -> (1k/1k) -> encode(91% 92% 92% 94% 90% 94% 93% 94% 90% 94% 91% 93% 94% 93% 93% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4876/3907 (z13 59%) https://www.openstreetmap.org/#map=13/8.27673/34.27734
+2:15:43 INF [mbtiles] - features: [ 1.1B 38% 333k/s ] 199G tiles: [ 49M 6.6k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 7.4G/21G direct: 4M postGC: 7.2G
+ read(15%) -> (1k/1k) -> encode(90% 92% 91% 93% 92% 91% 93% 92% 93% 92% 89% 92% 91% 93% 93% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4887/3325 (z13 59%) https://www.openstreetmap.org/#map=13/32.06396/34.76074
+2:15:53 INF [mbtiles] - features: [ 1.1B 38% 325k/s ] 199G tiles: [ 49M 5.9k/s ] 29G
+ cpus: 15.7 gc: 6% heap: 9.3G/21G direct: 4M postGC: 7.5G
+ read(14%) -> (1k/1k) -> encode(92% 93% 93% 92% 93% 93% 89% 92% 93% 91% 93% 91% 91% 91% 93% 91%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4897/4475 (z13 59%) https://www.openstreetmap.org/#map=13/-16.42555/35.20020
+2:16:03 INF [mbtiles] - features: [ 1.1B 38% 378k/s ] 199G tiles: [ 49M 6.6k/s ] 29G
+ cpus: 15.7 gc: 7% heap: 9.3G/21G direct: 4M postGC: 7.9G
+ read(15%) -> (1k/1k) -> encode(91% 93% 92% 92% 90% 92% 93% 91% 92% 92% 92% 93% 92% 91% 92% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/4908/4273 (z13 59%) https://www.openstreetmap.org/#map=13/-7.75454/35.68359
+2:16:13 INF [mbtiles] - features: [ 1.1B 39% 402k/s ] 199G tiles: [ 49M 9.5k/s ] 29G
+ cpus: 15.6 gc: 7% heap: 8.4G/21G direct: 4M postGC: 8.3G
+ read(19%) -> (1k/1k) -> encode(91% 92% 87% 91% 92% 90% 92% 90% 90% 92% 92% 92% 90% 91% 92% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4924/4230 (z13 60%) https://www.openstreetmap.org/#map=13/-5.87833/36.38672
+2:16:23 INF [mbtiles] - features: [ 1.1B 39% 400k/s ] 199G tiles: [ 49M 11k/s ] 29G
+ cpus: 15.6 gc: 7% heap: 9.3G/21G direct: 4M postGC: 8.8G
+ read(17%) -> (1k/1k) -> encode(92% 90% 91% 92% 92% 88% 90% 91% 92% 90% 91% 89% 92% 91% 91% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/4944/4169 (z13 60%) https://www.openstreetmap.org/#map=13/-3.20633/37.26563
+2:16:33 INF [mbtiles] - features: [ 1.1B 39% 427k/s ] 199G tiles: [ 49M 9.7k/s ] 29G
+ cpus: 15.6 gc: 6% heap: 11G/21G direct: 4M postGC: 9.2G
+ read(22%) -> (1k/1k) -> encode(92% 91% 91% 91% 92% 91% 89% 91% 90% 91% 91% 90% 91% 91% 92% 90%) -> (1k/1k) -> write( 3%)
+ last tile: 13/4960/2509 (z13 60%) https://www.openstreetmap.org/#map=13/57.01681/37.96875
+2:16:43 INF [mbtiles] - features: [ 1.1B 39% 498k/s ] 199G tiles: [ 49M 14k/s ] 30G
+ cpus: 15.6 gc: 7% heap: 2.2G/21G direct: 4M postGC: 10G
+ read(20%) -> (1k/1k) -> encode(90% 92% 91% 88% 89% 91% 89% 92% 88% 91% 89% 87% 87% 91% 88% 90%) -> (1k/1k) -> write( 5%)
+ last tile: 13/4985/4256 (z13 60%) https://www.openstreetmap.org/#map=13/-7.01367/39.06738
+2:16:53 INF [mbtiles] - features: [ 1.1B 39% 217k/s ] 199G tiles: [ 49M 1.8k/s ] 30G
+ cpus: 15.6 gc: 8% heap: 7.4G/21G direct: 4M postGC: 2.8G
+ read( 3%) -> (987/1k) -> encode(90% 91% 91% 88% 91% 91% 92% 90% 90% 91% 92% 90% 91% 91% 90% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/4988/4253 (z13 60%) https://www.openstreetmap.org/#map=13/-6.88280/39.19922
+2:17:03 INF [mbtiles] - features: [ 1.1B 39% 377k/s ] 199G tiles: [ 50M 11k/s ] 30G
+ cpus: 15.8 gc: 6% heap: 5.2G/21G direct: 4M postGC: 3.1G
+ read(17%) -> (1k/1k) -> encode(94% 93% 92% 89% 93% 93% 93% 94% 93% 94% 93% 93% 92% 90% 93% 94%) -> (1k/1k) -> write( 4%)
+ last tile: 13/5007/4057 (z13 61%) https://www.openstreetmap.org/#map=13/1.71361/40.03418
+2:17:13 INF [mbtiles] - features: [ 1.1B 39% 564k/s ] 199G tiles: [ 50M 33k/s ] 30G
+ cpus: 15.8 gc: 6% heap: 8.8G/21G direct: 4M postGC: 3.7G
+ read(29%) -> (997/1k) -> encode(94% 89% 88% 92% 88% 93% 94% 91% 94% 93% 83% 90% 94% 94% 93% 94%) -> (1k/1k) -> write(10%)
+ last tile: 13/5063/4349 (z13 61%) https://www.openstreetmap.org/#map=13/-11.04904/42.49512
+2:17:23 INF [mbtiles] - features: [ 1.1B 40% 481k/s ] 199G tiles: [ 50M 21k/s ] 30G
+ cpus: 15.8 gc: 6% heap: 9.9G/21G direct: 4M postGC: 4.3G
+ read(19%) -> (926/1k) -> encode(94% 93% 93% 93% 89% 87% 94% 94% 93% 89% 93% 91% 90% 94% 93% 93%) -> (1k/1k) -> write( 7%)
+ last tile: 13/5100/2716 (z13 62%) https://www.openstreetmap.org/#map=13/51.72703/44.12109
+2:17:33 INF [mbtiles] - features: [ 1.1B 40% 434k/s ] 199G tiles: [ 50M 14k/s ] 30G
+ cpus: 15.7 gc: 7% heap: 5G/21G direct: 4M postGC: 5G
+ read(17%) -> (876/1k) -> encode(89% 92% 91% 91% 90% 92% 90% 92% 92% 90% 92% 92% 92% 92% 90% 86%) -> (1k/1k) -> write( 5%)
+ last tile: 13/5126/4050 (z13 62%) https://www.openstreetmap.org/#map=13/2.02107/45.26367
+2:17:43 INF [mbtiles] - features: [ 1.1B 40% 413k/s ] 199G tiles: [ 51M 28k/s ] 30G
+ cpus: 15.8 gc: 5% heap: 6.6G/21G direct: 4M postGC: 5.5G
+ read(22%) -> (1k/1k) -> encode(93% 91% 94% 91% 94% 95% 94% 93% 91% 94% 94% 94% 94% 91% 95% 92%) -> (1k/1k) -> write( 9%)
+ last tile: 13/5176/4535 (z13 63%) https://www.openstreetmap.org/#map=13/-18.93746/47.46094
+2:17:53 INF [mbtiles] - features: [ 1.1B 40% 364k/s ] 199G tiles: [ 51M 14k/s ] 30G
+ cpus: 15.8 gc: 5% heap: 8G/21G direct: 4M postGC: 5.8G
+ read(14%) -> (1k/1k) -> encode(92% 92% 94% 94% 93% 93% 94% 91% 93% 92% 93% 94% 94% 93% 94% 92%) -> (1k/1k) -> write( 5%)
+ last tile: 13/5201/4563 (z13 63%) https://www.openstreetmap.org/#map=13/-20.09721/48.55957
+2:18:03 INF [mbtiles] - features: [ 1.1B 40% 457k/s ] 199G tiles: [ 51M 25k/s ] 30G
+ cpus: 15.8 gc: 6% heap: 9.5G/21G direct: 4M postGC: 6.2G
+ read(14%) -> (911/1k) -> encode(94% 92% 92% 94% 93% 91% 93% 94% 93% 94% 94% 94% 90% 94% 93% 89%) -> (1k/1k) -> write( 7%)
+ last tile: 13/5245/3165 (z13 64%) https://www.openstreetmap.org/#map=13/37.82280/50.49316
+2:18:13 INF [mbtiles] - features: [ 1.1B 40% 713k/s ] 199G tiles: [ 52M 65k/s ] 31G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 7G
+ read(29%) -> (896/1k) -> encode(91% 91% 89% 89% 88% 89% 88% 90% 85% 90% 93% 93% 91% 91% 91% 87%) -> (1k/1k) -> write(18%)
+ last tile: 13/5362/4584 (z13 65%) https://www.openstreetmap.org/#map=13/-20.96144/55.63477
+2:18:24 INF [mbtiles] - features: [ 1.1B 41% 817k/s ] 199G tiles: [ 53M 101k/s ] 31G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 7.9G
+ read(29%) -> (474/1k) -> encode(87% 86% 91% 87% 85% 91% 90% 91% 87% 90% 91% 87% 91% 89% 91% 88%) -> (980/1k) -> write(27%)
+ last tile: 13/5544/254 (z13 67%) https://www.openstreetmap.org/#map=13/83.98847/63.63281
+2:18:34 INF [mbtiles] - features: [ 1.1B 41% 284k/s ] 199G tiles: [ 53M 69k/s ] 31G
+ cpus: 15.7 gc: 6% heap: 7G/21G direct: 4M postGC: 2.3G
+ read(25%) -> (980/1k) -> encode(87% 93% 91% 90% 91% 92% 92% 88% 89% 89% 89% 87% 86% 87% 91% 92%) -> (1k/1k) -> write(18%)
+ last tile: 13/5667/3259 (z13 69%) https://www.openstreetmap.org/#map=13/34.48845/69.03809
+2:18:44 INF [mbtiles] - features: [ 1.1B 41% 449k/s ] 199G tiles: [ 54M 50k/s ] 31G
+ cpus: 15.8 gc: 5% heap: 8.9G/21G direct: 4M postGC: 2.8G
+ read(27%) -> (989/1k) -> encode(92% 94% 90% 93% 93% 93% 93% 93% 91% 93% 87% 91% 91% 91% 93% 94%) -> (1k/1k) -> write(14%)
+ last tile: 13/5755/3719 (z13 70%) https://www.openstreetmap.org/#map=13/16.34123/72.90527
+2:18:54 INF [mbtiles] - features: [ 1.1B 41% 616k/s ] 199G tiles: [ 54M 38k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 8.4G/21G direct: 4M postGC: 3.8G
+ read(29%) -> (901/1k) -> encode(88% 93% 89% 93% 90% 93% 88% 84% 92% 88% 89% 92% 89% 93% 90% 92%) -> (1k/1k) -> write(11%)
+ last tile: 13/5821/3566 (z13 71%) https://www.openstreetmap.org/#map=13/22.67485/75.80566
+2:19:04 INF [mbtiles] - features: [ 1.1B 41% 437k/s ] 199G tiles: [ 54M 20k/s ] 32G
+ cpus: 15.8 gc: 6% heap: 8.1G/21G direct: 4M postGC: 4.2G
+ read(22%) -> (1k/1k) -> encode(88% 92% 92% 93% 89% 94% 89% 93% 93% 91% 94% 93% 94% 90% 94% 94%) -> (1k/1k) -> write( 6%)
+ last tile: 13/5857/3552 (z13 71%) https://www.openstreetmap.org/#map=13/23.24135/77.38770
+2:19:14 INF [mbtiles] - features: [ 1.1B 41% 324k/s ] 199G tiles: [ 55M 14k/s ] 32G
+ cpus: 15.7 gc: 6% heap: 9.7G/21G direct: 4M postGC: 4.6G
+ read(12%) -> (1k/1k) -> encode(93% 93% 91% 90% 93% 92% 90% 90% 93% 93% 93% 91% 93% 93% 93% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/5882/3696 (z13 71%) https://www.openstreetmap.org/#map=13/17.30869/78.48633
+2:19:24 INF [mbtiles] - features: [ 1.2B 42% 351k/s ] 199G tiles: [ 55M 17k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 12G/21G direct: 4M postGC: 4.8G
+ read(14%) -> (997/1k) -> encode(94% 94% 93% 93% 94% 94% 91% 93% 93% 92% 94% 93% 91% 91% 94% 94%) -> (1k/1k) -> write( 5%)
+ last tile: 13/5914/3938 (z13 72%) https://www.openstreetmap.org/#map=13/6.92643/79.89258
+2:19:34 INF [mbtiles] - features: [ 1.2B 42% 323k/s ] 199G tiles: [ 55M 8.5k/s ] 32G
+ cpus: 15.8 gc: 6% heap: 8G/21G direct: 4M postGC: 5G
+ read(13%) -> (1k/1k) -> encode(93% 93% 93% 93% 93% 94% 94% 92% 92% 91% 90% 93% 91% 94% 92% 93%) -> (1k/1k) -> write( 3%)
+ last tile: 13/5930/4849 (z13 72%) https://www.openstreetmap.org/#map=13/-31.39116/80.59570
+2:19:44 INF [mbtiles] - features: [ 1.2B 42% 314k/s ] 199G tiles: [ 55M 11k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 7.8G/21G direct: 4M postGC: 5.3G
+ read(12%) -> (1k/1k) -> encode(95% 94% 91% 92% 95% 95% 94% 94% 95% 93% 95% 94% 94% 93% 94% 95%) -> (1k/1k) -> write( 3%)
+ last tile: 13/5951/3916 (z13 72%) https://www.openstreetmap.org/#map=13/7.88515/81.51855
+2:19:54 INF [mbtiles] - features: [ 1.2B 42% 394k/s ] 199G tiles: [ 55M 22k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 6.6G/21G direct: 4M postGC: 5.7G
+ read(18%) -> (1k/1k) -> encode(91% 93% 94% 93% 93% 91% 93% 91% 95% 92% 94% 91% 94% 94% 94% 94%) -> (1k/1k) -> write( 6%)
+ last tile: 13/5993/3448 (z13 73%) https://www.openstreetmap.org/#map=13/27.37177/83.36426
+2:20:04 INF [mbtiles] - features: [ 1.2B 42% 343k/s ] 199G tiles: [ 55M 19k/s ] 32G
+ cpus: 15.8 gc: 6% heap: 11G/21G direct: 4M postGC: 6G
+ read(14%) -> (1k/1k) -> encode(94% 93% 90% 93% 92% 94% 91% 91% 94% 93% 94% 94% 94% 92% 92% 92%) -> (1k/1k) -> write( 5%)
+ last tile: 13/6030/3457 (z13 73%) https://www.openstreetmap.org/#map=13/27.01998/84.99023
+2:20:14 INF [mbtiles] - features: [ 1.2B 42% 270k/s ] 199G tiles: [ 55M 3.7k/s ] 32G
+ cpus: 15.8 gc: 6% heap: 11G/21G direct: 4M postGC: 6.3G
+ read( 4%) -> (803/1k) -> encode(93% 94% 94% 94% 92% 94% 94% 94% 94% 92% 94% 94% 94% 94% 92% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6037/3440 (z13 73%) https://www.openstreetmap.org/#map=13/27.68353/85.29785
+2:20:24 INF [mbtiles] - features: [ 1.2B 42% 344k/s ] 199G tiles: [ 56M 31k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 10G/21G direct: 4M postGC: 6.6G
+ read(22%) -> (1k/1k) -> encode(90% 94% 92% 93% 88% 92% 92% 94% 92% 93% 94% 93% 93% 94% 94% 91%) -> (1k/1k) -> write( 9%)
+ last tile: 13/6095/3460 (z13 74%) https://www.openstreetmap.org/#map=13/26.90248/87.84668
+2:20:34 INF [mbtiles] - features: [ 1.2B 42% 232k/s ] 199G tiles: [ 56M 8.4k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 7G
+ read(11%) -> (1k/1k) -> encode(93% 92% 89% 93% 93% 92% 93% 93% 91% 93% 90% 93% 93% 93% 93% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6111/3524 (z13 74%) https://www.openstreetmap.org/#map=13/24.36711/88.54980
+2:20:44 INF [mbtiles] - features: [ 1.2B 42% 228k/s ] 199G tiles: [ 56M 7.2k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 9.4G/21G direct: 4M postGC: 7.2G
+ read(11%) -> (1k/1k) -> encode(94% 94% 95% 94% 94% 93% 91% 91% 94% 94% 94% 94% 95% 94% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6125/3554 (z13 74%) https://www.openstreetmap.org/#map=13/23.16056/89.16504
+2:20:54 INF [mbtiles] - features: [ 1.2B 42% 239k/s ] 199G tiles: [ 56M 7.2k/s ] 32G
+ cpus: 15.8 gc: 5% heap: 12G/21G direct: 4M postGC: 7.3G
+ read( 8%) -> (1k/1k) -> encode(94% 93% 95% 93% 95% 94% 93% 93% 95% 94% 94% 93% 94% 95% 94% 95%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6139/3492 (z13 74%) https://www.openstreetmap.org/#map=13/25.64153/89.78027
+2:21:04 INF [mbtiles] - features: [ 1.2B 43% 219k/s ] 199G tiles: [ 56M 6.6k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 8.1G
+ read( 5%) -> (1k/1k) -> encode(93% 92% 91% 93% 92% 91% 91% 92% 93% 90% 93% 93% 93% 93% 92% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6152/3566 (z13 75%) https://www.openstreetmap.org/#map=13/22.67485/90.35156
+2:21:14 INF [mbtiles] - features: [ 1.2B 43% 165k/s ] 199G tiles: [ 56M 1.5k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 13G/21G direct: 4M postGC: 8.6G
+ read( 3%) -> (893/1k) -> encode(93% 92% 92% 92% 92% 92% 92% 92% 92% 92% 93% 93% 92% 91% 93% 93%) -> (1k/1k) -> write( 0%)
+ last tile: 13/6155/3543 (z13 75%) https://www.openstreetmap.org/#map=13/23.60426/90.48340
+2:21:24 INF [mbtiles] - features: [ 1.2B 43% 243k/s ] 199G tiles: [ 56M 15k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 9.1G
+ read(11%) -> (973/1k) -> encode(92% 91% 93% 92% 92% 92% 93% 90% 92% 93% 90% 88% 90% 92% 93% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/6185/3574 (z13 75%) https://www.openstreetmap.org/#map=13/22.35008/91.80176
+2:21:34 INF [mbtiles] - features: [ 1.2B 43% 330k/s ] 199G tiles: [ 57M 38k/s ] 32G
+ cpus: 15.7 gc: 7% heap: 9.6G/21G direct: 4M postGC: 9.6G
+ read(21%) -> (1k/1k) -> encode(90% 91% 90% 93% 88% 93% 93% 92% 93% 92% 92% 92% 89% 88% 93% 89%) -> (1k/1k) -> write(10%)
+ last tile: 13/6264/3970 (z13 76%) https://www.openstreetmap.org/#map=13/5.52851/95.27344
+2:21:44 INF [mbtiles] - features: [ 1.2B 43% 303k/s ] 199G tiles: [ 57M 26k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 10G
+ read(17%) -> (996/1k) -> encode(92% 90% 92% 89% 93% 91% 93% 92% 92% 88% 90% 93% 92% 93% 91% 90%) -> (1k/1k) -> write( 7%)
+ last tile: 13/6320/3560 (z13 77%) https://www.openstreetmap.org/#map=13/22.91792/97.73438
+2:21:54 INF [mbtiles] - features: [ 1.2B 43% 220k/s ] 199G tiles: [ 57M 10k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 9.5G/21G direct: 4M postGC: 2.7G
+ read( 7%) -> (972/1k) -> encode(90% 90% 90% 91% 87% 90% 89% 91% 90% 87% 92% 90% 89% 92% 90% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/6341/4015 (z13 77%) https://www.openstreetmap.org/#map=13/3.55728/98.65723
+2:22:04 INF [mbtiles] - features: [ 1.2B 43% 692k/s ] 199G tiles: [ 57M 33k/s ] 33G
+ cpus: 15.8 gc: 5% heap: 10G/21G direct: 4M postGC: 3.5G
+ read(29%) -> (842/1k) -> encode(94% 92% 91% 93% 95% 94% 91% 94% 92% 95% 88% 90% 94% 94% 88% 94%) -> (1k/1k) -> write(10%)
+ last tile: 13/6410/3469 (z13 78%) https://www.openstreetmap.org/#map=13/26.54922/101.68945
+2:22:14 INF [mbtiles] - features: [ 1.2B 43% 497k/s ] 199G tiles: [ 58M 32k/s ] 33G
+ cpus: 15.7 gc: 6% heap: 10G/21G direct: 4M postGC: 4.2G
+ read(35%) -> (923/1k) -> encode(89% 93% 90% 91% 92% 91% 90% 92% 92% 88% 89% 92% 89% 90% 90% 91%) -> (955/1k) -> write(10%)
+ last tile: 13/6478/4164 (z13 79%) https://www.openstreetmap.org/#map=13/-2.98693/104.67773
+2:22:24 INF [mbtiles] - features: [ 1.2B 44% 399k/s ] 199G tiles: [ 58M 13k/s ] 33G
+ cpus: 15.8 gc: 7% heap: 11G/21G direct: 4M postGC: 4.8G
+ read(29%) -> (1k/1k) -> encode(91% 89% 91% 92% 93% 92% 89% 88% 88% 92% 92% 93% 91% 92% 93% 91%) -> (1k/1k) -> write( 4%)
+ last tile: 13/6507/4242 (z13 79%) https://www.openstreetmap.org/#map=13/-6.40265/105.95215
+2:22:34 INF [mbtiles] - features: [ 1.2B 44% 369k/s ] 199G tiles: [ 58M 7.8k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 13G/21G direct: 4M postGC: 5.3G
+ read(10%) -> (959/1k) -> encode(92% 92% 90% 93% 93% 92% 93% 93% 91% 93% 93% 93% 93% 89% 92% 92%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6523/3583 (z13 79%) https://www.openstreetmap.org/#map=13/21.98380/106.65527
+2:22:44 INF [mbtiles] - features: [ 1.2B 44% 213k/s ] 199G tiles: [ 58M 1.4k/s ] 33G
+ cpus: 15.7 gc: 8% heap: 11G/21G direct: 4M postGC: 6.1G
+ read( 5%) -> (1k/1k) -> encode(91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 90% 90% 91% 91% 91%) -> (1k/1k) -> write( 0%)
+ last tile: 13/6526/4243 (z13 79%) https://www.openstreetmap.org/#map=13/-6.44632/106.78711
+2:22:54 INF [mbtiles] - features: [ 1.2B 44% 148k/s ] 199G tiles: [ 58M 488/s ] 33G
+ cpus: 15.7 gc: 8% heap: 11G/21G direct: 4M postGC: 6.9G
+ read( 1%) -> (985/1k) -> encode(91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1k/1k) -> write( 0%)
+ last tile: 13/6527/4240 (z13 79%) https://www.openstreetmap.org/#map=13/-6.31530/106.83105
+2:23:04 INF [mbtiles] - features: [ 1.2B 44% 174k/s ] 199G tiles: [ 58M 2.4k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 7G
+ read( 5%) -> (967/1k) -> encode(93% 93% 93% 92% 92% 93% 93% 93% 92% 91% 93% 93% 93% 93% 91% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6532/4239 (z13 79%) https://www.openstreetmap.org/#map=13/-6.27162/107.05078
+2:23:14 INF [mbtiles] - features: [ 1.2B 44% 228k/s ] 199G tiles: [ 58M 5.4k/s ] 33G
+ cpus: 15.8 gc: 6% heap: 14G/21G direct: 4M postGC: 7.5G
+ read( 8%) -> (1k/1k) -> encode(93% 94% 91% 93% 92% 93% 93% 93% 93% 94% 93% 93% 94% 92% 93% 93%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6543/4256 (z13 79%) https://www.openstreetmap.org/#map=13/-7.01367/107.53418
+2:23:24 INF [mbtiles] - features: [ 1.2B 44% 164k/s ] 199G tiles: [ 58M 3.9k/s ] 33G
+ cpus: 15.8 gc: 5% heap: 13G/21G direct: 4M postGC: 7.2G
+ read( 5%) -> (1k/1k) -> encode(95% 93% 94% 95% 94% 95% 94% 94% 94% 95% 95% 94% 94% 92% 95% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6551/4253 (z13 79%) https://www.openstreetmap.org/#map=13/-6.88280/107.88574
+2:23:34 INF [mbtiles] - features: [ 1.2B 44% 228k/s ] 199G tiles: [ 58M 5k/s ] 33G
+ cpus: 15.8 gc: 4% heap: 8.7G/21G direct: 4M postGC: 7.5G
+ read(12%) -> (1k/1k) -> encode(92% 95% 93% 94% 95% 94% 95% 94% 95% 95% 95% 95% 95% 94% 95% 95%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6561/619 (z13 80%) https://www.openstreetmap.org/#map=13/82.05182/108.32520
+2:23:44 INF [mbtiles] - features: [ 1.2B 44% 233k/s ] 199G tiles: [ 58M 7.2k/s ] 33G
+ cpus: 15.8 gc: 5% heap: 15G/21G direct: 4M postGC: 7.7G
+ read(12%) -> (1k/1k) -> encode(95% 95% 93% 95% 94% 94% 94% 93% 94% 92% 91% 94% 94% 94% 94% 95%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6576/4273 (z13 80%) https://www.openstreetmap.org/#map=13/-7.75454/108.98438
+2:23:54 INF [mbtiles] - features: [ 1.2B 44% 224k/s ] 199G tiles: [ 58M 3.4k/s ] 33G
+ cpus: 15.8 gc: 6% heap: 8.1G/21G direct: 4M postGC: 8G
+ read( 7%) -> (1k/1k) -> encode(94% 94% 94% 93% 94% 94% 94% 92% 93% 94% 91% 94% 93% 94% 92% 93%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6583/4098 (z13 80%) https://www.openstreetmap.org/#map=13/-0.08789/109.29199
+2:24:04 INF [mbtiles] - features: [ 1.2B 44% 240k/s ] 199G tiles: [ 58M 7.4k/s ] 33G
+ cpus: 15.8 gc: 4% heap: 12G/21G direct: 4M postGC: 8.2G
+ read(13%) -> (1k/1k) -> encode(95% 95% 94% 95% 94% 95% 91% 93% 95% 95% 94% 95% 93% 95% 94% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6598/4138 (z13 80%) https://www.openstreetmap.org/#map=13/-1.84538/109.95117
+2:24:14 INF [mbtiles] - features: [ 1.2B 44% 248k/s ] 199G tiles: [ 58M 4.4k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 13G/21G direct: 4M postGC: 8.9G
+ read(11%) -> (1k/1k) -> encode(92% 93% 92% 90% 92% 92% 92% 92% 92% 91% 92% 92% 88% 91% 93% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6607/4275 (z13 80%) https://www.openstreetmap.org/#map=13/-7.84162/110.34668
+2:24:24 INF [mbtiles] - features: [ 1.2B 44% 205k/s ] 199G tiles: [ 58M 996/s ] 33G
+ cpus: 15.8 gc: 6% heap: 14G/21G direct: 4M postGC: 8.8G
+ read( 2%) -> (893/1k) -> encode(93% 94% 94% 94% 93% 94% 93% 94% 94% 94% 94% 93% 94% 92% 94% 94%) -> (1k/1k) -> write( 0%)
+ last tile: 13/6609/4256 (z13 80%) https://www.openstreetmap.org/#map=13/-7.01367/110.43457
+2:24:34 INF [mbtiles] - features: [ 1.2B 45% 277k/s ] 199G tiles: [ 58M 18k/s ] 33G
+ cpus: 15.8 gc: 6% heap: 12G/21G direct: 4M postGC: 9.2G
+ read(18%) -> (1k/1k) -> encode(93% 87% 93% 92% 93% 88% 94% 94% 91% 94% 93% 94% 94% 93% 94% 91%) -> (1k/1k) -> write( 5%)
+ last tile: 13/6647/4280 (z13 81%) https://www.openstreetmap.org/#map=13/-8.05923/112.10449
+2:24:44 INF [mbtiles] - features: [ 1.2B 45% 199k/s ] 199G tiles: [ 58M 3.5k/s ] 33G
+ cpus: 15.8 gc: 6% heap: 14G/21G direct: 4M postGC: 9.4G
+ read( 7%) -> (990/1k) -> encode(94% 94% 93% 89% 93% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6654/4267 (z13 81%) https://www.openstreetmap.org/#map=13/-7.49320/112.41211
+2:24:54 INF [mbtiles] - features: [ 1.2B 45% 214k/s ] 199G tiles: [ 59M 3k/s ] 33G
+ cpus: 15.7 gc: 8% heap: 14G/21G direct: 4M postGC: 10G
+ read( 6%) -> (1k/1k) -> encode(92% 91% 92% 92% 91% 88% 92% 91% 89% 91% 91% 92% 92% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6660/4267 (z13 81%) https://www.openstreetmap.org/#map=13/-7.49320/112.67578
+2:25:04 INF [mbtiles] - features: [ 1.2B 45% 259k/s ] 199G tiles: [ 59M 5.7k/s ] 33G
+ cpus: 15.7 gc: 7% heap: 11G/21G direct: 4M postGC: 10G
+ read( 2%) -> (762/1k) -> encode(93% 92% 92% 93% 93% 93% 93% 93% 91% 93% 93% 93% 93% 93% 93% 93%) -> (956/1k) -> write( 2%)
+ last tile: 13/6671/3101 (z13 81%) https://www.openstreetmap.org/#map=13/40.01079/113.15918
+2:25:14 INF [mbtiles] - features: [ 1.2B 45% 343k/s ] 199G tiles: [ 59M 13k/s ] 34G
+ cpus: 15.7 gc: 6% heap: 15G/21G direct: 4M postGC: 11G
+ read(22%) -> (906/1k) -> encode(92% 93% 90% 92% 93% 89% 93% 93% 90% 90% 93% 89% 92% 93% 93% 92%) -> (1k/1k) -> write( 4%)
+ last tile: 13/6698/4284 (z13 81%) https://www.openstreetmap.org/#map=13/-8.23324/114.34570
+2:25:24 INF [mbtiles] - features: [ 1.3B 45% 234k/s ] 199G tiles: [ 59M 9.7k/s ] 34G
+ cpus: 15.7 gc: 7% heap: 12G/21G direct: 4M postGC: 12G
+ read(10%) -> (998/1k) -> encode(91% 92% 92% 91% 91% 93% 90% 91% 92% 92% 90% 91% 93% 92% 93% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/6717/4295 (z13 82%) https://www.openstreetmap.org/#map=13/-8.71136/115.18066
+2:25:34 INF [mbtiles] - features: [ 1.3B 45% 310k/s ] 199G tiles: [ 59M 10k/s ] 34G
+ cpus: 15.7 gc: 6% heap: 16G/21G direct: 4M postGC: 12G
+ read(12%) -> (953/1k) -> encode(90% 93% 94% 93% 94% 94% 94% 91% 92% 92% 93% 94% 94% 93% 93% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/6737/2772 (z13 82%) https://www.openstreetmap.org/#map=13/50.17690/116.05957
+2:25:44 INF [mbtiles] - features: [ 1.3B 45% 351k/s ] 199G tiles: [ 59M 8.5k/s ] 34G
+ cpus: 15.7 gc: 7% heap: 13G/21G direct: 4M postGC: 13G
+ read(10%) -> (824/1k) -> encode(92% 92% 91% 90% 91% 92% 91% 91% 92% 92% 93% 92% 93% 92% 90% 92%) -> (1k/1k) -> write( 3%)
+ last tile: 13/6754/4125 (z13 82%) https://www.openstreetmap.org/#map=13/-1.27431/116.80664
+2:25:54 INF [mbtiles] - features: [ 1.3B 45% 376k/s ] 199G tiles: [ 59M 30k/s ] 34G
+ cpus: 15.7 gc: 6% heap: 7.6G/21G direct: 4M postGC: 2.1G
+ read(27%) -> (976/1k) -> encode(87% 88% 87% 90% 86% 87% 88% 92% 90% 90% 90% 87% 91% 91% 88% 91%) -> (1k/1k) -> write( 9%)
+ last tile: 13/6813/4214 (z13 83%) https://www.openstreetmap.org/#map=13/-5.17848/119.39941
+2:26:04 INF [mbtiles] - features: [ 1.3B 45% 320k/s ] 199G tiles: [ 59M 10k/s ] 34G
+ cpus: 15.8 gc: 4% heap: 8.6G/21G direct: 4M postGC: 2.5G
+ read(19%) -> (1k/1k) -> encode(95% 94% 92% 95% 95% 95% 94% 94% 95% 92% 94% 91% 94% 95% 91% 91%) -> (1k/1k) -> write( 3%)
+ last tile: 13/6833/3755 (z13 83%) https://www.openstreetmap.org/#map=13/14.81737/120.27832
+2:26:14 INF [mbtiles] - features: [ 1.3B 46% 243k/s ] 199G tiles: [ 59M 3k/s ] 34G
+ cpus: 15.8 gc: 6% heap: 9.6G/21G direct: 4M postGC: 2.9G
+ read( 7%) -> (990/1k) -> encode(93% 92% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 92% 93% 91% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6839/3748 (z13 83%) https://www.openstreetmap.org/#map=13/15.11455/120.54199
+2:26:24 INF [mbtiles] - features: [ 1.3B 46% 243k/s ] 199G tiles: [ 59M 3.6k/s ] 34G
+ cpus: 15.8 gc: 5% heap: 6.8G/21G direct: 4M postGC: 3.1G
+ read(10%) -> (1k/1k) -> encode(95% 95% 95% 95% 94% 95% 94% 95% 95% 90% 94% 95% 94% 95% 95% 95%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6846/3766 (z13 83%) https://www.openstreetmap.org/#map=13/14.34955/120.84961
+2:26:34 INF [mbtiles] - features: [ 1.3B 46% 206k/s ] 199G tiles: [ 59M 1.5k/s ] 34G
+ cpus: 15.7 gc: 8% heap: 8.5G/21G direct: 4M postGC: 3.7G
+ read( 3%) -> (1k/1k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 91% 92% 92%) -> (1k/1k) -> write( 1%)
+ last tile: 13/6849/3760 (z13 83%) https://www.openstreetmap.org/#map=13/14.60485/120.98145
+2:26:44 INF [mbtiles] - features: [ 1.3B 46% 175k/s ] 199G tiles: [ 60M 1k/s ] 34G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 4.2G
+ read( 2%) -> (936/1k) -> encode(93% 92% 92% 93% 92% 92% 93% 92% 91% 92% 93% 92% 92% 92% 93% 93%) -> (1k/1k) -> write( 0%)
+ last tile: 13/6851/3759 (z13 83%) https://www.openstreetmap.org/#map=13/14.64737/121.06934
+2:26:54 INF [mbtiles] - features: [ 1.3B 46% 347k/s ] 199G tiles: [ 60M 18k/s ] 34G
+ cpus: 15.8 gc: 5% heap: 11G/21G direct: 4M postGC: 4.4G
+ read(17%) -> (985/1k) -> encode(93% 94% 95% 94% 94% 90% 90% 94% 92% 95% 93% 95% 94% 93% 94% 95%) -> (1k/1k) -> write( 5%)
+ last tile: 13/6887/2321 (z13 84%) https://www.openstreetmap.org/#map=13/61.24910/122.65137
+2:27:04 INF [mbtiles] - features: [ 1.3B 46% 292k/s ] 199G tiles: [ 60M 20k/s ] 34G
+ cpus: 15.8 gc: 6% heap: 6.8G/21G direct: 4M postGC: 4.8G
+ read(15%) -> (1k/1k) -> encode(89% 94% 92% 93% 93% 94% 93% 94% 91% 91% 94% 93% 94% 93% 94% 91%) -> (1k/1k) -> write( 5%)
+ last tile: 13/6927/3900 (z13 84%) https://www.openstreetmap.org/#map=13/8.58102/124.40918
+2:27:14 INF [mbtiles] - features: [ 1.3B 46% 263k/s ] 199G tiles: [ 60M 8.1k/s ] 34G
+ cpus: 15.8 gc: 5% heap: 9.4G/21G direct: 4M postGC: 5.1G
+ read( 8%) -> (1k/1k) -> encode(94% 94% 94% 94% 92% 95% 94% 93% 95% 95% 93% 94% 94% 95% 93% 94%) -> (1k/1k) -> write( 2%)
+ last tile: 13/6943/4064 (z13 84%) https://www.openstreetmap.org/#map=13/1.40611/125.11230
+2:27:24 INF [mbtiles] - features: [ 1.3B 46% 435k/s ] 199G tiles: [ 60M 26k/s ] 34G
+ cpus: 15.8 gc: 5% heap: 8.9G/21G direct: 4M postGC: 5.5G
+ read(17%) -> (982/1k) -> encode(92% 95% 93% 94% 93% 95% 93% 95% 93% 90% 92% 95% 95% 95% 91% 92%) -> (1k/1k) -> write( 7%)
+ last tile: 13/6994/4079 (z13 85%) https://www.openstreetmap.org/#map=13/0.74705/127.35352
+2:27:34 INF [mbtiles] - features: [ 1.3B 46% 402k/s ] 199G tiles: [ 61M 40k/s ] 34G
+ cpus: 15.7 gc: 7% heap: 8.2G/21G direct: 4M postGC: 6G
+ read(20%) -> (1k/1k) -> encode(91% 90% 92% 89% 90% 89% 93% 91% 93% 92% 90% 90% 90% 92% 92% 91%) -> (1k/1k) -> write(11%)
+ last tile: 13/7069/3289 (z13 86%) https://www.openstreetmap.org/#map=13/33.39476/130.64941
+2:27:44 INF [mbtiles] - features: [ 1.3B 46% 405k/s ] 199G tiles: [ 61M 27k/s ] 35G
+ cpus: 15.7 gc: 6% heap: 10G/21G direct: 4M postGC: 6.5G
+ read(23%) -> (949/1k) -> encode(91% 90% 92% 90% 93% 93% 91% 91% 93% 92% 92% 90% 91% 89% 92% 93%) -> (1k/1k) -> write( 7%)
+ last tile: 13/7122/3271 (z13 86%) https://www.openstreetmap.org/#map=13/34.05266/132.97852
+2:27:54 INF [mbtiles] - features: [ 1.3B 47% 342k/s ] 199G tiles: [ 61M 27k/s ] 35G
+ cpus: 15.7 gc: 7% heap: 9.7G/21G direct: 4M postGC: 7.1G
+ read(17%) -> (1k/1k) -> encode(86% 92% 89% 92% 91% 92% 92% 91% 92% 92% 92% 90% 90% 92% 90% 92%) -> (1k/1k) -> write( 7%)
+ last tile: 13/7175/3252 (z13 87%) https://www.openstreetmap.org/#map=13/34.74161/135.30762
+2:28:04 INF [mbtiles] - features: [ 1.3B 47% 205k/s ] 199G tiles: [ 61M 4.6k/s ] 35G
+ cpus: 15.7 gc: 8% heap: 12G/21G direct: 4M postGC: 7.6G
+ read( 6%) -> (984/1k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 91% 91% 92% 92% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/7184/3246 (z13 87%) https://www.openstreetmap.org/#map=13/34.95800/135.70313
+2:28:14 INF [mbtiles] - features: [ 1.3B 47% 307k/s ] 199G tiles: [ 61M 14k/s ] 35G
+ cpus: 15.7 gc: 8% heap: 11G/21G direct: 4M postGC: 8.4G
+ read(17%) -> (906/1k) -> encode(92% 92% 90% 92% 91% 92% 91% 92% 87% 92% 92% 92% 89% 90% 88% 89%) -> (1k/1k) -> write( 4%)
+ last tile: 13/7211/1093 (z13 88%) https://www.openstreetmap.org/#map=13/78.58661/136.88965
+2:28:24 INF [mbtiles] - features: [ 1.3B 47% 300k/s ] 199G tiles: [ 62M 18k/s ] 35G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 8.9G
+ read(16%) -> (982/1k) -> encode(92% 90% 90% 93% 92% 93% 93% 90% 93% 93% 90% 93% 91% 91% 91% 92%) -> (1k/1k) -> write( 5%)
+ last tile: 13/7245/3246 (z13 88%) https://www.openstreetmap.org/#map=13/34.95800/138.38379
+2:28:34 INF [mbtiles] - features: [ 1.3B 47% 307k/s ] 199G tiles: [ 62M 13k/s ] 35G
+ cpus: 15.7 gc: 7% heap: 10G/21G direct: 4M postGC: 9.2G
+ read(14%) -> (1k/1k) -> encode(93% 93% 90% 92% 92% 93% 93% 92% 90% 93% 92% 90% 93% 93% 90% 90%) -> (1k/1k) -> write( 4%)
+ last tile: 13/7269/3232 (z13 88%) https://www.openstreetmap.org/#map=13/35.46067/139.43848
+2:28:44 INF [mbtiles] - features: [ 1.3B 47% 228k/s ] 199G tiles: [ 62M 2.1k/s ] 35G
+ cpus: 15.6 gc: 8% heap: 12G/21G direct: 4M postGC: 10G
+ read( 3%) -> (1k/1k) -> encode(91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91%) -> (1k/1k) -> write( 1%)
+ last tile: 13/7273/3226 (z13 88%) https://www.openstreetmap.org/#map=13/35.67515/139.61426
+2:28:54 INF [mbtiles] - features: [ 1.3B 47% 197k/s ] 199G tiles: [ 62M 3.8k/s ] 35G
+ cpus: 15.7 gc: 8% heap: 11G/21G direct: 4M postGC: 11G
+ read( 6%) -> (1k/1k) -> encode(90% 92% 91% 92% 92% 91% 92% 91% 92% 91% 91% 92% 92% 91% 91% 90%) -> (1k/1k) -> write( 1%)
+ last tile: 13/7280/3175 (z13 88%) https://www.openstreetmap.org/#map=13/37.47486/139.92188
+2:29:04 INF [mbtiles] - features: [ 1.3B 47% 325k/s ] 199G tiles: [ 62M 10k/s ] 35G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 11G
+ read(11%) -> (1k/1k) -> encode(93% 93% 93% 92% 93% 93% 93% 93% 91% 93% 91% 91% 93% 93% 91% 94%) -> (1k/1k) -> write( 3%)
+ last tile: 13/7299/3048 (z13 89%) https://www.openstreetmap.org/#map=13/41.77131/140.75684
+2:29:14 INF [mbtiles] - features: [ 1.3B 47% 279k/s ] 199G tiles: [ 62M 14k/s ] 35G
+ cpus: 15.7 gc: 6% heap: 13G/21G direct: 4M postGC: 11G
+ read( 8%) -> (1k/1k) -> encode(92% 94% 92% 94% 93% 93% 93% 92% 92% 93% 92% 93% 92% 92% 92% 94%) -> (1k/1k) -> write( 4%)
+ last tile: 13/7325/2993 (z13 89%) https://www.openstreetmap.org/#map=13/43.54855/141.89941
+2:29:24 INF [mbtiles] - features: [ 1.3B 47% 432k/s ] 199G tiles: [ 62M 48k/s ] 35G
+ cpus: 15.7 gc: 6% heap: 11G/21G direct: 4M postGC: 11G
+ read(14%) -> (1k/1k) -> encode(92% 91% 93% 91% 92% 92% 91% 92% 91% 92% 91% 90% 93% 93% 92% 90%) -> (1k/1k) -> write(13%)
+ last tile: 13/7412/4489 (z13 90%) https://www.openstreetmap.org/#map=13/-17.01477/145.72266
+2:29:34 INF [mbtiles] - features: [ 1.3B 48% 760k/s ] 199G tiles: [ 64M 194k/s ] 35G
+ cpus: 13.2 gc: 6% heap: 13G/21G direct: 4M postGC: 12G
+ read(18%) -> (0/1k) -> encode(77% 75% 74% 74% 76% 76% 75% 75% 71% 73% 72% 73% 77% 72% 73% 73%) -> (1k/1k) -> write(48%)
+ last tile: 13/7738/5143 (z13 94%) https://www.openstreetmap.org/#map=13/-41.73853/160.04883
+2:29:44 INF [mbtiles] - features: [ 1.3B 48% 492k/s ] 199G tiles: [ 67M 256k/s ] 36G
+ cpus: 14.8 gc: 6% heap: 4G/21G direct: 4M postGC: 1.9G
+ read(30%) -> (842/1k) -> encode(77% 82% 85% 82% 87% 76% 78% 79% 86% 80% 83% 78% 79% 83% 83% 79%) -> (1k/1k) -> write(60%)
+ last tile: 13/8092/1821 (z13 98%) https://www.openstreetmap.org/#map=13/70.18510/175.60547
+2:29:47 INF [mbtiles:write] - Finished z13 in 43m4s cpu:11h10m48s gc:2m37s avg:15.6, now starting z14
+2:29:54 INF [mbtiles] - features: [ 1.3B 48% 579k/s ] 199G tiles: [ 71M 408k/s ] 36G
+ cpus: 3.8 gc: 1% heap: 3.8G/21G direct: 4M postGC: 1.9G
+ read(22%) -> (0/1k) -> encode(20% 15% 15% 15% 17% 16% 16% 15% 15% 11% 16% 15% 15% 15% 16% 16%) -> (1k/1k) -> write(91%)
+ last tile: 14/209/9850 (z14 1%) https://www.openstreetmap.org/#map=14/-34.19817/-175.40771
+2:30:04 INF [mbtiles] - features: [ 1.3B 48% 488k/s ] 199G tiles: [ 76M 446k/s ] 37G
+ cpus: 1.6 gc: 0% heap: 6.9G/21G direct: 4M postGC: 1.9G
+ read(24%) -> (0/1k) -> encode( 3% 2% 2% 2% 2% 4% 2% 3% 2% 3% 2% 4% 3% 2% 3% 3%) -> (1k/1k) -> write(100%)
+ last tile: 14/488/12332 (z14 2%) https://www.openstreetmap.org/#map=14/-66.89560/-169.27734
+2:30:14 INF [mbtiles] - features: [ 1.4B 48% 522k/s ] 199G tiles: [ 80M 443k/s ] 38G
+ cpus: 2 gc: 0% heap: 5.1G/21G direct: 4M postGC: 1.9G
+ read(25%) -> (0/1k) -> encode( 5% 5% 6% 5% 5% 3% 4% 5% 5% 4% 5% 4% 5% 4% 4% 4%) -> (1k/1k) -> write(100%)
+ last tile: 14/769/11204 (z14 4%) https://www.openstreetmap.org/#map=14/-55.02802/-163.10303
+2:30:24 INF [mbtiles] - features: [ 1.4B 49% 534k/s ] 199G tiles: [ 84M 435k/s ] 38G
+ cpus: 2.3 gc: 0% heap: 4.6G/21G direct: 4M postGC: 1.9G
+ read(26%) -> (0/1k) -> encode( 5% 6% 7% 6% 8% 5% 5% 6% 5% 6% 7% 5% 7% 6% 6% 7%) -> (1k/1k) -> write(100%)
+ last tile: 14/1059/6900 (z14 6%) https://www.openstreetmap.org/#map=14/27.29369/-156.73096
+2:30:34 INF [mbtiles] - features: [ 1.4B 49% 523k/s ] 199G tiles: [ 89M 442k/s ] 39G
+ cpus: 2.3 gc: 0% heap: 4.4G/21G direct: 4M postGC: 1.9G
+ read(25%) -> (0/1k) -> encode( 5% 7% 6% 6% 7% 7% 7% 7% 6% 7% 7% 6% 6% 6% 7% 7%) -> (1k/1k) -> write(100%)
+ last tile: 14/1374/988 (z14 8%) https://www.openstreetmap.org/#map=14/82.77643/-149.80957
+2:30:44 INF [mbtiles] - features: [ 1.4B 49% 472k/s ] 199G tiles: [ 93M 439k/s ] 39G
+ cpus: 2 gc: 0% heap: 2.6G/21G direct: 4M postGC: 1.9G
+ read(23%) -> (0/1k) -> encode( 5% 5% 5% 5% 5% 5% 5% 4% 4% 6% 5% 5% 5% 4% 4% 4%) -> (1k/1k) -> write(100%)
+ last tile: 14/1702/4349 (z14 10%) https://www.openstreetmap.org/#map=14/64.19681/-142.60254
+2:30:54 INF [mbtiles] - features: [ 1.4B 49% 513k/s ] 199G tiles: [ 98M 435k/s ] 40G
+ cpus: 2.6 gc: 0% heap: 2.6G/21G direct: 4M postGC: 1.9G
+ read(25%) -> (0/1k) -> encode( 7% 8% 8% 8% 8% 8% 11% 9% 7% 8% 8% 7% 7% 8% 10% 6%) -> (1k/1k) -> write(100%)
+ last tile: 14/2038/8874 (z14 12%) https://www.openstreetmap.org/#map=14/-14.81737/-135.21973
+2:31:04 INF [mbtiles] - features: [ 1.4B 49% 563k/s ] 199G tiles: [ 102M 435k/s ] 41G
+ cpus: 3 gc: 0% heap: 4.7G/21G direct: 4M postGC: 2G
+ read(27%) -> (0/1k) -> encode( 9% 11% 10% 9% 12% 11% 11% 6% 9% 11% 13% 13% 9% 13% 11% 12%) -> (1k/1k) -> write(100%)
+ last tile: 14/2388/9626 (z14 14%) https://www.openstreetmap.org/#map=14/-30.03106/-127.52930
+2:31:14 INF [mbtiles] - features: [ 1.4B 50% 1.7M/s ] 199G tiles: [ 105M 313k/s ] 42G
+ cpus: 10.6 gc: 3% heap: 5.2G/21G direct: 4M postGC: 2.3G
+ read(82%) -> (0/1k) -> encode(54% 54% 52% 54% 55% 56% 54% 54% 53% 52% 53% 55% 54% 50% 55% 54%) -> (37/1k) -> write(78%)
+ last tile: 14/2646/7131 (z14 16%) https://www.openstreetmap.org/#map=14/22.69512/-121.86035
+2:31:24 INF [mbtiles] - features: [ 1.4B 51% 2.1M/s ] 199G tiles: [ 108M 275k/s ] 42G
+ cpus: 12.8 gc: 1% heap: 2.7G/21G direct: 4M postGC: 2.3G
+ read(99%) -> (0/1k) -> encode(68% 71% 68% 71% 69% 68% 68% 70% 69% 68% 71% 67% 70% 68% 70% 70%) -> (84/1k) -> write(72%)
+ last tile: 14/2876/692 (z14 17%) https://www.openstreetmap.org/#map=14/83.54985/-116.80664
+2:31:34 INF [mbtiles] - features: [ 1.4B 51% 1.9M/s ] 199G tiles: [ 112M 385k/s ] 44G
+ cpus: 14.3 gc: 3% heap: 7.5G/21G direct: 4M postGC: 2.8G
+ read(95%) -> (10/1k) -> encode(76% 77% 75% 73% 75% 72% 73% 75% 72% 71% 80% 79% 78% 72% 77% 78%) -> (933/1k) -> write(96%)
+ last tile: 14/3207/10464 (z14 19%) https://www.openstreetmap.org/#map=14/-44.59047/-109.53369
+2:31:44 INF [mbtiles] - features: [ 1.5B 52% 1.7M/s ] 199G tiles: [ 115M 372k/s ] 44G
+ cpus: 13 gc: 6% heap: 7.8G/21G direct: 4M postGC: 5.2G
+ read(81%) -> (0/1k) -> encode(65% 67% 65% 66% 62% 67% 65% 67% 65% 67% 64% 63% 64% 65% 68% 63%) -> (1k/1k) -> write(93%)
+ last tile: 14/3529/8415 (z14 21%) https://www.openstreetmap.org/#map=14/-4.89394/-102.45850
+2:31:54 INF [mbtiles] - features: [ 1.5B 53% 1.9M/s ] 199G tiles: [ 118M 297k/s ] 46G
+ cpus: 13.6 gc: 5% heap: 1.7G/21G direct: 4M postGC: 1.3G
+ read(94%) -> (0/1k) -> encode(68% 69% 71% 69% 70% 71% 69% 69% 65% 70% 69% 71% 72% 72% 70% 68%) -> (14/1k) -> write(78%)
+ last tile: 14/3789/6590 (z14 23%) https://www.openstreetmap.org/#map=14/33.17434/-96.74561
+2:32:04 INF [mbtiles] - features: [ 1.5B 53% 2M/s ] 199G tiles: [ 121M 254k/s ] 47G
+ cpus: 13.6 gc: 1% heap: 2.3G/21G direct: 4M postGC: 1.3G
+ read(98%) -> (0/1k) -> encode(74% 73% 75% 76% 74% 75% 75% 75% 74% 74% 72% 74% 74% 73% 72% 75%) -> (38/1k) -> write(69%)
+ last tile: 14/4019/8527 (z14 24%) https://www.openstreetmap.org/#map=14/-7.34067/-91.69189
+2:32:14 INF [mbtiles] - features: [ 1.5B 54% 2.1M/s ] 199G tiles: [ 123M 200k/s ] 47G
+ cpus: 12.6 gc: 1% heap: 1.2G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(70% 68% 68% 68% 68% 66% 70% 69% 69% 67% 69% 67% 69% 68% 70% 68%) -> (16/1k) -> write(55%)
+ last tile: 14/4202/6087 (z14 25%) https://www.openstreetmap.org/#map=14/41.91863/-87.67090
+2:32:24 INF [mbtiles] - features: [ 1.5B 55% 2.1M/s ] 199G tiles: [ 125M 185k/s ] 48G
+ cpus: 12.9 gc: 1% heap: 4.7G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(71% 71% 70% 71% 72% 71% 71% 71% 73% 69% 72% 73% 70% 71% 68% 71%) -> (28/1k) -> write(52%)
+ last tile: 14/4370/11815 (z14 26%) https://www.openstreetmap.org/#map=14/-62.01122/-83.97949
+2:32:34 INF [mbtiles] - features: [ 1.6B 56% 2M/s ] 199G tiles: [ 126M 152k/s ] 49G
+ cpus: 12.8 gc: 1% heap: 4.2G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(71% 71% 70% 69% 70% 70% 70% 70% 71% 70% 71% 70% 70% 71% 71% 69%) -> (37/1k) -> write(45%)
+ last tile: 14/4504/4568 (z14 27%) https://www.openstreetmap.org/#map=14/62.02153/-81.03516
+2:32:44 INF [mbtiles] - features: [ 1.6B 56% 2.1M/s ] 199G tiles: [ 128M 126k/s ] 50G
+ cpus: 12.1 gc: 0% heap: 2G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(66% 68% 66% 66% 67% 67% 67% 67% 67% 67% 67% 66% 65% 67% 68% 67%) -> (27/1k) -> write(38%)
+ last tile: 14/4613/6355 (z14 28%) https://www.openstreetmap.org/#map=14/37.38762/-78.64014
+2:32:54 INF [mbtiles] - features: [ 1.6B 57% 2.1M/s ] 199G tiles: [ 129M 135k/s ] 51G
+ cpus: 12.2 gc: 0% heap: 2.5G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(67% 68% 68% 66% 68% 67% 67% 66% 68% 68% 65% 66% 67% 66% 69% 67%) -> (35/1k) -> write(41%)
+ last tile: 14/4727/3947 (z14 28%) https://www.openstreetmap.org/#map=14/67.78433/-76.13525
+2:33:04 INF [mbtiles] - features: [ 1.6B 58% 2.1M/s ] 199G tiles: [ 130M 138k/s ] 51G
+ cpus: 12 gc: 0% heap: 1.6G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(66% 67% 67% 67% 66% 66% 66% 68% 66% 67% 65% 64% 64% 67% 66% 65%) -> (15/1k) -> write(41%)
+ last tile: 14/4840/5986 (z14 29%) https://www.openstreetmap.org/#map=14/43.54855/-73.65234
+2:33:14 INF [mbtiles] - features: [ 1.6B 59% 2.1M/s ] 199G tiles: [ 132M 131k/s ] 52G
+ cpus: 12.3 gc: 0% heap: 3.7G/21G direct: 4M postGC: 1.3G
+ read(99%) -> (0/1k) -> encode(68% 67% 67% 68% 70% 67% 69% 67% 69% 68% 66% 68% 67% 68% 66% 66%) -> (16/1k) -> write(41%)
+ last tile: 14/4950/6007 (z14 30%) https://www.openstreetmap.org/#map=14/43.21318/-71.23535
+2:33:24 INF [mbtiles] - features: [ 1.7B 59% 1.9M/s ] 199G tiles: [ 134M 248k/s ] 53G
+ cpus: 14.2 gc: 3% heap: 2.9G/21G direct: 4M postGC: 2.6G
+ read(95%) -> (30/1k) -> encode(78% 75% 73% 80% 73% 73% 78% 74% 76% 73% 77% 74% 79% 79% 75% 74%) -> (808/1k) -> write(68%)
+ last tile: 14/5172/7340 (z14 31%) https://www.openstreetmap.org/#map=14/18.39623/-66.35742
+2:33:34 INF [mbtiles] - features: [ 1.7B 60% 1.4M/s ] 199G tiles: [ 138M 362k/s ] 54G
+ cpus: 11 gc: 5% heap: 5.2G/21G direct: 4M postGC: 2.2G
+ read(72%) -> (0/1k) -> encode(57% 56% 55% 50% 51% 54% 55% 53% 53% 53% 51% 52% 58% 55% 56% 54%) -> (1k/1k) -> write(94%)
+ last tile: 14/5448/138 (z14 33%) https://www.openstreetmap.org/#map=14/84.78253/-60.29297
+2:33:44 INF [mbtiles] - features: [ 1.7B 60% 1.4M/s ] 199G tiles: [ 142M 389k/s ] 55G
+ cpus: 8.8 gc: 3% heap: 4.9G/21G direct: 4M postGC: 2.9G
+ read(67%) -> (0/1k) -> encode(41% 41% 42% 44% 41% 39% 44% 44% 46% 42% 43% 39% 42% 43% 43% 42%) -> (1k/1k) -> write(97%)
+ last tile: 14/5711/10685 (z14 34%) https://www.openstreetmap.org/#map=14/-47.94579/-54.51416
+2:33:54 INF [mbtiles] - features: [ 1.7B 61% 1.3M/s ] 199G tiles: [ 145M 387k/s ] 56G
+ cpus: 9.2 gc: 3% heap: 7.9G/21G direct: 4M postGC: 3.3G
+ read(66%) -> (0/1k) -> encode(41% 45% 43% 42% 44% 43% 44% 46% 44% 47% 46% 47% 45% 48% 44% 45%) -> (1k/1k) -> write(97%)
+ last tile: 14/5984/8546 (z14 36%) https://www.openstreetmap.org/#map=14/-7.75454/-48.51563
+2:33:56 WAR [mbtiles:encode] - {x=6070 y=9294 z=14} 1000kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6070 y=9292 z=14} 1002kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6071 y=9291 z=14} 1010kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6071 y=9292 z=14} 1281kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6073 y=9297 z=14} 1064kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6074 y=9297 z=14} 1203kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6074 y=9296 z=14} 1065kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6074 y=9293 z=14} 1026kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6075 y=9297 z=14} 1092kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6075 y=9293 z=14} 1134kb uncompressed
+2:33:56 WAR [mbtiles:encode] - {x=6076 y=9293 z=14} 1108kb uncompressed
+2:33:57 WAR [mbtiles:encode] - {x=6077 y=9293 z=14} 985kb uncompressed
+2:33:57 WAR [mbtiles:encode] - {x=6079 y=9292 z=14} 1016kb uncompressed
+2:34:04 INF [mbtiles] - features: [ 1.7B 61% 1.4M/s ] 199G tiles: [ 149M 395k/s ] 57G
+ cpus: 8.9 gc: 3% heap: 8.7G/21G direct: 4M postGC: 3.5G
+ read(67%) -> (0/1k) -> encode(41% 42% 43% 42% 40% 44% 42% 43% 44% 44% 39% 40% 45% 41% 45% 42%) -> (1k/1k) -> write(97%)
+ last tile: 14/6256/1467 (z14 38%) https://www.openstreetmap.org/#map=14/81.32491/-42.53906
+2:34:09 WAR [mbtiles:encode] - {x=6435 y=8363 z=14} 1049kb uncompressed
+2:34:09 WAR [mbtiles:encode] - {x=6435 y=8361 z=14} 1688kb uncompressed
+2:34:14 INF [mbtiles] - features: [ 1.7B 62% 985k/s ] 199G tiles: [ 153M 402k/s ] 58G
+ cpus: 5.8 gc: 2% heap: 7.5G/21G direct: 4M postGC: 4G
+ read(48%) -> (0/1k) -> encode(27% 25% 26% 27% 22% 21% 23% 25% 29% 25% 28% 27% 27% 21% 23% 28%) -> (1k/1k) -> write(98%)
+ last tile: 14/6528/5800 (z14 39%) https://www.openstreetmap.org/#map=14/46.43786/-36.56250
+2:34:24 INF [mbtiles] - features: [ 1.7B 62% 589k/s ] 199G tiles: [ 158M 423k/s ] 59G
+ cpus: 2.1 gc: 0% heap: 7.6G/21G direct: 4M postGC: 4.1G
+ read(29%) -> (0/1k) -> encode( 4% 5% 5% 5% 4% 5% 5% 5% 5% 5% 5% 4% 4% 5% 5% 5%) -> (1k/1k) -> write(100%)
+ last tile: 14/6825/2691 (z14 41%) https://www.openstreetmap.org/#map=14/76.16925/-30.03662
+2:34:34 INF [mbtiles] - features: [ 1.7B 62% 566k/s ] 199G tiles: [ 162M 423k/s ] 59G
+ cpus: 2.5 gc: 0% heap: 9.1G/21G direct: 4M postGC: 4.1G
+ read(27%) -> (0/1k) -> encode( 8% 8% 7% 7% 8% 8% 7% 8% 7% 7% 7% 9% 7% 7% 7% 6%) -> (1k/1k) -> write(100%)
+ last tile: 14/7137/9635 (z14 43%) https://www.openstreetmap.org/#map=14/-30.20211/-23.18115
+2:34:44 INF [mbtiles] - features: [ 1.7B 62% 774k/s ] 199G tiles: [ 166M 420k/s ] 60G
+ cpus: 3.8 gc: 1% heap: 7.7G/21G direct: 4M postGC: 4.2G
+ read(35%) -> (0/1k) -> encode(18% 14% 14% 13% 13% 15% 16% 13% 15% 15% 16% 13% 15% 15% 14% 16%) -> (1k/1k) -> write(99%)
+ last tile: 14/7449/4838 (z14 45%) https://www.openstreetmap.org/#map=14/59.10831/-16.32568
+2:34:54 INF [mbtiles] - features: [ 1.8B 63% 1.4M/s ] 199G tiles: [ 170M 408k/s ] 61G
+ cpus: 7.7 gc: 3% heap: 7.2G/21G direct: 4M postGC: 5.3G
+ read(61%) -> (0/1k) -> encode(37% 35% 35% 37% 36% 37% 39% 34% 36% 34% 35% 35% 37% 34% 34% 34%) -> (835/1k) -> write(96%)
+ last tile: 14/7771/1253 (z14 47%) https://www.openstreetmap.org/#map=14/82.00611/-9.25049
+2:35:04 WAR [mbtiles:encode] - {x=7990 y=6392 z=14} 1284kb uncompressed
+2:35:05 INF [mbtiles] - features: [ 1.8B 63% 2.2M/s ] 199G tiles: [ 173M 284k/s ] 62G
+ cpus: 13.5 gc: 2% heap: 7G/21G direct: 4M postGC: 5.3G
+ read(98%) -> (0/1k) -> encode(72% 72% 71% 72% 72% 73% 72% 70% 72% 72% 72% 73% 73% 73% 71% 72%) -> (21/1k) -> write(77%)
+ last tile: 14/8002/5516 (z14 48%) https://www.openstreetmap.org/#map=14/50.56928/-4.17480
+2:35:15 INF [mbtiles] - features: [ 1.8B 64% 2.2M/s ] 199G tiles: [ 174M 108k/s ] 63G
+ cpus: 12.1 gc: 0% heap: 10G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(66% 67% 67% 67% 68% 66% 68% 68% 68% 67% 67% 68% 66% 68% 67% 66%) -> (11/1k) -> write(34%)
+ last tile: 14/8091/5397 (z14 49%) https://www.openstreetmap.org/#map=14/52.20087/-2.21924
+2:35:25 INF [mbtiles] - features: [ 1.8B 65% 2.3M/s ] 199G tiles: [ 175M 68k/s ] 63G
+ cpus: 11.3 gc: 0% heap: 9.3G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(62% 63% 62% 63% 64% 62% 62% 63% 63% 63% 61% 63% 63% 64% 63% 64%) -> (19/1k) -> write(23%)
+ last tile: 14/8147/1367 (z14 49%) https://www.openstreetmap.org/#map=14/81.65012/-0.98877
+2:35:29 WAR [mbtiles:encode] - {x=8174 y=6234 z=14} 1236kb uncompressed
+2:35:35 INF [mbtiles] - features: [ 1.9B 66% 2.3M/s ] 199G tiles: [ 176M 68k/s ] 64G
+ cpus: 11.2 gc: 0% heap: 6.5G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(62% 61% 63% 62% 61% 62% 62% 61% 61% 61% 63% 62% 62% 63% 61% 63%) -> (14/1k) -> write(23%)
+ last tile: 14/8204/5781 (z14 50%) https://www.openstreetmap.org/#map=14/46.72480/0.26367
+2:35:43 WAR [mbtiles:encode] - {x=8270 y=6129 z=14} 1036kb uncompressed
+2:35:45 INF [mbtiles] - features: [ 1.9B 67% 2.2M/s ] 199G tiles: [ 176M 95k/s ] 65G
+ cpus: 11.1 gc: 0% heap: 7.5G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(61% 59% 61% 61% 62% 60% 61% 60% 61% 61% 62% 59% 61% 60% 61% 62%) -> (16/1k) -> write(30%)
+ last tile: 14/8282/1499 (z14 50%) https://www.openstreetmap.org/#map=14/81.21821/1.97754
+2:35:46 WAR [mbtiles:encode] - {x=8290 y=6119 z=14} 1276kb uncompressed
+2:35:46 WAR [mbtiles:encode] - {x=8290 y=6118 z=14} 1320kb uncompressed
+2:35:46 WAR [mbtiles:encode] - {x=8292 y=6115 z=14} 1271kb uncompressed
+2:35:55 INF [mbtiles] - features: [ 1.9B 68% 2.3M/s ] 199G tiles: [ 177M 68k/s ] 65G
+ cpus: 10.8 gc: 0% heap: 5.4G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(60% 61% 59% 59% 60% 60% 59% 59% 60% 60% 60% 58% 60% 60% 61% 59%) -> (18/1k) -> write(22%)
+ last tile: 14/8340/11756 (z14 50%) https://www.openstreetmap.org/#map=14/-61.39672/3.25195
+2:36:01 WAR [mbtiles:encode] - {x=8387 y=5406 z=14} 979kb uncompressed
+2:36:05 INF [mbtiles] - features: [ 1.9B 68% 2.4M/s ] 199G tiles: [ 178M 71k/s ] 66G
+ cpus: 10.4 gc: 0% heap: 6.4G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(57% 57% 58% 58% 57% 57% 57% 58% 58% 58% 56% 55% 58% 56% 57% 57%) -> (3/1k) -> write(23%)
+ last tile: 14/8399/5423 (z14 51%) https://www.openstreetmap.org/#map=14/51.84935/4.54834
+2:36:09 WAR [mbtiles:encode] - {x=8413 y=5384 z=14} 1142kb uncompressed
+2:36:09 WAR [mbtiles:encode] - {x=8414 y=5385 z=14} 1045kb uncompressed
+2:36:09 WAR [mbtiles:encode] - {x=8414 y=5384 z=14} 1159kb uncompressed
+2:36:15 INF [mbtiles] - features: [ 2B 69% 2.4M/s ] 199G tiles: [ 178M 42k/s ] 66G
+ cpus: 10.2 gc: 0% heap: 6.1G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(57% 56% 56% 58% 56% 56% 56% 56% 57% 57% 55% 55% 58% 56% 56% 55%) -> (9/1k) -> write(16%)
+ last tile: 14/8434/5382 (z14 51%) https://www.openstreetmap.org/#map=14/52.40242/5.31738
+2:36:25 INF [mbtiles] - features: [ 2B 70% 2.4M/s ] 199G tiles: [ 179M 45k/s ] 67G
+ cpus: 10.6 gc: 0% heap: 8.3G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(58% 59% 59% 59% 59% 58% 59% 57% 58% 60% 59% 59% 59% 58% 60% 58%) -> (9/1k) -> write(17%)
+ last tile: 14/8471/5427 (z14 51%) https://www.openstreetmap.org/#map=14/51.79503/6.13037
+2:36:35 INF [mbtiles] - features: [ 2B 71% 2.4M/s ] 199G tiles: [ 179M 47k/s ] 68G
+ cpus: 10.7 gc: 0% heap: 6.5G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(58% 61% 60% 60% 60% 59% 59% 59% 60% 60% 60% 59% 59% 60% 59% 61%) -> (17/1k) -> write(18%)
+ last tile: 14/8510/5325 (z14 51%) https://www.openstreetmap.org/#map=14/53.15995/6.98730
+2:36:45 INF [mbtiles] - features: [ 2B 72% 2.4M/s ] 199G tiles: [ 180M 46k/s ] 68G
+ cpus: 10.9 gc: 0% heap: 6.6G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(61% 62% 60% 61% 60% 60% 62% 60% 62% 60% 62% 60% 60% 60% 61% 60%) -> (17/1k) -> write(18%)
+ last tile: 14/8548/5359 (z14 52%) https://www.openstreetmap.org/#map=14/52.70968/7.82227
+2:36:55 INF [mbtiles] - features: [ 2B 73% 2.3M/s ] 199G tiles: [ 180M 49k/s ] 69G
+ cpus: 11.1 gc: 0% heap: 9.2G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(63% 61% 63% 62% 62% 61% 62% 62% 63% 60% 62% 61% 62% 62% 62% 61%) -> (8/1k) -> write(19%)
+ last tile: 14/8588/5405 (z14 52%) https://www.openstreetmap.org/#map=14/52.09301/8.70117
+2:37:05 INF [mbtiles] - features: [ 2.1B 73% 2.4M/s ] 199G tiles: [ 181M 43k/s ] 70G
+ cpus: 11.2 gc: 0% heap: 6.4G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(62% 61% 62% 62% 63% 63% 61% 62% 63% 61% 62% 62% 63% 62% 62% 62%) -> (9/1k) -> write(18%)
+ last tile: 14/8623/5372 (z14 52%) https://www.openstreetmap.org/#map=14/52.53627/9.47021
+2:37:15 INF [mbtiles] - features: [ 2.1B 74% 2.3M/s ] 199G tiles: [ 181M 48k/s ] 70G
+ cpus: 11.1 gc: 0% heap: 8.6G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(63% 60% 62% 62% 62% 61% 61% 61% 61% 63% 61% 62% 62% 61% 62% 64%) -> (8/1k) -> write(19%)
+ last tile: 14/8662/5556 (z14 52%) https://www.openstreetmap.org/#map=14/50.00774/10.32715
+2:37:25 INF [mbtiles] - features: [ 2.1B 75% 2.3M/s ] 199G tiles: [ 182M 52k/s ] 71G
+ cpus: 11.3 gc: 0% heap: 6.1G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(64% 61% 63% 61% 63% 64% 64% 63% 63% 62% 63% 62% 62% 64% 62% 63%) -> (8/1k) -> write(21%)
+ last tile: 14/8705/5526 (z14 53%) https://www.openstreetmap.org/#map=14/50.42952/11.27197
+2:37:35 INF [mbtiles] - features: [ 2.1B 76% 2.3M/s ] 199G tiles: [ 182M 55k/s ] 72G
+ cpus: 11.4 gc: 0% heap: 8.9G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(62% 63% 65% 65% 65% 64% 63% 64% 63% 63% 64% 65% 64% 62% 63% 63%) -> (8/1k) -> write(22%)
+ last tile: 14/8750/5422 (z14 53%) https://www.openstreetmap.org/#map=14/51.86292/12.26074
+2:37:45 INF [mbtiles] - features: [ 2.2B 77% 2.3M/s ] 199G tiles: [ 183M 62k/s ] 72G
+ cpus: 11.7 gc: 0% heap: 8.1G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(67% 65% 66% 65% 66% 65% 64% 63% 66% 65% 65% 65% 68% 65% 65% 65%) -> (13/1k) -> write(24%)
+ last tile: 14/8802/6058 (z14 53%) https://www.openstreetmap.org/#map=14/42.39101/13.40332
+2:37:55 INF [mbtiles] - features: [ 2.2B 77% 2.2M/s ] 199G tiles: [ 183M 64k/s ] 73G
+ cpus: 12.3 gc: 0% heap: 9.1G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(67% 69% 69% 68% 67% 68% 70% 69% 70% 68% 68% 70% 69% 68% 68% 68%) -> (24/1k) -> write(25%)
+ last tile: 14/8857/3112 (z14 54%) https://www.openstreetmap.org/#map=14/73.77578/14.61182
+2:38:05 INF [mbtiles] - features: [ 2.2B 78% 2.2M/s ] 199G tiles: [ 184M 76k/s ] 74G
+ cpus: 12.5 gc: 0% heap: 10G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (1/1k) -> encode(69% 70% 69% 69% 69% 70% 69% 71% 71% 68% 69% 70% 69% 69% 70% 70%) -> (24/1k) -> write(29%)
+ last tile: 14/8925/4842 (z14 54%) https://www.openstreetmap.org/#map=14/59.06315/16.10596
+2:38:15 INF [mbtiles] - features: [ 2.2B 79% 2.3M/s ] 199G tiles: [ 185M 84k/s ] 75G
+ cpus: 11.9 gc: 0% heap: 7.6G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(66% 67% 68% 66% 64% 66% 65% 66% 67% 67% 66% 67% 65% 66% 66% 66%) -> (9/1k) -> write(30%)
+ last tile: 14/9002/5618 (z14 54%) https://www.openstreetmap.org/#map=14/49.12422/17.79785
+2:38:25 INF [mbtiles] - features: [ 2.3B 80% 2.3M/s ] 199G tiles: [ 186M 79k/s ] 76G
+ cpus: 11.5 gc: 0% heap: 8.9G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(62% 64% 64% 64% 63% 63% 64% 63% 64% 64% 64% 65% 63% 66% 63% 65%) -> (8/1k) -> write(28%)
+ last tile: 14/9075/5431 (z14 55%) https://www.openstreetmap.org/#map=14/51.74064/19.40186
+2:38:35 INF [mbtiles] - features: [ 2.3B 81% 2.3M/s ] 199G tiles: [ 187M 100k/s ] 77G
+ cpus: 12 gc: 0% heap: 7.1G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(66% 66% 67% 68% 67% 67% 66% 65% 68% 66% 67% 66% 67% 66% 68% 66%) -> (23/1k) -> write(34%)
+ last tile: 14/9166/1073 (z14 55%) https://www.openstreetmap.org/#map=14/82.53775/21.40137
+2:38:45 INF [mbtiles] - features: [ 2.3B 81% 2.2M/s ] 199G tiles: [ 188M 115k/s ] 78G
+ cpus: 13.1 gc: 0% heap: 5.7G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(73% 73% 72% 74% 75% 73% 75% 74% 71% 73% 73% 71% 72% 73% 73% 73%) -> (18/1k) -> write(40%)
+ last tile: 14/9270/4471 (z14 56%) https://www.openstreetmap.org/#map=14/63.00513/23.68652
+2:38:55 INF [mbtiles] - features: [ 2.3B 82% 2.2M/s ] 199G tiles: [ 189M 130k/s ] 79G
+ cpus: 13.7 gc: 0% heap: 6.6G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(75% 77% 76% 75% 76% 75% 76% 77% 77% 77% 79% 75% 77% 78% 76% 77%) -> (29/1k) -> write(44%)
+ last tile: 14/9385/10803 (z14 57%) https://www.openstreetmap.org/#map=14/-49.65340/26.21338
+2:39:05 INF [mbtiles] - features: [ 2.4B 83% 2.2M/s ] 199G tiles: [ 191M 126k/s ] 79G
+ cpus: 13 gc: 0% heap: 7.9G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (1/1k) -> encode(71% 72% 72% 72% 72% 73% 72% 71% 73% 71% 73% 72% 70% 73% 70% 72%) -> (30/1k) -> write(42%)
+ last tile: 14/9496/8664 (z14 57%) https://www.openstreetmap.org/#map=14/-10.31492/28.65234
+2:39:15 INF [mbtiles] - features: [ 2.4B 84% 2.3M/s ] 199G tiles: [ 192M 97k/s ] 80G
+ cpus: 12.3 gc: 0% heap: 5.8G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(66% 68% 70% 67% 68% 67% 69% 68% 68% 69% 67% 66% 69% 69% 70% 68%) -> (23/1k) -> write(34%)
+ last tile: 14/9580/39 (z14 58%) https://www.openstreetmap.org/#map=14/84.97665/30.49805
+2:39:25 INF [mbtiles] - features: [ 2.4B 85% 2.4M/s ] 199G tiles: [ 193M 105k/s ] 81G
+ cpus: 11.8 gc: 0% heap: 7.5G/21G direct: 4M postGC: 5.3G
+ read(100%) -> (0/1k) -> encode(66% 66% 64% 66% 65% 67% 63% 64% 65% 66% 66% 64% 65% 66% 64% 67%) -> (11/1k) -> write(35%)
+ last tile: 14/9672/8055 (z14 59%) https://www.openstreetmap.org/#map=14/3.00887/32.51953
+2:39:25 WAR [mbtiles:encode] - {x=9674 y=8175 z=14} 1015kb uncompressed
+2:39:35 INF [mbtiles] - features: [ 2.4B 85% 2.3M/s ] 199G tiles: [ 194M 120k/s ] 82G
+ cpus: 12.1 gc: 0% heap: 9.3G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(67% 67% 67% 65% 67% 67% 66% 66% 68% 66% 67% 67% 69% 67% 68% 67%) -> (19/1k) -> write(39%)
+ last tile: 14/9776/6645 (z14 59%) https://www.openstreetmap.org/#map=14/32.15701/34.80469
+2:39:45 INF [mbtiles] - features: [ 2.4B 86% 2.3M/s ] 199G tiles: [ 195M 146k/s ] 83G
+ cpus: 12.8 gc: 0% heap: 9.5G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (0/1k) -> encode(71% 69% 70% 69% 71% 70% 72% 70% 72% 71% 69% 70% 69% 72% 70% 70%) -> (26/1k) -> write(46%)
+ last tile: 14/9902/5058 (z14 60%) https://www.openstreetmap.org/#map=14/56.53526/37.57324
+2:39:50 WAR [mbtiles:encode] - {x=9977 y=8504 z=14} 992kb uncompressed
+2:39:50 WAR [mbtiles:encode] - {x=9977 y=8503 z=14} 1239kb uncompressed
+2:39:50 WAR [mbtiles:encode] - {x=9977 y=8501 z=14} 1277kb uncompressed
+2:39:50 WAR [mbtiles:encode] - {x=9977 y=8502 z=14} 1596kb uncompressed
+2:39:50 WAR [mbtiles:encode] - {x=9978 y=8505 z=14} 1089kb uncompressed
+2:39:51 WAR [mbtiles:encode] - {x=9978 y=8503 z=14} 1071kb uncompressed
+2:39:51 WAR [mbtiles:encode] - {x=9978 y=8501 z=14} 1324kb uncompressed
+2:39:51 WAR [mbtiles:encode] - {x=9978 y=8502 z=14} 1437kb uncompressed
+2:39:55 INF [mbtiles] - features: [ 2.5B 87% 2.3M/s ] 199G tiles: [ 197M 169k/s ] 84G
+ cpus: 12.6 gc: 0% heap: 6.1G/21G direct: 4M postGC: 5.3G
+ read(99%) -> (2/1k) -> encode(70% 69% 69% 69% 69% 69% 70% 68% 70% 69% 71% 69% 69% 68% 70% 70%) -> (48/1k) -> write(50%)
+ last tile: 14/10048/9304 (z14 61%) https://www.openstreetmap.org/#map=14/-23.72501/40.78125
+2:39:58 WAR [mbtiles:encode] - {x=10153 y=7662 z=14} 1025kb uncompressed
+2:40:05 INF [mbtiles] - features: [ 2.5B 88% 2.1M/s ] 199G tiles: [ 200M 287k/s ] 85G
+ cpus: 14.5 gc: 1% heap: 6.3G/21G direct: 4M postGC: 5.3G
+ read(97%) -> (0/1k) -> encode(82% 81% 79% 82% 81% 76% 78% 80% 75% 77% 77% 82% 77% 80% 79% 80%) -> (39/1k) -> write(81%)
+ last tile: 14/10300/3335 (z14 62%) https://www.openstreetmap.org/#map=14/72.34913/46.31836
+2:40:15 INF [mbtiles] - features: [ 2.5B 89% 2.2M/s ] 199G tiles: [ 203M 304k/s ] 86G
+ cpus: 13.5 gc: 1% heap: 8.1G/21G direct: 4M postGC: 5.4G
+ read(99%) -> (0/1k) -> encode(73% 70% 74% 73% 73% 72% 73% 72% 72% 73% 73% 72% 73% 73% 73% 70%) -> (224/1k) -> write(84%)
+ last tile: 14/10571/5190 (z14 64%) https://www.openstreetmap.org/#map=14/54.90188/52.27295
+2:40:25 INF [mbtiles] - features: [ 2.5B 89% 1.7M/s ] 199G tiles: [ 207M 373k/s ] 87G
+ cpus: 11.6 gc: 5% heap: 9.9G/21G direct: 4M postGC: 7.9G
+ read(81%) -> (0/1k) -> encode(58% 58% 56% 58% 58% 59% 60% 58% 56% 58% 56% 58% 57% 58% 59% 57%) -> (1k/1k) -> write(95%)
+ last tile: 14/10921/8530 (z14 66%) https://www.openstreetmap.org/#map=14/-7.40605/59.96338
+2:40:35 INF [mbtiles] - features: [ 2.5B 90% 1.1M/s ] 199G tiles: [ 211M 389k/s ] 88G
+ cpus: 7.9 gc: 4% heap: 3.2G/21G direct: 4M postGC: 1.9G
+ read(54%) -> (0/1k) -> encode(33% 38% 37% 33% 33% 31% 37% 37% 35% 36% 40% 32% 39% 35% 37% 38%) -> (1k/1k) -> write(96%)
+ last tile: 14/11281/9533 (z14 68%) https://www.openstreetmap.org/#map=14/-28.24633/67.87354
+2:40:45 INF [mbtiles] - features: [ 2.6B 90% 1.6M/s ] 199G tiles: [ 214M 368k/s ] 89G
+ cpus: 12.2 gc: 6% heap: 2.3G/21G direct: 4M postGC: 1.7G
+ read(75%) -> (0/1k) -> encode(61% 60% 58% 59% 61% 60% 60% 59% 60% 59% 61% 62% 60% 63% 60% 61%) -> (968/1k) -> write(94%)
+ last tile: 14/11612/6884 (z14 70%) https://www.openstreetmap.org/#map=14/27.60567/75.14648
+2:40:55 INF [mbtiles] - features: [ 2.6B 91% 2.2M/s ] 199G tiles: [ 218M 324k/s ] 90G
+ cpus: 13 gc: 2% heap: 4.6G/21G direct: 4M postGC: 1.7G
+ read(97%) -> (0/1k) -> encode(69% 67% 69% 67% 70% 68% 69% 69% 69% 70% 68% 69% 68% 69% 69% 68%) -> (25/1k) -> write(87%)
+ last tile: 14/11918/6785 (z14 72%) https://www.openstreetmap.org/#map=14/29.51611/81.87012
+2:40:59 WAR [mbtiles:encode] - {x=12074 y=6878 z=14} 985kb uncompressed
+2:41:05 INF [mbtiles] - features: [ 2.6B 92% 2.3M/s ] 199G tiles: [ 221M 349k/s ] 91G
+ cpus: 12.6 gc: 0% heap: 7.3G/21G direct: 4M postGC: 1.7G
+ read(99%) -> (0/1k) -> encode(67% 66% 68% 67% 69% 67% 67% 67% 66% 66% 66% 65% 65% 66% 65% 67%) -> (38/1k) -> write(91%)
+ last tile: 14/12258/7045 (z14 74%) https://www.openstreetmap.org/#map=14/24.42715/89.34082
+2:41:07 WAR [mbtiles:encode] - {x=12306 y=7080 z=14} 997kb uncompressed
+2:41:09 WAR [mbtiles:encode] - {x=12385 y=7204 z=14} 1047kb uncompressed
+2:41:09 WAR [mbtiles:encode] - {x=12386 y=7204 z=14} 1436kb uncompressed
+2:41:15 INF [mbtiles] - features: [ 2.6B 93% 2.2M/s ] 199G tiles: [ 224M 348k/s ] 92G
+ cpus: 11.8 gc: 3% heap: 2.7G/21G direct: 4M postGC: 2.7G
+ read(94%) -> (0/1k) -> encode(61% 59% 59% 58% 61% 62% 61% 61% 60% 62% 60% 60% 59% 59% 61% 61%) -> (1k/1k) -> write(87%)
+ last tile: 14/12632/9223 (z14 77%) https://www.openstreetmap.org/#map=14/-22.08564/97.55859
+2:41:25 INF [mbtiles] - features: [ 2.7B 93% 2.1M/s ] 199G tiles: [ 228M 343k/s ] 93G
+ cpus: 15.1 gc: 4% heap: 6.3G/21G direct: 4M postGC: 2.7G
+ read(93%) -> (0/1k) -> encode(82% 78% 75% 73% 76% 83% 81% 80% 80% 82% 71% 82% 78% 82% 85% 75%) -> (189/1k) -> write(91%)
+ last tile: 14/13010/961 (z14 79%) https://www.openstreetmap.org/#map=14/82.85065/105.86426
+2:41:27 WAR [mbtiles:encode] - {x=13052 y=8472 z=14} 1259kb uncompressed
+2:41:27 WAR [mbtiles:encode] - {x=13055 y=8478 z=14} 1009kb uncompressed
+2:41:27 WAR [mbtiles:encode] - {x=13055 y=8475 z=14} 978kb uncompressed
+2:41:27 WAR [mbtiles:encode] - {x=13055 y=8474 z=14} 1038kb uncompressed
+2:41:27 WAR [mbtiles:encode] - {x=13055 y=8473 z=14} 1101kb uncompressed
+2:41:28 WAR [mbtiles:encode] - {x=13057 y=8471 z=14} 1019kb uncompressed
+2:41:28 WAR [mbtiles:encode] - {x=13058 y=8475 z=14} 1043kb uncompressed
+2:41:29 WAR [mbtiles:encode] - {x=13088 y=8508 z=14} 1130kb uncompressed
+2:41:35 INF [mbtiles] - features: [ 2.7B 94% 2.6M/s ] 199G tiles: [ 230M 186k/s ] 94G
+ cpus: 11.7 gc: 0% heap: 9.4G/21G direct: 4M postGC: 2.4G
+ read(100%) -> (0/1k) -> encode(63% 63% 64% 63% 63% 64% 65% 65% 63% 62% 64% 63% 64% 62% 64% 63%) -> (36/1k) -> write(52%)
+ last tile: 14/13209/7226 (z14 80%) https://www.openstreetmap.org/#map=14/20.75611/110.23682
+2:41:40 WAR [mbtiles:encode] - {x=13322 y=8523 z=14} 1137kb uncompressed
+2:41:40 WAR [mbtiles:encode] - {x=13323 y=8522 z=14} 1040kb uncompressed
+2:41:45 INF [mbtiles] - features: [ 2.7B 95% 2.3M/s ] 199G tiles: [ 232M 234k/s ] 95G
+ cpus: 12.5 gc: 0% heap: 8.1G/21G direct: 4M postGC: 2.4G
+ read(98%) -> (0/1k) -> encode(68% 67% 67% 70% 68% 66% 67% 65% 68% 69% 70% 67% 68% 68% 69% 67%) -> (45/1k) -> write(65%)
+ last tile: 14/13451/11253 (z14 82%) https://www.openstreetmap.org/#map=14/-55.64040/115.55420
+2:41:54 WAR [mbtiles:encode] - {x=13682 y=7058 z=14} 1160kb uncompressed
+2:41:54 WAR [mbtiles:encode] - {x=13682 y=7057 z=14} 1222kb uncompressed
+2:41:54 WAR [mbtiles:encode] - {x=13683 y=7057 z=14} 1060kb uncompressed
+2:41:54 WAR [mbtiles:encode] - {x=13683 y=7059 z=14} 1399kb uncompressed
+2:41:54 WAR [mbtiles:encode] - {x=13683 y=7058 z=14} 1657kb uncompressed
+2:41:55 WAR [mbtiles:encode] - {x=13684 y=7059 z=14} 1346kb uncompressed
+2:41:55 WAR [mbtiles:encode] - {x=13684 y=7057 z=14} 1459kb uncompressed
+2:41:55 WAR [mbtiles:encode] - {x=13684 y=7058 z=14} 1637kb uncompressed
+2:41:55 INF [mbtiles] - features: [ 2.7B 96% 2.2M/s ] 199G tiles: [ 234M 232k/s ] 96G
+ cpus: 13.2 gc: 1% heap: 4.1G/21G direct: 4M postGC: 2.5G
+ read(98%) -> (0/1k) -> encode(72% 65% 71% 74% 71% 72% 74% 67% 73% 68% 71% 74% 73% 73% 73% 71%) -> (28/1k) -> write(65%)
+ last tile: 14/13687/11269 (z14 83%) https://www.openstreetmap.org/#map=14/-55.83831/120.73975
+2:41:57 WAR [mbtiles:encode] - {x=13702 y=7515 z=14} 1208kb uncompressed
+2:41:57 WAR [mbtiles:encode] - {x=13703 y=7515 z=14} 1017kb uncompressed
+2:42:05 INF [mbtiles] - features: [ 2.7B 97% 2.3M/s ] 199G tiles: [ 237M 284k/s ] 97G
+ cpus: 12.5 gc: 1% heap: 8.8G/21G direct: 4M postGC: 2.5G
+ read(98%) -> (0/1k) -> encode(68% 66% 68% 67% 67% 67% 66% 65% 67% 66% 67% 67% 66% 67% 67% 65%) -> (32/1k) -> write(76%)
+ last tile: 14/13975/1295 (z14 85%) https://www.openstreetmap.org/#map=14/81.87675/127.06787
+2:42:15 WAR [mbtiles:encode] - {x=14369 y=6489 z=14} 1003kb uncompressed
+2:42:15 INF [mbtiles] - features: [ 2.8B 97% 2.2M/s ] 199G tiles: [ 241M 382k/s ] 98G
+ cpus: 13.6 gc: 2% heap: 5.8G/21G direct: 4M postGC: 2.9G
+ read(97%) -> (0/1k) -> encode(70% 71% 69% 70% 70% 72% 72% 70% 71% 70% 72% 70% 72% 71% 72% 70%) -> (485/1k) -> write(96%)
+ last tile: 14/14350/11147 (z14 87%) https://www.openstreetmap.org/#map=14/-54.30370/135.30762
+2:42:15 WAR [mbtiles:encode] - {x=14369 y=6488 z=14} 1186kb uncompressed
+2:42:15 WAR [mbtiles:encode] - {x=14370 y=6487 z=14} 991kb uncompressed
+2:42:15 WAR [mbtiles:encode] - {x=14370 y=6489 z=14} 1182kb uncompressed
+2:42:23 WAR [mbtiles:encode] - {x=14552 y=6450 z=14} 992kb uncompressed
+2:42:23 WAR [mbtiles:encode] - {x=14553 y=6450 z=14} 1384kb uncompressed
+2:42:25 INF [mbtiles] - features: [ 2.8B 98% 2.3M/s ] 199G tiles: [ 244M 248k/s ] 99G
+ cpus: 13 gc: 1% heap: 8.7G/21G direct: 4M postGC: 2.4G
+ read(99%) -> (0/1k) -> encode(71% 72% 71% 71% 70% 71% 71% 70% 69% 71% 71% 71% 71% 70% 71% 70%) -> (22/1k) -> write(67%)
+ last tile: 14/14588/6183 (z14 89%) https://www.openstreetmap.org/#map=14/40.32980/140.53711
+2:42:35 INF [mbtiles] - features: [ 2.8B 99% 1.7M/s ] 199G tiles: [ 247M 363k/s ] 100G
+ cpus: 11.6 gc: 2% heap: 4.9G/21G direct: 4M postGC: 3G
+ read(79%) -> (0/1k) -> encode(61% 60% 60% 64% 60% 61% 58% 60% 62% 58% 58% 59% 59% 62% 61% 59%) -> (1k/1k) -> write(92%)
+ last tile: 14/14923/8146 (z14 91%) https://www.openstreetmap.org/#map=14/1.01069/147.89795
+2:42:45 INF [mbtiles] - features: [ 2.8B 99% 915k/s ] 199G tiles: [ 251M 413k/s ] 100G
+ cpus: 5.3 gc: 1% heap: 6.3G/21G direct: 4M postGC: 3.3G
+ read(42%) -> (0/1k) -> encode(24% 23% 23% 23% 22% 22% 21% 23% 22% 27% 24% 22% 21% 26% 23% 22%) -> (1k/1k) -> write(99%)
+ last tile: 14/15277/9547 (z14 93%) https://www.openstreetmap.org/#map=14/-28.51697/155.67627
+2:42:55 INF [mbtiles] - features: [ 2.8B 99% 511k/s ] 199G tiles: [ 256M 424k/s ] 101G
+ cpus: 2.6 gc: 0% heap: 5.2G/21G direct: 4M postGC: 3.2G
+ read(24%) -> (0/1k) -> encode( 8% 8% 8% 9% 7% 8% 7% 8% 10% 8% 8% 8% 7% 8% 9% 7%) -> (1k/1k) -> write(100%)
+ last tile: 14/15618/5102 (z14 95%) https://www.openstreetmap.org/#map=14/55.99838/163.16895
+2:43:05 INF [mbtiles] - features: [ 2.8B 100% 589k/s ] 199G tiles: [ 260M 427k/s ] 101G
+ cpus: 2.8 gc: 0% heap: 6.5G/21G direct: 4M postGC: 3.3G
+ read(28%) -> (0/1k) -> encode( 9% 11% 11% 11% 7% 9% 10% 12% 9% 10% 9% 7% 8% 8% 8% 8%) -> (1k/1k) -> write(100%)
+ last tile: 14/15919/13673 (z14 97%) https://www.openstreetmap.org/#map=14/-76.06380/169.78271
+2:43:15 INF [mbtiles] - features: [ 2.8B 100% 981k/s ] 199G tiles: [ 264M 421k/s ] 102G
+ cpus: 4.6 gc: 1% heap: 4.8G/21G direct: 4M postGC: 3.3G
+ read(43%) -> (0/1k) -> encode(18% 18% 19% 22% 18% 16% 21% 21% 15% 19% 21% 19% 20% 21% 18% 21%) -> (1k/1k) -> write(99%)
+ last tile: 14/16199/8989 (z14 98%) https://www.openstreetmap.org/#map=14/-17.24574/175.93506
+2:43:21 INF [mbtiles:write] - Finished z14 in 13m34s cpu:2h17m34s gc:10s avg:10.1
+2:43:21 INF [mbtiles] - features: [ 2.8B 100% 349k/s ] 199G tiles: [ 267M 433k/s ] 103G
+ cpus: 1.8 gc: 0% heap: 7.4G/21G direct: 3.9M postGC: 3.3G
+ read( -%) -> (0/1k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/1k) -> write( -%)
+ last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
+2:43:21 DEB [mbtiles] - Tile stats:
+2:43:21 DEB [mbtiles] - z0 avg:67k max:67k
+2:43:21 DEB [mbtiles] - z1 avg:159k max:180k
+2:43:21 DEB [mbtiles] - z2 avg:297k max:537k
+2:43:21 DEB [mbtiles] - z3 avg:104k max:497k
+2:43:21 DEB [mbtiles] - z4 avg:42k max:501k
+2:43:21 DEB [mbtiles] - z5 avg:23k max:524k
+2:43:21 DEB [mbtiles] - z6 avg:12k max:341k
+2:43:21 DEB [mbtiles] - z7 avg:9.9k max:408k
+2:43:21 DEB [mbtiles] - z8 avg:5.8k max:341k
+2:43:21 DEB [mbtiles] - z9 avg:5.6k max:461k
+2:43:21 DEB [mbtiles] - z10 avg:2.5k max:319k
+2:43:21 DEB [mbtiles] - z11 avg:1.2k max:182k
+2:43:21 DEB [mbtiles] - z12 avg:716 max:205k
+2:43:21 DEB [mbtiles] - z13 avg:390 max:266k
+2:43:21 DEB [mbtiles] - z14 avg:354 max:1.7M
+2:43:21 DEB [mbtiles] - all avg:404 max:0
+2:43:21 DEB [mbtiles] - # features: 2,891,994,252
+2:43:21 DEB [mbtiles] - # tiles: 267,503,963
+2:43:21 INF [mbtiles] - Finished in 1h2m21s cpu:14h55m10s gc:3m1s avg:14.4
+2:43:21 INF [mbtiles] - read 1x(35% 21m51s sys:1m41s wait:35m42s done:2s)
+2:43:21 INF [mbtiles] - encode 16x(82% 51m21s sys:2s wait:6m50s done:2s)
+2:43:21 INF [mbtiles] - write 1x(19% 11m56s sys:1m16s wait:48m36s)
+2:43:22 INF - Finished in 2h43m22s cpu:34h53m2s gc:7m1s avg:12.8
+2:43:22 INF - FINISHED!
+2:43:22 INF -
+2:43:22 INF - ----------------------------------------
+2:43:22 INF - overall 2h43m22s cpu:34h53m2s gc:7m1s avg:12.8
+2:43:22 INF - lake_centerlines 2s cpu:5s avg:2.7
+2:43:22 INF - read 1x(86% 1s)
+2:43:22 INF - process 16x(4% 0.1s wait:2s)
+2:43:22 INF - write 1x(0% 0s wait:2s)
+2:43:22 INF - water_polygons 1m28s cpu:17m24s gc:2s avg:11.9
+2:43:22 INF - read 1x(16% 14s wait:1m3s done:4s)
+2:43:22 INF - process 16x(67% 59s wait:24s)
+2:43:22 INF - write 1x(49% 43s sys:4s wait:45s)
+2:43:22 INF - natural_earth 11s cpu:27s avg:2.4
+2:43:22 INF - read 1x(94% 10s sys:2s)
+2:43:22 INF - process 16x(5% 0.6s wait:10s)
+2:43:22 INF - write 1x(0% 0s wait:11s)
+2:43:22 INF - osm_pass1 4m54s cpu:1h6m17s gc:23s avg:13.5
+2:43:22 INF - read 1x(11% 32s sys:26s wait:2m47s done:3s)
+2:43:22 INF - process 15x(78% 3m49s sys:7s block:27s wait:2s)
+2:43:22 INF - osm_pass2 1h27m17s cpu:17h30m33s gc:3m3s avg:12
+2:43:22 INF - read 1x(1% 34s sys:28s wait:1h25m1s done:1m10s)
+2:43:22 INF - process 15x(76% 1h6m8s sys:1m49s block:22s wait:3s)
+2:43:22 INF - write 1x(18% 15m35s sys:1m38s wait:1h11m23s)
+2:43:22 INF - boundaries 18s cpu:23s avg:1.3
+2:43:22 INF - sort 6m45s cpu:1h2m31s gc:31s avg:9.3
+2:43:22 INF - worker 16x(40% 2m41s sys:12s wait:1m2s done:6s)
+2:43:22 INF - mbtiles 1h2m21s cpu:14h55m10s gc:3m1s avg:14.4
+2:43:22 INF - read 1x(35% 21m51s sys:1m41s wait:35m42s done:2s)
+2:43:22 INF - encode 16x(82% 51m21s sys:2s wait:6m50s done:2s)
+2:43:22 INF - write 1x(19% 11m56s sys:1m16s wait:48m36s)
+2:43:22 INF - ----------------------------------------
+2:43:22 INF - features 199GB
+2:43:22 INF - mbtiles 103GB
diff --git a/planet-logs/v0.4.0-planet-c6gd-64gb.txt b/planet-logs/v0.4.0-planet-c6gd-64gb.txt
new file mode 100644
index 00000000..0678b318
--- /dev/null
+++ b/planet-logs/v0.4.0-planet-c6gd-64gb.txt
@@ -0,0 +1,2186 @@
+
+0:00:00 DEB - argument: config=null (path to config file)
+0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
+0:00:00 INF - Using in-memory stats
+0:00:00 INF [overall] -
+0:00:00 INF [overall] - Starting...
+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: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
+0:00:00 DEB - argument: threads=32 (num threads)
+0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
+0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
+0:00:00 DEB - argument: maxzoom=14 (maximum zoom level (limit 14))
+0:00:00 DEB - argument: defer_mbtiles_index_creation=false (skip adding index to mbtiles file)
+0:00:00 DEB - argument: optimize_db=false (optimize mbtiles after writing)
+0:00:00 DEB - argument: emit_tiles_in_order=true (emit tiles in index order)
+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: 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=100 (Size of file chunks to download in parallel in megabytes)
+0:00:00 DEB - argument: download_threads=1 (Number of parallel threads to use when downloading each file)
+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=false (Read OSM blocks from disk in worker threads)
+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=false (download sources)
+0:00:00 DEB - argument: temp_node_db=data/tmp/node.db (temp node db location)
+0:00:00 DEB - argument: temp_multipolygon_db=data/tmp/multipolygon.db (temp multipolygon db location)
+0:00:00 DEB - argument: temp_feature_db=data/tmp/feature.db (temp feature db location)
+0:00:00 DEB - argument: only_fetch_wikidata=false (fetch wikidata translations then quit)
+0:00:00 DEB - argument: fetch_wikidata=false (fetch wikidata translations then continue)
+0:00:00 DEB - argument: use_wikidata=true (use wikidata translations)
+0:00:00 DEB - argument: wikidata_cache=data/sources/wikidata_names.json (wikidata cache file)
+0:00:00 DEB - argument: lake_centerlines_path=data/sources/lake_centerline.shp.zip (lake_centerlines shapefile path)
+0:00:00 DEB - argument: free_lake_centerlines_after_read=false (delete lake_centerlines input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: water_polygons_path=data/sources/water-polygons-split-3857.zip (water_polygons shapefile path)
+0:00:00 DEB - argument: free_water_polygons_after_read=false (delete water_polygons input file after reading to make space for output (reduces peak disk usage))
+0:00:00 DEB - argument: natural_earth_path=data/sources/natural_earth_vector.sqlite.zip (natural_earth sqlite db path)
+0:00:00 DEB - argument: free_natural_earth_after_read=false (delete natural_earth input file after reading to make space for output (reduces peak disk usage))
+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: mbtiles=data/output.mbtiles (mbtiles output file)
+0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
+0:00:00 DEB - argument: languages=am,ar,az,be,bg,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fi,fr,fy,ga,gd,he,hi,hr,hu,hy,id,is,it,ja,ja_kana,ja_rm,ja-Latn,ja-Hira,ka,kk,kn,ko,ko-Latn,ku,la,lb,lt,lv,mk,mt,ml,nl,no,oc,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,zh (languages to use)
+0:00:00 DEB - argument: only_layers= (Include only certain layers)
+0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
+0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
+0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
+0:00:00 DEB - argument: building_merge_z13=true (building layer: merge nearby buildings at z13)
+0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
+0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
+0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
+0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
+0:00:00 DEB - argument: mbtiles_name=OpenMapTiles ('name' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_attribution=© OpenMapTiles © OpenStreetMap contributors ('attribution' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_version=3.13.0 ('version' attribute for mbtiles metadata)
+0:00:00 DEB - argument: mbtiles_type=baselayer ('type' attribute for mbtiles metadata)
+0:00:00 DEB - argument: help=false (show arguments then exit)
+0:00:00 INF - Building BasemapProfile profile into data/output.mbtiles in these phases:
+0:00:00 INF - lake_centerlines: Process features in data/sources/lake_centerline.shp.zip
+0:00:00 INF - water_polygons: Process features in data/sources/water-polygons-split-3857.zip
+0:00:00 INF - natural_earth: Process features in data/sources/natural_earth_vector.sqlite.zip
+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 - sort: Sort rendered features by tile ID
+0:00:00 INF - mbtiles: Encode each tile and write to data/output.mbtiles
+0:00:00 INF - error loading /data/data/sources/wikidata_names.json: java.nio.file.NoSuchFileException: data/sources/wikidata_names.json
+0:00:00 DEB - ✓ 310G storage on /data (/dev/nvme1n1) requested for read phase disk, 1.8T available
+0:00:00 DEB - - 76G used for temporary node location cache
+0:00:00 DEB - - 10G used for temporary multipolygon geometry cache
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - ✓ 335G storage on /data (/dev/nvme1n1) requested for write phase disk, 1.8T available
+0:00:00 DEB - - 223G used for temporary feature storage
+0:00:00 DEB - - 111G used for mbtiles output
+0:00:00 DEB - ✓ 86G storage on /data (/dev/nvme1n1) requested for read phase, 1.8T available
+0:00:00 DEB - - 76G used for array node location cache (switch to sparsearray to reduce size)
+0:00:00 DEB - - 10G used for multipolygon way geometries
+0:00:00 DEB - ✓ 20G JVM heap requested for read phase, 32G available
+0:00:00 DEB - - 20G used for temporary profile storage
+0:00:00 WAR - Planetiler will use ~86G memory-mapped files for node locations and multipolygon geometries but the OS only
+has 34G available to cache pages, this may slow the import down. To speed up, run on a machine with more
+memory or reduce the -Xmx setting.
+
+0:00:00 INF - Using merge sort feature map, chunk size=503mb workers=32
+0:00:01 INF - dataFileCache open start
+0:00:02 INF [lake_centerlines] -
+0:00:02 INF [lake_centerlines] - Starting...
+0:00:03 INF [lake_centerlines] - read: [ 51k 100% 32k/s ] write: [ 0 0/s ] 0
+ cpus: 2.9 gc: 1% heap: 157M/32G direct: 73k postGC: 175M
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/83k) -> write( -%)
+0:00:03 INF [lake_centerlines] - Finished in 2s cpu:5s avg:2.9
+0:00:03 INF [lake_centerlines] - read 1x(87% 1s)
+0:00:03 INF [lake_centerlines] - process 32x(2% 0s wait:2s)
+0:00:03 INF [lake_centerlines] - write 1x(0% 0s wait:2s)
+0:00:03 INF [water_polygons] -
+0:00:03 INF [water_polygons] - Starting...
+0:00:13 INF [water_polygons] - read: [ 2.4k 17% 246/s ] write: [ 14M 1.4M/s ] 824M
+ cpus: 30.6 gc: 6% heap: 6.5G/32G direct: 54M postGC: 3.8G
+ read(80%) -> (979/1k) -> process(85% 87% 86% 81% 88% 87% 82% 85% 81% 82% 84% 86% 83% 87% 84% 80% 80% 84% 83% 85% 80% 86% 90% 88% 84% 83% 81% 85% 81% 78% 78% 81%) -> (16k/83k) -> write(29%)
+0:00:23 INF [water_polygons] - read: [ 5.2k 36% 278/s ] write: [ 30M 1.6M/s ] 1.7G
+ cpus: 31.4 gc: 5% heap: 5.9G/32G direct: 54M postGC: 5.9G
+ read(55%) -> (944/1k) -> process(92% 94% 94% 89% 91% 94% 93% 92% 90% 89% 93% 92% 93% 92% 91% 89% 89% 94% 91% 92% 90% 88% 91% 93% 91% 93% 90% 93% 91% 94% 90% 90%) -> (20k/83k) -> write(33%)
+0:00:33 INF [water_polygons] - read: [ 7.7k 53% 247/s ] write: [ 68M 3.7M/s ] 3.5G
+ cpus: 19.4 gc: 2% heap: 9.2G/32G direct: 54M postGC: 2.1G
+ read( 6%) -> (1k/1k) -> process(52% 63% 47% 91% 52% 52% 58% 51% 51% 52% 50% 67% 51% 59% 52% 55% 52% 50% 54% 53% 52% 58% 51% 59% 76% 47% 51% 60% 77% 55% 54% 53%) -> (79k/83k) -> write(71%)
+0:00:43 INF [water_polygons] - read: [ 10k 70% 233/s ] write: [ 121M 5.3M/s ] 5.8G
+ cpus: 5.4 gc: 0% heap: 10G/32G direct: 54M postGC: 2.1G
+ read( 1%) -> (1k/1k) -> process(13% 13% 13% 13% 14% 13% 13% 13% 13% 13% 13% 14% 14% 13% 13% 14% 13% 13% 13% 13% 13% 13% 13% 13% 13% 14% 13% 13% 13% 14% 13% 14%) -> (80k/83k) -> write(100%)
+0:00:53 INF [water_polygons] - read: [ 12k 86% 233/s ] write: [ 175M 5.3M/s ] 8.2G
+ cpus: 5.4 gc: 0% heap: 11G/32G direct: 54M postGC: 2.1G
+ read( 0%) -> (1k/1k) -> process(13% 14% 13% 13% 13% 13% 13% 13% 14% 14% 13% 13% 13% 13% 13% 13% 13% 13% 14% 13% 14% 13% 13% 14% 13% 14% 13% 13% 13% 13% 14% 14%) -> (80k/83k) -> write(100%)
+0:01:02 INF [water_polygons] - read: [ 14k 100% 232/s ] write: [ 222M 5.3M/s ] 10G
+ cpus: 5.3 gc: 0% heap: 6.3G/32G direct: 54M postGC: 2.1G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/83k) -> write( -%)
+0:01:02 INF [water_polygons] - Finished in 59s cpu:16m11s gc:1s avg:16.5
+0:01:02 INF [water_polygons] - read 1x(24% 14s wait:37s done:4s)
+0:01:02 INF [water_polygons] - process 32x(46% 27s wait:29s)
+0:01:02 INF [water_polygons] - write 1x(71% 42s sys:5s wait:16s)
+0:01:02 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/natearth.sqlite
+0:01:07 INF [natural_earth] -
+0:01:07 INF [natural_earth] - Starting...
+0:01:17 INF [natural_earth] - read: [ 349k 100% 34k/s ] write: [ 18k 1.7k/s ] 10G
+ cpus: 2.8 gc: 0% heap: 11G/32G direct: 54M postGC: 2.1G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% 5% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (15k/83k) -> write( 0%)
+0:01:17 INF [natural_earth] - read: [ 349k 100% 0/s ] write: [ 33k 114k/s ] 10G
+ cpus: 1.7 gc: 0% heap: 11G/32G direct: 54M postGC: 2.1G
+ read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/83k) -> write( -%)
+0:01:17 INF [natural_earth] - Finished in 10s cpu:29s avg:2.7
+0:01:17 INF [natural_earth] - read 1x(93% 10s sys:2s)
+0:01:17 INF [natural_earth] - process 32x(3% 0.3s wait:10s)
+0:01:17 INF [natural_earth] - write 1x(0% 0s wait:10s)
+0:01:17 INF [osm_pass1] -
+0:01:17 INF [osm_pass1] - Starting...
+0:01:27 INF [osm_pass1] - nodes: [ 544M 54M/s ] 6.7G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.1k 119/s ]
+ cpus: 25.2 gc: 3% heap: 6.3G/32G direct: 2.8G postGC: 3.2G hppc: 972
+ read(26%) -> (56/94) -> process(76% 76% 78% 80% 78% 79% 78% 80% 78% 75% 80% 78% 77% 76% 77% 79% 79% 79% 78% 78% 79% 77% 78% 79% 75% 75% 76% 78% 76% 79% 78%)
+0:01:37 INF [osm_pass1] - nodes: [ 1B 48M/s ] 11G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.2k 107/s ]
+ cpus: 21.7 gc: 4% heap: 9.6G/32G direct: 3.8G postGC: 5.4G hppc: 972
+ read(23%) -> (0/94) -> process(65% 67% 64% 67% 67% 64% 65% 64% 66% 64% 66% 65% 67% 67% 64% 68% 68% 67% 69% 68% 64% 67% 67% 65% 64% 63% 67% 68% 63% 69% 64%)
+0:01:47 INF [osm_pass1] - nodes: [ 1.6B 59M/s ] 17G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.4k 114/s ]
+ cpus: 23.5 gc: 4% heap: 16G/32G direct: 4G postGC: 15G hppc: 972
+ read(23%) -> (63/94) -> process(71% 70% 71% 73% 74% 70% 75% 72% 72% 71% 71% 73% 72% 72% 74% 74% 70% 73% 73% 73% 73% 74% 73% 72% 71% 73% 71% 74% 70% 72% 74%)
+0:01:57 INF [osm_pass1] - nodes: [ 2.3B 68M/s ] 24G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.6k 121/s ]
+ cpus: 26.3 gc: 3% heap: 12G/32G direct: 4.2G postGC: 8.4G hppc: 972
+ read(20%) -> (0/94) -> process(81% 83% 81% 82% 81% 82% 81% 82% 81% 81% 83% 81% 80% 83% 81% 80% 81% 83% 82% 81% 82% 81% 82% 82% 82% 83% 83% 84% 82% 80% 81%)
+0:02:07 INF [osm_pass1] - nodes: [ 2.9B 68M/s ] 31G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.6k 103/s ]
+ cpus: 26.9 gc: 7% heap: 14G/32G direct: 4.2G postGC: 10G hppc: 972
+ read(20%) -> (35/94) -> process(81% 82% 79% 80% 81% 82% 82% 81% 80% 80% 83% 81% 81% 81% 81% 82% 80% 82% 80% 81% 82% 80% 82% 82% 80% 81% 82% 80% 81% 82% 80%)
+0:02:17 INF [osm_pass1] - nodes: [ 3.6B 62M/s ] 37G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.5k 91/s ]
+ cpus: 25.2 gc: 10% heap: 4.6G/32G direct: 4.2G postGC: 4.6G hppc: 972
+ read(18%) -> (63/94) -> process(71% 73% 74% 75% 74% 72% 73% 73% 75% 75% 72% 74% 75% 75% 75% 75% 72% 75% 71% 75% 71% 74% 75% 74% 72% 75% 74% 75% 71% 73% 73%)
+0:02:27 INF [osm_pass1] - nodes: [ 4.3B 71M/s ] 44G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.6k 102/s ]
+ cpus: 26.7 gc: 8% heap: 11G/32G direct: 4.2G postGC: 6.1G hppc: 972
+ read(18%) -> (63/94) -> process(80% 82% 82% 79% 79% 79% 79% 78% 77% 79% 80% 82% 82% 81% 79% 79% 77% 80% 80% 80% 80% 79% 80% 81% 79% 79% 81% 81% 80% 79% 79%)
+0:02:37 INF [osm_pass1] - nodes: [ 5B 70M/s ] 51G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.6k 101/s ]
+ cpus: 27 gc: 8% heap: 15G/32G direct: 4.2G postGC: 7.8G hppc: 972
+ read(17%) -> (0/94) -> process(81% 80% 81% 80% 80% 79% 81% 81% 83% 81% 81% 82% 81% 82% 80% 79% 80% 80% 80% 82% 81% 82% 80% 84% 81% 79% 80% 84% 82% 81% 82%)
+0:02:47 INF [osm_pass1] - nodes: [ 5.7B 71M/s ] 58G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.6k 102/s ]
+ cpus: 26.9 gc: 8% heap: 14G/32G direct: 4.2G postGC: 8G hppc: 972
+ read(18%) -> (63/94) -> process(80% 81% 81% 81% 83% 82% 80% 80% 79% 79% 81% 79% 82% 80% 81% 80% 80% 79% 80% 80% 78% 81% 79% 82% 80% 79% 83% 82% 80% 79% 80%)
+0:02:57 INF [osm_pass1] - nodes: [ 6.4B 70M/s ] 65G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 98/s ]
+ cpus: 25.3 gc: 6% heap: 10G/32G direct: 4.2G postGC: 10G hppc: 972
+ read(16%) -> (63/94) -> process(78% 78% 79% 74% 78% 79% 76% 75% 77% 74% 80% 76% 77% 76% 80% 79% 77% 75% 77% 74% 74% 76% 76% 78% 78% 75% 77% 78% 77% 75% 75%)
+0:03:07 INF [osm_pass1] - nodes: [ 7.1B 67M/s ] 72G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 95/s ]
+ cpus: 26.4 gc: 11% heap: 12G/32G direct: 4.2G postGC: 11G hppc: 972
+ read(16%) -> (0/94) -> process(76% 77% 75% 75% 77% 76% 76% 77% 77% 77% 77% 76% 76% 76% 76% 78% 76% 78% 77% 76% 75% 79% 78% 78% 76% 78% 77% 76% 76% 77% 78%)
+0:03:14 INF [osm_pass1:process] - Finished nodes: 7,546,573,682 (65M/s) in 1m56s cpu:49m21s gc:8s avg:25.6
+0:03:17 INF [osm_pass1] - nodes: [ 7.5B 38M/s ] 76G ways: [ 11M 1.1M/s ] rels: [ 0 0/s ] blocks: [ 12k 67/s ]
+ cpus: 20 gc: 7% heap: 14G/32G direct: 4.2G postGC: 13G hppc: 972
+ read(14%) -> (63/94) -> process(53% 63% 56% 61% 59% 64% 64% 58% 52% 56% 60% 52% 59% 57% 58% 59% 73% 56% 61% 59% 53% 57% 58% 52% 52% 54% 60% 52% 57% 72% 59%)
+0:03:27 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 61M 4.9M/s ] rels: [ 0 0/s ] blocks: [ 12k 51/s ]
+ cpus: 14.3 gc: 11% heap: 21G/32G direct: 4.2G postGC: 20G hppc: 972
+ read(13%) -> (63/94) -> process(32% 36% 39% 38% 33% 41% 41% 34% 30% 33% 33% 41% 35% 41% 40% 38% 38% 33% 29% 36% 31% 44% 30% 32% 33% 45% 35% 34% 31% 37% 36%)
+0:03:37 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 114M 5.3M/s ] rels: [ 0 0/s ] blocks: [ 13k 46/s ]
+ cpus: 14.4 gc: 10% heap: 11G/32G direct: 4.2G postGC: 11G hppc: 972
+ read( 9%) -> (63/94) -> process(40% 33% 30% 28% 45% 41% 24% 41% 28% 26% 38% 35% 25% 28% 30% 29% 33% 24% 27% 27% 40% 32% 31% 29% 29% 34% 30% 26% 38% 24% 23%)
+0:03:47 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 174M 5.9M/s ] rels: [ 0 0/s ] blocks: [ 13k 48/s ]
+ cpus: 14.1 gc: 10% heap: 20G/32G direct: 4.2G postGC: 17G hppc: 972
+ read( 9%) -> (63/94) -> process(29% 38% 30% 28% 40% 31% 32% 29% 37% 28% 44% 27% 30% 28% 33% 36% 26% 27% 40% 28% 38% 45% 27% 32% 34% 35% 32% 32% 37% 36% 32%)
+0:03:57 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 246M 7.1M/s ] rels: [ 0 0/s ] blocks: [ 14k 59/s ]
+ cpus: 17.3 gc: 12% heap: 19G/32G direct: 4.2G postGC: 10G hppc: 972
+ read(11%) -> (63/94) -> process(31% 42% 34% 41% 30% 32% 37% 42% 32% 28% 36% 35% 30% 42% 40% 32% 44% 31% 39% 43% 34% 35% 33% 38% 41% 32% 40% 38% 41% 51% 42%)
+0:04:07 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 316M 7M/s ] rels: [ 0 0/s ] blocks: [ 14k 53/s ]
+ cpus: 18.4 gc: 13% heap: 10G/32G direct: 4.2G postGC: 7.2G hppc: 972
+ read( 8%) -> (63/94) -> process(32% 37% 40% 30% 34% 30% 34% 28% 29% 35% 36% 35% 35% 34% 31% 28% 44% 30% 31% 33% 32% 30% 33% 34% 35% 32% 39% 32% 35% 33% 36%)
+0:04:17 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 402M 8.5M/s ] rels: [ 0 0/s ] blocks: [ 15k 63/s ]
+ cpus: 18.3 gc: 14% heap: 15G/32G direct: 4.2G postGC: 14G hppc: 972
+ read( 8%) -> (63/94) -> process(37% 35% 42% 32% 39% 46% 36% 33% 31% 41% 45% 39% 29% 38% 45% 36% 37% 41% 39% 35% 38% 32% 36% 37% 44% 49% 37% 36% 35% 42% 34%)
+0:04:27 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 486M 8.3M/s ] rels: [ 0 0/s ] blocks: [ 16k 57/s ]
+ cpus: 19.1 gc: 13% heap: 11G/32G direct: 4.2G postGC: 9.4G hppc: 972
+ read( 7%) -> (63/94) -> process(40% 37% 39% 36% 40% 34% 32% 39% 40% 31% 31% 33% 32% 36% 37% 32% 30% 28% 37% 30% 36% 33% 31% 31% 38% 32% 32% 33% 34% 28% 41%)
+0:04:37 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 562M 7.6M/s ] rels: [ 0 0/s ] blocks: [ 16k 53/s ]
+ cpus: 21.1 gc: 15% heap: 12G/32G direct: 4.2G postGC: 8.4G hppc: 972
+ read( 7%) -> (63/94) -> process(30% 38% 27% 34% 31% 30% 29% 38% 36% 30% 30% 34% 34% 33% 28% 29% 30% 30% 27% 34% 33% 34% 30% 33% 35% 31% 33% 32% 37% 36% 31%)
+0:04:47 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 635M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 17k 53/s ]
+ cpus: 18.5 gc: 12% heap: 8.1G/32G direct: 4.2G postGC: 7.9G hppc: 972
+ read( 7%) -> (62/94) -> process(35% 31% 36% 31% 32% 31% 33% 37% 33% 38% 30% 32% 28% 38% 36% 34% 32% 31% 32% 32% 28% 33% 33% 43% 31% 31% 39% 37% 34% 28% 32%)
+0:04:57 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 711M 7.5M/s ] rels: [ 0 0/s ] blocks: [ 17k 53/s ]
+ cpus: 19.1 gc: 11% heap: 15G/32G direct: 4.2G postGC: 8.9G hppc: 972
+ read( 6%) -> (63/94) -> process(31% 28% 34% 33% 35% 29% 35% 39% 33% 33% 32% 36% 34% 27% 30% 39% 32% 32% 32% 34% 29% 37% 37% 30% 31% 30% 29% 36% 34% 32% 28%)
+0:05:07 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 800M 8.9M/s ] rels: [ 0 0/s ] blocks: [ 18k 62/s ]
+ cpus: 20.5 gc: 14% heap: 16G/32G direct: 4.2G postGC: 6.2G hppc: 972
+ read( 7%) -> (63/94) -> process(42% 39% 40% 39% 39% 35% 39% 40% 34% 39% 33% 34% 35% 37% 33% 37% 37% 35% 37% 37% 37% 32% 35% 34% 36% 34% 39% 35% 33% 36% 39%)
+0:05:12 INF [osm_pass1:process] - Finished ways: 841,994,745 (7.1M/s) in 1m58s cpu:34m53s gc:14s avg:17.7
+0:05:17 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 4M/s ] rels: [ 4.2M 420k/s ] blocks: [ 18k 35/s ]
+ cpus: 14.5 gc: 8% heap: 11G/32G direct: 4.2G postGC: 6.4G hppc: 564M
+ read( -%) -> (59/94) -> process(26% 26% 29% 29% 26% 26% 31% 29% 27% 28% 29% 25% 25% 27% 27% 26% 28% 27% 28% 24% 29% 28% 27% 26% 29% 27% 30% 27% 26% 30% 26%)
+0:05:23 INF [osm_pass1:process] - Finished relations: 9,718,612 (849k/s) in 11s cpu:1m25s avg:7.5
+0:05:23 INF [osm_pass1] - nodes: [ 7.5B 0/s ] 76G ways: [ 841M 0/s ] rels: [ 9.7M 924k/s ] blocks: [ 18k 15/s ]
+ cpus: 6.9 gc: 4% heap: 5.2G/32G direct: 188M postGC: 5.8G hppc: 1G
+ read( -%) -> (0/94) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:05:23 DEB [osm_pass1] - Processed 18,767 blocks:
+0:05:23 DEB [osm_pass1] - nodes: 7,546,573,682 (65M/s) in 1m56s cpu:49m21s gc:8s avg:25.6
+0:05:23 DEB [osm_pass1] - ways: 841,994,745 (7.1M/s) in 1m58s cpu:34m53s gc:14s avg:17.7
+0:05:23 DEB [osm_pass1] - relations: 9,718,612 (849k/s) in 11s cpu:1m25s avg:7.5
+0:05:23 INF [osm_pass1] - Finished in 4m6s cpu:1h25m55s gc:23s avg:20.9
+0:05:23 INF [osm_pass1] - read 1x(13% 33s sys:27s wait:2m21s done:6s)
+0:05:23 INF [osm_pass1] - process 31x(54% 2m12s sys:6s block:1m20s wait:13s)
+0:05:23 INF [osm_pass2] -
+0:05:23 INF [osm_pass2] - Starting...
+0:05:33 INF [osm_pass2] - nodes: [ 168M 2% 16M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 235M 1.2M/s ] 11G blocks: [ 393 2% 39/s ]
+ cpus: 30.3 gc: 5% heap: 10G/32G direct: 60M postGC: 5.3G relInfo: 1G mpGeoms: 277
+ read(10%) -> (17/48) -> process(86% 88% 90% 89% 86% 86% 86% 88% 88% 90% 86% 89% 87% 92% 87% 87% 84% 89% 86% 92% 91% 89% 88% 88% 91% 90% 90% 89% 90% 91% 90%) -> (18k/82k) -> write(39%)
+0:05:44 INF [osm_pass2] - nodes: [ 323M 4% 15M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 259M 2.3M/s ] 14G blocks: [ 726 4% 33/s ]
+ cpus: 30.4 gc: 4% heap: 9.1G/32G direct: 60M postGC: 5.5G relInfo: 1G mpGeoms: 277
+ read( 8%) -> (17/48) -> process(93% 87% 92% 91% 90% 90% 88% 90% 89% 90% 93% 93% 90% 89% 89% 88% 92% 89% 93% 88% 88% 87% 87% 89% 92% 89% 92% 88% 91% 89% 90%) -> (14k/82k) -> write(76%)
+0:05:54 INF [osm_pass2] - nodes: [ 515M 7% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 271M 1.2M/s ] 16G blocks: [ 1.1k 6% 40/s ]
+ cpus: 30.2 gc: 3% heap: 18G/32G direct: 60M postGC: 8.5G relInfo: 1G mpGeoms: 277
+ read( 8%) -> (2/48) -> process(95% 96% 96% 91% 93% 95% 95% 94% 96% 94% 94% 95% 94% 94% 96% 92% 95% 90% 95% 92% 94% 95% 91% 96% 96% 93% 95% 93% 91% 91% 95%) -> (13k/82k) -> write(39%)
+0:06:04 INF [osm_pass2] - nodes: [ 714M 9% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 279M 777k/s ] 16G blocks: [ 1.5k 8% 45/s ]
+ cpus: 30.6 gc: 3% heap: 18G/32G direct: 60M postGC: 15G relInfo: 1G mpGeoms: 277
+ read(10%) -> (17/48) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (13k/82k) -> write(25%)
+0:06:14 INF [osm_pass2] - nodes: [ 898M 12% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 289M 983k/s ] 17G blocks: [ 1.9k 11% 41/s ]
+ cpus: 29.2 gc: 4% heap: 18G/32G direct: 60M postGC: 6.4G relInfo: 1G mpGeoms: 277
+ read( 9%) -> (17/48) -> process(90% 89% 90% 90% 91% 90% 90% 91% 90% 90% 90% 90% 90% 90% 91% 90% 90% 89% 90% 90% 90% 90% 90% 89% 90% 90% 90% 89% 90% 90% 90%) -> (17k/82k) -> write(31%)
+0:06:24 INF [osm_pass2] - nodes: [ 1B 14% 17M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 298M 887k/s ] 18G blocks: [ 2.3k 13% 35/s ]
+ cpus: 27.5 gc: 2% heap: 9.7G/32G direct: 60M postGC: 7.7G relInfo: 1G mpGeoms: 277
+ read( 7%) -> (17/48) -> process(96% 45% 96% 96% 95% 96% 96% 96% 44% 96% 96% 46% 97% 96% 96% 96% 96% 46% 95% 96% 96% 96% 97% 96% 95% 46% 96% 96% 96% 96% 45%) -> (15k/82k) -> write(27%)
+0:06:34 INF [osm_pass2] - nodes: [ 1.2B 16% 16M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 304M 604k/s ] 19G blocks: [ 2.6k 14% 33/s ]
+ cpus: 25.4 gc: 2% heap: 12G/32G direct: 60M postGC: 8.9G relInfo: 1G mpGeoms: 277
+ read( 7%) -> (17/48) -> process(91% 62% 92% 95% 94% 92% 93% 94% 19% 93% 93% 19% 93% 92% 94% 93% 94% 18% 94% 92% 93% 92% 92% 91% 94% 17% 92% 90% 92% 91% 20%) -> (17k/82k) -> write(19%)
+0:06:44 INF [osm_pass2] - nodes: [ 1.4B 19% 17M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 310M 596k/s ] 19G blocks: [ 3k 16% 33/s ]
+ cpus: 27.2 gc: 3% heap: 14G/32G direct: 60M postGC: 13G relInfo: 1G mpGeoms: 277
+ read( 7%) -> (17/48) -> process(93% 94% 93% 91% 93% 93% 95% 92% 55% 94% 94% 26% 93% 92% 93% 93% 93% 27% 94% 94% 94% 92% 93% 92% 91% 28% 93% 91% 94% 91% 82%) -> (16k/82k) -> write(19%)
+0:06:54 INF [osm_pass2] - nodes: [ 1.5B 21% 17M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 316M 619k/s ] 20G blocks: [ 3.3k 18% 32/s ]
+ cpus: 27.1 gc: 4% heap: 17G/32G direct: 60M postGC: 5.7G relInfo: 1G mpGeoms: 277
+ read( 6%) -> (17/48) -> process(87% 86% 87% 88% 89% 87% 87% 89% 87% 88% 88% 55% 53% 87% 88% 88% 90% 39% 89% 86% 89% 86% 83% 88% 87% 74% 87% 88% 88% 89% 89%) -> (16k/82k) -> write(19%)
+0:07:04 INF [osm_pass2] - nodes: [ 1.7B 24% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 324M 837k/s ] 21G blocks: [ 3.7k 20% 36/s ]
+ cpus: 30.2 gc: 3% heap: 17G/32G direct: 60M postGC: 11G relInfo: 1G mpGeoms: 277
+ read( 7%) -> (17/48) -> process(94% 95% 96% 96% 95% 95% 95% 95% 95% 95% 95% 94% 75% 95% 94% 95% 95% 83% 95% 96% 95% 95% 96% 95% 95% 96% 96% 94% 95% 96% 95%) -> (27k/82k) -> write(26%)
+0:07:14 INF [osm_pass2] - nodes: [ 1.9B 26% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 333M 880k/s ] 22G blocks: [ 4k 22% 33/s ]
+ cpus: 29.1 gc: 5% heap: 9.6G/32G direct: 60M postGC: 6.1G relInfo: 1G mpGeoms: 277
+ read( 6%) -> (17/48) -> process(90% 89% 89% 90% 89% 89% 89% 90% 89% 90% 90% 89% 89% 88% 89% 90% 89% 89% 89% 89% 89% 90% 90% 89% 89% 90% 90% 89% 89% 89% 89%) -> (16k/82k) -> write(28%)
+0:07:24 INF [osm_pass2] - nodes: [ 2.1B 29% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 347M 1.3M/s ] 23G blocks: [ 4.4k 23% 35/s ]
+ cpus: 30.8 gc: 4% heap: 16G/32G direct: 60M postGC: 13G relInfo: 1G mpGeoms: 277
+ read( 6%) -> (17/48) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (22k/82k) -> write(40%)
+0:07:34 INF [osm_pass2] - nodes: [ 2.3B 31% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 359M 1.1M/s ] 24G blocks: [ 4.7k 25% 29/s ]
+ cpus: 29.7 gc: 5% heap: 12G/32G direct: 60M postGC: 11G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 92% 91% 90% 91% 91% 91% 91% 90% 91% 91% 91% 90% 91% 90% 91% 91% 90% 91% 91% 91%) -> (12k/82k) -> write(35%)
+0:07:44 INF [osm_pass2] - nodes: [ 2.5B 34% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 365M 640k/s ] 24G blocks: [ 4.9k 27% 29/s ]
+ cpus: 29.6 gc: 5% heap: 14G/32G direct: 60M postGC: 10G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (16/48) -> process(91% 92% 91% 91% 91% 92% 91% 91% 92% 91% 91% 91% 91% 91% 92% 91% 91% 92% 92% 91% 91% 91% 89% 91% 91% 92% 91% 91% 92% 91% 92%) -> (21k/82k) -> write(20%)
+0:07:54 INF [osm_pass2] - nodes: [ 2.7B 36% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 371M 623k/s ] 25G blocks: [ 5.2k 28% 28/s ]
+ cpus: 29.3 gc: 5% heap: 9.9G/32G direct: 60M postGC: 9.6G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 90% 90% 90% 91% 91% 90% 90% 86% 91% 91% 90% 91% 91% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 91% 90% 90% 90% 90% 90% 90%) -> (15k/82k) -> write(19%)
+0:08:04 INF [osm_pass2] - nodes: [ 2.9B 39% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 378M 616k/s ] 25G blocks: [ 5.5k 30% 29/s ]
+ cpus: 29.5 gc: 5% heap: 14G/32G direct: 60M postGC: 8.8G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 90% 91%) -> (16k/82k) -> write(19%)
+0:08:14 INF [osm_pass2] - nodes: [ 3.1B 41% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 383M 510k/s ] 26G blocks: [ 5.8k 31% 27/s ]
+ cpus: 29.2 gc: 5% heap: 8.2G/32G direct: 60M postGC: 7G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(90% 89% 90% 90% 90% 90% 90% 90% 90% 90% 90% 91% 90% 89% 90% 90% 90% 91% 91% 90% 91% 90% 91% 90% 88% 90% 91% 90% 90% 90% 91%) -> (16k/82k) -> write(17%)
+0:08:24 INF [osm_pass2] - nodes: [ 3.3B 44% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 388M 546k/s ] 26G blocks: [ 6.1k 33% 29/s ]
+ cpus: 29.7 gc: 5% heap: 20G/32G direct: 60M postGC: 19G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 92% 92% 92% 92% 91% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 93% 92% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (17k/82k) -> write(18%)
+0:08:34 INF [osm_pass2] - nodes: [ 3.5B 47% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 396M 789k/s ] 27G blocks: [ 6.4k 34% 27/s ]
+ cpus: 29.4 gc: 4% heap: 16G/32G direct: 60M postGC: 14G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 85% 92% 88% 90% 91% 90% 90% 92% 90% 90% 90% 91% 91% 89% 91% 90% 91% 90% 90% 90% 91% 90% 91% 90% 89% 90% 91% 89% 90% 91%) -> (17k/82k) -> write(25%)
+0:08:44 INF [osm_pass2] - nodes: [ 3.7B 49% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 403M 664k/s ] 28G blocks: [ 6.7k 36% 27/s ]
+ cpus: 29.3 gc: 5% heap: 16G/32G direct: 60M postGC: 12G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 91% 90% 90% 91% 90% 89% 90% 90% 90% 89% 90% 90% 89% 90% 90% 89% 91% 90% 90% 90% 90% 91% 90% 90% 90% 90% 90% 90% 90% 89%) -> (13k/82k) -> write(21%)
+0:08:54 INF [osm_pass2] - nodes: [ 3.9B 52% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 407M 463k/s ] 28G blocks: [ 6.9k 37% 27/s ]
+ cpus: 29 gc: 5% heap: 14G/32G direct: 60M postGC: 11G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (16/48) -> process(88% 90% 90% 90% 88% 89% 89% 90% 89% 89% 89% 88% 88% 90% 91% 89% 89% 89% 89% 90% 91% 89% 89% 90% 89% 89% 89% 88% 88% 90% 90%) -> (16k/82k) -> write(15%)
+0:09:04 INF [osm_pass2] - nodes: [ 4B 54% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 413M 533k/s ] 29G blocks: [ 7.2k 39% 27/s ]
+ cpus: 28.2 gc: 5% heap: 12G/32G direct: 60M postGC: 12G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(86% 86% 86% 88% 85% 85% 87% 87% 86% 88% 87% 89% 87% 84% 86% 87% 88% 86% 89% 87% 85% 86% 89% 87% 89% 88% 87% 86% 87% 88% 89%) -> (17k/82k) -> write(17%)
+0:09:14 INF [osm_pass2] - nodes: [ 4.2B 57% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 419M 608k/s ] 30G blocks: [ 7.5k 40% 26/s ]
+ cpus: 28.5 gc: 5% heap: 16G/32G direct: 60M postGC: 11G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(89% 89% 87% 86% 88% 87% 87% 86% 87% 89% 88% 88% 89% 88% 87% 90% 87% 88% 87% 89% 89% 86% 89% 89% 87% 87% 88% 88% 88% 89% 88%) -> (17k/82k) -> write(19%)
+0:09:24 INF [osm_pass2] - nodes: [ 4.4B 59% 18M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 425M 615k/s ] 30G blocks: [ 7.8k 42% 27/s ]
+ cpus: 29.3 gc: 4% heap: 18G/32G direct: 60M postGC: 11G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 90% 91% 90% 91% 91% 91% 90% 90% 90% 91% 90% 91% 89% 90% 90% 90% 91% 90% 91% 90% 90% 89% 90% 91% 90% 91% 90% 90% 91% 92%) -> (18k/82k) -> write(19%)
+0:09:34 INF [osm_pass2] - nodes: [ 4.6B 62% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 430M 532k/s ] 31G blocks: [ 8k 43% 28/s ]
+ cpus: 29.4 gc: 5% heap: 14G/32G direct: 60M postGC: 8G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (16/48) -> process(91% 91% 91% 91% 91% 89% 90% 90% 90% 91% 91% 90% 91% 90% 90% 90% 91% 90% 90% 91% 89% 91% 91% 90% 90% 91% 90% 90% 91% 91% 91%) -> (22k/82k) -> write(16%)
+0:09:44 INF [osm_pass2] - nodes: [ 4.8B 65% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 435M 507k/s ] 31G blocks: [ 8.3k 45% 28/s ]
+ cpus: 29.2 gc: 5% heap: 13G/32G direct: 60M postGC: 8.3G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(90% 90% 90% 90% 90% 90% 88% 89% 90% 90% 90% 90% 90% 90% 89% 89% 90% 89% 90% 90% 90% 89% 90% 89% 89% 90% 90% 90% 90% 90% 91%) -> (15k/82k) -> write(16%)
+0:09:54 INF [osm_pass2] - nodes: [ 5B 67% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 440M 478k/s ] 31G blocks: [ 8.6k 46% 27/s ]
+ cpus: 29 gc: 5% heap: 10G/32G direct: 60M postGC: 9.8G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(90% 90% 89% 89% 89% 90% 89% 90% 90% 89% 90% 90% 89% 88% 90% 89% 89% 89% 89% 89% 87% 89% 89% 90% 88% 89% 89% 88% 89% 89% 89%) -> (13k/82k) -> write(15%)
+0:10:04 INF [osm_pass2] - nodes: [ 5.2B 70% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 445M 456k/s ] 32G blocks: [ 8.9k 48% 28/s ]
+ cpus: 29.3 gc: 5% heap: 13G/32G direct: 60M postGC: 12G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(90% 91% 90% 91% 90% 90% 90% 90% 90% 90% 91% 90% 90% 91% 90% 90% 91% 90% 90% 90% 90% 90% 90% 90% 90% 91% 90% 90% 90% 90% 90%) -> (17k/82k) -> write(14%)
+0:10:14 INF [osm_pass2] - nodes: [ 5.4B 72% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 451M 620k/s ] 32G blocks: [ 9.2k 49% 27/s ]
+ cpus: 28.8 gc: 5% heap: 14G/32G direct: 60M postGC: 14G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (16/48) -> process(88% 89% 89% 89% 87% 88% 89% 88% 88% 89% 89% 89% 90% 88% 89% 90% 88% 89% 88% 88% 89% 89% 88% 89% 88% 87% 88% 88% 89% 89% 88%) -> (24k/82k) -> write(19%)
+0:10:24 INF [osm_pass2] - nodes: [ 5.6B 75% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 457M 598k/s ] 33G blocks: [ 9.4k 50% 27/s ]
+ cpus: 28.8 gc: 5% heap: 16G/32G direct: 60M postGC: 16G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (17/48) -> process(89% 89% 87% 90% 89% 87% 88% 88% 88% 89% 88% 89% 89% 89% 88% 88% 89% 89% 88% 86% 88% 89% 89% 89% 89% 89% 89% 89% 88% 89% 88%) -> (14k/82k) -> write(18%)
+0:10:34 INF [osm_pass2] - nodes: [ 5.8B 77% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 464M 681k/s ] 34G blocks: [ 9.7k 52% 27/s ]
+ cpus: 29 gc: 5% heap: 5.7G/32G direct: 60M postGC: 4.9G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(88% 88% 88% 89% 89% 89% 89% 89% 87% 88% 88% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89% 89% 89% 90% 89% 88% 89% 89% 88% 89% 90%) -> (16k/82k) -> write(21%)
+0:10:44 INF [osm_pass2] - nodes: [ 6B 80% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 469M 486k/s ] 34G blocks: [ 10k 53% 27/s ]
+ cpus: 29.6 gc: 4% heap: 15G/32G direct: 60M postGC: 6G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(92% 92% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 91% 92% 92% 92% 92% 92% 91% 92% 91% 92% 91% 92% 92%) -> (15k/82k) -> write(15%)
+0:10:54 INF [osm_pass2] - nodes: [ 6.2B 83% 20M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 474M 512k/s ] 35G blocks: [ 10k 55% 28/s ]
+ cpus: 29.6 gc: 5% heap: 6.2G/32G direct: 60M postGC: 4.6G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 91% 91% 91% 89% 91% 90% 91% 92% 92% 92% 92% 91% 92% 92% 91% 91% 91% 92% 91% 91% 92% 89% 91% 90% 91% 92% 91% 91% 91% 91%) -> (16k/82k) -> write(16%)
+0:11:04 INF [osm_pass2] - nodes: [ 6.4B 85% 20M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 479M 490k/s ] 35G blocks: [ 10k 56% 28/s ]
+ cpus: 30.2 gc: 4% heap: 17G/32G direct: 60M postGC: 17G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(94% 93% 94% 93% 93% 93% 94% 93% 93% 94% 93% 94% 93% 94% 94% 93% 94% 94% 94% 94% 93% 94% 93% 93% 94% 94% 93% 93% 92% 94% 94%) -> (20k/82k) -> write(16%)
+0:11:14 INF [osm_pass2] - nodes: [ 6.6B 88% 19M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 486M 705k/s ] 36G blocks: [ 10k 58% 28/s ]
+ cpus: 29.6 gc: 5% heap: 14G/32G direct: 60M postGC: 14G relInfo: 1G mpGeoms: 277
+ read( 5%) -> (17/48) -> process(91% 91% 91% 92% 92% 91% 91% 91% 91% 91% 91% 92% 90% 91% 91% 92% 91% 92% 91% 91% 91% 91% 90% 91% 91% 90% 91% 91% 91% 91% 91%) -> (13k/82k) -> write(22%)
+0:11:24 INF [osm_pass2] - nodes: [ 6.8B 90% 17M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 493M 690k/s ] 36G blocks: [ 11k 59% 24/s ]
+ cpus: 26.4 gc: 4% heap: 13G/32G direct: 60M postGC: 12G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (17/48) -> process(86% 75% 87% 76% 92% 84% 74% 88% 90% 75% 87% 72% 78% 90% 70% 79% 86% 78% 90% 74% 90% 80% 72% 81% 78% 91% 86% 83% 71% 78% 83%) -> (20k/82k) -> write(20%)
+0:11:34 INF [osm_pass2] - nodes: [ 6.9B 92% 11M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 498M 491k/s ] 37G blocks: [ 11k 60% 16/s ]
+ cpus: 18 gc: 3% heap: 16G/32G direct: 60M postGC: 6.8G relInfo: 1G mpGeoms: 277
+ read( 2%) -> (17/48) -> process(81% 41% 61% 62% 78% 65% 72% 61% 76% 11% 52% 15% 10% 51% 63% 27% 80% 56% 46% 49% 85% 44% 37% 70% 56% 83% 85% 43% 13% 55% 79%) -> (13k/82k) -> write(14%)
+0:11:44 INF [osm_pass2] - nodes: [ 7B 94% 15M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 491k/s ] 37G blocks: [ 11k 61% 21/s ]
+ cpus: 23.3 gc: 3% heap: 13G/32G direct: 60M postGC: 12G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (17/48) -> process(55% 66% 73% 84% 75% 67% 77% 79% 82% 40% 76% 66% 71% 63% 85% 73% 85% 76% 78% 81% 78% 66% 90% 45% 83% 63% 76% 77% 34% 88% 84%) -> (12k/82k) -> write(15%)
+0:11:54 INF [osm_pass2] - nodes: [ 7.2B 96% 16M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 506M 379k/s ] 37G blocks: [ 11k 63% 23/s ]
+ cpus: 24.8 gc: 4% heap: 9.5G/32G direct: 60M postGC: 8.6G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (16/48) -> process(85% 85% 71% 73% 73% 86% 88% 76% 86% 79% 84% 80% 81% 62% 76% 56% 77% 74% 85% 57% 86% 65% 85% 80% 75% 75% 68% 62% 70% 79% 88%) -> (15k/82k) -> write(12%)
+0:12:04 INF [osm_pass2] - nodes: [ 7.4B 99% 20M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 511M 462k/s ] 38G blocks: [ 12k 64% 27/s ]
+ cpus: 29.5 gc: 5% heap: 10G/32G direct: 60M postGC: 10G relInfo: 1G mpGeoms: 277
+ read( 4%) -> (17/48) -> process(91% 91% 91% 91% 92% 91% 90% 90% 91% 91% 90% 91% 91% 91% 91% 91% 91% 90% 91% 88% 91% 90% 91% 91% 91% 91% 91% 89% 91% 90% 91%) -> (16k/82k) -> write(15%)
+0:12:09 DEB [osm_pass2:process] - Sorting long long multimap...
+0:12:10 INF [osm_pass2:process] - Finished nodes: 7,546,573,682 (18M/s) in 6m46s cpu:3h13m18s gc:17s avg:28.5
+0:12:14 INF [osm_pass2] - nodes: [ 7.5B 100% 9.2M/s ] 76G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 514M 298k/s ] 38G blocks: [ 12k 65% 14/s ]
+ cpus: 15.6 gc: 3% heap: 12G/32G direct: 60M postGC: 4.5G relInfo: 1G mpGeoms: 277
+ read( 3%) -> (17/48) -> process(41% 41% 47% 48% 42% 42% 42% 46% 44% 46% 39% 44% 46% 42% 46% 42% 41% 44% 43% 46% 91% 40% 44% 48% 49% 41% 45% 42% 42% 39% 46%) -> (15k/82k) -> write( 9%)
+0:12:14 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:34s avg:5.8
+0:12:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 1.9M 0% 192k/s ] rels: [ 0 0% 0/s ] features: [ 527M 1.2M/s ] 39G blocks: [ 12k 65% <1/s ]
+ cpus: 13.6 gc: 1% heap: 9.5G/32G direct: 62M postGC: 5.8G relInfo: 962M mpGeoms: 23M
+ read( 0%) -> (17/48) -> process(31% 30% 49% 46% 38% 44% 30% 46% 40% 46% 33% 43% 43% 39% 45% 37% 29% 36% 45% 43% 32% 31% 49% 40% 29% 38% 38% 43% 48% 30% 46%) -> (15k/82k) -> write(42%)
+0:12:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 4.2M 1% 235k/s ] rels: [ 0 0% 0/s ] features: [ 542M 1.5M/s ] 41G blocks: [ 12k 65% 3/s ]
+ cpus: 15.6 gc: 3% heap: 9.9G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 47M
+ read( 1%) -> (17/48) -> process(37% 39% 45% 47% 57% 49% 40% 47% 51% 49% 52% 52% 52% 52% 61% 49% 39% 52% 49% 50% 37% 40% 48% 40% 34% 42% 48% 51% 42% 41% 51%) -> (14k/82k) -> write(52%)
+0:12:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 7.6M 1% 340k/s ] rels: [ 0 0% 0/s ] features: [ 563M 2M/s ] 43G blocks: [ 12k 65% 4/s ]
+ cpus: 20 gc: 5% heap: 13G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 81M
+ read( 1%) -> (17/48) -> process(53% 58% 55% 62% 54% 67% 52% 63% 56% 53% 56% 57% 59% 62% 60% 62% 59% 62% 56% 61% 56% 59% 61% 59% 58% 62% 55% 56% 63% 52% 64%) -> (16k/82k) -> write(69%)
+0:12:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 10M 1% 301k/s ] rels: [ 0 0% 0/s ] features: [ 581M 1.8M/s ] 44G blocks: [ 12k 65% 3/s ]
+ cpus: 17.1 gc: 4% heap: 14G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 90M
+ read( 1%) -> (17/48) -> process(52% 51% 55% 47% 49% 51% 53% 57% 48% 50% 48% 49% 49% 54% 56% 51% 47% 48% 45% 48% 48% 52% 49% 52% 51% 41% 52% 49% 54% 52% 54%) -> (14k/82k) -> write(60%)
+0:13:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 13M 2% 324k/s ] rels: [ 0 0% 0/s ] features: [ 600M 1.9M/s ] 46G blocks: [ 12k 66% 4/s ]
+ cpus: 20 gc: 5% heap: 15G/32G direct: 62M postGC: 15G relInfo: 962M mpGeoms: 137M
+ read( 1%) -> (17/48) -> process(57% 65% 57% 53% 57% 65% 53% 56% 58% 60% 56% 59% 55% 55% 64% 58% 53% 59% 61% 62% 57% 58% 59% 57% 61% 61% 61% 60% 61% 68% 54%) -> (15k/82k) -> write(62%)
+0:13:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 16M 2% 210k/s ] rels: [ 0 0% 0/s ] features: [ 613M 1.2M/s ] 47G blocks: [ 12k 66% 2/s ]
+ cpus: 18 gc: 3% heap: 7.7G/32G direct: 62M postGC: 4.8G relInfo: 962M mpGeoms: 199M
+ read( 1%) -> (17/48) -> process(52% 51% 51% 53% 54% 52% 51% 53% 52% 53% 56% 50% 55% 51% 50% 51% 53% 53% 52% 63% 56% 53% 51% 63% 50% 50% 50% 54% 52% 50% 53%) -> (15k/82k) -> write(42%)
+0:13:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 18M 2% 229k/s ] rels: [ 0 0% 0/s ] features: [ 626M 1.2M/s ] 49G blocks: [ 12k 66% 2/s ]
+ cpus: 17.4 gc: 3% heap: 11G/32G direct: 62M postGC: 6.1G relInfo: 962M mpGeoms: 248M
+ read( 1%) -> (17/48) -> process(49% 50% 50% 52% 52% 53% 53% 49% 47% 50% 51% 68% 51% 50% 65% 52% 49% 50% 53% 53% 51% 50% 51% 49% 63% 49% 63% 49% 54% 49% 53%) -> (15k/82k) -> write(43%)
+0:13:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 21M 3% 314k/s ] rels: [ 0 0% 0/s ] features: [ 643M 1.6M/s ] 50G blocks: [ 12k 66% 3/s ]
+ cpus: 23.2 gc: 4% heap: 9.1G/32G direct: 62M postGC: 9.1G relInfo: 962M mpGeoms: 334M
+ read( 1%) -> (17/48) -> process(71% 67% 72% 71% 68% 66% 75% 71% 74% 70% 72% 75% 65% 74% 68% 68% 68% 69% 67% 66% 68% 73% 67% 67% 71% 70% 70% 69% 65% 71% 74%) -> (19k/82k) -> write(57%)
+0:13:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 25M 3% 365k/s ] rels: [ 0 0% 0/s ] features: [ 659M 1.6M/s ] 52G blocks: [ 12k 66% 3/s ]
+ cpus: 24.9 gc: 5% heap: 14G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 412M
+ read( 1%) -> (17/48) -> process(71% 76% 86% 68% 75% 74% 85% 73% 85% 69% 76% 79% 71% 75% 73% 70% 72% 71% 72% 74% 76% 72% 72% 73% 70% 77% 87% 69% 73% 79% 75%) -> (18k/82k) -> write(56%)
+0:13:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 27M 3% 243k/s ] rels: [ 0 0% 0/s ] features: [ 670M 1.1M/s ] 53G blocks: [ 12k 66% 2/s ]
+ cpus: 21.8 gc: 4% heap: 15G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 499M
+ read( 1%) -> (17/48) -> process(70% 71% 72% 68% 63% 65% 61% 64% 63% 64% 68% 65% 66% 73% 64% 67% 65% 60% 63% 63% 63% 62% 70% 73% 61% 71% 66% 63% 63% 65% 74%) -> (16k/82k) -> write(39%)
+0:14:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 30M 4% 302k/s ] rels: [ 0 0% 0/s ] features: [ 683M 1.3M/s ] 54G blocks: [ 12k 67% 2/s ]
+ cpus: 26.3 gc: 6% heap: 16G/32G direct: 62M postGC: 15G relInfo: 962M mpGeoms: 592M
+ read( 1%) -> (17/48) -> process(79% 87% 83% 84% 75% 88% 76% 78% 78% 76% 82% 75% 75% 75% 90% 79% 75% 81% 74% 77% 78% 73% 84% 87% 74% 85% 76% 78% 77% 79% 86%) -> (17k/82k) -> write(46%)
+0:14:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 33M 4% 324k/s ] rels: [ 0 0% 0/s ] features: [ 696M 1.3M/s ] 55G blocks: [ 12k 67% 3/s ]
+ cpus: 25 gc: 6% heap: 18G/32G direct: 62M postGC: 17G relInfo: 962M mpGeoms: 654M
+ read( 1%) -> (17/48) -> process(80% 74% 76% 79% 76% 77% 75% 74% 73% 73% 73% 73% 73% 74% 76% 74% 77% 75% 73% 77% 74% 73% 79% 82% 71% 84% 73% 78% 75% 72% 75%) -> (18k/82k) -> write(46%)
+0:14:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 36M 4% 305k/s ] rels: [ 0 0% 0/s ] features: [ 707M 1M/s ] 56G blocks: [ 12k 67% 3/s ]
+ cpus: 22.6 gc: 6% heap: 20G/32G direct: 62M postGC: 20G relInfo: 962M mpGeoms: 710M
+ read( 1%) -> (17/48) -> process(76% 58% 69% 67% 61% 71% 50% 50% 70% 78% 79% 77% 58% 77% 74% 73% 73% 56% 77% 76% 56% 54% 74% 75% 74% 48% 75% 51% 73% 77% 76%) -> (14k/82k) -> write(38%)
+0:14:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 41M 5% 409k/s ] rels: [ 0 0% 0/s ] features: [ 719M 1.1M/s ] 57G blocks: [ 12k 67% 3/s ]
+ cpus: 24.5 gc: 5% heap: 12G/32G direct: 62M postGC: 6.1G relInfo: 962M mpGeoms: 744M
+ read( 1%) -> (17/48) -> process(83% 79% 82% 58% 56% 79% 50% 59% 75% 77% 81% 80% 53% 66% 81% 69% 78% 55% 73% 79% 67% 82% 79% 83% 75% 78% 83% 50% 81% 80% 84%) -> (17k/82k) -> write(40%)
+0:14:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 45M 5% 480k/s ] rels: [ 0 0% 0/s ] features: [ 732M 1.3M/s ] 57G blocks: [ 12k 67% 4/s ]
+ cpus: 25.8 gc: 6% heap: 19G/32G direct: 62M postGC: 9.2G relInfo: 962M mpGeoms: 788M
+ read( 1%) -> (17/48) -> process(75% 79% 77% 79% 75% 77% 80% 78% 80% 80% 79% 78% 76% 80% 76% 76% 77% 80% 77% 79% 79% 76% 78% 76% 77% 75% 77% 74% 78% 80% 77%) -> (16k/82k) -> write(47%)
+0:14:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 50M 6% 461k/s ] rels: [ 0 0% 0/s ] features: [ 745M 1.2M/s ] 58G blocks: [ 12k 68% 4/s ]
+ cpus: 26 gc: 6% heap: 13G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 842M
+ read( 1%) -> (17/48) -> process(76% 76% 76% 75% 78% 79% 79% 79% 79% 78% 80% 79% 76% 77% 79% 78% 77% 76% 78% 80% 79% 81% 77% 78% 75% 76% 82% 79% 76% 77% 77%) -> (14k/82k) -> write(45%)
+0:15:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 54M 7% 437k/s ] rels: [ 0 0% 0/s ] features: [ 758M 1.2M/s ] 59G blocks: [ 12k 68% 3/s ]
+ cpus: 26 gc: 5% heap: 20G/32G direct: 62M postGC: 15G relInfo: 962M mpGeoms: 896M
+ read( 1%) -> (17/48) -> process(79% 81% 79% 82% 80% 79% 80% 80% 79% 78% 76% 77% 78% 76% 76% 79% 77% 80% 77% 80% 79% 81% 76% 80% 79% 78% 79% 79% 77% 76% 81%) -> (16k/82k) -> write(46%)
+0:15:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 58M 7% 355k/s ] rels: [ 0 0% 0/s ] features: [ 769M 1.1M/s ] 60G blocks: [ 12k 68% 3/s ]
+ cpus: 26.3 gc: 5% heap: 22G/32G direct: 62M postGC: 17G relInfo: 962M mpGeoms: 974M
+ read( 1%) -> (17/48) -> process(80% 79% 81% 78% 84% 84% 83% 79% 83% 82% 81% 82% 80% 78% 79% 78% 85% 84% 78% 80% 80% 79% 80% 76% 77% 79% 79% 79% 79% 78% 79%) -> (17k/82k) -> write(40%)
+0:15:24 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 62M 7% 372k/s ] rels: [ 0 0% 0/s ] features: [ 781M 1.1M/s ] 61G blocks: [ 12k 68% 4/s ]
+ cpus: 25.7 gc: 6% heap: 21G/32G direct: 62M postGC: 20G relInfo: 962M mpGeoms: 1G
+ read( 1%) -> (17/48) -> process(77% 75% 79% 78% 78% 79% 80% 76% 81% 78% 76% 80% 74% 77% 75% 76% 84% 89% 75% 74% 77% 79% 74% 75% 77% 76% 80% 77% 76% 73% 76%) -> (15k/82k) -> write(41%)
+0:15:34 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 65M 8% 359k/s ] rels: [ 0 0% 0/s ] features: [ 792M 1.1M/s ] 62G blocks: [ 12k 68% 3/s ]
+ cpus: 24.8 gc: 5% heap: 23G/32G direct: 62M postGC: 22G relInfo: 962M mpGeoms: 1G
+ read( 1%) -> (17/48) -> process(75% 74% 74% 80% 80% 76% 76% 71% 75% 75% 75% 73% 76% 73% 74% 74% 76% 74% 71% 74% 74% 72% 78% 73% 73% 72% 78% 80% 74% 73% 75%) -> (26k/82k) -> write(40%)
+0:15:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 69M 8% 385k/s ] rels: [ 0 0% 0/s ] features: [ 804M 1.2M/s ] 63G blocks: [ 12k 69% 3/s ]
+ cpus: 24.8 gc: 4% heap: 14G/32G direct: 62M postGC: 5.5G relInfo: 962M mpGeoms: 1.1G
+ read( 1%) -> (17/48) -> process(72% 72% 72% 72% 75% 74% 74% 76% 76% 76% 75% 76% 75% 75% 76% 74% 74% 75% 75% 78% 73% 71% 73% 78% 71% 75% 73% 72% 73% 72% 76%) -> (18k/82k) -> write(41%)
+0:15:54 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 73M 9% 409k/s ] rels: [ 0 0% 0/s ] features: [ 817M 1.3M/s ] 64G blocks: [ 12k 69% 3/s ]
+ cpus: 25.1 gc: 4% heap: 14G/32G direct: 62M postGC: 7.9G relInfo: 962M mpGeoms: 1.2G
+ read( 1%) -> (17/48) -> process(74% 78% 76% 77% 74% 79% 82% 79% 77% 75% 79% 73% 77% 75% 76% 74% 78% 75% 78% 77% 75% 77% 77% 78% 80% 73% 76% 77% 77% 74% 76%) -> (18k/82k) -> write(46%)
+0:16:04 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 78M 9% 457k/s ] rels: [ 0 0% 0/s ] features: [ 832M 1.4M/s ] 65G blocks: [ 12k 69% 4/s ]
+ cpus: 25.1 gc: 6% heap: 15G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 1.2G
+ read( 1%) -> (17/48) -> process(76% 74% 76% 77% 73% 75% 75% 76% 73% 77% 77% 75% 79% 74% 77% 75% 80% 74% 78% 75% 72% 75% 72% 74% 77% 75% 73% 68% 77% 77% 74%) -> (15k/82k) -> write(50%)
+0:16:14 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 82M 10% 447k/s ] rels: [ 0 0% 0/s ] features: [ 846M 1.4M/s ] 66G blocks: [ 12k 69% 4/s ]
+ cpus: 24.8 gc: 6% heap: 16G/32G direct: 62M postGC: 14G relInfo: 962M mpGeoms: 1.2G
+ read( 1%) -> (17/48) -> process(73% 74% 75% 75% 75% 75% 76% 74% 73% 75% 74% 73% 75% 74% 74% 73% 73% 73% 74% 75% 75% 73% 74% 75% 78% 75% 73% 74% 79% 72% 75%) -> (15k/82k) -> write(50%)
+0:16:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 87M 10% 469k/s ] rels: [ 0 0% 0/s ] features: [ 862M 1.5M/s ] 67G blocks: [ 13k 69% 3/s ]
+ cpus: 25.2 gc: 5% heap: 16G/32G direct: 62M postGC: 16G relInfo: 962M mpGeoms: 1.3G
+ read( 1%) -> (17/48) -> process(76% 75% 78% 77% 75% 78% 76% 76% 74% 77% 78% 76% 75% 72% 71% 77% 75% 75% 76% 75% 76% 75% 77% 78% 76% 77% 78% 75% 78% 75% 77%) -> (17k/82k) -> write(52%)
+0:16:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 91M 11% 436k/s ] rels: [ 0 0% 0/s ] features: [ 876M 1.3M/s ] 68G blocks: [ 13k 70% 3/s ]
+ cpus: 24.3 gc: 5% heap: 21G/32G direct: 62M postGC: 19G relInfo: 962M mpGeoms: 1.3G
+ read( 1%) -> (17/48) -> process(75% 73% 74% 72% 73% 73% 71% 73% 72% 72% 72% 74% 73% 75% 72% 76% 72% 73% 75% 76% 73% 72% 73% 74% 71% 73% 72% 75% 77% 74% 74%) -> (16k/82k) -> write(48%)
+0:16:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 95M 11% 370k/s ] rels: [ 0 0% 0/s ] features: [ 887M 1.1M/s ] 68G blocks: [ 13k 70% 3/s ]
+ cpus: 22.5 gc: 5% heap: 22G/32G direct: 62M postGC: 21G relInfo: 962M mpGeoms: 1.4G
+ read( 1%) -> (17/48) -> process(66% 68% 68% 66% 69% 67% 68% 75% 66% 70% 71% 73% 66% 66% 66% 71% 70% 65% 66% 68% 67% 65% 70% 66% 69% 67% 68% 67% 69% 69% 66%) -> (18k/82k) -> write(40%)
+0:16:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 99M 12% 427k/s ] rels: [ 0 0% 0/s ] features: [ 900M 1.3M/s ] 69G blocks: [ 13k 70% 3/s ]
+ cpus: 26.1 gc: 7% heap: 25G/32G direct: 62M postGC: 24G relInfo: 962M mpGeoms: 1.4G
+ read( 1%) -> (17/48) -> process(78% 81% 79% 79% 79% 79% 79% 80% 76% 77% 76% 76% 78% 79% 78% 78% 79% 79% 77% 79% 78% 81% 78% 77% 78% 79% 78% 76% 79% 80% 79%) -> (15k/82k) -> write(45%)
+0:17:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 104M 12% 436k/s ] rels: [ 0 0% 0/s ] features: [ 914M 1.3M/s ] 70G blocks: [ 13k 70% 3/s ]
+ cpus: 26 gc: 5% heap: 13G/32G direct: 62M postGC: 6.7G relInfo: 962M mpGeoms: 1.6G
+ read( 1%) -> (17/48) -> process(76% 78% 78% 77% 77% 75% 75% 83% 80% 77% 78% 75% 79% 76% 81% 77% 79% 77% 78% 76% 80% 77% 76% 72% 80% 75% 76% 81% 77% 81% 76%) -> (22k/82k) -> write(47%)
+0:17:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 108M 13% 441k/s ] rels: [ 0 0% 0/s ] features: [ 928M 1.3M/s ] 71G blocks: [ 13k 70% 3/s ]
+ cpus: 25.1 gc: 5% heap: 22G/32G direct: 62M postGC: 9.5G relInfo: 962M mpGeoms: 1.6G
+ read( 1%) -> (17/48) -> process(75% 74% 75% 74% 77% 77% 74% 76% 75% 76% 73% 74% 74% 77% 76% 76% 75% 74% 76% 77% 74% 75% 79% 74% 74% 76% 77% 76% 76% 75% 75%) -> (17k/82k) -> write(48%)
+0:17:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 113M 13% 439k/s ] rels: [ 0 0% 0/s ] features: [ 942M 1.3M/s ] 72G blocks: [ 13k 71% 3/s ]
+ cpus: 24.3 gc: 6% heap: 12G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 1.6G
+ read( 1%) -> (17/48) -> process(73% 76% 73% 72% 69% 72% 72% 73% 73% 76% 73% 71% 72% 72% 72% 73% 72% 74% 70% 73% 71% 71% 77% 74% 73% 74% 73% 70% 72% 72% 73%) -> (14k/82k) -> write(48%)
+0:17:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 117M 14% 431k/s ] rels: [ 0 0% 0/s ] features: [ 956M 1.3M/s ] 73G blocks: [ 13k 71% 3/s ]
+ cpus: 24 gc: 5% heap: 20G/32G direct: 62M postGC: 14G relInfo: 962M mpGeoms: 1.7G
+ read( 1%) -> (17/48) -> process(74% 71% 72% 71% 70% 75% 72% 71% 72% 73% 72% 72% 69% 75% 69% 73% 69% 72% 73% 72% 69% 77% 74% 71% 72% 70% 71% 69% 72% 74% 75%) -> (13k/82k) -> write(48%)
+0:17:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 121M 14% 412k/s ] rels: [ 0 0% 0/s ] features: [ 969M 1.3M/s ] 74G blocks: [ 13k 71% 3/s ]
+ cpus: 22.5 gc: 5% heap: 19G/32G direct: 62M postGC: 17G relInfo: 962M mpGeoms: 1.7G
+ read( 1%) -> (17/48) -> process(71% 66% 68% 68% 70% 70% 68% 68% 68% 65% 67% 68% 69% 68% 67% 70% 65% 67% 68% 68% 66% 69% 71% 66% 67% 70% 68% 66% 69% 68% 69%) -> (17k/82k) -> write(45%)
+0:17:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 125M 15% 433k/s ] rels: [ 0 0% 0/s ] features: [ 983M 1.4M/s ] 75G blocks: [ 13k 71% 3/s ]
+ cpus: 24.4 gc: 5% heap: 25G/32G direct: 62M postGC: 20G relInfo: 962M mpGeoms: 1.8G
+ read( 1%) -> (17/48) -> process(72% 73% 75% 71% 75% 77% 73% 72% 71% 73% 76% 70% 73% 73% 75% 74% 74% 75% 72% 74% 74% 71% 74% 73% 73% 71% 76% 73% 70% 75% 70%) -> (15k/82k) -> write(51%)
+0:18:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 130M 15% 444k/s ] rels: [ 0 0% 0/s ] features: [ 997M 1.4M/s ] 76G blocks: [ 13k 71% 3/s ]
+ cpus: 25.3 gc: 6% heap: 23G/32G direct: 62M postGC: 23G relInfo: 962M mpGeoms: 1.8G
+ read( 1%) -> (17/48) -> process(76% 75% 75% 75% 75% 77% 75% 78% 74% 74% 76% 76% 76% 76% 77% 76% 76% 77% 72% 74% 77% 77% 75% 75% 74% 76% 73% 74% 77% 77% 75%) -> (15k/82k) -> write(48%)
+0:18:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 133M 16% 350k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.1M/s ] 77G blocks: [ 13k 71% 2/s ]
+ cpus: 21.9 gc: 5% heap: 17G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 1.9G
+ read( 1%) -> (17/48) -> process(65% 62% 62% 63% 66% 65% 62% 62% 67% 61% 66% 64% 67% 64% 64% 65% 64% 66% 64% 64% 61% 69% 64% 67% 65% 66% 63% 62% 66% 65% 65%) -> (15k/82k) -> write(38%)
+0:18:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 138M 16% 442k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.3M/s ] 78G blocks: [ 13k 72% 3/s ]
+ cpus: 26.1 gc: 4% heap: 23G/32G direct: 62M postGC: 7.9G relInfo: 962M mpGeoms: 1.9G
+ read( 1%) -> (17/48) -> process(79% 79% 79% 78% 80% 79% 81% 82% 79% 78% 83% 82% 81% 79% 78% 80% 79% 75% 83% 80% 81% 79% 79% 78% 78% 79% 82% 77% 79% 79% 77%) -> (18k/82k) -> write(49%)
+0:18:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 142M 17% 460k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.4M/s ] 79G blocks: [ 13k 72% 3/s ]
+ cpus: 26.2 gc: 6% heap: 15G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 2G
+ read( 1%) -> (17/48) -> process(78% 79% 80% 77% 79% 80% 78% 78% 82% 80% 76% 78% 78% 79% 77% 79% 78% 80% 77% 76% 80% 79% 79% 77% 77% 77% 79% 77% 78% 79% 76%) -> (17k/82k) -> write(49%)
+0:18:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 147M 17% 406k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 80G blocks: [ 13k 72% 3/s ]
+ cpus: 22.4 gc: 5% heap: 21G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 2G
+ read( 1%) -> (17/48) -> process(67% 68% 67% 69% 65% 64% 66% 68% 71% 65% 67% 67% 67% 65% 67% 69% 66% 65% 68% 67% 65% 67% 66% 67% 66% 68% 66% 68% 70% 67% 67%) -> (16k/82k) -> write(43%)
+0:18:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 151M 18% 443k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.3M/s ] 81G blocks: [ 13k 72% 3/s ]
+ cpus: 25.4 gc: 6% heap: 16G/32G direct: 62M postGC: 16G relInfo: 962M mpGeoms: 2.1G
+ read( 1%) -> (17/48) -> process(82% 76% 77% 78% 75% 76% 75% 78% 76% 76% 78% 78% 75% 77% 77% 77% 75% 76% 77% 78% 78% 74% 76% 77% 77% 76% 73% 77% 78% 76% 76%) -> (18k/82k) -> write(48%)
+0:19:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 156M 19% 477k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.4M/s ] 82G blocks: [ 13k 72% 3/s ]
+ cpus: 26.2 gc: 5% heap: 25G/32G direct: 62M postGC: 18G relInfo: 962M mpGeoms: 2.1G
+ read( 1%) -> (17/48) -> process(81% 80% 79% 79% 79% 80% 82% 81% 79% 79% 82% 78% 80% 80% 78% 79% 77% 79% 78% 79% 78% 77% 81% 77% 76% 77% 76% 77% 79% 79% 78%) -> (16k/82k) -> write(50%)
+0:19:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 161M 19% 484k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.4M/s ] 83G blocks: [ 13k 73% 4/s ]
+ cpus: 27.2 gc: 6% heap: 18G/32G direct: 62M postGC: 6.7G relInfo: 962M mpGeoms: 2.2G
+ read( 1%) -> (17/48) -> process(83% 81% 85% 84% 79% 81% 78% 79% 77% 79% 85% 75% 81% 83% 81% 82% 77% 75% 85% 76% 79% 80% 75% 80% 81% 80% 80% 78% 76% 76% 83%) -> (15k/82k) -> write(50%)
+0:19:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 165M 20% 430k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 83G blocks: [ 13k 73% 3/s ]
+ cpus: 24 gc: 5% heap: 16G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 2.2G
+ read( 1%) -> (17/48) -> process(71% 70% 75% 71% 72% 74% 70% 73% 71% 71% 72% 70% 73% 70% 71% 71% 74% 72% 74% 71% 70% 72% 74% 72% 73% 71% 73% 71% 71% 76% 73%) -> (18k/82k) -> write(45%)
+0:19:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 169M 20% 426k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 84G blocks: [ 13k 73% 3/s ]
+ cpus: 24.7 gc: 5% heap: 19G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 2.3G
+ read( 1%) -> (17/48) -> process(76% 76% 72% 76% 76% 73% 74% 74% 76% 73% 72% 72% 73% 74% 76% 73% 73% 74% 73% 74% 74% 74% 74% 72% 74% 74% 74% 71% 77% 75% 76%) -> (15k/82k) -> write(47%)
+0:19:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 173M 21% 409k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 85G blocks: [ 13k 73% 3/s ]
+ cpus: 24.5 gc: 5% heap: 22G/32G direct: 62M postGC: 14G relInfo: 962M mpGeoms: 2.3G
+ read( 1%) -> (17/48) -> process(72% 72% 71% 71% 80% 72% 73% 72% 73% 76% 75% 75% 72% 81% 71% 75% 72% 73% 73% 72% 73% 74% 73% 72% 77% 76% 72% 70% 73% 73% 74%) -> (15k/82k) -> write(45%)
+0:19:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 178M 21% 432k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 86G blocks: [ 13k 73% 3/s ]
+ cpus: 24.4 gc: 6% heap: 18G/32G direct: 62M postGC: 17G relInfo: 962M mpGeoms: 2.4G
+ read( 1%) -> (17/48) -> process(71% 73% 71% 74% 71% 74% 74% 75% 74% 72% 73% 80% 73% 72% 73% 72% 71% 74% 74% 75% 75% 74% 74% 72% 74% 73% 72% 73% 73% 72% 75%) -> (15k/82k) -> write(45%)
+0:20:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 182M 22% 446k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 87G blocks: [ 13k 74% 3/s ]
+ cpus: 24.5 gc: 6% heap: 20G/32G direct: 62M postGC: 20G relInfo: 962M mpGeoms: 2.4G
+ read( 1%) -> (17/48) -> process(73% 72% 75% 72% 72% 76% 74% 75% 76% 73% 73% 74% 74% 73% 75% 73% 73% 72% 75% 74% 71% 73% 73% 73% 72% 75% 74% 73% 76% 72% 73%) -> (15k/82k) -> write(46%)
+0:20:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 187M 22% 471k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 88G blocks: [ 13k 74% 3/s ]
+ cpus: 25.7 gc: 4% heap: 20G/32G direct: 62M postGC: 7.8G relInfo: 962M mpGeoms: 2.5G
+ read( 1%) -> (17/48) -> process(77% 76% 78% 75% 76% 75% 74% 78% 76% 75% 77% 75% 77% 77% 77% 76% 77% 75% 76% 75% 77% 77% 76% 78% 73% 76% 76% 78% 77% 75% 76%) -> (17k/82k) -> write(46%)
+0:20:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 192M 23% 475k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 89G blocks: [ 13k 74% 3/s ]
+ cpus: 25.7 gc: 6% heap: 12G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 2.5G
+ read( 1%) -> (17/48) -> process(79% 75% 78% 76% 78% 77% 78% 79% 77% 77% 77% 77% 78% 77% 76% 77% 78% 79% 76% 77% 77% 76% 77% 76% 77% 77% 77% 76% 78% 78% 75%) -> (15k/82k) -> write(48%)
+0:20:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 196M 23% 455k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 90G blocks: [ 13k 74% 3/s ]
+ cpus: 24.9 gc: 5% heap: 24G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 2.6G
+ read( 1%) -> (17/48) -> process(77% 76% 76% 74% 73% 76% 74% 77% 75% 76% 75% 75% 76% 76% 74% 73% 74% 73% 74% 73% 76% 74% 76% 71% 76% 73% 75% 74% 78% 75% 77%) -> (15k/82k) -> write(47%)
+0:20:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 201M 24% 440k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.2M/s ] 90G blocks: [ 13k 74% 4/s ]
+ cpus: 25.5 gc: 6% heap: 17G/32G direct: 62M postGC: 16G relInfo: 962M mpGeoms: 2.6G
+ read( 1%) -> (17/48) -> process(76% 77% 74% 75% 77% 75% 76% 79% 77% 73% 74% 73% 77% 78% 76% 78% 75% 77% 79% 77% 77% 78% 78% 77% 75% 76% 76% 74% 77% 74% 75%) -> (14k/82k) -> write(44%)
+0:20:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 205M 24% 481k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.2M/s ] 91G blocks: [ 13k 75% 3/s ]
+ cpus: 26.3 gc: 5% heap: 11G/32G direct: 62M postGC: 5.8G relInfo: 962M mpGeoms: 2.8G
+ read( 1%) -> (17/48) -> process(77% 77% 79% 76% 80% 77% 79% 79% 78% 76% 77% 79% 80% 77% 76% 76% 79% 79% 78% 77% 77% 78% 77% 77% 78% 76% 79% 76% 75% 80% 80%) -> (15k/82k) -> write(45%)
+0:21:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 210M 25% 505k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.3M/s ] 92G blocks: [ 14k 75% 3/s ]
+ cpus: 26.2 gc: 5% heap: 12G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 2.8G
+ read( 1%) -> (17/48) -> process(80% 77% 81% 83% 81% 80% 79% 80% 81% 78% 79% 79% 79% 80% 81% 81% 79% 81% 80% 79% 82% 80% 82% 81% 76% 78% 78% 78% 80% 81% 79%) -> (16k/82k) -> write(46%)
+0:21:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 215M 26% 499k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.3M/s ] 93G blocks: [ 14k 75% 5/s ]
+ cpus: 26.4 gc: 6% heap: 14G/32G direct: 62M postGC: 7.5G relInfo: 962M mpGeoms: 2.8G
+ read( 1%) -> (17/48) -> process(78% 80% 78% 79% 77% 77% 76% 75% 77% 78% 79% 77% 77% 81% 76% 79% 80% 74% 77% 78% 77% 78% 76% 79% 78% 81% 76% 79% 79% 76% 75%) -> (13k/82k) -> write(46%)
+0:21:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 220M 26% 488k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.3M/s ] 93G blocks: [ 14k 75% 3/s ]
+ cpus: 25.9 gc: 5% heap: 19G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 2.9G
+ read( 1%) -> (17/48) -> process(80% 79% 77% 80% 78% 78% 78% 76% 81% 78% 76% 78% 76% 77% 77% 80% 77% 76% 78% 77% 79% 79% 77% 79% 77% 78% 78% 80% 78% 76% 78%) -> (12k/82k) -> write(46%)
+0:21:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 225M 27% 461k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.2M/s ] 94G blocks: [ 14k 75% 4/s ]
+ cpus: 25.5 gc: 6% heap: 25G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 2.9G
+ read( 1%) -> (17/48) -> process(76% 77% 75% 78% 74% 77% 77% 78% 77% 76% 76% 76% 77% 77% 77% 74% 78% 75% 76% 76% 76% 78% 78% 76% 77% 77% 76% 78% 77% 78% 79%) -> (16k/82k) -> write(46%)
+0:21:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 230M 27% 450k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.2M/s ] 95G blocks: [ 14k 76% 3/s ]
+ cpus: 25.4 gc: 5% heap: 20G/32G direct: 62M postGC: 7G relInfo: 962M mpGeoms: 3G
+ read( 1%) -> (17/48) -> process(73% 73% 75% 73% 76% 76% 78% 72% 75% 74% 77% 75% 72% 75% 74% 71% 73% 73% 70% 75% 73% 74% 73% 73% 73% 75% 74% 76% 74% 76% 75%) -> (15k/82k) -> write(44%)
+0:21:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 234M 28% 471k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 96G blocks: [ 14k 76% 3/s ]
+ cpus: 25.2 gc: 5% heap: 11G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 3G
+ read( 1%) -> (17/48) -> process(78% 76% 73% 74% 75% 77% 76% 74% 74% 76% 75% 78% 75% 76% 77% 75% 78% 74% 77% 79% 75% 76% 75% 78% 75% 77% 75% 78% 77% 75% 73%) -> (15k/82k) -> write(45%)
+0:22:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 239M 28% 445k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 97G blocks: [ 14k 76% 3/s ]
+ cpus: 24.7 gc: 5% heap: 22G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 3.1G
+ read( 1%) -> (17/48) -> process(74% 74% 73% 77% 76% 76% 75% 75% 75% 75% 73% 74% 75% 75% 75% 74% 75% 74% 75% 75% 73% 73% 74% 74% 76% 73% 75% 75% 75% 76% 73%) -> (18k/82k) -> write(45%)
+0:22:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 243M 29% 453k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 98G blocks: [ 14k 76% 3/s ]
+ cpus: 25.2 gc: 6% heap: 16G/32G direct: 62M postGC: 15G relInfo: 962M mpGeoms: 3.1G
+ read( 1%) -> (17/48) -> process(76% 77% 75% 76% 74% 76% 73% 75% 75% 76% 78% 75% 77% 74% 75% 75% 74% 74% 75% 75% 75% 77% 76% 74% 75% 76% 75% 77% 76% 75% 76%) -> (21k/82k) -> write(45%)
+0:22:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 248M 29% 449k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.3M/s ] 98G blocks: [ 14k 76% 3/s ]
+ cpus: 25.3 gc: 4% heap: 13G/32G direct: 62M postGC: 8.5G relInfo: 962M mpGeoms: 3.2G
+ read( 1%) -> (17/48) -> process(77% 75% 75% 75% 75% 76% 76% 75% 75% 74% 75% 76% 75% 75% 74% 75% 74% 75% 75% 75% 76% 76% 74% 74% 76% 76% 75% 74% 77% 75% 76%) -> (16k/82k) -> write(46%)
+0:22:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 252M 30% 442k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 99G blocks: [ 14k 77% 3/s ]
+ cpus: 24.9 gc: 6% heap: 12G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 3.3G
+ read( 1%) -> (17/48) -> process(73% 72% 76% 75% 76% 74% 73% 76% 75% 75% 74% 75% 74% 77% 76% 78% 76% 73% 77% 75% 75% 74% 77% 74% 76% 74% 74% 76% 72% 75% 74%) -> (15k/82k) -> write(45%)
+0:22:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 257M 31% 469k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.3M/s ] 100G blocks: [ 14k 77% 3/s ]
+ cpus: 25.7 gc: 6% heap: 18G/32G direct: 62M postGC: 14G relInfo: 962M mpGeoms: 3.3G
+ read( 1%) -> (17/48) -> process(76% 75% 78% 78% 81% 78% 80% 77% 76% 76% 79% 76% 78% 75% 77% 77% 77% 77% 76% 76% 77% 80% 77% 76% 79% 77% 75% 77% 77% 77% 76%) -> (15k/82k) -> write(46%)
+0:22:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 261M 31% 452k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 101G blocks: [ 14k 77% 3/s ]
+ cpus: 25.6 gc: 5% heap: 25G/32G direct: 62M postGC: 7.3G relInfo: 962M mpGeoms: 3.4G
+ read( 1%) -> (17/48) -> process(73% 74% 77% 73% 76% 76% 75% 77% 76% 78% 76% 74% 75% 73% 75% 75% 77% 75% 75% 72% 74% 76% 75% 78% 76% 76% 72% 75% 75% 76% 76%) -> (15k/82k) -> write(45%)
+0:23:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 266M 32% 473k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.2M/s ] 102G blocks: [ 14k 77% 3/s ]
+ cpus: 25 gc: 5% heap: 18G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 3.4G
+ read( 1%) -> (17/48) -> process(76% 76% 75% 76% 74% 74% 75% 75% 74% 78% 75% 77% 75% 74% 76% 76% 78% 74% 74% 75% 77% 76% 75% 74% 76% 77% 73% 75% 74% 75% 75%) -> (13k/82k) -> write(45%)
+0:23:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 271M 32% 524k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 103G blocks: [ 14k 77% 3/s ]
+ cpus: 25.9 gc: 6% heap: 20G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 3.5G
+ read( 1%) -> (17/48) -> process(77% 78% 77% 77% 74% 81% 77% 79% 76% 75% 78% 81% 76% 79% 78% 77% 75% 77% 79% 81% 77% 77% 78% 78% 77% 79% 77% 77% 78% 77% 79%) -> (18k/82k) -> write(47%)
+0:23:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 276M 33% 505k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.2M/s ] 103G blocks: [ 14k 78% 3/s ]
+ cpus: 26.2 gc: 6% heap: 7G/32G direct: 62M postGC: 6.8G relInfo: 962M mpGeoms: 3.6G
+ read( 1%) -> (17/48) -> process(78% 79% 77% 74% 76% 78% 77% 79% 74% 75% 75% 77% 76% 75% 78% 79% 74% 75% 78% 75% 74% 77% 74% 75% 78% 76% 78% 78% 79% 77% 74%) -> (16k/82k) -> write(44%)
+0:23:35 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 282M 34% 533k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 104G blocks: [ 14k 78% 3/s ]
+ cpus: 25.8 gc: 5% heap: 11G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 3.7G
+ read( 1%) -> (17/48) -> process(77% 77% 78% 74% 77% 76% 75% 74% 77% 80% 82% 82% 76% 79% 77% 79% 79% 82% 75% 79% 82% 79% 80% 78% 75% 76% 77% 78% 75% 79% 76%) -> (15k/82k) -> write(47%)
+0:23:45 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 287M 34% 490k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 105G blocks: [ 14k 78% 3/s ]
+ cpus: 25.2 gc: 6% heap: 13G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 3.7G
+ read( 1%) -> (17/48) -> process(75% 76% 75% 79% 76% 74% 76% 75% 76% 73% 76% 76% 74% 76% 75% 76% 76% 76% 75% 76% 76% 74% 73% 77% 76% 76% 74% 75% 74% 76% 75%) -> (16k/82k) -> write(46%)
+0:23:55 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 291M 35% 475k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 106G blocks: [ 14k 78% 3/s ]
+ cpus: 25.2 gc: 6% heap: 20G/32G direct: 62M postGC: 15G relInfo: 962M mpGeoms: 3.7G
+ read( 1%) -> (17/48) -> process(74% 75% 76% 77% 75% 75% 76% 77% 75% 81% 76% 76% 74% 76% 76% 74% 75% 75% 74% 74% 76% 74% 76% 74% 76% 76% 77% 74% 76% 75% 75%) -> (13k/82k) -> write(46%)
+0:24:05 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 296M 35% 463k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 107G blocks: [ 14k 78% 3/s ]
+ cpus: 25.3 gc: 5% heap: 8.8G/32G direct: 62M postGC: 7.1G relInfo: 962M mpGeoms: 3.8G
+ read( 1%) -> (17/48) -> process(76% 76% 74% 74% 73% 75% 74% 76% 74% 75% 74% 75% 75% 74% 76% 75% 72% 74% 75% 74% 74% 74% 73% 74% 74% 76% 74% 73% 74% 74% 76%) -> (13k/82k) -> write(46%)
+0:24:15 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 301M 36% 482k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.3M/s ] 107G blocks: [ 14k 79% 3/s ]
+ cpus: 25.4 gc: 5% heap: 20G/32G direct: 62M postGC: 9.8G relInfo: 962M mpGeoms: 3.8G
+ read( 1%) -> (17/48) -> process(74% 78% 75% 74% 74% 76% 76% 76% 75% 77% 81% 78% 78% 76% 78% 79% 76% 74% 77% 77% 79% 74% 76% 75% 75% 78% 78% 79% 75% 75% 78%) -> (14k/82k) -> write(46%)
+0:24:25 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 306M 36% 488k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.2M/s ] 108G blocks: [ 14k 79% 3/s ]
+ cpus: 25.7 gc: 6% heap: 24G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 3.9G
+ read( 1%) -> (17/48) -> process(77% 75% 77% 77% 75% 75% 77% 78% 75% 79% 78% 76% 76% 76% 77% 79% 78% 78% 75% 80% 78% 77% 76% 77% 77% 76% 77% 76% 77% 79% 79%) -> (33k/82k) -> write(45%)
+0:24:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 311M 37% 479k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.2M/s ] 109G blocks: [ 14k 79% 3/s ]
+ cpus: 25.7 gc: 6% heap: 16G/32G direct: 62M postGC: 7G relInfo: 962M mpGeoms: 4G
+ read( 1%) -> (17/48) -> process(76% 75% 79% 74% 76% 75% 73% 77% 77% 74% 73% 75% 73% 75% 76% 74% 75% 76% 76% 76% 73% 76% 75% 75% 74% 75% 73% 73% 77% 75% 75%) -> (18k/82k) -> write(44%)
+0:24:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 316M 38% 503k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.3M/s ] 110G blocks: [ 14k 79% 3/s ]
+ cpus: 25.3 gc: 5% heap: 11G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 4G
+ read( 1%) -> (17/48) -> process(77% 78% 75% 75% 77% 76% 76% 76% 77% 76% 77% 79% 75% 76% 77% 77% 75% 78% 77% 75% 75% 77% 75% 76% 76% 76% 76% 77% 76% 77% 76%) -> (28k/82k) -> write(46%)
+0:24:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 321M 38% 514k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.3M/s ] 111G blocks: [ 14k 79% 3/s ]
+ cpus: 26 gc: 6% heap: 23G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 4.1G
+ read( 1%) -> (17/48) -> process(80% 79% 76% 78% 79% 77% 78% 78% 76% 78% 76% 79% 78% 79% 78% 79% 77% 82% 77% 78% 78% 79% 82% 81% 78% 78% 77% 77% 77% 77% 80%) -> (16k/82k) -> write(48%)
+0:25:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 326M 39% 508k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.2M/s ] 111G blocks: [ 14k 80% 3/s ]
+ cpus: 26.8 gc: 7% heap: 8.2G/32G direct: 62M postGC: 7.9G relInfo: 962M mpGeoms: 4.1G
+ read( 1%) -> (17/48) -> process(77% 79% 77% 80% 75% 75% 79% 78% 80% 79% 78% 79% 81% 77% 76% 77% 77% 80% 76% 80% 77% 76% 82% 82% 82% 79% 79% 78% 79% 78% 81%) -> (14k/82k) -> write(45%)
+0:25:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 331M 39% 549k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.3M/s ] 112G blocks: [ 14k 80% 4/s ]
+ cpus: 26.3 gc: 5% heap: 14G/32G direct: 62M postGC: 9.8G relInfo: 962M mpGeoms: 4.2G
+ read( 1%) -> (17/48) -> process(80% 82% 79% 78% 78% 77% 80% 80% 78% 77% 77% 78% 81% 76% 79% 77% 81% 78% 76% 78% 79% 77% 78% 82% 78% 79% 81% 79% 79% 79% 83%) -> (16k/82k) -> write(48%)
+0:25:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 337M 40% 531k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.3M/s ] 113G blocks: [ 15k 80% 3/s ]
+ cpus: 26.5 gc: 5% heap: 16G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 4.2G
+ read( 1%) -> (17/48) -> process(77% 75% 78% 77% 78% 78% 76% 76% 79% 76% 75% 80% 77% 75% 78% 75% 77% 77% 73% 77% 76% 78% 77% 80% 77% 77% 77% 78% 78% 79% 75%) -> (17k/82k) -> write(47%)
+0:25:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 342M 41% 516k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.3M/s ] 114G blocks: [ 15k 80% 3/s ]
+ cpus: 26 gc: 6% heap: 23G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 4.3G
+ read( 1%) -> (17/48) -> process(78% 76% 77% 78% 79% 80% 79% 79% 77% 78% 76% 81% 75% 80% 77% 78% 81% 80% 80% 79% 77% 77% 77% 80% 74% 78% 80% 81% 80% 76% 76%) -> (16k/82k) -> write(46%)
+0:25:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 347M 41% 498k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.3M/s ] 114G blocks: [ 15k 80% 3/s ]
+ cpus: 25.2 gc: 6% heap: 23G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 4.3G
+ read( 1%) -> (17/48) -> process(76% 77% 77% 77% 75% 77% 74% 77% 76% 76% 75% 77% 73% 75% 74% 76% 77% 75% 76% 76% 73% 77% 78% 74% 76% 73% 76% 76% 77% 74% 75%) -> (15k/82k) -> write(47%)
+0:25:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 352M 42% 478k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.2M/s ] 115G blocks: [ 15k 81% 3/s ]
+ cpus: 25.9 gc: 5% heap: 22G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 4.4G
+ read( 1%) -> (17/48) -> process(79% 79% 72% 75% 72% 73% 74% 74% 72% 77% 79% 74% 73% 76% 75% 76% 75% 77% 72% 74% 74% 75% 73% 76% 78% 73% 75% 69% 77% 79% 74%) -> (13k/82k) -> write(44%)
+0:26:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 357M 42% 517k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.3M/s ] 116G blocks: [ 15k 81% 3/s ]
+ cpus: 25.7 gc: 6% heap: 24G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 4.4G
+ read( 1%) -> (17/48) -> process(76% 76% 77% 77% 77% 77% 79% 81% 79% 76% 75% 77% 77% 78% 76% 76% 77% 77% 77% 75% 77% 78% 78% 77% 76% 75% 76% 77% 75% 77% 78%) -> (14k/82k) -> write(46%)
+0:26:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 362M 43% 511k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.2M/s ] 117G blocks: [ 15k 81% 3/s ]
+ cpus: 25.9 gc: 5% heap: 12G/32G direct: 62M postGC: 7.5G relInfo: 962M mpGeoms: 4.5G
+ read( 1%) -> (17/48) -> process(78% 75% 76% 77% 76% 75% 77% 78% 75% 77% 76% 76% 76% 77% 78% 75% 76% 78% 73% 75% 76% 76% 76% 75% 75% 77% 75% 74% 77% 76% 76%) -> (16k/82k) -> write(45%)
+0:26:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 367M 44% 516k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.3M/s ] 118G blocks: [ 15k 81% 3/s ]
+ cpus: 26.3 gc: 6% heap: 8.6G/32G direct: 62M postGC: 6.8G relInfo: 962M mpGeoms: 4.5G
+ read( 1%) -> (17/48) -> process(78% 79% 75% 74% 77% 77% 77% 76% 78% 78% 81% 77% 77% 79% 78% 76% 77% 77% 78% 77% 75% 78% 76% 76% 76% 77% 77% 78% 76% 77% 78%) -> (17k/82k) -> write(46%)
+0:26:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 373M 44% 536k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.3M/s ] 118G blocks: [ 15k 81% 4/s ]
+ cpus: 26.9 gc: 5% heap: 19G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 4.6G
+ read( 1%) -> (17/48) -> process(82% 82% 82% 82% 79% 80% 82% 82% 81% 81% 79% 82% 81% 81% 81% 83% 82% 80% 83% 81% 81% 80% 82% 80% 82% 79% 80% 80% 82% 84% 83%) -> (16k/82k) -> write(49%)
+0:26:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 378M 45% 508k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.2M/s ] 119G blocks: [ 15k 82% 3/s ]
+ cpus: 26.5 gc: 5% heap: 20G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 4.8G
+ read( 1%) -> (17/48) -> process(79% 79% 80% 79% 81% 77% 75% 78% 79% 80% 75% 79% 80% 79% 81% 80% 77% 77% 77% 78% 77% 75% 80% 74% 78% 76% 80% 78% 81% 78% 78%) -> (13k/82k) -> write(45%)
+0:26:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 383M 46% 523k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.3M/s ] 120G blocks: [ 15k 82% 3/s ]
+ cpus: 25.8 gc: 6% heap: 15G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 4.8G
+ read( 1%) -> (17/48) -> process(79% 77% 77% 77% 77% 80% 76% 79% 76% 78% 77% 77% 79% 78% 77% 75% 77% 78% 78% 76% 78% 77% 76% 79% 78% 76% 78% 78% 78% 74% 78%) -> (15k/82k) -> write(47%)
+0:27:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 388M 46% 518k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 121G blocks: [ 15k 82% 4/s ]
+ cpus: 26.1 gc: 5% heap: 9.5G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 4.9G
+ read( 1%) -> (17/48) -> process(77% 76% 78% 76% 76% 78% 77% 78% 77% 78% 76% 75% 77% 78% 76% 76% 77% 78% 78% 77% 77% 78% 75% 77% 78% 78% 76% 76% 77% 78% 77%) -> (16k/82k) -> write(45%)
+0:27:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 394M 47% 545k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 121G blocks: [ 15k 82% 3/s ]
+ cpus: 26.1 gc: 6% heap: 19G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 4.9G
+ read( 1%) -> (17/48) -> process(79% 78% 79% 78% 78% 78% 79% 79% 78% 78% 79% 80% 77% 78% 77% 77% 80% 79% 78% 79% 78% 80% 79% 79% 77% 79% 78% 80% 78% 79% 79%) -> (13k/82k) -> write(46%)
+0:27:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 399M 47% 545k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 122G blocks: [ 15k 83% 3/s ]
+ cpus: 26 gc: 6% heap: 17G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 5G
+ read( 1%) -> (17/48) -> process(80% 79% 78% 77% 78% 77% 78% 78% 76% 81% 80% 79% 77% 78% 78% 78% 79% 77% 81% 77% 74% 76% 77% 79% 77% 77% 78% 77% 78% 76% 77%) -> (14k/82k) -> write(46%)
+0:27:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 405M 48% 548k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 123G blocks: [ 15k 83% 3/s ]
+ cpus: 26.6 gc: 5% heap: 17G/32G direct: 62M postGC: 8.9G relInfo: 962M mpGeoms: 5G
+ read( 1%) -> (17/48) -> process(77% 77% 76% 77% 81% 78% 78% 77% 79% 76% 78% 78% 79% 79% 78% 77% 78% 77% 76% 78% 80% 79% 78% 77% 79% 80% 77% 78% 79% 77% 77%) -> (16k/82k) -> write(47%)
+0:27:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 410M 49% 552k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 124G blocks: [ 15k 83% 4/s ]
+ cpus: 26.3 gc: 6% heap: 26G/32G direct: 62M postGC: 12G relInfo: 962M mpGeoms: 5.1G
+ read( 1%) -> (17/48) -> process(78% 77% 78% 80% 78% 78% 77% 78% 79% 80% 79% 79% 78% 78% 78% 77% 79% 78% 78% 78% 78% 79% 80% 77% 78% 77% 79% 80% 78% 79% 77%) -> (12k/82k) -> write(47%)
+0:27:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 416M 49% 544k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 124G blocks: [ 15k 83% 3/s ]
+ cpus: 26.2 gc: 6% heap: 13G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 5.1G
+ read( 1%) -> (17/48) -> process(77% 75% 74% 77% 77% 77% 74% 77% 77% 78% 75% 78% 78% 75% 77% 79% 74% 74% 78% 78% 77% 78% 78% 80% 79% 77% 75% 75% 76% 79% 73%) -> (17k/82k) -> write(46%)
+0:28:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 421M 50% 581k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.3M/s ] 125G blocks: [ 15k 83% 3/s ]
+ cpus: 27.2 gc: 6% heap: 20G/32G direct: 62M postGC: 11G relInfo: 962M mpGeoms: 5.1G
+ read( 1%) -> (17/48) -> process(81% 81% 81% 81% 83% 84% 81% 82% 84% 82% 82% 81% 79% 82% 82% 82% 81% 81% 82% 82% 84% 81% 81% 83% 81% 82% 83% 83% 84% 81% 83%) -> (20k/82k) -> write(49%)
+0:28:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 427M 51% 554k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.3M/s ] 126G blocks: [ 15k 84% 3/s ]
+ cpus: 26.8 gc: 6% heap: 18G/32G direct: 62M postGC: 13G relInfo: 962M mpGeoms: 5.1G
+ read( 1%) -> (17/48) -> process(80% 78% 78% 77% 77% 81% 79% 80% 78% 80% 78% 79% 79% 81% 79% 80% 79% 78% 78% 78% 81% 77% 77% 80% 78% 79% 78% 79% 80% 79% 77%) -> (18k/82k) -> write(48%)
+0:28:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 433M 51% 574k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.4M/s ] 127G blocks: [ 15k 84% 4/s ]
+ cpus: 26.8 gc: 6% heap: 17G/32G direct: 62M postGC: 9.9G relInfo: 962M mpGeoms: 5.2G
+ read( 1%) -> (17/48) -> process(80% 77% 79% 80% 79% 78% 78% 80% 79% 80% 81% 81% 80% 76% 80% 82% 81% 81% 80% 79% 78% 82% 80% 79% 80% 80% 82% 81% 78% 79% 77%) -> (14k/82k) -> write(49%)
+0:28:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 438M 52% 532k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.3M/s ] 127G blocks: [ 15k 84% 3/s ]
+ cpus: 26.3 gc: 6% heap: 20G/32G direct: 62M postGC: 8.1G relInfo: 962M mpGeoms: 5.2G
+ read( 1%) -> (16/48) -> process(75% 76% 77% 78% 74% 76% 75% 75% 78% 75% 77% 75% 76% 78% 74% 76% 76% 79% 74% 76% 78% 78% 78% 77% 76% 74% 75% 77% 75% 76% 77%) -> (17k/82k) -> write(47%)
+0:28:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 443M 53% 529k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.3M/s ] 128G blocks: [ 15k 84% 3/s ]
+ cpus: 25.7 gc: 6% heap: 17G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 5.3G
+ read( 1%) -> (17/48) -> process(76% 79% 76% 78% 78% 76% 78% 77% 79% 76% 77% 76% 78% 78% 76% 77% 77% 77% 80% 77% 77% 77% 76% 77% 77% 76% 76% 78% 79% 79% 77%) -> (16k/82k) -> write(47%)
+0:28:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 449M 53% 526k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.3M/s ] 129G blocks: [ 15k 84% 3/s ]
+ cpus: 25.7 gc: 5% heap: 24G/32G direct: 62M postGC: 6.6G relInfo: 962M mpGeoms: 5.3G
+ read( 1%) -> (17/48) -> process(76% 74% 76% 75% 75% 78% 78% 75% 74% 74% 77% 77% 76% 76% 76% 78% 76% 74% 73% 76% 79% 78% 74% 77% 74% 77% 76% 76% 73% 76% 76%) -> (17k/82k) -> write(46%)
+0:29:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 454M 54% 553k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.4M/s ] 130G blocks: [ 15k 85% 4/s ]
+ cpus: 26.1 gc: 6% heap: 10G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 5.4G
+ read( 1%) -> (17/48) -> process(78% 79% 79% 78% 79% 77% 77% 81% 79% 77% 78% 78% 78% 78% 80% 81% 77% 78% 79% 79% 80% 77% 79% 79% 78% 78% 80% 79% 78% 77% 78%) -> (14k/82k) -> write(49%)
+0:29:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 460M 55% 560k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.3M/s ] 131G blocks: [ 15k 85% 3/s ]
+ cpus: 26.7 gc: 5% heap: 10G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 5.4G
+ read( 1%) -> (17/48) -> process(77% 77% 77% 81% 76% 75% 76% 75% 78% 78% 78% 78% 79% 77% 79% 80% 77% 78% 80% 79% 76% 75% 77% 76% 75% 75% 80% 76% 77% 76% 78%) -> (15k/82k) -> write(48%)
+0:29:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 466M 55% 582k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.4M/s ] 131G blocks: [ 15k 85% 3/s ]
+ cpus: 27.3 gc: 7% heap: 8.2G/32G direct: 62M postGC: 7G relInfo: 962M mpGeoms: 5.5G
+ read( 1%) -> (17/48) -> process(78% 78% 80% 80% 80% 81% 81% 79% 80% 79% 78% 80% 79% 79% 77% 79% 79% 81% 81% 82% 82% 77% 77% 79% 79% 77% 77% 80% 83% 80% 80%) -> (17k/82k) -> write(49%)
+0:29:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 472M 56% 597k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.4M/s ] 132G blocks: [ 15k 85% 3/s ]
+ cpus: 26.3 gc: 4% heap: 16G/32G direct: 62M postGC: 9.6G relInfo: 962M mpGeoms: 5.5G
+ read( 1%) -> (17/48) -> process(80% 77% 83% 79% 80% 81% 81% 79% 80% 83% 80% 81% 79% 78% 80% 83% 79% 81% 81% 80% 80% 78% 83% 81% 82% 79% 80% 79% 80% 79% 81%) -> (14k/82k) -> write(50%)
+0:29:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 477M 57% 550k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.3M/s ] 133G blocks: [ 16k 85% 4/s ]
+ cpus: 26.5 gc: 6% heap: 19G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 5.5G
+ read( 1%) -> (17/48) -> process(81% 77% 76% 78% 76% 76% 76% 79% 73% 76% 75% 78% 79% 77% 80% 78% 79% 77% 78% 79% 78% 78% 77% 78% 81% 77% 76% 80% 77% 74% 74%) -> (17k/82k) -> write(47%)
+0:29:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 483M 57% 585k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.3M/s ] 134G blocks: [ 16k 86% 3/s ]
+ cpus: 27.2 gc: 5% heap: 25G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 5.6G
+ read( 1%) -> (17/48) -> process(78% 78% 76% 80% 77% 81% 77% 78% 80% 78% 82% 78% 82% 83% 80% 82% 79% 79% 77% 78% 78% 80% 78% 80% 78% 75% 79% 80% 79% 79% 83%) -> (19k/82k) -> write(49%)
+0:30:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 489M 58% 599k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.4M/s ] 134G blocks: [ 16k 86% 3/s ]
+ cpus: 27.2 gc: 6% heap: 17G/32G direct: 62M postGC: 9.6G relInfo: 962M mpGeoms: 5.6G
+ read( 1%) -> (17/48) -> process(80% 81% 77% 77% 79% 83% 79% 78% 81% 81% 81% 81% 76% 82% 79% 79% 77% 78% 75% 77% 79% 80% 77% 81% 80% 78% 80% 77% 83% 80% 79%) -> (17k/82k) -> write(49%)
+0:30:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 495M 59% 578k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.4M/s ] 135G blocks: [ 16k 86% 3/s ]
+ cpus: 26.6 gc: 6% heap: 12G/32G direct: 62M postGC: 9.5G relInfo: 962M mpGeoms: 5.6G
+ read( 1%) -> (17/48) -> process(76% 80% 77% 80% 80% 78% 76% 76% 77% 81% 81% 79% 77% 76% 76% 79% 76% 75% 79% 78% 77% 74% 81% 78% 77% 76% 79% 76% 78% 78% 77%) -> (16k/82k) -> write(48%)
+0:30:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 501M 60% 571k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.3M/s ] 136G blocks: [ 16k 86% 4/s ]
+ cpus: 26.7 gc: 6% heap: 11G/32G direct: 62M postGC: 9.9G relInfo: 962M mpGeoms: 5.7G
+ read( 1%) -> (17/48) -> process(77% 77% 78% 78% 79% 78% 76% 78% 78% 76% 78% 75% 79% 78% 79% 80% 77% 78% 76% 78% 78% 75% 77% 79% 80% 77% 79% 78% 75% 79% 78%) -> (15k/82k) -> write(48%)
+0:30:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 506M 60% 551k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.3M/s ] 136G blocks: [ 16k 86% 3/s ]
+ cpus: 26.4 gc: 5% heap: 24G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 5.7G
+ read( 1%) -> (17/48) -> process(79% 75% 81% 74% 76% 78% 76% 75% 79% 76% 80% 79% 75% 78% 78% 77% 83% 77% 79% 75% 77% 76% 81% 75% 77% 77% 79% 81% 78% 77% 80%) -> (17k/82k) -> write(47%)
+0:30:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 512M 61% 548k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.3M/s ] 137G blocks: [ 16k 87% 3/s ]
+ cpus: 26.6 gc: 5% heap: 20G/32G direct: 62M postGC: 9G relInfo: 962M mpGeoms: 5.8G
+ read( 1%) -> (17/48) -> process(80% 78% 81% 77% 79% 80% 77% 78% 77% 80% 77% 77% 76% 77% 78% 78% 79% 78% 77% 77% 77% 78% 78% 79% 81% 76% 78% 80% 77% 77% 77%) -> (17k/82k) -> write(47%)
+0:30:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 517M 61% 561k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.3M/s ] 138G blocks: [ 16k 87% 4/s ]
+ cpus: 27 gc: 5% heap: 24G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 5.8G
+ read( 1%) -> (17/48) -> process(78% 80% 79% 78% 79% 80% 79% 83% 82% 78% 81% 78% 79% 78% 77% 78% 79% 78% 79% 81% 78% 79% 79% 78% 79% 77% 79% 80% 80% 80% 81%) -> (16k/82k) -> write(48%)
+0:31:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 523M 62% 557k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.3M/s ] 139G blocks: [ 16k 87% 3/s ]
+ cpus: 26.7 gc: 6% heap: 15G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 5.9G
+ read( 1%) -> (17/48) -> process(79% 78% 77% 78% 78% 79% 78% 79% 81% 76% 77% 79% 77% 77% 78% 77% 80% 79% 81% 79% 76% 79% 76% 77% 77% 77% 75% 77% 80% 82% 78%) -> (14k/82k) -> write(47%)
+0:31:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 529M 63% 602k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.4M/s ] 139G blocks: [ 16k 87% 3/s ]
+ cpus: 27.2 gc: 6% heap: 22G/32G direct: 62M postGC: 8.2G relInfo: 962M mpGeoms: 5.9G
+ read( 1%) -> (17/48) -> process(81% 80% 82% 78% 77% 75% 79% 78% 78% 78% 81% 81% 78% 77% 80% 79% 78% 79% 79% 81% 80% 81% 79% 79% 80% 78% 80% 78% 79% 80% 79%) -> (16k/82k) -> write(50%)
+0:31:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 534M 64% 544k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.3M/s ] 140G blocks: [ 16k 88% 4/s ]
+ cpus: 26.5 gc: 5% heap: 19G/32G direct: 62M postGC: 7.6G relInfo: 962M mpGeoms: 5.9G
+ read( 1%) -> (17/48) -> process(77% 77% 84% 79% 78% 77% 77% 79% 76% 78% 79% 79% 80% 76% 76% 77% 77% 79% 79% 77% 78% 78% 77% 78% 78% 77% 79% 77% 79% 80% 78%) -> (16k/82k) -> write(47%)
+0:31:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 539M 64% 516k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.2M/s ] 141G blocks: [ 16k 88% 3/s ]
+ cpus: 26.6 gc: 6% heap: 15G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 6G
+ read( 1%) -> (17/48) -> process(77% 78% 80% 76% 76% 77% 76% 78% 77% 78% 78% 75% 76% 78% 77% 82% 77% 79% 75% 81% 79% 79% 77% 76% 76% 78% 79% 77% 76% 77% 79%) -> (15k/82k) -> write(45%)
+0:31:46 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 545M 65% 517k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.3M/s ] 142G blocks: [ 16k 88% 3/s ]
+ cpus: 26.4 gc: 5% heap: 9.6G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 6G
+ read( 1%) -> (17/48) -> process(75% 78% 79% 77% 80% 79% 79% 78% 77% 77% 79% 78% 78% 78% 77% 79% 77% 78% 77% 80% 78% 78% 77% 76% 78% 76% 78% 75% 78% 78% 79%) -> (16k/82k) -> write(46%)
+0:31:56 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 550M 65% 520k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 143G blocks: [ 16k 88% 3/s ]
+ cpus: 25.5 gc: 5% heap: 18G/32G direct: 62M postGC: 9.9G relInfo: 962M mpGeoms: 6.1G
+ read( 1%) -> (17/48) -> process(78% 75% 79% 78% 76% 77% 78% 76% 77% 78% 77% 77% 78% 79% 79% 77% 77% 76% 77% 77% 77% 77% 76% 77% 77% 76% 77% 77% 77% 78% 78%) -> (17k/82k) -> write(46%)
+0:32:06 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 555M 66% 521k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 143G blocks: [ 16k 88% 4/s ]
+ cpus: 25.7 gc: 5% heap: 22G/32G direct: 62M postGC: 8.9G relInfo: 962M mpGeoms: 6.1G
+ read( 1%) -> (17/48) -> process(75% 74% 76% 75% 73% 76% 74% 75% 76% 76% 77% 75% 77% 76% 75% 75% 73% 76% 75% 75% 75% 75% 76% 74% 75% 75% 75% 74% 75% 74% 77%) -> (15k/82k) -> write(46%)
+0:32:16 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 560M 67% 512k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 144G blocks: [ 16k 89% 3/s ]
+ cpus: 25.9 gc: 6% heap: 10G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 6.2G
+ read( 1%) -> (17/48) -> process(76% 75% 75% 74% 75% 76% 75% 74% 77% 75% 76% 78% 78% 76% 79% 76% 74% 75% 74% 78% 76% 75% 76% 75% 76% 76% 76% 77% 76% 76% 75%) -> (15k/82k) -> write(46%)
+0:32:26 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 565M 67% 504k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.2M/s ] 145G blocks: [ 16k 89% 3/s ]
+ cpus: 26 gc: 6% heap: 15G/32G direct: 62M postGC: 7.8G relInfo: 962M mpGeoms: 6.2G
+ read( 1%) -> (17/48) -> process(77% 76% 76% 75% 77% 76% 76% 76% 75% 75% 75% 76% 75% 76% 78% 75% 76% 77% 75% 75% 75% 75% 75% 76% 75% 75% 74% 76% 75% 75% 78%) -> (13k/82k) -> write(45%)
+0:32:36 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 570M 68% 508k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 146G blocks: [ 16k 89% 3/s ]
+ cpus: 25.9 gc: 5% heap: 20G/32G direct: 62M postGC: 7.4G relInfo: 962M mpGeoms: 6.3G
+ read( 1%) -> (17/48) -> process(76% 76% 78% 73% 75% 76% 77% 78% 78% 74% 76% 79% 79% 77% 77% 77% 75% 79% 76% 78% 77% 77% 76% 78% 76% 78% 76% 77% 76% 76% 78%) -> (17k/82k) -> write(46%)
+0:32:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 575M 68% 509k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 147G blocks: [ 16k 89% 3/s ]
+ cpus: 25.6 gc: 5% heap: 22G/32G direct: 62M postGC: 7.6G relInfo: 962M mpGeoms: 6.3G
+ read( 1%) -> (17/48) -> process(73% 73% 75% 74% 74% 72% 74% 75% 73% 76% 75% 77% 73% 75% 77% 77% 73% 75% 74% 77% 74% 74% 74% 76% 75% 75% 77% 74% 74% 74% 75%) -> (13k/82k) -> write(45%)
+0:32:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 581M 69% 540k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.3M/s ] 147G blocks: [ 16k 89% 4/s ]
+ cpus: 26.4 gc: 6% heap: 15G/32G direct: 62M postGC: 7.5G relInfo: 962M mpGeoms: 6.4G
+ read( 1%) -> (17/48) -> process(78% 78% 76% 78% 75% 79% 77% 76% 76% 77% 75% 77% 75% 77% 76% 79% 79% 78% 77% 79% 77% 76% 77% 80% 77% 77% 75% 76% 78% 77% 77%) -> (16k/82k) -> write(47%)
+0:33:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 587M 70% 583k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.4M/s ] 148G blocks: [ 16k 90% 4/s ]
+ cpus: 26.7 gc: 6% heap: 24G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 6.4G
+ read( 1%) -> (17/48) -> process(81% 83% 80% 83% 81% 81% 79% 78% 79% 80% 79% 82% 80% 83% 80% 80% 82% 79% 81% 81% 79% 84% 81% 81% 81% 80% 80% 81% 79% 83% 81%) -> (17k/82k) -> write(49%)
+0:33:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 592M 70% 558k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.4M/s ] 149G blocks: [ 16k 90% 3/s ]
+ cpus: 26.1 gc: 6% heap: 16G/32G direct: 62M postGC: 9.7G relInfo: 962M mpGeoms: 6.5G
+ read( 1%) -> (17/48) -> process(76% 79% 79% 75% 76% 75% 75% 74% 79% 76% 74% 78% 76% 75% 75% 75% 77% 77% 78% 76% 74% 75% 76% 76% 79% 77% 74% 76% 75% 75% 76%) -> (19k/82k) -> write(48%)
+0:33:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 598M 71% 551k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.4M/s ] 150G blocks: [ 16k 90% 4/s ]
+ cpus: 26.2 gc: 5% heap: 25G/32G direct: 62M postGC: 9.6G relInfo: 962M mpGeoms: 6.5G
+ read( 1%) -> (17/48) -> process(77% 77% 77% 77% 79% 78% 77% 78% 77% 77% 78% 78% 76% 79% 77% 75% 78% 76% 78% 76% 75% 78% 78% 77% 77% 80% 77% 75% 78% 78% 78%) -> (14k/82k) -> write(48%)
+0:33:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 603M 72% 558k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.3M/s ] 150G blocks: [ 16k 90% 4/s ]
+ cpus: 26.6 gc: 6% heap: 18G/32G direct: 62M postGC: 9.1G relInfo: 962M mpGeoms: 6.6G
+ read( 1%) -> (17/48) -> process(78% 78% 76% 77% 79% 77% 78% 79% 78% 78% 77% 78% 78% 79% 81% 76% 79% 76% 78% 78% 77% 79% 77% 76% 76% 77% 76% 75% 79% 78% 75%) -> (17k/82k) -> write(48%)
+0:33:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 609M 72% 563k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.3M/s ] 151G blocks: [ 16k 90% 3/s ]
+ cpus: 26.3 gc: 6% heap: 12G/32G direct: 62M postGC: 9.3G relInfo: 962M mpGeoms: 6.6G
+ read( 1%) -> (17/48) -> process(77% 76% 76% 78% 78% 78% 77% 79% 76% 78% 77% 76% 76% 76% 77% 73% 77% 78% 77% 77% 78% 78% 79% 76% 75% 76% 77% 77% 79% 74% 76%) -> (17k/82k) -> write(48%)
+0:33:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 615M 73% 568k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.3M/s ] 152G blocks: [ 17k 91% 4/s ]
+ cpus: 26.3 gc: 5% heap: 22G/32G direct: 62M postGC: 8.9G relInfo: 962M mpGeoms: 6.7G
+ read( 1%) -> (17/48) -> process(77% 78% 78% 75% 77% 76% 76% 77% 80% 78% 77% 76% 76% 78% 76% 75% 75% 75% 77% 77% 79% 76% 77% 77% 78% 79% 75% 77% 75% 76% 77%) -> (15k/82k) -> write(48%)
+0:34:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 620M 74% 516k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.2M/s ] 153G blocks: [ 17k 91% 3/s ]
+ cpus: 26.2 gc: 6% heap: 13G/32G direct: 62M postGC: 8.6G relInfo: 962M mpGeoms: 6.8G
+ read( 1%) -> (17/48) -> process(75% 77% 76% 77% 77% 79% 77% 76% 76% 77% 75% 75% 76% 75% 78% 77% 79% 78% 77% 77% 78% 80% 76% 77% 76% 74% 75% 77% 78% 76% 77%) -> (14k/82k) -> write(45%)
+0:34:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 625M 74% 529k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.3M/s ] 154G blocks: [ 17k 91% 3/s ]
+ cpus: 25.9 gc: 5% heap: 21G/32G direct: 62M postGC: 7.1G relInfo: 962M mpGeoms: 6.9G
+ read( 1%) -> (17/48) -> process(76% 77% 75% 76% 76% 77% 76% 76% 75% 78% 76% 80% 76% 76% 77% 76% 74% 77% 77% 76% 77% 77% 77% 75% 76% 76% 75% 79% 78% 78% 76%) -> (17k/82k) -> write(47%)
+0:34:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 631M 75% 528k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.3M/s ] 154G blocks: [ 17k 91% 3/s ]
+ cpus: 26 gc: 5% heap: 10G/32G direct: 62M postGC: 7.9G relInfo: 962M mpGeoms: 6.9G
+ read( 1%) -> (17/48) -> process(78% 76% 78% 77% 75% 77% 76% 74% 76% 77% 77% 75% 76% 76% 78% 77% 75% 77% 75% 76% 75% 75% 79% 77% 76% 75% 77% 76% 77% 75% 77%) -> (16k/82k) -> write(47%)
+0:34:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 636M 76% 555k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.3M/s ] 155G blocks: [ 17k 91% 4/s ]
+ cpus: 26 gc: 5% heap: 25G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 7G
+ read( 1%) -> (17/48) -> process(78% 79% 79% 81% 78% 78% 78% 77% 78% 80% 78% 81% 78% 78% 77% 82% 81% 77% 77% 79% 78% 78% 79% 80% 81% 77% 78% 78% 79% 78% 78%) -> (15k/82k) -> write(47%)
+0:34:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 641M 76% 520k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.2M/s ] 156G blocks: [ 17k 92% 3/s ]
+ cpus: 26.3 gc: 5% heap: 18G/32G direct: 62M postGC: 8.9G relInfo: 962M mpGeoms: 7.1G
+ read( 1%) -> (17/48) -> process(76% 77% 76% 83% 77% 80% 80% 77% 77% 78% 77% 78% 80% 77% 76% 79% 77% 83% 77% 76% 79% 79% 77% 76% 77% 75% 76% 80% 77% 78% 77%) -> (15k/82k) -> write(44%)
+0:34:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 647M 77% 553k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.3M/s ] 157G blocks: [ 17k 92% 3/s ]
+ cpus: 26.9 gc: 6% heap: 16G/32G direct: 62M postGC: 9G relInfo: 962M mpGeoms: 7.1G
+ read( 1%) -> (17/48) -> process(77% 77% 78% 77% 79% 78% 80% 78% 80% 75% 78% 78% 83% 79% 80% 79% 77% 77% 79% 81% 79% 79% 78% 79% 78% 76% 79% 80% 78% 80% 79%) -> (17k/82k) -> write(47%)
+0:35:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 652M 78% 561k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.3M/s ] 158G blocks: [ 17k 92% 4/s ]
+ cpus: 26.3 gc: 6% heap: 16G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 7.2G
+ read( 1%) -> (17/48) -> process(77% 75% 77% 77% 76% 75% 78% 78% 77% 76% 75% 76% 77% 78% 77% 77% 76% 77% 76% 77% 76% 76% 78% 80% 77% 75% 78% 76% 75% 78% 76%) -> (28k/82k) -> write(47%)
+0:35:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 658M 78% 558k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.3M/s ] 158G blocks: [ 17k 92% 3/s ]
+ cpus: 26.5 gc: 6% heap: 16G/32G direct: 62M postGC: 8.4G relInfo: 962M mpGeoms: 7.2G
+ read( 1%) -> (17/48) -> process(75% 77% 76% 78% 77% 78% 78% 76% 75% 79% 75% 76% 76% 77% 77% 78% 75% 77% 75% 77% 76% 77% 79% 78% 76% 76% 77% 77% 76% 76% 75%) -> (15k/82k) -> write(47%)
+0:35:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 664M 79% 585k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.4M/s ] 159G blocks: [ 17k 93% 4/s ]
+ cpus: 26 gc: 5% heap: 17G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 7.3G
+ read( 1%) -> (17/48) -> process(77% 79% 77% 78% 77% 78% 76% 77% 79% 75% 81% 77% 78% 76% 77% 77% 78% 77% 78% 76% 77% 79% 76% 78% 78% 76% 78% 79% 78% 77% 76%) -> (15k/82k) -> write(49%)
+0:35:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 670M 80% 582k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.4M/s ] 160G blocks: [ 17k 93% 3/s ]
+ cpus: 26.5 gc: 6% heap: 14G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 7.3G
+ read( 1%) -> (17/48) -> process(78% 79% 79% 77% 78% 78% 77% 77% 78% 78% 78% 78% 77% 76% 77% 77% 77% 76% 76% 78% 79% 78% 78% 79% 79% 77% 79% 78% 77% 77% 81%) -> (16k/82k) -> write(49%)
+0:35:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 675M 80% 547k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.3M/s ] 161G blocks: [ 17k 93% 3/s ]
+ cpus: 26.8 gc: 6% heap: 12G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 7.4G
+ read( 1%) -> (17/48) -> process(77% 76% 82% 75% 76% 75% 77% 75% 79% 78% 77% 75% 75% 77% 75% 76% 78% 77% 78% 75% 76% 77% 75% 82% 79% 75% 79% 76% 76% 84% 74%) -> (14k/82k) -> write(48%)
+0:35:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 681M 81% 558k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.3M/s ] 162G blocks: [ 17k 93% 3/s ]
+ cpus: 26.5 gc: 5% heap: 25G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 7.4G
+ read( 1%) -> (17/48) -> process(79% 80% 87% 78% 79% 78% 79% 77% 78% 78% 78% 78% 78% 78% 77% 78% 79% 78% 78% 77% 78% 79% 78% 85% 77% 78% 77% 78% 79% 82% 76%) -> (13k/82k) -> write(48%)
+0:36:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 687M 82% 576k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.3M/s ] 162G blocks: [ 17k 93% 4/s ]
+ cpus: 26.6 gc: 5% heap: 21G/32G direct: 62M postGC: 9.3G relInfo: 962M mpGeoms: 7.5G
+ read( 1%) -> (17/48) -> process(78% 77% 76% 77% 79% 79% 78% 80% 78% 78% 79% 80% 78% 77% 79% 78% 79% 77% 77% 77% 78% 77% 79% 78% 77% 78% 78% 78% 78% 78% 77%) -> (16k/82k) -> write(48%)
+0:36:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 692M 82% 585k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.4M/s ] 163G blocks: [ 17k 94% 3/s ]
+ cpus: 26.9 gc: 5% heap: 21G/32G direct: 62M postGC: 9.3G relInfo: 962M mpGeoms: 7.6G
+ read( 1%) -> (17/48) -> process(80% 78% 78% 78% 79% 80% 78% 77% 78% 81% 78% 79% 80% 76% 78% 81% 80% 79% 77% 79% 78% 76% 79% 79% 77% 78% 80% 83% 78% 78% 82%) -> (30k/82k) -> write(49%)
+0:36:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 698M 83% 586k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.3M/s ] 164G blocks: [ 17k 94% 4/s ]
+ cpus: 26.6 gc: 5% heap: 18G/32G direct: 62M postGC: 9.2G relInfo: 962M mpGeoms: 7.6G
+ read( 1%) -> (17/48) -> process(81% 79% 78% 80% 80% 79% 78% 79% 78% 78% 78% 78% 79% 76% 79% 77% 80% 78% 78% 79% 79% 78% 79% 80% 79% 79% 78% 79% 80% 81% 80%) -> (15k/82k) -> write(48%)
+0:36:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 704M 84% 562k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.3M/s ] 165G blocks: [ 17k 94% 3/s ]
+ cpus: 26.7 gc: 5% heap: 11G/32G direct: 62M postGC: 9.5G relInfo: 962M mpGeoms: 7.7G
+ read( 1%) -> (17/48) -> process(80% 77% 76% 75% 78% 78% 78% 77% 78% 78% 78% 78% 77% 77% 77% 78% 77% 80% 78% 77% 77% 76% 77% 78% 78% 76% 78% 77% 76% 77% 79%) -> (18k/82k) -> write(46%)
+0:36:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 710M 84% 576k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 165G blocks: [ 17k 94% 4/s ]
+ cpus: 26.7 gc: 6% heap: 10G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 7.7G
+ read( 1%) -> (17/48) -> process(77% 78% 76% 78% 75% 76% 76% 77% 77% 77% 77% 79% 78% 78% 74% 78% 78% 77% 79% 77% 78% 78% 78% 77% 78% 76% 77% 79% 78% 76% 77%) -> (16k/82k) -> write(47%)
+0:36:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 716M 85% 585k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 166G blocks: [ 17k 94% 3/s ]
+ cpus: 26.8 gc: 5% heap: 9.6G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 7.8G
+ read( 1%) -> (17/48) -> process(79% 78% 81% 77% 80% 79% 80% 78% 80% 80% 80% 79% 79% 77% 77% 79% 83% 80% 79% 79% 79% 78% 79% 78% 79% 82% 79% 78% 80% 78% 79%) -> (17k/82k) -> write(48%)
+0:37:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 721M 86% 574k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 167G blocks: [ 17k 95% 3/s ]
+ cpus: 26.5 gc: 5% heap: 24G/32G direct: 62M postGC: 8.4G relInfo: 962M mpGeoms: 7.8G
+ read( 1%) -> (17/48) -> process(78% 78% 79% 80% 80% 78% 81% 78% 78% 77% 78% 79% 78% 78% 77% 77% 79% 78% 79% 79% 78% 78% 78% 79% 77% 78% 78% 78% 78% 79% 78%) -> (15k/82k) -> write(47%)
+0:37:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 727M 86% 584k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 168G blocks: [ 17k 95% 4/s ]
+ cpus: 26.6 gc: 5% heap: 21G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 7.9G
+ read( 1%) -> (17/48) -> process(78% 77% 77% 78% 76% 77% 78% 75% 78% 78% 78% 76% 78% 78% 79% 77% 78% 77% 79% 76% 78% 78% 77% 78% 79% 77% 77% 81% 78% 79% 78%) -> (17k/82k) -> write(47%)
+0:37:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 733M 87% 583k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 169G blocks: [ 17k 95% 3/s ]
+ cpus: 26.5 gc: 6% heap: 16G/32G direct: 62M postGC: 8.8G relInfo: 962M mpGeoms: 7.9G
+ read( 1%) -> (17/48) -> process(78% 78% 78% 79% 77% 78% 78% 78% 77% 76% 75% 76% 77% 79% 77% 78% 79% 78% 76% 77% 76% 78% 76% 77% 77% 76% 76% 76% 77% 77% 76%) -> (17k/82k) -> write(48%)
+0:37:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 739M 88% 586k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.3M/s ] 169G blocks: [ 17k 95% 4/s ]
+ cpus: 26.5 gc: 6% heap: 13G/32G direct: 62M postGC: 8.5G relInfo: 962M mpGeoms: 8G
+ read( 1%) -> (17/48) -> process(76% 77% 75% 76% 78% 78% 76% 76% 76% 77% 75% 78% 80% 77% 79% 75% 77% 78% 78% 76% 77% 77% 78% 76% 78% 77% 77% 76% 76% 76% 77%) -> (16k/82k) -> write(47%)
+0:37:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 745M 89% 620k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.4M/s ] 170G blocks: [ 17k 96% 4/s ]
+ cpus: 27.6 gc: 5% heap: 18G/32G direct: 62M postGC: 9.1G relInfo: 962M mpGeoms: 8G
+ read( 1%) -> (17/48) -> process(80% 82% 81% 83% 81% 80% 82% 80% 80% 83% 80% 80% 81% 84% 82% 81% 81% 81% 81% 82% 81% 83% 80% 83% 83% 80% 82% 80% 81% 83% 82%) -> (14k/82k) -> write(50%)
+0:37:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 751M 89% 604k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 171G blocks: [ 17k 96% 4/s ]
+ cpus: 26.8 gc: 5% heap: 17G/32G direct: 62M postGC: 8.9G relInfo: 962M mpGeoms: 8G
+ read( 1%) -> (17/48) -> process(77% 79% 75% 83% 81% 80% 77% 80% 79% 79% 79% 79% 78% 78% 77% 79% 79% 80% 78% 81% 79% 79% 78% 78% 79% 79% 82% 79% 81% 80% 79%) -> (15k/82k) -> write(48%)
+0:38:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 757M 90% 604k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 172G blocks: [ 18k 96% 3/s ]
+ cpus: 26.9 gc: 6% heap: 17G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 8.1G
+ read( 1%) -> (17/48) -> process(76% 78% 79% 78% 79% 77% 78% 78% 77% 77% 77% 77% 78% 79% 81% 78% 76% 79% 79% 78% 77% 78% 82% 81% 77% 78% 79% 78% 78% 81% 79%) -> (16k/82k) -> write(48%)
+0:38:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 763M 91% 601k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 172G blocks: [ 18k 96% 4/s ]
+ cpus: 27 gc: 6% heap: 18G/32G direct: 62M postGC: 9G relInfo: 962M mpGeoms: 8.1G
+ read( 1%) -> (17/48) -> process(78% 77% 77% 79% 81% 81% 79% 78% 81% 78% 79% 78% 78% 79% 79% 78% 80% 78% 79% 80% 77% 78% 78% 79% 77% 83% 79% 80% 79% 78% 79%) -> (17k/82k) -> write(48%)
+0:38:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 769M 91% 593k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 173G blocks: [ 18k 96% 4/s ]
+ cpus: 27.1 gc: 6% heap: 18G/32G direct: 62M postGC: 9.3G relInfo: 962M mpGeoms: 8.2G
+ read( 1%) -> (17/48) -> process(79% 79% 80% 79% 79% 79% 80% 77% 79% 78% 79% 78% 78% 81% 82% 77% 80% 78% 79% 76% 80% 77% 78% 77% 80% 82% 79% 78% 80% 81% 78%) -> (16k/82k) -> write(47%)
+0:38:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 775M 92% 583k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 174G blocks: [ 18k 97% 4/s ]
+ cpus: 26.8 gc: 6% heap: 15G/32G direct: 62M postGC: 9.7G relInfo: 962M mpGeoms: 8.2G
+ read( 1%) -> (17/48) -> process(78% 78% 81% 77% 78% 80% 77% 81% 79% 78% 81% 78% 76% 78% 78% 77% 79% 81% 78% 76% 78% 78% 78% 80% 80% 77% 81% 76% 78% 77% 77%) -> (19k/82k) -> write(47%)
+0:38:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 781M 93% 579k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 175G blocks: [ 18k 97% 3/s ]
+ cpus: 26.7 gc: 6% heap: 10G/32G direct: 62M postGC: 9.6G relInfo: 962M mpGeoms: 8.3G
+ read( 1%) -> (17/48) -> process(77% 76% 77% 78% 78% 78% 78% 79% 79% 80% 77% 78% 78% 79% 79% 80% 77% 78% 80% 77% 77% 78% 79% 78% 78% 79% 77% 79% 77% 79% 79%) -> (17k/82k) -> write(48%)
+0:38:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 787M 93% 571k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 175G blocks: [ 18k 97% 3/s ]
+ cpus: 26.6 gc: 5% heap: 9.1G/32G direct: 62M postGC: 8.7G relInfo: 962M mpGeoms: 8.3G
+ read( 1%) -> (17/48) -> process(79% 78% 78% 79% 77% 77% 77% 77% 80% 78% 77% 78% 79% 79% 80% 78% 76% 80% 77% 78% 78% 76% 78% 78% 80% 76% 78% 79% 79% 81% 78%) -> (17k/82k) -> write(47%)
+0:39:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 792M 94% 569k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.3M/s ] 176G blocks: [ 18k 97% 3/s ]
+ cpus: 26.6 gc: 5% heap: 22G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 8.3G
+ read( 1%) -> (17/48) -> process(79% 80% 77% 78% 80% 77% 79% 80% 78% 77% 79% 79% 79% 78% 78% 79% 77% 77% 77% 79% 79% 78% 77% 78% 77% 78% 77% 78% 77% 79% 77%) -> (15k/82k) -> write(47%)
+0:39:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 798M 95% 589k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 177G blocks: [ 18k 98% 4/s ]
+ cpus: 27.3 gc: 5% heap: 25G/32G direct: 62M postGC: 8.1G relInfo: 962M mpGeoms: 8.4G
+ read( 1%) -> (17/48) -> process(84% 80% 80% 83% 78% 80% 80% 80% 81% 80% 79% 82% 81% 79% 81% 79% 78% 78% 78% 80% 83% 82% 82% 82% 79% 79% 79% 79% 80% 79% 81%) -> (16k/82k) -> write(47%)
+0:39:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 804M 96% 589k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 178G blocks: [ 18k 98% 3/s ]
+ cpus: 27.1 gc: 5% heap: 25G/32G direct: 62M postGC: 8.5G relInfo: 962M mpGeoms: 8.4G
+ read( 1%) -> (17/48) -> process(80% 82% 80% 78% 85% 79% 79% 78% 80% 81% 80% 79% 78% 78% 80% 80% 80% 80% 80% 81% 79% 81% 79% 79% 81% 79% 79% 79% 81% 84% 80%) -> (15k/82k) -> write(48%)
+0:39:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 810M 96% 575k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 178G blocks: [ 18k 98% 3/s ]
+ cpus: 27 gc: 6% heap: 25G/32G direct: 62M postGC: 8.5G relInfo: 962M mpGeoms: 8.5G
+ read( 1%) -> (17/48) -> process(79% 78% 80% 80% 80% 79% 77% 81% 77% 81% 80% 78% 77% 83% 82% 79% 79% 79% 78% 78% 77% 78% 81% 79% 78% 84% 80% 78% 78% 77% 78%) -> (29k/82k) -> write(46%)
+0:39:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 816M 97% 583k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 179G blocks: [ 18k 98% 4/s ]
+ cpus: 27.2 gc: 6% heap: 11G/32G direct: 62M postGC: 8.3G relInfo: 962M mpGeoms: 8.5G
+ read( 1%) -> (17/48) -> process(79% 79% 79% 80% 79% 80% 80% 79% 80% 78% 79% 81% 80% 81% 79% 78% 81% 79% 81% 79% 78% 78% 81% 77% 81% 79% 80% 79% 80% 79% 80%) -> (16k/82k) -> write(47%)
+0:39:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 821M 98% 568k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 180G blocks: [ 18k 98% 3/s ]
+ cpus: 26.9 gc: 6% heap: 16G/32G direct: 62M postGC: 7.1G relInfo: 962M mpGeoms: 8.6G
+ read( 1%) -> (17/48) -> process(79% 79% 79% 83% 79% 78% 79% 79% 78% 80% 78% 78% 79% 78% 82% 80% 76% 78% 78% 82% 79% 77% 77% 78% 80% 80% 77% 77% 78% 76% 79%) -> (16k/82k) -> write(46%)
+0:40:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 827M 98% 565k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 181G blocks: [ 18k 99% 4/s ]
+ cpus: 26.8 gc: 6% heap: 13G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 8.6G
+ read( 1%) -> (17/48) -> process(78% 79% 81% 80% 78% 80% 80% 79% 77% 80% 78% 78% 77% 78% 80% 79% 79% 77% 78% 78% 80% 79% 78% 78% 78% 78% 78% 77% 79% 79% 79%) -> (15k/82k) -> write(46%)
+0:40:17 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 833M 99% 575k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.3M/s ] 181G blocks: [ 18k 99% 4/s ]
+ cpus: 27 gc: 5% heap: 11G/32G direct: 62M postGC: 7.2G relInfo: 962M mpGeoms: 8.7G
+ read( 1%) -> (17/48) -> process(80% 80% 79% 80% 82% 78% 78% 81% 80% 79% 79% 80% 81% 79% 80% 79% 79% 81% 80% 79% 78% 78% 80% 79% 79% 79% 82% 81% 80% 79% 79%) -> (17k/82k) -> write(46%)
+0:40:27 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 839M 100% 572k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.3M/s ] 182G blocks: [ 18k 99% 3/s ]
+ cpus: 26.5 gc: 6% heap: 12G/32G direct: 62M postGC: 10G relInfo: 962M mpGeoms: 9.1G
+ read( 1%) -> (17/48) -> process(80% 82% 81% 81% 78% 78% 78% 80% 81% 78% 77% 77% 78% 78% 79% 78% 79% 78% 82% 79% 79% 78% 77% 79% 78% 79% 77% 79% 77% 78% 81%) -> (15k/82k) -> write(46%)
+0:40:35 INF [osm_pass2:process] - Finished ways: 841,994,745 (493k/s) in 28m27s cpu:12h3m24s gc:1m31s avg:25.4
+0:40:37 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 282k/s ] rels: [ 73k 1% 7.3k/s ] features: [ 2.8B 676k/s ] 182G blocks: [ 18k 99% 3/s ]
+ cpus: 17.6 gc: 3% heap: 24G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 9.1G
+ read( 1%) -> (17/48) -> process(41% 24% 30% 69% 76% 77% 67% 48% 57% 38% 65% 45% 53% 46% 56% 34% 53% 42% 51% 37% 82% 57% 64% 78% 27% 55% 55% 54% 41% 60% 23%) -> (13k/82k) -> write(23%)
+0:40:47 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 300k 3% 22k/s ] features: [ 2.8B 180k/s ] 183G blocks: [ 18k 99% <1/s ]
+ cpus: 25.1 gc: 2% heap: 9.4G/32G direct: 62M postGC: 6.1G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(73% 73% 84% 81% 77% 75% 76% 76% 75% 82% 77% 84% 75% 78% 74% 80% 76% 77% 76% 83% 80% 78% 69% 79% 74% 81% 87% 74% 74% 78% 72%) -> (15k/82k) -> write( 8%)
+0:40:57 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 497k 5% 19k/s ] features: [ 2.8B 176k/s ] 183G blocks: [ 18k 99% <1/s ]
+ cpus: 25.3 gc: 0% heap: 16G/32G direct: 62M postGC: 6.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(81% 75% 77% 85% 84% 79% 80% 73% 78% 83% 79% 83% 84% 85% 82% 83% 79% 83% 81% 84% 83% 82% 79% 82% 80% 82% 79% 83% 83% 82% 82%) -> (15k/82k) -> write( 8%)
+0:41:07 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 701k 7% 20k/s ] features: [ 2.8B 153k/s ] 184G blocks: [ 18k 99% 0/s ]
+ cpus: 26.3 gc: 1% heap: 9.4G/32G direct: 62M postGC: 6.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(82% 84% 85% 80% 83% 81% 84% 79% 79% 88% 83% 82% 90% 86% 81% 85% 96% 84% 81% 82% 86% 91% 80% 84% 84% 83% 85% 89% 82% 82% 76%) -> (15k/82k) -> write( 7%)
+0:41:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 900k 9% 19k/s ] features: [ 2.8B 923k/s ] 184G blocks: [ 18k 99% <1/s ]
+ cpus: 26.7 gc: 1% heap: 6.6G/32G direct: 62M postGC: 6.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(84% 80% 85% 83% 81% 84% 87% 80% 82% 86% 85% 88% 98% 89% 82% 87% 85% 87% 85% 88% 85% 85% 85% 87% 87% 81% 81% 89% 80% 85% 71%) -> (17k/82k) -> write(21%)
+0:41:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.1M 11% 21k/s ] features: [ 2.8B 786k/s ] 185G blocks: [ 18k 99% <1/s ]
+ cpus: 26.6 gc: 1% heap: 6.8G/32G direct: 62M postGC: 6.6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(85% 80% 80% 82% 86% 85% 83% 81% 86% 85% 86% 81% 86% 83% 81% 87% 83% 85% 86% 88% 85% 81% 84% 87% 96% 82% 83% 87% 82% 91% 78%) -> (18k/82k) -> write(19%)
+0:41:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.3M 14% 21k/s ] features: [ 2.8B 155k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 26.8 gc: 2% heap: 7.3G/32G direct: 62M postGC: 7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(86% 86% 84% 85% 85% 85% 80% 84% 88% 85% 87% 85% 90% 85% 90% 82% 85% 88% 86% 78% 84% 84% 85% 83% 85% 84% 81% 84% 85% 86% 81%) -> (15k/82k) -> write( 7%)
+0:41:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.5M 16% 23k/s ] features: [ 2.8B 187k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 26.6 gc: 2% heap: 23G/32G direct: 62M postGC: 7.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(89% 82% 86% 85% 86% 82% 83% 84% 78% 88% 79% 82% 87% 85% 82% 82% 79% 85% 84% 98% 83% 80% 83% 89% 84% 83% 82% 87% 81% 81% 82%) -> (14k/82k) -> write( 9%)
+0:41:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 1.8M 19% 25k/s ] features: [ 2.8B 158k/s ] 186G blocks: [ 18k 99% <1/s ]
+ cpus: 26.2 gc: 2% heap: 22G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(85% 80% 82% 84% 86% 79% 82% 86% 77% 79% 80% 84% 85% 80% 83% 81% 80% 82% 84% 85% 76% 80% 79% 84% 83% 91% 80% 85% 79% 85% 83%) -> (16k/82k) -> write( 8%)
+0:42:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2M 21% 24k/s ] features: [ 2.8B 177k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 26.8 gc: 3% heap: 9.7G/32G direct: 62M postGC: 8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(86% 83% 86% 86% 85% 80% 87% 87% 81% 81% 83% 90% 89% 91% 80% 85% 84% 88% 86% 86% 70% 84% 80% 83% 86% 86% 83% 86% 82% 83% 88%) -> (16k/82k) -> write( 9%)
+0:42:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.3M 24% 29k/s ] features: [ 2.8B 192k/s ] 187G blocks: [ 18k 99% <1/s ]
+ cpus: 26.9 gc: 2% heap: 14G/32G direct: 62M postGC: 8.1G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (16/48) -> process(81% 86% 87% 86% 80% 86% 87% 84% 85% 82% 81% 93% 87% 91% 84% 87% 83% 87% 84% 87% 81% 83% 84% 85% 87% 87% 85% 84% 85% 85% 86%) -> (15k/82k) -> write( 9%)
+0:42:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.6M 28% 32k/s ] features: [ 2.8B 187k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 26.8 gc: 2% heap: 18G/32G direct: 62M postGC: 8.5G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(86% 85% 82% 86% 83% 84% 86% 87% 91% 72% 85% 87% 84% 85% 86% 84% 83% 88% 85% 82% 84% 84% 85% 88% 88% 85% 87% 85% 84% 86% 86%) -> (12k/82k) -> write( 9%)
+0:42:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 2.9M 31% 31k/s ] features: [ 2.8B 205k/s ] 188G blocks: [ 18k 99% <1/s ]
+ cpus: 27 gc: 2% heap: 25G/32G direct: 62M postGC: 8.8G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(84% 85% 82% 90% 87% 84% 84% 85% 86% 82% 84% 82% 82% 86% 90% 85% 86% 87% 87% 83% 88% 86% 86% 89% 85% 90% 85% 84% 75% 86% 85%) -> (17k/82k) -> write( 9%)
+0:42:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.3M 34% 34k/s ] features: [ 2.8B 176k/s ] 189G blocks: [ 18k 99% <1/s ]
+ cpus: 26.9 gc: 3% heap: 11G/32G direct: 62M postGC: 9.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(87% 88% 84% 88% 83% 84% 82% 84% 86% 72% 80% 81% 88% 85% 88% 84% 89% 86% 84% 84% 84% 81% 83% 88% 83% 86% 83% 82% 84% 89% 85%) -> (15k/82k) -> write( 8%)
+0:42:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 3.6M 38% 33k/s ] features: [ 2.8B 214k/s ] 189G blocks: [ 18k 99% <1/s ]
+ cpus: 27.1 gc: 2% heap: 10G/32G direct: 62M postGC: 6.5G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(79% 86% 83% 84% 89% 81% 85% 81% 85% 81% 85% 84% 86% 86% 87% 85% 87% 86% 85% 82% 83% 81% 78% 87% 84% 85% 83% 82% 83% 86% 81%) -> (14k/82k) -> write(10%)
+0:43:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4M 41% 34k/s ] features: [ 2.8B 228k/s ] 190G blocks: [ 18k 99% <1/s ]
+ cpus: 27.1 gc: 1% heap: 13G/32G direct: 62M postGC: 6.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(99% 89% 86% 91% 90% 82% 88% 83% 84% 80% 84% 90% 82% 82% 89% 89% 82% 82% 90% 85% 85% 85% 85% 93% 86% 81% 85% 88% 83% 87% 86%) -> (15k/82k) -> write(10%)
+0:43:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.3M 45% 33k/s ] features: [ 2.8B 170k/s ] 190G blocks: [ 18k 100% <1/s ]
+ cpus: 27 gc: 2% heap: 14G/32G direct: 62M postGC: 7.3G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(91% 89% 84% 88% 92% 82% 87% 86% 84% 80% 84% 86% 82% 83% 85% 84% 81% 98% 81% 84% 86% 81% 83% 84% 85% 82% 88% 88% 82% 90% 86%) -> (16k/82k) -> write( 8%)
+0:43:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 4.6M 48% 34k/s ] features: [ 2.8B 340k/s ] 191G blocks: [ 18k 100% <1/s ]
+ cpus: 26.5 gc: 3% heap: 17G/32G direct: 62M postGC: 7.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(80% 87% 81% 80% 81% 80% 82% 87% 81% 82% 78% 86% 83% 82% 82% 83% 81% 97% 75% 81% 85% 85% 81% 84% 85% 83% 83% 85% 82% 79% 85%) -> (15k/82k) -> write(13%)
+0:43:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5M 52% 40k/s ] features: [ 2.8B 724k/s ] 193G blocks: [ 18k 100% <1/s ]
+ cpus: 26.6 gc: 3% heap: 18G/32G direct: 62M postGC: 8.2G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(81% 88% 81% 82% 82% 81% 85% 85% 82% 87% 80% 77% 86% 84% 84% 82% 85% 92% 82% 84% 85% 81% 83% 83% 79% 84% 80% 82% 80% 79% 85%) -> (14k/82k) -> write(23%)
+0:43:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.4M 56% 32k/s ] features: [ 2.8B 292k/s ] 193G blocks: [ 18k 100% <1/s ]
+ cpus: 23.6 gc: 3% heap: 22G/32G direct: 62M postGC: 8.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(70% 69% 75% 75% 74% 71% 76% 75% 72% 75% 73% 71% 72% 76% 73% 72% 72% 80% 72% 77% 82% 71% 75% 74% 72% 77% 83% 70% 73% 70% 73%) -> (14k/82k) -> write(11%)
+0:43:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 5.8M 60% 38k/s ] features: [ 2.8B 228k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 26.7 gc: 2% heap: 25G/32G direct: 62M postGC: 8.6G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(87% 82% 85% 84% 86% 83% 83% 88% 86% 78% 84% 86% 85% 84% 88% 88% 81% 88% 84% 86% 84% 83% 85% 87% 84% 87% 74% 87% 86% 79% 84%) -> (14k/82k) -> write(10%)
+0:44:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.2M 64% 39k/s ] features: [ 2.8B 198k/s ] 194G blocks: [ 18k 100% <1/s ]
+ cpus: 27.2 gc: 2% heap: 11G/32G direct: 62M postGC: 9G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(89% 85% 85% 86% 87% 84% 84% 85% 90% 85% 86% 86% 87% 82% 88% 88% 83% 87% 86% 91% 87% 83% 89% 88% 85% 89% 85% 87% 87% 86% 85%) -> (16k/82k) -> write( 9%)
+0:44:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.5M 68% 37k/s ] features: [ 2.8B 284k/s ] 195G blocks: [ 18k 100% <1/s ]
+ cpus: 26.9 gc: 2% heap: 13G/32G direct: 62M postGC: 9.4G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(81% 85% 86% 83% 86% 83% 83% 82% 86% 82% 83% 85% 85% 82% 89% 86% 83% 81% 82% 85% 86% 84% 87% 89% 83% 86% 86% 86% 85% 82% 88%) -> (15k/82k) -> write(12%)
+0:44:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 6.9M 71% 33k/s ] features: [ 2.8B 267k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 27.3 gc: 2% heap: 22G/32G direct: 62M postGC: 6.7G relInfo: 962M mpGeoms: 9.1G
+ read( 0%) -> (17/48) -> process(91% 90% 85% 82% 88% 82% 86% 81% 87% 85% 83% 92% 85% 82% 84% 82% 80% 87% 82% 79% 83% 84% 81% 84% 78% 85% 80% 88% 90% 82% 85%) -> (18k/82k) -> write(10%)
+0:44:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.2M 75% 34k/s ] features: [ 2.8B 158k/s ] 196G blocks: [ 18k 100% <1/s ]
+ cpus: 26.9 gc: 2% heap: 7.4G/32G direct: 55M postGC: 7.2G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (16/48) -> process(91% 87% 90% 87% 85% 83% 85% 84% 86% 86% 84% 83% 85% 84% 82% 85% 83% 87% 86% 81% 91% 85% 90% 86% 83% 88% 81% 88% 82% 82% 81%) -> (19k/82k) -> write( 8%)
+0:44:48 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 7.6M 78% 35k/s ] features: [ 2.8B 166k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 26.3 gc: 2% heap: 23G/32G direct: 55M postGC: 7.7G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (9/48) -> process(87% 81% 86% 83% 83% 83% 79% 80% 86% 82% 89% 81% 81% 83% 82% 86% 85% 86% 86% 81% 83% 82% 81% 79% 80% 84% 81% 82% 83% 82% 84%) -> (15k/82k) -> write( 8%)
+0:44:58 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8M 82% 37k/s ] features: [ 2.8B 167k/s ] 197G blocks: [ 18k 100% 0/s ]
+ cpus: 26.4 gc: 2% heap: 22G/32G direct: 55M postGC: 7.7G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (9/48) -> process(83% 81% 87% 88% 85% 86% 81% 81% 82% 80% 85% 81% 82% 77% 82% 87% 82% 86% 86% 82% 86% 85% 80% 82% 83% 80% 83% 79% 84% 86% 86%) -> (14k/82k) -> write( 8%)
+0:45:08 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.3M 86% 37k/s ] features: [ 2.8B 173k/s ] 197G blocks: [ 18k 100% <1/s ]
+ cpus: 27.2 gc: 1% heap: 24G/32G direct: 55M postGC: 7.8G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (6/48) -> process(93% 83% 89% 87% 88% 84% 83% 80% 89% 83% 89% 89% 86% 83% 84% 88% 89% 91% 88% 86% 85% 87% 83% 84% 86% 86% 88% 85% 88% 86% 87%) -> (17k/82k) -> write( 8%)
+0:45:18 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 8.7M 90% 37k/s ] features: [ 2.8B 200k/s ] 198G blocks: [ 18k 100% <1/s ]
+ cpus: 27.3 gc: 1% heap: 8.2G/32G direct: 55M postGC: 8G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (4/48) -> process(90% 84% 83% 88% 94% 87% 85% 83% 90% 85% 89% 90% 88% 85% 85% 84% 87% 91% 88% 86% 83% 85% 83% 84% 90% 86% 86% 84% 89% 85% 86%) -> (14k/82k) -> write( 9%)
+0:45:28 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.1M 94% 38k/s ] features: [ 2.8B 160k/s ] 198G blocks: [ 18k 100% 1/s ]
+ cpus: 27 gc: 1% heap: 26G/32G direct: 55M postGC: 8.2G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/48) -> process(90% 84% 83% 88% 88% 86% 85% 84% 85% 85% 88% 88% 83% 88% 80% 83% 83% 91% 89% 85% 85% 86% 86% 87% 85% 85% 87% 86% 91% 84% 89%) -> (16k/82k) -> write( 8%)
+0:45:38 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.5M 98% 37k/s ] features: [ 2.8B 164k/s ] 199G blocks: [ 18k 100% 1/s ]
+ cpus: 27.2 gc: 1% heap: 8.5G/32G direct: 55M postGC: 8.2G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/48) -> process(89% 87% 85% 88% 91% 89% 88% 88% 87% 87% 85% 85% 83% 87% 80% 84% 83% 89% 89% 88% 86% 89% 88% 86% 81% 85% 88% 87% 88% 81% 89%) -> (15k/82k) -> write( 8%)
+0:45:43 INF [osm_pass2:process] - Finished relations: 9,718,612 (31k/s) in 5m8s cpu:2h16m32s gc:6s avg:26.6
+0:45:44 INF [osm_pass2] - nodes: [ 7.5B 100% 0/s ] 76G ways: [ 841M 100% 0/s ] rels: [ 9.7M 100% 39k/s ] features: [ 2.8B 194k/s ] 199G blocks: [ 18k 100% 1/s ]
+ cpus: 27 gc: 1% heap: 13G/32G direct: 54M postGC: 8.2G relInfo: 962M mpGeoms: 9.1G
+ read( -%) -> (0/48) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/82k) -> write( -%)
+0:45:44 DEB [osm_pass2] - Processed 18,767 blocks:
+0:45:44 DEB [osm_pass2] - nodes: 7,546,573,682 (18M/s) in 6m46s cpu:3h13m18s gc:17s avg:28.5
+0:45:44 DEB [osm_pass2] - ways: 841,994,745 (493k/s) in 28m27s cpu:12h3m24s gc:1m31s avg:25.4
+0:45:44 DEB [osm_pass2] - relations: 9,718,612 (31k/s) in 5m8s cpu:2h16m32s gc:6s avg:26.6
+0:45:44 INF [osm_pass2] - Finished in 40m20s cpu:17h32m47s gc:1m54s avg:26.1
+0:45:44 INF [osm_pass2] - read 1x(1% 35s sys:29s wait:38m4s done:1m7s)
+0:45:44 INF [osm_pass2] - process 31x(79% 31m41s sys:43s block:27s wait:4s)
+0:45:44 INF [osm_pass2] - write 1x(38% 15m18s sys:1m31s wait:24m21s)
+0:45:44 INF [boundaries] -
+0:45:44 INF [boundaries] - Starting...
+0:45:44 INF [boundaries] - Creating polygons for 218 boundaries
+0:45:53 INF [boundaries] - Finished creating 218 country polygons
+0:45:59 WAR [boundaries] - no left or right country for border between OSM country relations: [449220] around https://www.openstreetmap.org/#map=10/24.37468/118.13815
+0:46:02 INF [boundaries] - Finished in 18s cpu:22s avg:1.2
+0:46:03 INF - Deleting node.db to make room for output file
+0:46:03 INF [sort] -
+0:46:03 INF [sort] - Starting...
+0:46:13 INF [sort] - chunks: [ 24 / 696 3% ] 199G
+ cpus: 11.4 gc: 10% heap: 18G/32G direct: 55M postGC: 18G
+ -> (640/729) -> worker(26% 26% 34% 34% 34% 34% 22% 22% 22% 22% 22% 22% 23% 22% 22% 28% 23% 28% 22% 22% 22% 22% 22% 22% 21% 21% 21% 21% 20% 20% 10% 10%)
+0:46:23 INF [sort] - chunks: [ 52 / 696 7% ] 198G
+ cpus: 15.6 gc: 9% heap: 14G/32G direct: 55M postGC: 14G
+ -> (612/729) -> worker(29% 29% 32% 36% 26% 36% 23% 25% 24% 38% 22% 45% 34% 46% 44% 39% 23% 40% 40% 37% 35% 30% 33% 33% 31% 32% 28% 29% 27% 29% 39% 37%)
+0:46:33 INF [sort] - chunks: [ 82 / 696 12% ] 198G
+ cpus: 12.7 gc: 4% heap: 10G/32G direct: 55M postGC: 6.9G
+ -> (582/729) -> worker(32% 34% 33% 11% 32% 33% 34% 30% 32% 35% 33% 30% 32% 31% 27% 35% 31% 32% 34% 36% 29% 32% 32% 30% 17% 18% 16% 16% 20% 16% 9% 13%)
+0:46:43 INF [sort] - chunks: [ 108 / 696 16% ] 198G
+ cpus: 16 gc: 9% heap: 11G/32G direct: 55M postGC: 9.6G
+ -> (556/729) -> worker(29% 33% 34% 39% 36% 35% 31% 29% 29% 31% 30% 37% 32% 32% 37% 36% 33% 27% 35% 28% 28% 32% 31% 28% 40% 40% 37% 35% 39% 40% 36% 32%)
+0:46:53 INF [sort] - chunks: [ 136 / 696 20% ] 198G
+ cpus: 14.6 gc: 7% heap: 12G/32G direct: 55M postGC: 12G
+ -> (528/729) -> worker(37% 37% 39% 26% 25% 27% 44% 37% 41% 40% 43% 36% 42% 28% 41% 41% 43% 38% 39% 34% 29% 28% 34% 27% 27% 23% 28% 25% 27% 25% 26% 38%)
+0:47:03 INF [sort] - chunks: [ 166 / 696 24% ] 199G
+ cpus: 15.3 gc: 6% heap: 14G/32G direct: 55M postGC: 12G
+ -> (498/729) -> worker(38% 39% 40% 32% 34% 38% 42% 39% 34% 37% 39% 38% 42% 35% 35% 38% 41% 36% 37% 31% 35% 35% 31% 32% 34% 34% 34% 29% 30% 33% 40% 38%)
+0:47:13 INF [sort] - chunks: [ 201 / 696 29% ] 198G
+ cpus: 16 gc: 9% heap: 13G/32G direct: 55M postGC: 13G
+ -> (463/729) -> worker(37% 34% 34% 35% 41% 39% 36% 32% 35% 41% 37% 44% 31% 31% 43% 43% 36% 30% 31% 32% 33% 26% 32% 33% 30% 40% 40% 33% 32% 32% 40% 39%)
+0:47:23 INF [sort] - chunks: [ 227 / 696 33% ] 199G
+ cpus: 15.4 gc: 10% heap: 12G/32G direct: 55M postGC: 12G
+ -> (437/729) -> worker(36% 35% 36% 31% 31% 30% 25% 27% 35% 31% 32% 24% 29% 33% 29% 28% 27% 44% 46% 37% 43% 36% 32% 32% 34% 31% 32% 33% 36% 35% 38% 32%)
+0:47:33 INF [sort] - chunks: [ 257 / 696 37% ] 199G
+ cpus: 15.7 gc: 7% heap: 13G/32G direct: 55M postGC: 10G
+ -> (407/729) -> worker(40% 35% 40% 33% 39% 33% 34% 34% 28% 35% 29% 35% 26% 31% 23% 36% 34% 27% 31% 36% 22% 32% 31% 33% 35% 34% 41% 34% 33% 31% 40% 41%)
+0:47:43 INF [sort] - chunks: [ 290 / 696 42% ] 198G
+ cpus: 16.7 gc: 9% heap: 13G/32G direct: 55M postGC: 11G
+ -> (374/729) -> worker(31% 41% 45% 33% 40% 31% 35% 33% 37% 33% 36% 28% 33% 35% 35% 37% 32% 34% 29% 36% 35% 34% 34% 33% 34% 44% 41% 33% 33% 34% 30% 41%)
+0:47:53 INF [sort] - chunks: [ 322 / 696 46% ] 198G
+ cpus: 14.9 gc: 9% heap: 10G/32G direct: 55M postGC: 8.1G
+ -> (342/729) -> worker(35% 33% 31% 34% 36% 31% 26% 30% 34% 29% 36% 32% 38% 34% 26% 23% 31% 39% 28% 37% 36% 35% 37% 34% 34% 32% 37% 36% 34% 34% 35% 33%)
+0:48:03 INF [sort] - chunks: [ 353 / 696 51% ] 198G
+ cpus: 16.6 gc: 10% heap: 12G/32G direct: 55M postGC: 12G
+ -> (311/729) -> worker(33% 36% 36% 43% 38% 40% 32% 29% 24% 33% 24% 29% 39% 34% 39% 25% 35% 38% 34% 38% 37% 35% 34% 33% 35% 40% 31% 40% 34% 33% 37% 42%)
+0:48:13 INF [sort] - chunks: [ 382 / 696 55% ] 199G
+ cpus: 16.5 gc: 9% heap: 12G/32G direct: 55M postGC: 12G
+ -> (282/729) -> worker(31% 30% 30% 37% 34% 40% 44% 39% 42% 36% 34% 33% 40% 32% 37% 35% 36% 34% 41% 34% 35% 38% 34% 39% 38% 38% 32% 36% 36% 31% 30% 35%)
+0:48:23 INF [sort] - chunks: [ 415 / 696 60% ] 198G
+ cpus: 15.7 gc: 10% heap: 12G/32G direct: 55M postGC: 12G
+ -> (249/729) -> worker(34% 32% 29% 33% 31% 34% 25% 36% 32% 38% 33% 34% 33% 31% 32% 34% 38% 34% 33% 33% 31% 37% 31% 38% 35% 33% 34% 34% 34% 34% 34% 33%)
+0:48:33 INF [sort] - chunks: [ 447 / 696 64% ] 199G
+ cpus: 15.6 gc: 10% heap: 12G/32G direct: 55M postGC: 12G
+ -> (217/729) -> worker(27% 35% 28% 36% 33% 39% 34% 33% 35% 35% 34% 32% 32% 31% 31% 32% 36% 33% 34% 37% 32% 39% 33% 38% 37% 33% 35% 36% 38% 31% 30% 34%)
+0:48:43 INF [sort] - chunks: [ 475 / 696 68% ] 199G
+ cpus: 16.5 gc: 10% heap: 10G/32G direct: 55M postGC: 10G
+ -> (189/729) -> worker(29% 29% 29% 39% 31% 36% 39% 36% 36% 39% 36% 33% 33% 30% 33% 35% 38% 33% 32% 30% 31% 34% 36% 35% 36% 35% 33% 34% 36% 30% 31% 33%)
+0:48:53 INF [sort] - chunks: [ 508 / 696 73% ] 198G
+ cpus: 15.9 gc: 8% heap: 11G/32G direct: 55M postGC: 9.1G
+ -> (156/729) -> worker(33% 34% 30% 40% 36% 43% 31% 28% 29% 32% 30% 36% 35% 34% 36% 34% 32% 33% 34% 37% 34% 31% 34% 32% 38% 44% 36% 44% 34% 35% 34% 37%)
+0:49:03 INF [sort] - chunks: [ 540 / 696 78% ] 199G
+ cpus: 16.5 gc: 9% heap: 12G/32G direct: 55M postGC: 10G
+ -> (124/729) -> worker(31% 33% 29% 37% 36% 37% 30% 36% 29% 35% 35% 34% 35% 34% 35% 36% 30% 34% 40% 42% 40% 42% 41% 41% 39% 39% 37% 36% 36% 35% 33% 38%)
+0:49:13 INF [sort] - chunks: [ 570 / 696 82% ] 198G
+ cpus: 16.6 gc: 9% heap: 13G/32G direct: 55M postGC: 10G
+ -> (94/729) -> worker(28% 33% 34% 35% 33% 34% 37% 36% 36% 40% 35% 33% 34% 33% 35% 36% 39% 33% 35% 42% 41% 39% 42% 39% 36% 34% 34% 33% 41% 34% 32% 33%)
+0:49:23 INF [sort] - chunks: [ 602 / 696 86% ] 199G
+ cpus: 16.9 gc: 10% heap: 14G/32G direct: 55M postGC: 10G
+ -> (62/729) -> worker(34% 32% 35% 37% 36% 34% 40% 34% 40% 37% 35% 35% 34% 34% 34% 35% 36% 34% 36% 42% 41% 38% 42% 38% 36% 35% 34% 36% 42% 35% 32% 35%)
+0:49:33 INF [sort] - chunks: [ 631 / 696 91% ] 199G
+ cpus: 16.2 gc: 12% heap: 10G/32G direct: 55M postGC: 10G
+ -> (33/729) -> worker(38% 26% 40% 30% 29% 27% 35% 37% 37% 35% 36% 35% 35% 34% 35% 35% 35% 34% 33% 38% 32% 36% 38% 36% 28% 27% 32% 31% 38% 34% 26% 28%)
+0:49:43 INF [sort] - chunks: [ 666 / 696 96% ] 199G
+ cpus: 11.4 gc: 6% heap: 8.6G/32G direct: 55M postGC: 6.8G
+ -> (0/729) -> worker(28% 27% 28% 23% 27% 25% 29% 33% 27% 33% 28% 17% 18% 19% 34% 31% 33% 18% 20% -% 20% 16% 20% -% 27% 35% 26% 25% 20% 18% 29% 28%)
+0:49:53 INF [sort] - chunks: [ 691 / 696 99% ] 199G
+ cpus: 5.7 gc: 4% heap: 8.4G/32G direct: 54M postGC: 7.1G
+ -> (0/729) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 20% -% 19% -% 14% -% -% -% -% -% 15% 19% -% -%)
+0:49:55 INF [sort] - chunks: [ 696 / 696 100% ] 199G
+ cpus: 1.3 gc: 0% heap: 8.4G/32G direct: 54M postGC: 7.1G
+ -> (0/729) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
+0:49:55 INF [sort] - Finished in 3m51s cpu:57m32s gc:20s avg:14.9
+0:49:55 INF [sort] - worker 32x(32% 1m14s sys:6s wait:1m58s done:6s)
+0:49:55 INF - read:1373s write:880s sort:1202s
+0:49:55 INF [mbtiles] -
+0:49:55 INF [mbtiles] - Starting...
+0:49:55 DEB [mbtiles:write] - Execute mbtiles: create table metadata (name text, value text);
+0:49:55 DEB [mbtiles:write] - Execute mbtiles: create unique index name on metadata (name);
+0:49:55 DEB [mbtiles:write] - Execute mbtiles: create table tiles (zoom_level integer, tile_column integer, tile_row, tile_data blob);
+0:49:55 DEB [mbtiles:write] - Execute mbtiles: create unique index tile_index on tiles (zoom_level, tile_column, tile_row)
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: name=OpenMapTiles
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: format=pbf
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: attribution=© OpenMapTiles © OpenStreetMap contributors
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: version=3.13.0
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: type=baselayer
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: center=0,0,0
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: minzoom=0
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: maxzoom=14
+0:49:55 DEB [mbtiles:write] - Set mbtiles metadata: json={"vector_layers":[{"id":"aerodrome_label","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","iata":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:cy":"String","name:lb":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","icao":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":8,"maxzoom":14},{"id":"aeroway","fields":{"ref":"String","class":"String"},"minzoom":10,"maxzoom":14},{"id":"boundary","fields":{"adm0_r":"String","disputed":"Number","admin_level":"Number","disputed_name":"String","maritime":"Number","adm0_l":"String","claimed_by":"String"},"minzoom":0,"maxzoom":14},{"id":"building","fields":{"colour":"String","render_height":"Number","render_min_height":"Number","hide_3d":"Boolean"},"minzoom":13,"maxzoom":14},{"id":"housenumber","fields":{"housenumber":"String"},"minzoom":14,"maxzoom":14},{"id":"landcover","fields":{"subclass":"String","class":"String","_numpoints":"Number"},"minzoom":0,"maxzoom":14},{"id":"landuse","fields":{"class":"String"},"minzoom":4,"maxzoom":14},{"id":"mountain_peak","fields":{"name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","ele":"Number","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","customary_ft":"Number","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","ele_ft":"Number","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":7,"maxzoom":14},{"id":"park","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":4,"maxzoom":14},{"id":"place","fields":{"name:fy":"String","name:oc":"String","name_int":"String","capital":"Number","name:bs":"String","name:sk":"String","name:nonlatin":"String","name:ka":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:sv":"String","name:kn":"String","name:ko":"String","name_de":"String","name:co":"String","rank":"Number","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","iso_a2":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:he":"String","name:da":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"poi","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","level":"Number","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:fi":"String","name:be":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","indoor":"Number","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","layer":"Number","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","subclass":"String","name:hr":"String","name:lv":"String","name:hu":"String","name_en":"String"},"minzoom":12,"maxzoom":14},{"id":"transportation","fields":{"brunnel":"String","access":"String","expressway":"Number","bicycle":"String","surface":"String","level":"Number","ramp":"Number","mtb_scale":"String","toll":"Number","layer":"Number","oneway":"Number","network":"String","horse":"String","service":"String","subclass":"String","indoor":"Number","class":"String","foot":"String"},"minzoom":4,"maxzoom":14},{"id":"transportation_name","fields":{"name_int":"String","level":"Number","name:nonlatin":"String","route_5":"String","route_4":"String","route_3":"String","route_2":"String","route_1":"String","layer":"Number","network":"String","ref":"String","route_6":"String","name_de":"String","subclass":"String","ref_length":"Number","name":"String","indoor":"Number","class":"String","name_en":"String","name:latin":"String"},"minzoom":6,"maxzoom":14},{"id":"water","fields":{"brunnel":"String","intermittent":"Number","class":"String"},"minzoom":0,"maxzoom":14},{"id":"water_name","fields":{"name:fy":"String","name:oc":"String","name_int":"String","name:bs":"String","name:sk":"String","name:ka":"String","name:nonlatin":"String","name:ja-Latn":"String","intermittent":"Number","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:sq":"String","name:ca":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:ja_kana":"String","name:nl":"String","name:be":"String","name:fi":"String","name:ru":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:mt":"String","name:el":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:is":"String","name:eo":"String","name:et":"String","name:eu":"String","class":"String","name:zh":"String","name:es":"String","name:th":"String","name:te":"String","name:la":"String","name:lb":"String","name:cy":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:hi":"String","name:de":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":0,"maxzoom":14},{"id":"waterway","fields":{"name:fy":"String","name_int":"String","name:oc":"String","name:bs":"String","name:sk":"String","name:nonlatin":"String","name:ka":"String","intermittent":"Number","name:ja-Latn":"String","name:sl":"String","name:ga":"String","name:sr":"String","name:kk":"String","name:gd":"String","name:ca":"String","name:sq":"String","name:kn":"String","name:sv":"String","name:ko":"String","name_de":"String","name:co":"String","name:ku":"String","name:cs":"String","name:ta":"String","name:latin":"String","name:ko-Latn":"String","name:ar":"String","name:ja":"String","name:rm":"String","name:az":"String","name:ro":"String","name:nl":"String","name:ja_kana":"String","name:ru":"String","name:be":"String","name:fi":"String","name:no":"String","name:bg":"String","name":"String","name:fr":"String","name:ja_rm":"String","name:br":"String","name:hy":"String","brunnel":"String","name:uk":"String","name:id":"String","name:ja-Hira":"String","name:ml":"String","name:mk":"String","name:el":"String","name:mt":"String","name:sr-Latn":"String","name:it":"String","name:am":"String","name:en":"String","name:eo":"String","name:is":"String","name:et":"String","name:eu":"String","class":"String","name:es":"String","name:zh":"String","name:th":"String","name:te":"String","name:la":"String","_relid":"Number","name:cy":"String","name:lb":"String","name:pl":"String","name:da":"String","name:he":"String","name:tr":"String","name:pt":"String","name:de":"String","name:hi":"String","name:lt":"String","name:lv":"String","name:hr":"String","name:hu":"String","name_en":"String"},"minzoom":3,"maxzoom":14}]}
+0:49:56 INF [mbtiles:write] - Starting z0
+0:49:56 INF [mbtiles:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
+0:49:56 INF [mbtiles:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
+0:49:56 INF [mbtiles:write] - Finished z2 in 0.3s cpu:8s avg:28.7, now starting z3
+0:49:56 INF [mbtiles:write] - Finished z3 in 0.1s cpu:3s avg:32.9, now starting z4
+0:49:58 INF [mbtiles:write] - Finished z4 in 1s cpu:35s avg:24.4, now starting z5
+0:49:58 INF [mbtiles:write] - Finished z5 in 0s cpu:0.4s avg:16, now starting z6
+0:50:00 INF [mbtiles:write] - Finished z6 in 2s cpu:34s avg:15.8, now starting z7
+0:50:05 INF [mbtiles] - features: [ 17M 1% 1.7M/s ] 199G tiles: [ 11k 1.1k/s ] 91M
+ cpus: 23.1 gc: 10% heap: 11G/32G direct: 54M postGC: 1.4G
+ read(85%) -> (19/1.6k) -> encode(63% 63% 57% 51% 54% 55% 55% 59% 55% 59% 63% 55% 65% 61% 60% 57% 50% 59% 64% 51% 54% 55% 58% 54% 55% 58% 60% 54% 54% 55% 56% 52%) -> (362/1.6k) -> write( 3%)
+ last tile: 7/48/65 (z7 38%) https://www.openstreetmap.org/#map=7/-2.81137/-45.00000
+0:50:08 INF [mbtiles:write] - Finished z7 in 8s cpu:3m1s avg:23.5, now starting z8
+0:50:15 INF [mbtiles] - features: [ 35M 1% 1.7M/s ] 199G tiles: [ 49k 3.8k/s ] 264M
+ cpus: 26.2 gc: 4% heap: 7.6G/32G direct: 54M postGC: 2.4G
+ read(93%) -> (12/1.6k) -> encode(80% 81% 76% 80% 77% 75% 72% 75% 72% 76% 76% 77% 81% 74% 82% 79% 73% 70% 76% 66% 72% 75% 74% 76% 76% 79% 90% 74% 74% 69% 70% 72%) -> (286/1.6k) -> write( 4%)
+ last tile: 8/136/126 (z8 53%) https://www.openstreetmap.org/#map=8/2.81137/11.25000
+0:50:21 INF [mbtiles:write] - Finished z8 in 14s cpu:5m7s avg:22.6, now starting z9
+0:50:25 INF [mbtiles] - features: [ 52M 2% 1.7M/s ] 199G tiles: [ 118k 6.8k/s ] 447M
+ cpus: 21.4 gc: 3% heap: 13G/32G direct: 54M postGC: 2.7G
+ read(92%) -> (148/1.6k) -> encode(57% 65% 63% 60% 59% 59% 61% 56% 56% 67% 60% 58% 65% 75% 57% 65% 64% 63% 67% 59% 63% 62% 63% 56% 59% 58% 68% 64% 59% 62% 61% 65%) -> (553/1.6k) -> write( 4%)
+ last tile: 9/96/205 (z9 18%) https://www.openstreetmap.org/#map=9/33.72434/-112.50000
+0:50:35 INF [mbtiles] - features: [ 64M 2% 1.1M/s ] 199G tiles: [ 192k 7.4k/s ] 738M
+ cpus: 31.1 gc: 7% heap: 5G/32G direct: 54M postGC: 3G
+ read(81%) -> (451/1.6k) -> encode(91% 89% 86% 89% 92% 90% 87% 86% 89% 92% 92% 88% 92% 90% 87% 88% 90% 90% 86% 89% 88% 91% 88% 89% 88% 91% 90% 87% 92% 90% 90% 90%) -> (607/1.6k) -> write( 6%)
+ last tile: 9/267/154 (z9 52%) https://www.openstreetmap.org/#map=9/58.07788/7.73438
+0:50:45 INF [mbtiles] - features: [ 69M 2% 560k/s ] 199G tiles: [ 198k 639/s ] 852M
+ cpus: 31 gc: 9% heap: 5.3G/32G direct: 54M postGC: 4.6G
+ read(83%) -> (1k/1.6k) -> encode(88% 91% 86% 87% 87% 85% 88% 86% 85% 90% 91% 89% 89% 90% 88% 91% 87% 88% 91% 89% 88% 85% 88% 87% 89% 88% 87% 85% 87% 88% 89% 90%) -> (1.1k/1.6k) -> write( 2%)
+ last tile: 9/283/178 (z9 55%) https://www.openstreetmap.org/#map=9/47.98992/18.98438
+0:50:55 INF [mbtiles] - features: [ 79M 3% 910k/s ] 199G tiles: [ 220k 2.1k/s ] 1G
+ cpus: 31 gc: 8% heap: 6.3G/32G direct: 54M postGC: 6.1G
+ read(51%) -> (1.3k/1.6k) -> encode(91% 88% 90% 90% 92% 92% 86% 92% 91% 88% 90% 90% 92% 90% 91% 89% 91% 89% 92% 91% 87% 91% 89% 92% 89% 86% 90% 87% 89% 86% 91% 89%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 9/337/170 (z9 66%) https://www.openstreetmap.org/#map=9/51.61802/56.95313
+0:51:04 INF [mbtiles:write] - Finished z9 in 43s cpu:22m21s gc:3s avg:31.1, now starting z10
+0:51:05 INF [mbtiles] - features: [ 97M 3% 1.7M/s ] 199G tiles: [ 441k 22k/s ] 1.3G
+ cpus: 31.3 gc: 7% heap: 7.9G/32G direct: 54M postGC: 7.4G
+ read(34%) -> (377/1.6k) -> encode(93% 93% 92% 89% 92% 93% 92% 90% 92% 93% 92% 93% 93% 93% 90% 93% 92% 90% 90% 93% 93% 89% 91% 91% 92% 89% 91% 91% 92% 93% 90% 90%) -> (1.2k/1.6k) -> write(10%)
+ last tile: 10/168/344 (z10 16%) https://www.openstreetmap.org/#map=10/50.73646/-120.93750
+0:51:15 INF [mbtiles] - features: [ 117M 4% 2M/s ] 199G tiles: [ 810k 36k/s ] 2.3G
+ cpus: 29.8 gc: 3% heap: 7.9G/32G direct: 54M postGC: 6.7G
+ read(91%) -> (3/1.6k) -> encode(87% 82% 86% 87% 90% 87% 87% 85% 92% 88% 86% 87% 89% 88% 88% 86% 89% 90% 91% 82% 87% 88% 86% 89% 90% 90% 91% 86% 90% 89% 90% 88%) -> (94/1.6k) -> write(23%)
+ last tile: 10/605/308 (z10 59%) https://www.openstreetmap.org/#map=10/58.07788/32.69531
+0:51:25 INF [mbtiles] - features: [ 134M 5% 1.7M/s ] 199G tiles: [ 1M 27k/s ] 3G
+ cpus: 19.2 gc: 1% heap: 11G/32G direct: 54M postGC: 6.6G
+ read(96%) -> (0/1.6k) -> encode(55% 53% 57% 54% 53% 56% 59% 53% 58% 56% 59% 56% 57% 54% 52% 56% 54% 54% 54% 59% 55% 59% 57% 60% 59% 57% 53% 56% 57% 57% 58% 52%) -> (40/1.6k) -> write(16%)
+ last tile: 10/965/298 (z10 94%) https://www.openstreetmap.org/#map=10/59.88894/159.25781
+0:51:25 INF [mbtiles:write] - Finished z10 in 21s cpu:8m30s avg:24.5, now starting z11
+0:51:35 INF [mbtiles] - features: [ 153M 5% 1.8M/s ] 199G tiles: [ 2.4M 133k/s ] 3.9G
+ cpus: 17.9 gc: 1% heap: 8.6G/32G direct: 54M postGC: 6.5G
+ read(99%) -> (0/1.6k) -> encode(51% 56% 50% 50% 52% 51% 50% 52% 51% 50% 48% 51% 53% 50% 50% 51% 51% 53% 51% 54% 53% 50% 49% 52% 49% 50% 51% 51% 52% 50% 51% 50%) -> (23/1.6k) -> write(43%)
+ last tile: 11/752/800 (z11 36%) https://www.openstreetmap.org/#map=11/36.59789/-47.81250
+0:51:45 INF [mbtiles] - features: [ 172M 6% 1.8M/s ] 199G tiles: [ 2.9M 57k/s ] 4.5G
+ cpus: 16.6 gc: 0% heap: 7.6G/32G direct: 54M postGC: 6.6G
+ read(100%) -> (0/1.6k) -> encode(48% 48% 44% 45% 46% 46% 49% 48% 46% 51% 48% 47% 48% 47% 50% 48% 50% 47% 47% 49% 51% 47% 48% 46% 46% 50% 47% 50% 49% 48% 48% 49%) -> (27/1.6k) -> write(20%)
+ last tile: 11/1090/601 (z11 53%) https://www.openstreetmap.org/#map=11/59.44508/11.60156
+0:51:55 INF [mbtiles] - features: [ 190M 7% 1.7M/s ] 199G tiles: [ 3.2M 25k/s ] 5.4G
+ cpus: 23.9 gc: 1% heap: 17G/32G direct: 54M postGC: 6.6G
+ read(99%) -> (0/1.6k) -> encode(70% 69% 72% 70% 72% 72% 70% 71% 71% 69% 72% 70% 72% 70% 71% 67% 72% 72% 69% 70% 71% 71% 71% 68% 70% 72% 71% 69% 69% 71% 70% 71%) -> (36/1.6k) -> write(16%)
+ last tile: 11/1255/632 (z11 61%) https://www.openstreetmap.org/#map=11/56.55948/40.60547
+0:52:05 INF [mbtiles] - features: [ 207M 7% 1.7M/s ] 199G tiles: [ 3.8M 62k/s ] 6.2G
+ cpus: 17.3 gc: 0% heap: 18G/32G direct: 54M postGC: 6.5G
+ read(96%) -> (0/1.6k) -> encode(51% 50% 49% 48% 49% 49% 50% 52% 49% 49% 47% 49% 50% 50% 52% 46% 51% 50% 53% 54% 51% 52% 47% 48% 48% 46% 50% 50% 49% 51% 53% 54%) -> (18/1.6k) -> write(24%)
+ last tile: 11/1684/1384 (z11 82%) https://www.openstreetmap.org/#map=11/-53.33087/116.01563
+0:52:10 INF [mbtiles:write] - Finished z11 in 45s cpu:13m57s avg:18.6, now starting z12
+0:52:15 INF [mbtiles] - features: [ 226M 8% 1.9M/s ] 199G tiles: [ 6.4M 262k/s ] 6.9G
+ cpus: 15.8 gc: 2% heap: 10G/32G direct: 54M postGC: 7.8G
+ read(97%) -> (0/1.6k) -> encode(44% 40% 43% 43% 39% 42% 41% 46% 44% 44% 42% 45% 43% 41% 45% 40% 44% 44% 42% 44% 43% 41% 44% 44% 43% 42% 44% 44% 43% 47% 42% 44%) -> (1.1k/1.6k) -> write(62%)
+ last tile: 12/559/729 (z12 13%) https://www.openstreetmap.org/#map=12/74.93657/-130.86914
+0:52:25 INF [mbtiles] - features: [ 248M 9% 2.1M/s ] 199G tiles: [ 7.9M 145k/s ] 7.8G
+ cpus: 13.9 gc: 1% heap: 10G/32G direct: 54M postGC: 6.8G
+ read(99%) -> (0/1.6k) -> encode(38% 40% 38% 39% 38% 38% 37% 38% 40% 36% 39% 39% 38% 38% 39% 41% 37% 41% 38% 38% 39% 38% 37% 39% 38% 35% 40% 39% 39% 40% 40% 39%) -> (37/1.6k) -> write(42%)
+ last tile: 12/1042/1548 (z12 25%) https://www.openstreetmap.org/#map=12/40.17887/-88.41797
+0:52:35 INF [mbtiles] - features: [ 269M 9% 2M/s ] 199G tiles: [ 8.4M 49k/s ] 8.4G
+ cpus: 14.1 gc: 0% heap: 19G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(40% 39% 41% 40% 40% 39% 41% 39% 41% 42% 41% 41% 43% 42% 40% 40% 40% 40% 40% 39% 40% 41% 39% 39% 41% 42% 42% 38% 38% 40% 39% 42%) -> (18/1.6k) -> write(18%)
+ last tile: 12/1210/2703 (z12 29%) https://www.openstreetmap.org/#map=12/-49.78126/-73.65234
+0:52:45 INF [mbtiles] - features: [ 290M 10% 2M/s ] 199G tiles: [ 9.7M 131k/s ] 9.2G
+ cpus: 16.6 gc: 0% heap: 10G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(45% 47% 47% 48% 45% 50% 48% 48% 49% 47% 49% 50% 48% 48% 47% 46% 45% 47% 46% 50% 47% 46% 45% 49% 44% 47% 46% 47% 48% 48% 49% 46%) -> (70/1.6k) -> write(40%)
+ last tile: 12/1581/2284 (z12 38%) https://www.openstreetmap.org/#map=12/-20.30342/-41.04492
+0:52:55 INF [mbtiles] - features: [ 310M 11% 2M/s ] 199G tiles: [ 11M 156k/s ] 9.9G
+ cpus: 14.3 gc: 0% heap: 14G/32G direct: 54M postGC: 6.8G
+ read(100%) -> (0/1.6k) -> encode(43% 39% 40% 40% 38% 41% 41% 43% 41% 43% 39% 38% 38% 40% 38% 40% 41% 39% 38% 40% 38% 40% 38% 40% 42% 40% 40% 38% 38% 37% 41% 42%) -> (21/1.6k) -> write(41%)
+ last tile: 12/2045/1537 (z12 49%) https://www.openstreetmap.org/#map=12/40.91351/-0.26367
+0:53:05 INF [mbtiles] - features: [ 331M 11% 2M/s ] 199G tiles: [ 11M 28k/s ] 10G
+ cpus: 15.3 gc: 0% heap: 20G/32G direct: 54M postGC: 6.9G
+ read(100%) -> (0/1.6k) -> encode(42% 45% 44% 48% 39% 47% 43% 45% 44% 41% 44% 43% 45% 47% 46% 45% 47% 47% 41% 44% 46% 47% 44% 44% 44% 41% 45% 43% 43% 42% 45% 42%) -> (38/1.6k) -> write(12%)
+ last tile: 12/2137/1493 (z12 52%) https://www.openstreetmap.org/#map=12/43.77109/7.82227
+0:53:15 INF [mbtiles] - features: [ 351M 12% 2M/s ] 199G tiles: [ 11M 22k/s ] 10G
+ cpus: 15.9 gc: 0% heap: 17G/32G direct: 54M postGC: 6.9G
+ read(100%) -> (0/1.6k) -> encode(45% 47% 46% 45% 47% 46% 46% 45% 47% 44% 43% 47% 46% 45% 49% 47% 47% 47% 45% 47% 43% 47% 45% 45% 45% 47% 49% 45% 45% 48% 45% 48%) -> (39/1.6k) -> write(12%)
+ last tile: 12/2210/1203 (z12 53%) https://www.openstreetmap.org/#map=12/59.40037/14.23828
+0:53:25 INF [mbtiles] - features: [ 370M 13% 1.9M/s ] 199G tiles: [ 12M 38k/s ] 11G
+ cpus: 20.3 gc: 0% heap: 20G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(61% 58% 58% 59% 60% 56% 59% 58% 60% 60% 60% 59% 60% 60% 59% 59% 59% 61% 58% 60% 61% 62% 59% 60% 57% 61% 62% 57% 58% 59% 58% 60%) -> (30/1.6k) -> write(19%)
+ last tile: 12/2340/1462 (z12 57%) https://www.openstreetmap.org/#map=12/45.70618/25.66406
+0:53:35 INF [mbtiles] - features: [ 390M 14% 2M/s ] 199G tiles: [ 12M 48k/s ] 12G
+ cpus: 19.3 gc: 1% heap: 8G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(56% 55% 59% 57% 56% 58% 56% 56% 55% 57% 54% 59% 57% 59% 58% 55% 53% 52% 61% 59% 52% 55% 55% 58% 58% 58% 57% 55% 54% 56% 56% 54%) -> (27/1.6k) -> write(22%)
+ last tile: 12/2498/1335 (z12 61%) https://www.openstreetmap.org/#map=12/52.96188/39.55078
+0:53:45 INF [mbtiles] - features: [ 410M 14% 1.9M/s ] 199G tiles: [ 13M 127k/s ] 13G
+ cpus: 18.2 gc: 0% heap: 12G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(52% 53% 53% 54% 53% 52% 52% 52% 53% 50% 53% 50% 51% 51% 52% 53% 53% 52% 51% 53% 56% 52% 47% 52% 52% 51% 51% 55% 52% 52% 50% 55%) -> (30/1.6k) -> write(41%)
+ last tile: 12/2928/1874 (z12 71%) https://www.openstreetmap.org/#map=12/15.11455/77.34375
+0:53:55 INF [mbtiles] - features: [ 432M 15% 2.1M/s ] 199G tiles: [ 14M 100k/s ] 14G
+ cpus: 16.8 gc: 0% heap: 11G/32G direct: 54M postGC: 6.8G
+ read(99%) -> (0/1.6k) -> encode(48% 46% 47% 47% 49% 50% 51% 47% 49% 48% 47% 48% 49% 49% 46% 50% 47% 50% 47% 48% 50% 51% 48% 47% 48% 47% 45% 50% 48% 48% 47% 47%) -> (13/1.6k) -> write(32%)
+ last tile: 12/3303/1806 (z12 80%) https://www.openstreetmap.org/#map=12/20.79720/110.30273
+0:54:05 INF [mbtiles] - features: [ 453M 16% 2M/s ] 199G tiles: [ 15M 84k/s ] 14G
+ cpus: 15.6 gc: 0% heap: 18G/32G direct: 54M postGC: 6.9G
+ read(99%) -> (0/1.6k) -> encode(46% 44% 46% 42% 44% 44% 43% 45% 47% 45% 43% 46% 42% 45% 44% 44% 46% 44% 44% 48% 44% 44% 44% 45% 47% 45% 43% 44% 44% 44% 46% 44%) -> (31/1.6k) -> write(28%)
+ last tile: 12/3616/1594 (z12 88%) https://www.openstreetmap.org/#map=12/37.02010/137.81250
+0:54:11 INF [mbtiles:write] - Finished z12 in 2m1s cpu:32m45s avg:16.3, now starting z13
+0:54:15 INF [mbtiles] - features: [ 467M 16% 1.4M/s ] 199G tiles: [ 19M 342k/s ] 15G
+ cpus: 10.3 gc: 0% heap: 15G/32G direct: 54M postGC: 7.4G
+ read(65%) -> (0/1.6k) -> encode(25% 24% 28% 26% 25% 24% 25% 26% 29% 24% 29% 28% 24% 22% 26% 24% 27% 27% 28% 23% 27% 20% 31% 26% 25% 25% 26% 25% 24% 24% 25% 25%) -> (1.6k/1.6k) -> write(81%)
+ last tile: 13/228/6715 (z13 2%) https://www.openstreetmap.org/#map=13/-74.71804/-169.98047
+0:54:25 INF [mbtiles] - features: [ 473M 16% 626k/s ] 199G tiles: [ 23M 441k/s ] 16G
+ cpus: 5.4 gc: 1% heap: 11G/32G direct: 54M postGC: 7.4G
+ read(30%) -> (0/1.6k) -> encode(10% 14% 11% 17% 12% 9% 15% 7% 11% 12% 9% 13% 15% 14% 16% 11% 14% 12% 11% 12% 14% 11% 12% 9% 11% 10% 12% 16% 15% 11% 9% 10%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 13/830/2772 (z13 10%) https://www.openstreetmap.org/#map=13/50.17690/-143.52539
+0:54:35 INF [mbtiles] - features: [ 482M 17% 870k/s ] 199G tiles: [ 26M 303k/s ] 16G
+ cpus: 24.1 gc: 5% heap: 22G/32G direct: 54M postGC: 8.8G
+ read(75%) -> (1.2k/1.6k) -> encode(70% 66% 68% 65% 61% 68% 64% 69% 65% 64% 68% 67% 67% 63% 71% 69% 67% 66% 65% 67% 70% 62% 69% 72% 68% 69% 65% 64% 64% 67% 68% 69%) -> (1.3k/1.6k) -> write(71%)
+ last tile: 13/1308/3167 (z13 15%) https://www.openstreetmap.org/#map=13/37.75334/-122.51953
+0:54:45 INF [mbtiles] - features: [ 490M 17% 832k/s ] 199G tiles: [ 27M 38k/s ] 17G
+ cpus: 31.2 gc: 7% heap: 19G/32G direct: 54M postGC: 9.9G
+ read(42%) -> (1.3k/1.6k) -> encode(90% 91% 91% 91% 93% 87% 93% 90% 92% 92% 88% 93% 91% 91% 87% 89% 89% 91% 91% 91% 91% 92% 90% 90% 90% 92% 93% 93% 92% 92% 91% 90%) -> (1.6k/1.6k) -> write(11%)
+ last tile: 13/1371/3261 (z13 16%) https://www.openstreetmap.org/#map=13/34.41597/-119.75098
+0:54:55 INF [mbtiles] - features: [ 494M 17% 405k/s ] 199G tiles: [ 27M 21k/s ] 17G
+ cpus: 31.2 gc: 7% heap: 20G/32G direct: 54M postGC: 10G
+ read(14%) -> (1.5k/1.6k) -> encode(92% 92% 89% 90% 92% 92% 89% 92% 92% 92% 92% 91% 90% 91% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 88% 92% 92% 92% 91% 90% 92% 92%) -> (1.6k/1.6k) -> write( 6%)
+ last tile: 13/1407/3277 (z13 17%) https://www.openstreetmap.org/#map=13/33.83392/-118.16895
+0:55:05 INF [mbtiles] - features: [ 503M 17% 868k/s ] 199G tiles: [ 28M 71k/s ] 17G
+ cpus: 31.3 gc: 6% heap: 22G/32G direct: 54M postGC: 11G
+ read(33%) -> (1.3k/1.6k) -> encode(94% 93% 91% 91% 93% 94% 94% 92% 90% 89% 93% 93% 92% 90% 91% 92% 94% 94% 93% 93% 94% 90% 91% 91% 93% 92% 94% 94% 90% 91% 93% 94%) -> (1.6k/1.6k) -> write(19%)
+ last tile: 13/1528/3292 (z13 18%) https://www.openstreetmap.org/#map=13/33.28462/-112.85156
+0:55:15 INF [mbtiles] - features: [ 515M 18% 1.1M/s ] 199G tiles: [ 29M 109k/s ] 17G
+ cpus: 31.2 gc: 7% heap: 21G/32G direct: 54M postGC: 13G
+ read(56%) -> (1.3k/1.6k) -> encode(89% 92% 90% 91% 90% 92% 88% 86% 87% 92% 90% 90% 87% 89% 92% 88% 87% 88% 88% 91% 89% 92% 92% 86% 90% 92% 89% 92% 91% 89% 88% 91%) -> (1.6k/1.6k) -> write(30%)
+ last tile: 13/1714/2762 (z13 20%) https://www.openstreetmap.org/#map=13/50.45750/-104.67773
+0:55:25 INF [mbtiles] - features: [ 528M 18% 1.3M/s ] 199G tiles: [ 30M 99k/s ] 18G
+ cpus: 31.1 gc: 8% heap: 21G/32G direct: 54M postGC: 15G
+ read(70%) -> (1.4k/1.6k) -> encode(91% 90% 88% 88% 89% 88% 88% 86% 91% 92% 85% 90% 87% 89% 89% 87% 87% 91% 86% 90% 91% 89% 91% 84% 90% 84% 90% 89% 89% 91% 88% 85%) -> (1.5k/1.6k) -> write(28%)
+ last tile: 13/1884/2783 (z13 23%) https://www.openstreetmap.org/#map=13/49.86632/-97.20703
+0:55:35 INF [mbtiles] - features: [ 540M 19% 1.1M/s ] 199G tiles: [ 30M 44k/s ] 18G
+ cpus: 31.2 gc: 7% heap: 20G/32G direct: 54M postGC: 16G
+ read(39%) -> (1k/1.6k) -> encode(92% 91% 92% 93% 91% 92% 92% 91% 91% 91% 89% 90% 91% 90% 90% 92% 88% 93% 92% 92% 93% 87% 92% 89% 92% 90% 91% 85% 89% 92% 90% 89%) -> (1.3k/1.6k) -> write(14%)
+ last tile: 13/1963/2870 (z13 23%) https://www.openstreetmap.org/#map=13/47.33882/-93.73535
+0:55:45 INF [mbtiles] - features: [ 550M 19% 998k/s ] 199G tiles: [ 31M 52k/s ] 18G
+ cpus: 31 gc: 8% heap: 19G/32G direct: 54M postGC: 17G
+ read(57%) -> (1.3k/1.6k) -> encode(88% 89% 86% 91% 91% 91% 90% 91% 90% 88% 91% 89% 90% 89% 87% 87% 90% 90% 83% 91% 86% 89% 90% 90% 87% 91% 90% 92% 90% 89% 89% 90%) -> (1.5k/1.6k) -> write(16%)
+ last tile: 13/2057/3080 (z13 25%) https://www.openstreetmap.org/#map=13/40.71396/-89.60449
+0:55:55 INF [mbtiles] - features: [ 559M 19% 856k/s ] 199G tiles: [ 31M 24k/s ] 19G
+ cpus: 31 gc: 9% heap: 20G/32G direct: 54M postGC: 19G
+ read(35%) -> (1.3k/1.6k) -> encode(86% 90% 89% 89% 91% 89% 87% 90% 87% 90% 90% 85% 88% 91% 91% 90% 89% 90% 91% 90% 89% 91% 88% 91% 86% 90% 90% 88% 88% 91% 90% 89%) -> (1.5k/1.6k) -> write( 7%)
+ last tile: 13/2102/3049 (z13 25%) https://www.openstreetmap.org/#map=13/41.73853/-87.62695
+0:56:05 INF [mbtiles] - features: [ 571M 20% 1.1M/s ] 199G tiles: [ 31M 46k/s ] 19G
+ cpus: 30.9 gc: 7% heap: 9.2G/32G direct: 54M postGC: 3.3G
+ read(58%) -> (1.4k/1.6k) -> encode(89% 90% 90% 88% 87% 88% 87% 89% 90% 91% 92% 91% 89% 87% 85% 88% 91% 90% 87% 84% 90% 90% 90% 90% 90% 82% 87% 89% 84% 87% 88% 92%) -> (1.6k/1.6k) -> write(14%)
+ last tile: 13/2184/3275 (z13 26%) https://www.openstreetmap.org/#map=13/33.90690/-84.02344
+0:56:15 INF [mbtiles] - features: [ 581M 20% 1M/s ] 199G tiles: [ 32M 34k/s ] 19G
+ cpus: 31.2 gc: 7% heap: 13G/32G direct: 54M postGC: 4.5G
+ read(46%) -> (1.4k/1.6k) -> encode(89% 92% 91% 89% 90% 92% 91% 91% 88% 92% 92% 91% 92% 90% 90% 89% 90% 92% 92% 92% 87% 90% 89% 89% 91% 90% 89% 92% 89% 92% 92% 89%) -> (1.4k/1.6k) -> write(11%)
+ last tile: 13/2244/3424 (z13 27%) https://www.openstreetmap.org/#map=13/28.30438/-81.38672
+0:56:25 INF [mbtiles] - features: [ 590M 20% 880k/s ] 199G tiles: [ 32M 19k/s ] 19G
+ cpus: 31.2 gc: 8% heap: 10G/32G direct: 54M postGC: 5.6G
+ read(38%) -> (1.4k/1.6k) -> encode(92% 86% 92% 92% 91% 92% 92% 92% 92% 92% 90% 90% 92% 92% 92% 90% 90% 89% 91% 90% 87% 92% 92% 84% 90% 91% 91% 92% 92% 91% 92% 90%) -> (1.5k/1.6k) -> write( 6%)
+ last tile: 13/2277/3089 (z13 27%) https://www.openstreetmap.org/#map=13/40.41350/-79.93652
+0:56:35 INF [mbtiles] - features: [ 600M 21% 996k/s ] 199G tiles: [ 32M 32k/s ] 20G
+ cpus: 31.2 gc: 7% heap: 12G/32G direct: 54M postGC: 6.7G
+ read(47%) -> (1.5k/1.6k) -> encode(90% 92% 92% 90% 92% 91% 91% 92% 92% 92% 92% 90% 91% 91% 90% 91% 92% 92% 91% 91% 90% 87% 84% 90% 91% 89% 92% 91% 87% 85% 91% 91%) -> (1.6k/1.6k) -> write(11%)
+ last tile: 13/2332/3173 (z13 28%) https://www.openstreetmap.org/#map=13/37.54458/-77.51953
+0:56:45 INF [mbtiles] - features: [ 608M 21% 817k/s ] 199G tiles: [ 32M 16k/s ] 20G
+ cpus: 31.2 gc: 7% heap: 17G/32G direct: 54M postGC: 7.5G
+ read(29%) -> (1.2k/1.6k) -> encode(92% 93% 90% 89% 92% 90% 90% 92% 89% 92% 92% 90% 90% 91% 90% 90% 92% 91% 90% 92% 92% 92% 90% 92% 92% 92% 92% 92% 92% 89% 92% 92%) -> (1.4k/1.6k) -> write( 6%)
+ last tile: 13/2360/3080 (z13 28%) https://www.openstreetmap.org/#map=13/40.71396/-76.28906
+0:56:55 INF [mbtiles] - features: [ 617M 21% 836k/s ] 199G tiles: [ 33M 20k/s ] 20G
+ cpus: 31.1 gc: 8% heap: 9.5G/32G direct: 54M postGC: 8.8G
+ read(32%) -> (1.2k/1.6k) -> encode(89% 91% 92% 91% 91% 91% 88% 90% 91% 91% 91% 85% 89% 91% 92% 90% 90% 91% 87% 90% 91% 89% 92% 89% 91% 91% 91% 89% 91% 89% 90% 91%) -> (1.6k/1.6k) -> write( 7%)
+ last tile: 13/2393/3846 (z13 29%) https://www.openstreetmap.org/#map=13/10.91962/-74.83887
+0:57:05 INF [mbtiles] - features: [ 622M 22% 510k/s ] 199G tiles: [ 33M 19k/s ] 20G
+ cpus: 31.3 gc: 6% heap: 9.3G/32G direct: 54M postGC: 9.1G
+ read(15%) -> (1.1k/1.6k) -> encode(93% 93% 93% 93% 91% 92% 93% 92% 93% 92% 93% 93% 93% 93% 93% 93% 91% 93% 92% 93% 93% 93% 92% 91% 93% 94% 91% 93% 92% 92% 93% 93%) -> (1.2k/1.6k) -> write( 6%)
+ last tile: 13/2424/3060 (z13 29%) https://www.openstreetmap.org/#map=13/41.37681/-73.47656
+0:57:15 INF [mbtiles] - features: [ 630M 22% 817k/s ] 199G tiles: [ 33M 15k/s ] 20G
+ cpus: 31.2 gc: 7% heap: 10G/32G direct: 54M postGC: 10G
+ read(36%) -> (1.2k/1.6k) -> encode(92% 90% 90% 89% 87% 91% 92% 92% 92% 92% 90% 92% 92% 92% 91% 91% 91% 90% 87% 92% 92% 91% 92% 92% 91% 91% 92% 92% 90% 89% 92% 92%) -> (1.6k/1.6k) -> write( 5%)
+ last tile: 13/2449/3667 (z13 29%) https://www.openstreetmap.org/#map=13/18.52128/-72.37793
+0:57:25 INF [mbtiles] - features: [ 641M 22% 1M/s ] 199G tiles: [ 33M 50k/s ] 20G
+ cpus: 31.2 gc: 7% heap: 19G/32G direct: 54M postGC: 11G
+ read(40%) -> (1.1k/1.6k) -> encode(92% 91% 89% 91% 91% 92% 91% 93% 93% 87% 92% 93% 90% 91% 92% 93% 91% 90% 91% 90% 93% 90% 93% 92% 89% 91% 90% 91% 91% 91% 91% 92%) -> (1.6k/1.6k) -> write(16%)
+ last tile: 13/2536/4853 (z13 30%) https://www.openstreetmap.org/#map=13/-31.54109/-68.55469
+0:57:36 INF [mbtiles] - features: [ 651M 23% 1M/s ] 199G tiles: [ 35M 111k/s ] 21G
+ cpus: 31.1 gc: 8% heap: 18G/32G direct: 54M postGC: 12G
+ read(40%) -> (1k/1.6k) -> encode(92% 90% 87% 91% 90% 90% 86% 91% 91% 92% 88% 90% 86% 92% 91% 91% 90% 91% 87% 92% 83% 92% 86% 88% 92% 92% 88% 92% 88% 92% 89% 88%) -> (1.6k/1.6k) -> write(32%)
+ last tile: 13/2706/3760 (z13 33%) https://www.openstreetmap.org/#map=13/14.60485/-61.08398
+0:57:46 INF [mbtiles] - features: [ 661M 23% 964k/s ] 199G tiles: [ 36M 137k/s ] 21G
+ cpus: 31.1 gc: 8% heap: 21G/32G direct: 54M postGC: 14G
+ read(43%) -> (1k/1.6k) -> encode(92% 89% 90% 87% 92% 89% 88% 91% 92% 88% 85% 89% 87% 92% 91% 90% 90% 90% 89% 87% 88% 92% 90% 91% 92% 88% 87% 91% 85% 90% 84% 85%) -> (1.5k/1.6k) -> write(37%)
+ last tile: 13/2890/402 (z13 35%) https://www.openstreetmap.org/#map=13/83.26741/-52.99805
+0:57:56 INF [mbtiles] - features: [ 669M 23% 840k/s ] 199G tiles: [ 37M 101k/s ] 22G
+ cpus: 30.7 gc: 12% heap: 7G/32G direct: 54M postGC: 4.9G
+ read(40%) -> (1.3k/1.6k) -> encode(81% 79% 82% 85% 82% 81% 83% 87% 87% 84% 84% 86% 85% 87% 85% 86% 83% 85% 86% 83% 88% 87% 84% 82% 84% 84% 83% 87% 86% 85% 86% 87%) -> (1.4k/1.6k) -> write(27%)
+ last tile: 13/3031/4652 (z13 37%) https://www.openstreetmap.org/#map=13/-23.72501/-46.80176
+0:58:06 INF [mbtiles] - features: [ 676M 23% 620k/s ] 199G tiles: [ 37M 3.5k/s ] 22G
+ cpus: 31.3 gc: 7% heap: 16G/32G direct: 54M postGC: 6.4G
+ read( 5%) -> (199/1.6k) -> encode(93% 93% 93% 93% 93% 92% 93% 93% 92% 92% 93% 92% 93% 91% 93% 92% 93% 93% 93% 93% 93% 93% 90% 91% 91% 93% 92% 93% 93% 93% 93% 92%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/3036/4649 (z13 37%) https://www.openstreetmap.org/#map=13/-23.60426/-46.58203
+0:58:16 INF [mbtiles] - features: [ 681M 24% 583k/s ] 199G tiles: [ 38M 133k/s ] 22G
+ cpus: 14.4 gc: 4% heap: 20G/32G direct: 54M postGC: 7.2G
+ read(22%) -> (0/1.6k) -> encode(27% 64% 25% 30% 31% 31% 77% 35% 30% 28% 63% 36% 33% 59% 51% 33% 33% 50% 36% 34% 38% 59% 34% 35% 30% 37% 52% 28% 60% 29% 42% 52%) -> (1.6k/1.6k) -> write(34%)
+ last tile: 13/3217/4182 (z13 39%) https://www.openstreetmap.org/#map=13/-3.77656/-38.62793
+0:58:26 INF [mbtiles] - features: [ 686M 24% 506k/s ] 199G tiles: [ 41M 299k/s ] 23G
+ cpus: 13.9 gc: 3% heap: 13G/32G direct: 54M postGC: 7.2G
+ read(37%) -> (750/1.6k) -> encode(41% 42% 39% 37% 34% 32% 55% 37% 38% 33% 72% 32% 34% 53% 30% 31% 34% 33% 38% 34% 41% 34% 36% 37% 40% 34% 40% 31% 39% 39% 34% 32%) -> (1.5k/1.6k) -> write(71%)
+ last tile: 13/3646/996 (z13 44%) https://www.openstreetmap.org/#map=13/79.40008/-19.77539
+0:58:36 INF [mbtiles] - features: [ 692M 24% 593k/s ] 199G tiles: [ 43M 149k/s ] 23G
+ cpus: 31.3 gc: 6% heap: 22G/32G direct: 54M postGC: 7.6G
+ read(51%) -> (1.1k/1.6k) -> encode(91% 92% 92% 93% 91% 93% 90% 90% 90% 87% 93% 92% 92% 90% 92% 91% 90% 90% 89% 93% 93% 87% 91% 93% 92% 86% 90% 91% 86% 93% 88% 87%) -> (1.2k/1.6k) -> write(36%)
+ last tile: 13/3877/3712 (z13 47%) https://www.openstreetmap.org/#map=13/16.63619/-9.62402
+0:58:46 INF [mbtiles] - features: [ 700M 24% 724k/s ] 199G tiles: [ 43M 22k/s ] 23G
+ cpus: 31.2 gc: 7% heap: 23G/32G direct: 54M postGC: 8.8G
+ read(34%) -> (1.2k/1.6k) -> encode(92% 91% 93% 90% 90% 92% 93% 92% 92% 92% 90% 92% 92% 92% 90% 92% 89% 92% 92% 93% 89% 93% 89% 90% 93% 90% 89% 85% 92% 92% 91% 92%) -> (1.6k/1.6k) -> write( 6%)
+ last tile: 13/3913/3808 (z13 47%) https://www.openstreetmap.org/#map=13/12.55456/-8.04199
+0:58:56 INF [mbtiles] - features: [ 707M 24% 756k/s ] 199G tiles: [ 43M 42k/s ] 23G
+ cpus: 31.4 gc: 6% heap: 13G/32G direct: 54M postGC: 9.4G
+ read(28%) -> (1k/1.6k) -> encode(94% 91% 94% 94% 94% 94% 94% 92% 92% 94% 90% 94% 94% 94% 89% 94% 94% 94% 94% 92% 91% 90% 94% 94% 94% 94% 91% 93% 93% 93% 91% 90%) -> (1.2k/1.6k) -> write(12%)
+ last tile: 13/3981/3921 (z13 48%) https://www.openstreetmap.org/#map=13/7.66744/-5.05371
+0:59:06 INF [mbtiles] - features: [ 713M 25% 590k/s ] 199G tiles: [ 44M 17k/s ] 23G
+ cpus: 31.2 gc: 7% heap: 17G/32G direct: 54M postGC: 10G
+ read(37%) -> (1.3k/1.6k) -> encode(92% 93% 93% 90% 93% 92% 92% 91% 93% 92% 91% 93% 91% 88% 91% 93% 92% 92% 88% 91% 92% 90% 90% 87% 93% 90% 93% 92% 93% 90% 93% 92%) -> (1.6k/1.6k) -> write( 5%)
+ last tile: 13/4009/2996 (z13 48%) https://www.openstreetmap.org/#map=13/43.45292/-3.82324
+0:59:16 INF [mbtiles] - features: [ 720M 25% 654k/s ] 199G tiles: [ 44M 15k/s ] 23G
+ cpus: 31.3 gc: 6% heap: 19G/32G direct: 54M postGC: 11G
+ read(33%) -> (1.5k/1.6k) -> encode(90% 90% 93% 89% 92% 93% 93% 93% 91% 92% 91% 90% 93% 93% 93% 93% 92% 93% 92% 91% 92% 93% 93% 92% 89% 93% 93% 93% 93% 93% 92% 93%) -> (1.5k/1.6k) -> write( 5%)
+ last tile: 13/4035/2725 (z13 49%) https://www.openstreetmap.org/#map=13/51.48138/-2.68066
+0:59:26 INF [mbtiles] - features: [ 726M 25% 613k/s ] 199G tiles: [ 44M 9.1k/s ] 23G
+ cpus: 31.3 gc: 6% heap: 18G/32G direct: 54M postGC: 11G
+ read(26%) -> (1.4k/1.6k) -> encode(93% 92% 93% 92% 93% 90% 93% 93% 93% 93% 94% 93% 93% 93% 92% 90% 92% 90% 90% 92% 94% 93% 93% 93% 93% 93% 93% 93% 93% 86% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4050/2826 (z13 49%) https://www.openstreetmap.org/#map=13/48.63291/-2.02148
+0:59:36 INF [mbtiles] - features: [ 731M 25% 552k/s ] 199G tiles: [ 44M 5.4k/s ] 24G
+ cpus: 31.3 gc: 7% heap: 13G/32G direct: 54M postGC: 12G
+ read(18%) -> (1.3k/1.6k) -> encode(93% 90% 92% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 86% 91% 90% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4059/3814 (z13 49%) https://www.openstreetmap.org/#map=13/12.29707/-1.62598
+0:59:46 INF [mbtiles] - features: [ 737M 25% 542k/s ] 199G tiles: [ 44M 6.7k/s ] 24G
+ cpus: 31.4 gc: 5% heap: 15G/32G direct: 54M postGC: 12G
+ read(29%) -> (1.5k/1.6k) -> encode(91% 92% 94% 94% 94% 94% 93% 92% 91% 94% 94% 93% 94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 94% 93% 92% 91% 90% 93% 94% 94% 95% 93%) -> (1.5k/1.6k) -> write( 2%)
+ last tile: 13/4070/2910 (z13 49%) https://www.openstreetmap.org/#map=13/46.13417/-1.14258
+0:59:56 INF [mbtiles] - features: [ 743M 26% 592k/s ] 199G tiles: [ 44M 6.7k/s ] 24G
+ cpus: 31.3 gc: 6% heap: 19G/32G direct: 54M postGC: 13G
+ read(23%) -> (1.4k/1.6k) -> encode(94% 93% 94% 93% 93% 94% 94% 93% 94% 87% 93% 94% 93% 92% 93% 88% 93% 94% 93% 92% 94% 94% 94% 92% 93% 92% 93% 93% 94% 93% 93% 94%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4081/2952 (z13 49%) https://www.openstreetmap.org/#map=13/44.84029/-0.65918
+Mar 30, 2022 11:37:34 PM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
+INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
+1:00:01 INF - Database closed
+1:00:06 INF [mbtiles] - features: [ 748M 26% 530k/s ] 199G tiles: [ 44M 3.6k/s ] 24G
+ cpus: 31.4 gc: 5% heap: 21G/32G direct: 54M postGC: 13G
+ read(14%) -> (1.2k/1.6k) -> encode(94% 94% 92% 94% 95% 94% 94% 95% 94% 95% 94% 95% 92% 94% 92% 94% 95% 94% 94% 94% 90% 93% 94% 94% 94% 94% 94% 94% 94% 94% 95% 94%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4087/3118 (z13 49%) https://www.openstreetmap.org/#map=13/39.43619/-0.39551
+1:00:16 INF [mbtiles] - features: [ 753M 26% 524k/s ] 199G tiles: [ 44M 6.8k/s ] 24G
+ cpus: 31.3 gc: 6% heap: 20G/32G direct: 54M postGC: 14G
+ read(27%) -> (1.3k/1.6k) -> encode(93% 89% 93% 93% 89% 93% 93% 93% 93% 93% 93% 93% 93% 92% 86% 92% 93% 92% 91% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 91% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4098/2796 (z13 50%) https://www.openstreetmap.org/#map=13/49.49667/0.08789
+1:00:26 INF [mbtiles] - features: [ 759M 26% 607k/s ] 199G tiles: [ 44M 11k/s ] 24G
+ cpus: 31.4 gc: 5% heap: 23G/32G direct: 54M postGC: 14G
+ read(33%) -> (1.5k/1.6k) -> encode(93% 94% 94% 94% 90% 93% 94% 94% 94% 92% 91% 93% 92% 92% 92% 92% 94% 93% 94% 92% 93% 94% 94% 94% 94% 93% 91% 94% 90% 94% 94% 93%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4116/2710 (z13 50%) https://www.openstreetmap.org/#map=13/51.89005/0.87891
+1:00:36 INF [mbtiles] - features: [ 765M 26% 547k/s ] 199G tiles: [ 44M 7.3k/s ] 24G
+ cpus: 31.2 gc: 7% heap: 21G/32G direct: 54M postGC: 15G
+ read(24%) -> (1.5k/1.6k) -> encode(93% 93% 92% 93% 93% 91% 90% 92% 92% 93% 92% 93% 92% 90% 93% 92% 89% 90% 90% 92% 92% 91% 92% 92% 93% 93% 92% 93% 91% 91% 91% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4128/2992 (z13 50%) https://www.openstreetmap.org/#map=13/43.58039/1.40625
+1:00:46 INF [mbtiles] - features: [ 770M 27% 522k/s ] 199G tiles: [ 44M 6.1k/s ] 24G
+ cpus: 31.3 gc: 6% heap: 22G/32G direct: 54M postGC: 16G
+ read(18%) -> (1.3k/1.6k) -> encode(94% 94% 94% 93% 94% 94% 93% 93% 94% 92% 94% 94% 94% 94% 92% 94% 92% 93% 93% 92% 94% 94% 94% 94% 93% 94% 91% 93% 94% 94% 94% 91%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4138/2745 (z13 50%) https://www.openstreetmap.org/#map=13/50.93074/1.84570
+1:00:56 INF [mbtiles] - features: [ 775M 27% 441k/s ] 199G tiles: [ 44M 4.2k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 19G/32G direct: 54M postGC: 16G
+ read(12%) -> (1.2k/1.6k) -> encode(92% 91% 92% 92% 92% 92% 88% 92% 92% 92% 92% 88% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4145/3060 (z13 50%) https://www.openstreetmap.org/#map=13/41.37681/2.15332
+1:01:06 INF [mbtiles] - features: [ 779M 27% 410k/s ] 199G tiles: [ 45M 6k/s ] 24G
+ cpus: 31.2 gc: 6% heap: 21G/32G direct: 54M postGC: 16G
+ read(22%) -> (1.4k/1.6k) -> encode(93% 93% 92% 93% 93% 91% 93% 93% 93% 93% 93% 91% 88% 91% 91% 93% 93% 92% 93% 92% 90% 89% 93% 93% 93% 92% 93% 93% 92% 92% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4155/3948 (z13 50%) https://www.openstreetmap.org/#map=13/6.48998/2.59277
+1:01:16 INF [mbtiles] - features: [ 783M 27% 472k/s ] 199G tiles: [ 45M 5.5k/s ] 24G
+ cpus: 31.3 gc: 6% heap: 24G/32G direct: 54M postGC: 17G
+ read(20%) -> (1.4k/1.6k) -> encode(94% 94% 89% 94% 92% 94% 94% 93% 92% 93% 92% 92% 93% 94% 93% 94% 93% 94% 93% 94% 94% 94% 93% 92% 93% 93% 92% 93% 94% 92% 94% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4164/2756 (z13 50%) https://www.openstreetmap.org/#map=13/50.62507/2.98828
+1:01:26 INF [mbtiles] - features: [ 788M 27% 431k/s ] 199G tiles: [ 45M 5.4k/s ] 24G
+ cpus: 31.2 gc: 7% heap: 21G/32G direct: 54M postGC: 17G
+ read(22%) -> (1.5k/1.6k) -> encode(93% 93% 93% 93% 91% 93% 93% 91% 93% 92% 93% 93% 93% 92% 93% 93% 92% 92% 92% 91% 93% 89% 93% 93% 89% 93% 92% 92% 92% 92% 92% 91%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4173/2767 (z13 50%) https://www.openstreetmap.org/#map=13/50.31741/3.38379
+1:01:36 INF [mbtiles] - features: [ 793M 27% 488k/s ] 199G tiles: [ 45M 6.5k/s ] 24G
+ cpus: 31.2 gc: 7% heap: 20G/32G direct: 54M postGC: 18G
+ read(16%) -> (1.4k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 90% 92% 93% 93% 91% 90% 91% 91% 93% 93% 92% 93% 92% 93% 93% 93% 91% 93% 91% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4184/3928 (z13 51%) https://www.openstreetmap.org/#map=13/7.36247/3.86719
+1:01:46 INF [mbtiles] - features: [ 797M 28% 465k/s ] 199G tiles: [ 45M 5.5k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 23G/32G direct: 54M postGC: 18G
+ read(22%) -> (1.4k/1.6k) -> encode(92% 92% 92% 93% 91% 92% 92% 93% 91% 92% 91% 93% 92% 90% 90% 92% 91% 92% 89% 92% 92% 92% 88% 92% 92% 92% 92% 92% 90% 92% 93% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4193/2704 (z13 51%) https://www.openstreetmap.org/#map=13/52.05249/4.26270
+1:01:56 INF [mbtiles] - features: [ 801M 28% 402k/s ] 199G tiles: [ 45M 3.6k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 19G/32G direct: 54M postGC: 19G
+ read(15%) -> (1.4k/1.6k) -> encode(92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 91% 90% 90% 92% 92% 91% 91% 90% 92% 91% 90% 92% 92% 91% 92% 91% 91% 92% 90% 92% 90% 91%) -> (1.5k/1.6k) -> write( 1%)
+ last tile: 13/4199/2708 (z13 51%) https://www.openstreetmap.org/#map=13/51.94426/4.52637
+1:02:06 INF [mbtiles] - features: [ 806M 28% 444k/s ] 199G tiles: [ 45M 3k/s ] 24G
+ cpus: 31.2 gc: 7% heap: 21G/32G direct: 54M postGC: 19G
+ read(18%) -> (1.4k/1.6k) -> encode(93% 91% 92% 93% 91% 93% 92% 93% 92% 93% 92% 91% 91% 92% 92% 93% 91% 92% 93% 93% 92% 91% 92% 92% 91% 93% 92% 90% 91% 93% 91% 90%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4204/2722 (z13 51%) https://www.openstreetmap.org/#map=13/51.56341/4.74609
+1:02:16 INF [mbtiles] - features: [ 810M 28% 436k/s ] 199G tiles: [ 45M 3.6k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 20G/32G direct: 54M postGC: 20G
+ read(19%) -> (1.5k/1.6k) -> encode(92% 92% 92% 92% 91% 93% 92% 90% 90% 89% 92% 92% 92% 92% 92% 92% 91% 92% 93% 92% 92% 92% 92% 92% 93% 92% 91% 91% 92% 92% 93% 90%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4210/2871 (z13 51%) https://www.openstreetmap.org/#map=13/47.30903/5.00977
+1:02:26 INF [mbtiles] - features: [ 815M 28% 455k/s ] 199G tiles: [ 45M 3.6k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 22G/32G direct: 54M postGC: 20G
+ read(18%) -> (1.4k/1.6k) -> encode(90% 92% 91% 92% 92% 91% 92% 91% 92% 92% 92% 92% 93% 91% 92% 92% 92% 92% 92% 92% 90% 92% 92% 91% 92% 92% 91% 91% 92% 92% 92% 91%) -> (1.5k/1.6k) -> write( 1%)
+ last tile: 13/4216/2719 (z13 51%) https://www.openstreetmap.org/#map=13/51.64529/5.27344
+1:02:36 INF [mbtiles] - features: [ 819M 28% 453k/s ] 199G tiles: [ 45M 2.5k/s ] 24G
+ cpus: 31 gc: 8% heap: 23G/32G direct: 54M postGC: 20G
+ read(15%) -> (1.3k/1.6k) -> encode(91% 92% 92% 91% 91% 91% 92% 92% 91% 92% 91% 90% 91% 90% 92% 91% 91% 91% 90% 92% 91% 91% 92% 91% 91% 92% 92% 91% 91% 91% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4220/2726 (z13 51%) https://www.openstreetmap.org/#map=13/51.45401/5.44922
+1:02:46 INF [mbtiles] - features: [ 824M 29% 496k/s ] 199G tiles: [ 45M 4.9k/s ] 24G
+ cpus: 31.1 gc: 7% heap: 22G/32G direct: 54M postGC: 21G
+ read(24%) -> (1.5k/1.6k) -> encode(92% 92% 89% 91% 91% 92% 90% 91% 92% 90% 91% 91% 92% 90% 92% 91% 92% 90% 92% 92% 91% 92% 91% 90% 92% 92% 89% 91% 92% 88% 91% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4228/2744 (z13 51%) https://www.openstreetmap.org/#map=13/50.95843/5.80078
+1:02:56 INF [mbtiles] - features: [ 829M 29% 458k/s ] 199G tiles: [ 45M 3.7k/s ] 25G
+ cpus: 31.1 gc: 7% heap: 25G/32G direct: 54M postGC: 21G
+ read(19%) -> (1.5k/1.6k) -> encode(93% 92% 92% 91% 92% 91% 92% 91% 92% 93% 93% 93% 91% 92% 90% 93% 92% 92% 92% 90% 90% 92% 92% 92% 92% 91% 90% 91% 93% 91% 91% 92%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4234/2751 (z13 51%) https://www.openstreetmap.org/#map=13/50.76426/6.06445
+1:03:06 INF [mbtiles] - features: [ 834M 29% 475k/s ] 199G tiles: [ 45M 4.2k/s ] 25G
+ cpus: 30.9 gc: 7% heap: 2.9G/32G direct: 54M postGC: 2.7G
+ read(21%) -> (1.5k/1.6k) -> encode(91% 89% 92% 91% 91% 90% 90% 91% 89% 91% 91% 88% 90% 90% 88% 92% 87% 89% 89% 90% 90% 89% 92% 89% 91% 89% 92% 90% 90% 92% 92% 91%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4241/3858 (z13 51%) https://www.openstreetmap.org/#map=13/10.40138/6.37207
+1:03:16 INF [mbtiles] - features: [ 839M 29% 500k/s ] 199G tiles: [ 45M 3.8k/s ] 25G
+ cpus: 31.3 gc: 6% heap: 9.3G/32G direct: 54M postGC: 3.1G
+ read(21%) -> (1.5k/1.6k) -> encode(94% 94% 94% 94% 93% 94% 93% 93% 94% 91% 93% 94% 94% 93% 91% 94% 93% 93% 93% 94% 92% 94% 94% 93% 93% 93% 92% 92% 92% 90% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4247/2694 (z13 51%) https://www.openstreetmap.org/#map=13/52.32191/6.63574
+1:03:26 INF [mbtiles] - features: [ 844M 29% 505k/s ] 199G tiles: [ 45M 3.7k/s ] 25G
+ cpus: 31.3 gc: 6% heap: 8.8G/32G direct: 54M postGC: 3.7G
+ read(18%) -> (1.4k/1.6k) -> encode(93% 93% 94% 93% 93% 88% 93% 89% 93% 93% 94% 91% 93% 91% 93% 93% 93% 93% 93% 93% 94% 93% 93% 93% 93% 93% 93% 92% 91% 92% 94% 93%) -> (1.5k/1.6k) -> write( 1%)
+ last tile: 13/4253/2698 (z13 51%) https://www.openstreetmap.org/#map=13/52.21434/6.89941
+1:03:36 INF [mbtiles] - features: [ 849M 29% 496k/s ] 199G tiles: [ 45M 4.3k/s ] 25G
+ cpus: 31.3 gc: 6% heap: 4.1G/32G direct: 54M postGC: 4.1G
+ read(24%) -> (1.5k/1.6k) -> encode(92% 92% 93% 93% 91% 93% 92% 93% 91% 92% 93% 93% 93% 91% 92% 92% 93% 92% 93% 91% 93% 92% 93% 93% 93% 92% 93% 92% 93% 91% 89% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4260/2989 (z13 52%) https://www.openstreetmap.org/#map=13/43.67582/7.20703
+1:03:46 INF [mbtiles] - features: [ 855M 30% 600k/s ] 199G tiles: [ 45M 3.6k/s ] 25G
+ cpus: 31.3 gc: 6% heap: 6.2G/32G direct: 54M postGC: 4.6G
+ read(20%) -> (1.3k/1.6k) -> encode(93% 92% 93% 94% 93% 94% 93% 94% 93% 92% 94% 91% 91% 93% 94% 90% 93% 93% 93% 94% 94% 93% 93% 93% 93% 92% 94% 93% 92% 91% 92% 93%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/4266/3888 (z13 52%) https://www.openstreetmap.org/#map=13/9.10210/7.47070
+1:03:56 INF [mbtiles] - features: [ 861M 30% 626k/s ] 199G tiles: [ 45M 6.9k/s ] 25G
+ cpus: 31.2 gc: 6% heap: 6.1G/32G direct: 54M postGC: 5.3G
+ read(33%) -> (1.5k/1.6k) -> encode(92% 91% 92% 93% 93% 93% 93% 91% 91% 93% 93% 93% 92% 92% 92% 90% 93% 93% 92% 93% 93% 87% 90% 92% 91% 93% 93% 91% 93% 91% 89% 93%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4277/2813 (z13 52%) https://www.openstreetmap.org/#map=13/49.00905/7.95410
+1:04:06 INF [mbtiles] - features: [ 868M 30% 728k/s ] 199G tiles: [ 45M 7.4k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 10G/32G direct: 54M postGC: 6G
+ read(30%) -> (1.5k/1.6k) -> encode(92% 93% 93% 92% 92% 91% 93% 91% 93% 92% 92% 93% 93% 92% 93% 92% 91% 90% 92% 92% 92% 91% 93% 92% 92% 92% 90% 92% 91% 90% 91% 92%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4289/3823 (z13 52%) https://www.openstreetmap.org/#map=13/11.91035/8.48145
+1:04:16 INF [mbtiles] - features: [ 875M 30% 662k/s ] 199G tiles: [ 45M 4.4k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 7G/32G direct: 54M postGC: 6.7G
+ read(29%) -> (1.5k/1.6k) -> encode(93% 92% 90% 92% 90% 91% 90% 92% 90% 91% 93% 93% 92% 93% 90% 91% 92% 91% 92% 93% 91% 92% 92% 91% 92% 92% 88% 92% 92% 91% 93% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4296/2667 (z13 52%) https://www.openstreetmap.org/#map=13/53.04121/8.78906
+1:04:26 INF [mbtiles] - features: [ 882M 31% 680k/s ] 199G tiles: [ 45M 5.5k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 7.5G/32G direct: 54M postGC: 7.4G
+ read(28%) -> (1.4k/1.6k) -> encode(93% 91% 91% 91% 92% 92% 90% 90% 92% 90% 93% 92% 92% 92% 91% 92% 91% 91% 92% 90% 91% 92% 91% 93% 90% 92% 91% 92% 93% 92% 91% 92%) -> (1.5k/1.6k) -> write( 2%)
+ last tile: 13/4305/2932 (z13 52%) https://www.openstreetmap.org/#map=13/45.46013/9.18457
+1:04:36 INF [mbtiles] - features: [ 889M 31% 749k/s ] 199G tiles: [ 46M 6.1k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 10G/32G direct: 54M postGC: 8.1G
+ read(32%) -> (1.4k/1.6k) -> encode(93% 92% 92% 93% 90% 92% 92% 92% 91% 93% 91% 93% 91% 93% 92% 93% 93% 92% 91% 93% 92% 93% 92% 92% 89% 91% 92% 92% 90% 92% 92% 90%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4315/4004 (z13 52%) https://www.openstreetmap.org/#map=13/4.03962/9.62402
+1:04:47 INF [mbtiles] - features: [ 896M 31% 677k/s ] 199G tiles: [ 46M 6.2k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 9.3G/32G direct: 54M postGC: 9G
+ read(30%) -> (1.5k/1.6k) -> encode(92% 93% 93% 93% 91% 92% 90% 93% 92% 90% 93% 91% 93% 90% 91% 93% 92% 92% 92% 93% 91% 92% 90% 90% 91% 91% 93% 91% 93% 91% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4325/3226 (z13 52%) https://www.openstreetmap.org/#map=13/35.67515/10.06348
+1:04:57 INF [mbtiles] - features: [ 903M 31% 731k/s ] 199G tiles: [ 46M 6.7k/s ] 25G
+ cpus: 31.2 gc: 7% heap: 12G/32G direct: 54M postGC: 9.5G
+ read(28%) -> (1.4k/1.6k) -> encode(90% 92% 93% 91% 91% 91% 93% 90% 92% 92% 92% 93% 92% 93% 92% 93% 90% 92% 91% 92% 91% 90% 91% 92% 90% 92% 92% 91% 93% 90% 91% 91%) -> (1.5k/1.6k) -> write( 3%)
+ last tile: 13/4336/3904 (z13 52%) https://www.openstreetmap.org/#map=13/8.40717/10.54688
+1:05:07 INF [mbtiles] - features: [ 911M 32% 720k/s ] 199G tiles: [ 46M 6.9k/s ] 26G
+ cpus: 31.1 gc: 7% heap: 14G/32G direct: 54M postGC: 10G
+ read(35%) -> (1.5k/1.6k) -> encode(89% 91% 91% 90% 92% 92% 92% 92% 91% 92% 92% 87% 90% 90% 90% 91% 91% 89% 92% 90% 91% 91% 90% 90% 92% 91% 92% 92% 92% 91% 92% 92%) -> (1.5k/1.6k) -> write( 3%)
+ last tile: 13/4347/2798 (z13 53%) https://www.openstreetmap.org/#map=13/49.43956/11.03027
+1:05:17 INF [mbtiles] - features: [ 918M 32% 718k/s ] 199G tiles: [ 46M 6.1k/s ] 26G
+ cpus: 31.1 gc: 7% heap: 16G/32G direct: 54M postGC: 11G
+ read(25%) -> (1.4k/1.6k) -> encode(91% 92% 92% 90% 91% 92% 91% 91% 92% 92% 91% 92% 91% 91% 90% 91% 92% 92% 92% 92% 92% 92% 91% 90% 89% 89% 92% 92% 92% 92% 89% 91%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4357/4009 (z13 53%) https://www.openstreetmap.org/#map=13/3.82041/11.46973
+1:05:27 INF [mbtiles] - features: [ 925M 32% 688k/s ] 199G tiles: [ 46M 5.6k/s ] 26G
+ cpus: 31.2 gc: 7% heap: 17G/32G direct: 54M postGC: 11G
+ read(22%) -> (1.2k/1.6k) -> encode(91% 92% 93% 93% 93% 92% 91% 91% 93% 91% 93% 93% 92% 92% 91% 93% 93% 92% 93% 93% 91% 90% 91% 93% 90% 93% 93% 91% 93% 92% 93% 93%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4366/4206 (z13 53%) https://www.openstreetmap.org/#map=13/-4.82826/11.86523
+1:05:37 INF [mbtiles] - features: [ 932M 32% 750k/s ] 199G tiles: [ 46M 9.9k/s ] 26G
+ cpus: 31.2 gc: 6% heap: 16G/32G direct: 54M postGC: 13G
+ read(44%) -> (1.5k/1.6k) -> encode(90% 91% 91% 93% 92% 93% 92% 89% 93% 93% 93% 93% 91% 91% 93% 90% 89% 92% 92% 93% 92% 91% 92% 91% 92% 93% 92% 90% 88% 91% 92% 93%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4382/3791 (z13 53%) https://www.openstreetmap.org/#map=13/13.28272/12.56836
+1:05:47 INF [mbtiles] - features: [ 940M 33% 800k/s ] 199G tiles: [ 46M 9.6k/s ] 26G
+ cpus: 31.1 gc: 7% heap: 16G/32G direct: 54M postGC: 14G
+ read(34%) -> (1.5k/1.6k) -> encode(90% 92% 88% 91% 90% 91% 89% 90% 91% 92% 90% 92% 92% 91% 91% 90% 91% 92% 91% 91% 91% 92% 91% 90% 91% 92% 90% 91% 90% 91% 91% 91%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4398/3155 (z13 53%) https://www.openstreetmap.org/#map=13/38.16911/13.27148
+1:05:57 INF [mbtiles] - features: [ 948M 33% 768k/s ] 199G tiles: [ 46M 10k/s ] 26G
+ cpus: 31.1 gc: 7% heap: 19G/32G direct: 54M postGC: 14G
+ read(34%) -> (1.4k/1.6k) -> encode(91% 91% 91% 91% 93% 92% 92% 93% 93% 91% 93% 92% 90% 90% 93% 91% 90% 92% 92% 92% 90% 91% 91% 92% 92% 92% 90% 87% 91% 91% 93% 90%) -> (1.5k/1.6k) -> write( 4%)
+ last tile: 13/4415/3868 (z13 53%) https://www.openstreetmap.org/#map=13/9.96885/14.01855
+1:06:07 INF [mbtiles] - features: [ 956M 33% 780k/s ] 199G tiles: [ 46M 10k/s ] 26G
+ cpus: 31.1 gc: 7% heap: 18G/32G direct: 54M postGC: 15G
+ read(36%) -> (1.5k/1.6k) -> encode(92% 91% 92% 91% 91% 92% 91% 90% 91% 91% 92% 91% 90% 92% 92% 88% 89% 90% 87% 91% 92% 91% 91% 92% 92% 91% 91% 90% 89% 91% 92% 89%) -> (1.5k/1.6k) -> write( 5%)
+ last tile: 13/4433/3847 (z13 54%) https://www.openstreetmap.org/#map=13/10.87646/14.80957
+1:06:17 INF [mbtiles] - features: [ 963M 33% 713k/s ] 199G tiles: [ 46M 5.2k/s ] 26G
+ cpus: 31 gc: 8% heap: 20G/32G direct: 54M postGC: 16G
+ read(15%) -> (1.1k/1.6k) -> encode(90% 91% 92% 92% 91% 92% 92% 91% 91% 91% 92% 92% 89% 92% 92% 92% 91% 90% 91% 92% 92% 92% 91% 92% 89% 88% 91% 91% 92% 91% 92% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4442/4194 (z13 54%) https://www.openstreetmap.org/#map=13/-4.30259/15.20508
+1:06:27 INF [mbtiles] - features: [ 970M 34% 708k/s ] 199G tiles: [ 46M 15k/s ] 27G
+ cpus: 31.1 gc: 7% heap: 19G/32G direct: 54M postGC: 17G
+ read(44%) -> (1.5k/1.6k) -> encode(92% 91% 89% 92% 92% 93% 92% 90% 92% 89% 89% 92% 92% 90% 90% 89% 91% 93% 91% 89% 90% 91% 90% 90% 91% 92% 88% 93% 91% 90% 92% 91%) -> (1.6k/1.6k) -> write( 6%)
+ last tile: 13/4469/2839 (z13 54%) https://www.openstreetmap.org/#map=13/48.25394/16.39160
+1:06:37 INF [mbtiles] - features: [ 977M 34% 668k/s ] 199G tiles: [ 47M 10k/s ] 27G
+ cpus: 31.1 gc: 7% heap: 18G/32G direct: 54M postGC: 18G
+ read(22%) -> (1.3k/1.6k) -> encode(92% 91% 92% 91% 91% 90% 92% 90% 92% 92% 92% 90% 92% 92% 90% 91% 90% 93% 91% 92% 92% 92% 92% 92% 89% 92% 92% 91% 91% 92% 92% 93%) -> (1.4k/1.6k) -> write( 4%)
+ last tile: 13/4488/2942 (z13 54%) https://www.openstreetmap.org/#map=13/45.15105/17.22656
+1:06:47 INF [mbtiles] - features: [ 984M 34% 734k/s ] 199G tiles: [ 47M 11k/s ] 27G
+ cpus: 31.1 gc: 7% heap: 22G/32G direct: 54M postGC: 18G
+ read(38%) -> (1.5k/1.6k) -> encode(92% 91% 90% 93% 91% 92% 92% 91% 92% 93% 91% 91% 93% 90% 90% 91% 91% 91% 93% 92% 92% 91% 90% 88% 92% 91% 91% 92% 90% 91% 89% 92%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4509/3091 (z13 55%) https://www.openstreetmap.org/#map=13/40.34654/18.14941
+1:06:57 INF [mbtiles] - features: [ 992M 34% 761k/s ] 199G tiles: [ 47M 10k/s ] 27G
+ cpus: 31 gc: 7% heap: 22G/32G direct: 54M postGC: 19G
+ read(23%) -> (1.2k/1.6k) -> encode(91% 91% 92% 91% 90% 92% 92% 91% 91% 92% 91% 90% 92% 92% 90% 92% 90% 92% 90% 90% 90% 89% 89% 91% 91% 92% 91% 92% 92% 90% 91% 91%) -> (1.3k/1.6k) -> write( 4%)
+ last tile: 13/4528/2770 (z13 55%) https://www.openstreetmap.org/#map=13/50.23315/18.98438
+1:07:07 INF [mbtiles] - features: [ 1B 35% 841k/s ] 199G tiles: [ 47M 15k/s ] 27G
+ cpus: 30.9 gc: 8% heap: 22G/32G direct: 54M postGC: 20G
+ read(44%) -> (1.4k/1.6k) -> encode(90% 90% 90% 89% 91% 91% 90% 90% 89% 89% 89% 91% 89% 88% 89% 90% 91% 89% 89% 91% 89% 89% 91% 90% 89% 90% 90% 91% 88% 87% 88% 88%) -> (1.5k/1.6k) -> write( 6%)
+ last tile: 13/4555/3320 (z13 55%) https://www.openstreetmap.org/#map=13/32.24997/20.17090
+1:07:17 INF [mbtiles] - features: [ 1B 35% 944k/s ] 199G tiles: [ 47M 20k/s ] 27G
+ cpus: 31 gc: 8% heap: 26G/32G direct: 54M postGC: 21G
+ read(47%) -> (1.5k/1.6k) -> encode(89% 90% 90% 91% 89% 87% 91% 90% 89% 89% 91% 91% 90% 88% 90% 89% 91% 91% 91% 90% 90% 91% 90% 89% 90% 89% 89% 89% 90% 90% 88% 90%) -> (1.6k/1.6k) -> write( 7%)
+ last tile: 13/4590/4368 (z13 56%) https://www.openstreetmap.org/#map=13/-11.86735/21.70898
+1:07:27 INF [mbtiles] - features: [ 1B 35% 1M/s ] 199G tiles: [ 47M 21k/s ] 28G
+ cpus: 30.9 gc: 7% heap: 10G/32G direct: 54M postGC: 2.7G
+ read(37%) -> (1.3k/1.6k) -> encode(91% 89% 92% 88% 92% 87% 91% 90% 91% 93% 86% 91% 90% 93% 87% 90% 87% 89% 89% 90% 89% 91% 85% 91% 93% 90% 88% 89% 91% 92% 90% 89%) -> (1.4k/1.6k) -> write( 9%)
+ last tile: 13/4627/1836 (z13 56%) https://www.openstreetmap.org/#map=13/69.96044/23.33496
+1:07:37 INF [mbtiles] - features: [ 1B 36% 1.1M/s ] 199G tiles: [ 48M 28k/s ] 28G
+ cpus: 31.1 gc: 7% heap: 4.5G/32G direct: 54M postGC: 4G
+ read(50%) -> (1.2k/1.6k) -> encode(90% 89% 91% 92% 92% 88% 88% 86% 89% 88% 90% 90% 90% 90% 89% 91% 91% 91% 92% 92% 91% 89% 92% 92% 93% 92% 91% 88% 89% 90% 92% 88%) -> (1.4k/1.6k) -> write(11%)
+ last tile: 13/4676/4669 (z13 57%) https://www.openstreetmap.org/#map=13/-24.40714/25.48828
+1:07:47 INF [mbtiles] - features: [ 1B 36% 914k/s ] 199G tiles: [ 48M 22k/s ] 28G
+ cpus: 31.1 gc: 8% heap: 14G/32G direct: 54M postGC: 5.2G
+ read(44%) -> (1.4k/1.6k) -> encode(92% 90% 91% 92% 91% 83% 90% 90% 92% 92% 90% 90% 91% 91% 92% 89% 88% 90% 89% 90% 89% 90% 87% 87% 91% 91% 88% 91% 92% 88% 90% 90%) -> (1.6k/1.6k) -> write( 8%)
+ last tile: 13/4713/3150 (z13 57%) https://www.openstreetmap.org/#map=13/38.34166/27.11426
+1:07:57 INF [mbtiles] - features: [ 1B 36% 805k/s ] 199G tiles: [ 48M 14k/s ] 28G
+ cpus: 31.2 gc: 7% heap: 8.6G/32G direct: 54M postGC: 5.9G
+ read(32%) -> (1.4k/1.6k) -> encode(90% 92% 89% 93% 90% 92% 91% 92% 90% 92% 90% 88% 91% 92% 91% 92% 91% 92% 89% 93% 93% 92% 93% 92% 91% 93% 93% 93% 89% 92% 91% 88%) -> (1.6k/1.6k) -> write( 5%)
+ last tile: 13/4737/4166 (z13 57%) https://www.openstreetmap.org/#map=13/-3.07470/28.16895
+1:08:07 INF [mbtiles] - features: [ 1B 37% 659k/s ] 199G tiles: [ 48M 8.8k/s ] 28G
+ cpus: 31.1 gc: 7% heap: 10G/32G direct: 54M postGC: 6.4G
+ read(22%) -> (1.2k/1.6k) -> encode(93% 93% 91% 93% 90% 91% 88% 92% 93% 92% 90% 92% 93% 92% 92% 93% 93% 93% 92% 93% 93% 92% 91% 90% 93% 93% 90% 91% 93% 88% 90% 92%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4752/4154 (z13 58%) https://www.openstreetmap.org/#map=13/-2.54799/28.82813
+1:08:17 INF [mbtiles] - features: [ 1B 37% 616k/s ] 199G tiles: [ 48M 4.7k/s ] 28G
+ cpus: 31.2 gc: 6% heap: 12G/32G direct: 54M postGC: 6.8G
+ read(12%) -> (961/1.6k) -> encode(94% 92% 94% 92% 94% 92% 94% 94% 93% 92% 93% 93% 93% 93% 93% 93% 94% 94% 93% 94% 93% 93% 92% 94% 93% 93% 91% 93% 94% 93% 94% 91%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4760/4134 (z13 58%) https://www.openstreetmap.org/#map=13/-1.66969/29.17969
+1:08:27 INF [mbtiles] - features: [ 1B 37% 726k/s ] 199G tiles: [ 48M 14k/s ] 29G
+ cpus: 31.1 gc: 7% heap: 16G/32G direct: 54M postGC: 7.7G
+ read(38%) -> (1.2k/1.6k) -> encode(91% 92% 90% 91% 90% 88% 92% 88% 90% 92% 90% 87% 91% 92% 88% 90% 91% 91% 91% 92% 92% 92% 90% 90% 90% 90% 92% 91% 93% 91% 90% 92%) -> (1.6k/1.6k) -> write( 5%)
+ last tile: 13/4784/4061 (z13 58%) https://www.openstreetmap.org/#map=13/1.53790/30.23438
+1:08:37 INF [mbtiles] - features: [ 1B 37% 680k/s ] 199G tiles: [ 48M 11k/s ] 29G
+ cpus: 31.2 gc: 6% heap: 9.9G/32G direct: 54M postGC: 8.7G
+ read(34%) -> (1.3k/1.6k) -> encode(88% 93% 90% 91% 93% 94% 93% 93% 91% 94% 93% 92% 93% 94% 92% 94% 94% 88% 92% 94% 93% 93% 92% 91% 93% 93% 93% 92% 91% 94% 92% 94%) -> (1.5k/1.6k) -> write( 4%)
+ last tile: 13/4803/4514 (z13 58%) https://www.openstreetmap.org/#map=13/-18.06231/31.06934
+1:08:47 INF [mbtiles] - features: [ 1B 37% 706k/s ] 199G tiles: [ 48M 6.6k/s ] 29G
+ cpus: 31.2 gc: 7% heap: 18G/32G direct: 54M postGC: 9.3G
+ read(23%) -> (1.1k/1.6k) -> encode(92% 91% 91% 93% 91% 92% 93% 89% 91% 90% 92% 92% 88% 92% 93% 93% 91% 90% 92% 93% 92% 93% 92% 92% 92% 91% 92% 93% 92% 91% 92% 92%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/4814/3986 (z13 58%) https://www.openstreetmap.org/#map=13/4.82826/31.55273
+1:08:57 INF [mbtiles] - features: [ 1B 38% 572k/s ] 199G tiles: [ 49M 13k/s ] 29G
+ cpus: 31.2 gc: 7% heap: 13G/32G direct: 54M postGC: 10G
+ read(24%) -> (1.2k/1.6k) -> encode(93% 91% 93% 92% 91% 93% 92% 91% 91% 93% 93% 91% 92% 92% 89% 93% 91% 92% 93% 92% 92% 91% 89% 92% 91% 91% 93% 91% 91% 93% 92% 92%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4836/4089 (z13 59%) https://www.openstreetmap.org/#map=13/0.30762/32.51953
+1:09:07 INF [mbtiles] - features: [ 1B 38% 567k/s ] 199G tiles: [ 49M 11k/s ] 29G
+ cpus: 31.2 gc: 7% heap: 19G/32G direct: 54M postGC: 11G
+ read(26%) -> (1.4k/1.6k) -> encode(91% 89% 91% 92% 92% 93% 93% 93% 92% 93% 92% 93% 92% 91% 92% 89% 91% 90% 93% 91% 91% 92% 91% 90% 90% 92% 93% 91% 92% 92% 91% 90%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4856/4300 (z13 59%) https://www.openstreetmap.org/#map=13/-8.92849/33.39844
+1:09:17 INF [mbtiles] - features: [ 1.1B 38% 593k/s ] 199G tiles: [ 49M 11k/s ] 29G
+ cpus: 31.2 gc: 7% heap: 15G/32G direct: 54M postGC: 11G
+ read(27%) -> (1.5k/1.6k) -> encode(93% 93% 89% 93% 93% 92% 91% 92% 92% 91% 88% 93% 90% 91% 90% 93% 90% 93% 92% 93% 93% 93% 93% 91% 92% 93% 92% 93% 91% 93% 93% 93%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/4876/3345 (z13 59%) https://www.openstreetmap.org/#map=13/31.31610/34.27734
+1:09:27 INF [mbtiles] - features: [ 1.1B 38% 646k/s ] 199G tiles: [ 49M 7.6k/s ] 29G
+ cpus: 31.1 gc: 7% heap: 19G/32G direct: 54M postGC: 12G
+ read(16%) -> (1.2k/1.6k) -> encode(92% 91% 92% 91% 91% 92% 92% 93% 93% 92% 91% 93% 92% 91% 92% 92% 91% 92% 92% 91% 90% 91% 93% 92% 92% 91% 92% 92% 92% 93% 91% 90%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/4889/4557 (z13 59%) https://www.openstreetmap.org/#map=13/-19.84939/34.84863
+1:09:37 INF [mbtiles] - features: [ 1.1B 39% 770k/s ] 199G tiles: [ 49M 21k/s ] 29G
+ cpus: 31.2 gc: 6% heap: 15G/32G direct: 54M postGC: 13G
+ read(37%) -> (1.3k/1.6k) -> encode(92% 92% 92% 92% 89% 93% 93% 90% 93% 93% 93% 92% 93% 92% 92% 93% 87% 90% 93% 93% 91% 91% 91% 93% 93% 92% 92% 88% 93% 92% 93% 90%) -> (1.4k/1.6k) -> write( 7%)
+ last tile: 13/4924/3741 (z13 60%) https://www.openstreetmap.org/#map=13/15.41132/36.38672
+1:09:47 INF [mbtiles] - features: [ 1.1B 39% 807k/s ] 199G tiles: [ 49M 16k/s ] 29G
+ cpus: 31.1 gc: 8% heap: 21G/32G direct: 54M postGC: 13G
+ read(35%) -> (1.3k/1.6k) -> encode(92% 91% 88% 90% 89% 90% 92% 92% 91% 90% 91% 87% 91% 90% 89% 90% 86% 92% 92% 89% 91% 91% 89% 90% 92% 92% 92% 91% 92% 92% 92% 91%) -> (1.6k/1.6k) -> write( 6%)
+ last tile: 13/4952/4252 (z13 60%) https://www.openstreetmap.org/#map=13/-6.83917/37.61719
+1:09:57 INF [mbtiles] - features: [ 1.1B 39% 733k/s ] 199G tiles: [ 49M 21k/s ] 30G
+ cpus: 30.9 gc: 9% heap: 22G/32G direct: 54M postGC: 16G
+ read(29%) -> (1.4k/1.6k) -> encode(89% 89% 89% 89% 85% 90% 88% 90% 87% 88% 90% 89% 90% 90% 90% 87% 89% 88% 90% 89% 90% 87% 90% 88% 90% 88% 89% 89% 90% 90% 90% 90%) -> (1.6k/1.6k) -> write( 7%)
+ last tile: 13/4987/4254 (z13 60%) https://www.openstreetmap.org/#map=13/-6.92643/39.15527
+1:10:07 INF [mbtiles] - features: [ 1.1B 39% 834k/s ] 199G tiles: [ 50M 15k/s ] 30G
+ cpus: 31.2 gc: 7% heap: 21G/32G direct: 54M postGC: 17G
+ read(12%) -> (672/1.6k) -> encode(93% 93% 92% 91% 91% 92% 92% 91% 90% 92% 92% 93% 92% 92% 92% 91% 91% 92% 91% 93% 93% 92% 92% 92% 92% 92% 91% 92% 91% 91% 91% 92%) -> (1.2k/1.6k) -> write( 5%)
+ last tile: 13/5013/2251 (z13 61%) https://www.openstreetmap.org/#map=13/62.69431/40.29785
+1:10:17 INF [mbtiles] - features: [ 1.1B 40% 961k/s ] 199G tiles: [ 50M 65k/s ] 30G
+ cpus: 30.9 gc: 9% heap: 24G/32G direct: 54M postGC: 19G
+ read(65%) -> (1.3k/1.6k) -> encode(90% 86% 87% 89% 89% 89% 90% 89% 88% 90% 89% 89% 88% 88% 89% 88% 88% 91% 86% 84% 88% 88% 88% 85% 87% 88% 89% 83% 88% 89% 86% 89%) -> (1.4k/1.6k) -> write(20%)
+ last tile: 13/5125/4050 (z13 62%) https://www.openstreetmap.org/#map=13/2.02107/45.21973
+1:10:27 INF [mbtiles] - features: [ 1.1B 40% 701k/s ] 199G tiles: [ 50M 580/s ] 30G
+ cpus: 31.2 gc: 6% heap: 21G/32G direct: 54M postGC: 20G
+ read( 5%) -> (568/1.6k) -> encode(93% 92% 93% 93% 93% 94% 94% 92% 93% 93% 93% 93% 93% 93% 94% 93% 93% 93% 93% 94% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93%) -> (1.6k/1.6k) -> write( 0%)
+ last tile: 13/5126/4050 (z13 62%) https://www.openstreetmap.org/#map=13/2.02107/45.26367
+1:10:37 INF [mbtiles] - features: [ 1.1B 40% 1.1M/s ] 199G tiles: [ 51M 109k/s ] 31G
+ cpus: 31 gc: 7% heap: 24G/32G direct: 54M postGC: 21G
+ read(56%) -> (977/1.6k) -> encode(90% 91% 90% 87% 89% 92% 91% 90% 89% 92% 88% 89% 90% 86% 88% 89% 86% 87% 89% 90% 91% 90% 89% 87% 88% 88% 89% 92% 87% 88% 89% 91%) -> (1.3k/1.6k) -> write(32%)
+ last tile: 13/5316/5308 (z13 64%) https://www.openstreetmap.org/#map=13/-46.92026/53.61328
+1:10:47 INF [mbtiles] - features: [ 1.1B 41% 1.2M/s ] 199G tiles: [ 53M 146k/s ] 31G
+ cpus: 30.8 gc: 8% heap: 11G/32G direct: 54M postGC: 3.6G
+ read(51%) -> (815/1.6k) -> encode(84% 87% 89% 86% 88% 81% 92% 87% 89% 90% 87% 89% 87% 89% 88% 87% 88% 88% 89% 90% 90% 88% 88% 85% 89% 85% 88% 85% 89% 87% 88% 86%) -> (1.5k/1.6k) -> write(39%)
+ last tile: 13/5581/5704 (z13 68%) https://www.openstreetmap.org/#map=13/-57.51582/65.25879
+1:10:57 INF [mbtiles] - features: [ 1.1B 41% 798k/s ] 199G tiles: [ 54M 87k/s ] 31G
+ cpus: 31.2 gc: 8% heap: 12G/32G direct: 54M postGC: 5.2G
+ read(36%) -> (658/1.6k) -> encode(92% 90% 92% 89% 91% 92% 89% 92% 92% 90% 92% 89% 92% 92% 92% 89% 87% 92% 88% 87% 92% 87% 89% 90% 92% 89% 90% 85% 90% 91% 91% 90%) -> (1.3k/1.6k) -> write(24%)
+ last tile: 13/5733/1485 (z13 69%) https://www.openstreetmap.org/#map=13/74.62510/71.93848
+1:11:07 INF [mbtiles] - features: [ 1.1B 41% 889k/s ] 199G tiles: [ 54M 71k/s ] 32G
+ cpus: 31.1 gc: 8% heap: 17G/32G direct: 54M postGC: 7.1G
+ read(60%) -> (1.2k/1.6k) -> encode(86% 87% 87% 88% 87% 86% 91% 88% 89% 89% 89% 89% 87% 87% 91% 84% 89% 88% 89% 87% 91% 88% 91% 91% 91% 91% 91% 91% 89% 87% 91% 88%) -> (1.5k/1.6k) -> write(21%)
+ last tile: 13/5857/3552 (z13 71%) https://www.openstreetmap.org/#map=13/23.24135/77.38770
+1:11:17 INF [mbtiles] - features: [ 1.2B 42% 652k/s ] 199G tiles: [ 55M 31k/s ] 32G
+ cpus: 31.2 gc: 8% heap: 18G/32G direct: 54M postGC: 8G
+ read(26%) -> (1.3k/1.6k) -> encode(92% 90% 90% 88% 90% 92% 91% 92% 92% 90% 90% 92% 88% 86% 90% 92% 89% 92% 92% 90% 92% 92% 92% 90% 91% 92% 92% 92% 91% 89% 92% 92%) -> (1.5k/1.6k) -> write(10%)
+ last tile: 13/5915/4425 (z13 72%) https://www.openstreetmap.org/#map=13/-14.30697/79.93652
+1:11:27 INF [mbtiles] - features: [ 1.2B 42% 580k/s ] 199G tiles: [ 55M 20k/s ] 32G
+ cpus: 31.3 gc: 7% heap: 14G/32G direct: 54M postGC: 8.6G
+ read(24%) -> (1.4k/1.6k) -> encode(93% 93% 93% 89% 93% 93% 93% 93% 85% 93% 93% 93% 93% 90% 93% 87% 88% 93% 91% 93% 92% 93% 93% 93% 92% 92% 93% 93% 93% 91% 93% 93%) -> (1.5k/1.6k) -> write( 6%)
+ last tile: 13/5953/6125 (z13 72%) https://www.openstreetmap.org/#map=13/-66.17827/81.60645
+1:11:37 INF [mbtiles] - features: [ 1.2B 42% 726k/s ] 199G tiles: [ 55M 39k/s ] 32G
+ cpus: 31.3 gc: 7% heap: 16G/32G direct: 54M postGC: 9.3G
+ read(27%) -> (1.4k/1.6k) -> encode(93% 93% 91% 93% 93% 90% 93% 93% 90% 93% 93% 87% 93% 92% 93% 92% 93% 93% 90% 91% 93% 93% 88% 91% 91% 93% 93% 93% 91% 91% 90% 93%) -> (1.6k/1.6k) -> write(11%)
+ last tile: 13/6027/3458 (z13 73%) https://www.openstreetmap.org/#map=13/26.98083/84.85840
+1:11:47 INF [mbtiles] - features: [ 1.2B 42% 602k/s ] 199G tiles: [ 56M 17k/s ] 32G
+ cpus: 31.3 gc: 6% heap: 18G/32G direct: 54M postGC: 9.5G
+ read( 9%) -> (887/1.6k) -> encode(94% 90% 93% 92% 92% 91% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 93% 94% 93% 94% 92% 94%) -> (1.3k/1.6k) -> write( 5%)
+ last tile: 13/6060/3443 (z13 73%) https://www.openstreetmap.org/#map=13/27.56672/86.30859
+1:11:57 INF [mbtiles] - features: [ 1.2B 42% 433k/s ] 199G tiles: [ 56M 34k/s ] 32G
+ cpus: 31.1 gc: 8% heap: 19G/32G direct: 54M postGC: 10G
+ read(34%) -> (1.5k/1.6k) -> encode(91% 92% 90% 92% 92% 91% 89% 91% 88% 90% 91% 92% 91% 92% 92% 92% 91% 88% 86% 92% 92% 91% 91% 91% 85% 91% 92% 92% 89% 89% 92% 90%) -> (1.6k/1.6k) -> write( 9%)
+ last tile: 13/6125/3555 (z13 74%) https://www.openstreetmap.org/#map=13/23.12015/89.16504
+1:12:07 INF [mbtiles] - features: [ 1.2B 43% 479k/s ] 199G tiles: [ 56M 12k/s ] 32G
+ cpus: 31.1 gc: 8% heap: 16G/32G direct: 54M postGC: 12G
+ read(13%) -> (1.5k/1.6k) -> encode(90% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 91% 91% 90% 92% 91% 92% 89% 92% 91% 90% 92% 92% 92% 90% 91% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/6150/3535 (z13 75%) https://www.openstreetmap.org/#map=13/23.92601/90.26367
+1:12:17 INF [mbtiles] - features: [ 1.2B 43% 368k/s ] 199G tiles: [ 56M 10k/s ] 32G
+ cpus: 31.1 gc: 8% heap: 17G/32G direct: 54M postGC: 12G
+ read( 7%) -> (1.2k/1.6k) -> encode(91% 92% 91% 91% 92% 91% 91% 91% 92% 92% 91% 92% 92% 92% 92% 92% 92% 91% 92% 90% 92% 92% 92% 89% 91% 92% 92% 91% 92% 92% 92% 92%) -> (1.4k/1.6k) -> write( 3%)
+ last tile: 13/6170/3547 (z13 75%) https://www.openstreetmap.org/#map=13/23.44309/91.14258
+1:12:27 INF [mbtiles] - features: [ 1.2B 43% 592k/s ] 199G tiles: [ 57M 46k/s ] 33G
+ cpus: 31.2 gc: 8% heap: 15G/32G direct: 54M postGC: 13G
+ read(28%) -> (1k/1.6k) -> encode(90% 91% 91% 92% 92% 92% 92% 90% 90% 90% 91% 91% 91% 90% 90% 92% 89% 92% 91% 89% 88% 91% 92% 89% 92% 91% 92% 90% 92% 90% 91% 90%) -> (1.5k/1.6k) -> write(12%)
+ last tile: 13/6265/3970 (z13 76%) https://www.openstreetmap.org/#map=13/5.52851/95.31738
+1:12:37 INF [mbtiles] - features: [ 1.2B 43% 703k/s ] 199G tiles: [ 57M 47k/s ] 33G
+ cpus: 31 gc: 9% heap: 21G/32G direct: 54M postGC: 15G
+ read(30%) -> (1k/1.6k) -> encode(90% 90% 91% 90% 90% 89% 91% 88% 87% 91% 91% 88% 91% 87% 90% 88% 91% 89% 90% 87% 91% 91% 90% 89% 88% 89% 91% 90% 91% 89% 87% 89%) -> (1.4k/1.6k) -> write(13%)
+ last tile: 13/6364/4880 (z13 77%) https://www.openstreetmap.org/#map=13/-32.54681/99.66797
+1:12:47 INF [mbtiles] - features: [ 1.2B 43% 994k/s ] 199G tiles: [ 58M 60k/s ] 33G
+ cpus: 31 gc: 9% heap: 21G/32G direct: 54M postGC: 17G
+ read(68%) -> (1.2k/1.6k) -> encode(87% 86% 89% 91% 89% 89% 90% 89% 87% 85% 87% 83% 90% 85% 83% 88% 91% 89% 87% 90% 86% 90% 89% 90% 88% 91% 88% 88% 87% 89% 87% 90%) -> (1.4k/1.6k) -> write(18%)
+ last tile: 13/6490/4220 (z13 79%) https://www.openstreetmap.org/#map=13/-5.44102/105.20508
+1:12:57 INF [mbtiles] - features: [ 1.2B 44% 680k/s ] 199G tiles: [ 58M 14k/s ] 33G
+ cpus: 30.8 gc: 10% heap: 20G/32G direct: 54M postGC: 20G
+ read(26%) -> (1.4k/1.6k) -> encode(89% 86% 88% 88% 84% 88% 85% 86% 89% 89% 89% 88% 89% 88% 89% 85% 87% 88% 85% 89% 87% 87% 89% 87% 88% 88% 89% 88% 87% 86% 88% 89%) -> (1.6k/1.6k) -> write( 5%)
+ last tile: 13/6521/4237 (z13 79%) https://www.openstreetmap.org/#map=13/-6.18425/106.56738
+1:13:07 INF [mbtiles] - features: [ 1.2B 44% 295k/s ] 199G tiles: [ 58M 2.9k/s ] 33G
+ cpus: 30.9 gc: 9% heap: 10G/32G direct: 54M postGC: 6.6G
+ read( 6%) -> (1.4k/1.6k) -> encode(87% 90% 90% 86% 89% 90% 89% 89% 89% 86% 89% 90% 90% 87% 86% 90% 90% 90% 90% 86% 87% 89% 89% 88% 90% 87% 88% 89% 89% 89% 88% 89%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/6527/4242 (z13 79%) https://www.openstreetmap.org/#map=13/-6.40265/106.83105
+1:13:17 INF [mbtiles] - features: [ 1.2B 44% 383k/s ] 199G tiles: [ 58M 7.3k/s ] 33G
+ cpus: 31.1 gc: 8% heap: 11G/32G direct: 54M postGC: 7.5G
+ read(15%) -> (1.5k/1.6k) -> encode(91% 88% 91% 91% 91% 91% 91% 91% 90% 88% 91% 91% 91% 91% 91% 91% 90% 88% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 89% 91% 91% 91%) -> (1.6k/1.6k) -> write( 2%)
+ last tile: 13/6542/4253 (z13 79%) https://www.openstreetmap.org/#map=13/-6.88280/107.49023
+1:13:27 INF [mbtiles] - features: [ 1.2B 44% 358k/s ] 199G tiles: [ 58M 9.3k/s ] 33G
+ cpus: 31.3 gc: 6% heap: 18G/32G direct: 54M postGC: 7.9G
+ read(14%) -> (1.5k/1.6k) -> encode(93% 91% 93% 91% 93% 94% 93% 93% 93% 92% 91% 93% 93% 93% 92% 93% 92% 93% 93% 93% 94% 93% 93% 93% 93% 92% 94% 93% 93% 90% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/6561/4241 (z13 80%) https://www.openstreetmap.org/#map=13/-6.35898/108.32520
+1:13:38 INF [mbtiles] - features: [ 1.2B 44% 442k/s ] 199G tiles: [ 58M 8.7k/s ] 33G
+ cpus: 31.3 gc: 7% heap: 8.5G/32G direct: 54M postGC: 8.4G
+ read(18%) -> (1.4k/1.6k) -> encode(90% 92% 93% 92% 90% 93% 93% 93% 90% 90% 92% 93% 90% 92% 93% 93% 92% 93% 93% 92% 93% 93% 93% 93% 92% 93% 93% 91% 93% 93% 93% 93%) -> (1.6k/1.6k) -> write( 3%)
+ last tile: 13/6579/4253 (z13 80%) https://www.openstreetmap.org/#map=13/-6.88280/109.11621
+1:13:48 INF [mbtiles] - features: [ 1.2B 44% 492k/s ] 199G tiles: [ 58M 13k/s ] 33G
+ cpus: 31.3 gc: 7% heap: 9.6G/32G direct: 54M postGC: 9.4G
+ read(21%) -> (1.5k/1.6k) -> encode(90% 93% 92% 93% 93% 93% 93% 93% 92% 92% 89% 93% 91% 89% 93% 93% 92% 93% 91% 92% 93% 93% 93% 91% 90% 92% 93% 92% 93% 92% 93% 93%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/6606/4275 (z13 80%) https://www.openstreetmap.org/#map=13/-7.84162/110.30273
+1:13:58 INF [mbtiles] - features: [ 1.2B 45% 446k/s ] 199G tiles: [ 58M 1.4k/s ] 33G
+ cpus: 31.3 gc: 6% heap: 9.4G/32G direct: 54M postGC: 9.2G
+ read( 3%) -> (1.1k/1.6k) -> encode(93% 93% 93% 93% 93% 93% 93% 94% 93% 94% 92% 93% 94% 93% 93% 93% 94% 93% 94% 93% 93% 93% 93% 93% 93% 94% 94% 93% 94% 94% 94% 93%) -> (1.6k/1.6k) -> write( 0%)
+ last tile: 13/6609/4256 (z13 80%) https://www.openstreetmap.org/#map=13/-7.01367/110.43457
+1:14:08 INF [mbtiles] - features: [ 1.2B 45% 438k/s ] 199G tiles: [ 59M 24k/s ] 33G
+ cpus: 31.2 gc: 8% heap: 18G/32G direct: 54M postGC: 10G
+ read(29%) -> (1.4k/1.6k) -> encode(92% 90% 91% 92% 92% 88% 89% 91% 90% 92% 92% 92% 90% 89% 92% 91% 91% 92% 92% 92% 89% 91% 89% 92% 90% 91% 92% 92% 92% 89% 92% 89%) -> (1.5k/1.6k) -> write( 7%)
+ last tile: 13/6658/4278 (z13 81%) https://www.openstreetmap.org/#map=13/-7.97220/112.58789
+1:14:18 INF [mbtiles] - features: [ 1.2B 45% 502k/s ] 199G tiles: [ 59M 1.5k/s ] 33G
+ cpus: 31.2 gc: 8% heap: 20G/32G direct: 54M postGC: 11G
+ read( 4%) -> (943/1.6k) -> encode(92% 92% 92% 89% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (1.6k/1.6k) -> write( 0%)
+ last tile: 13/6661/4263 (z13 81%) https://www.openstreetmap.org/#map=13/-7.31888/112.71973
+1:14:28 INF [mbtiles] - features: [ 1.3B 45% 583k/s ] 199G tiles: [ 59M 21k/s ] 34G
+ cpus: 31.1 gc: 8% heap: 13G/32G direct: 54M postGC: 12G
+ read(23%) -> (996/1.6k) -> encode(92% 92% 92% 90% 91% 91% 92% 88% 92% 87% 92% 89% 92% 91% 91% 90% 90% 91% 91% 90% 92% 91% 89% 90% 91% 92% 88% 91% 89% 91% 92% 91%) -> (1.6k/1.6k) -> write( 6%)
+ last tile: 13/6703/4172 (z13 81%) https://www.openstreetmap.org/#map=13/-3.33795/114.56543
+1:14:38 INF [mbtiles] - features: [ 1.3B 45% 700k/s ] 199G tiles: [ 59M 26k/s ] 34G
+ cpus: 31.2 gc: 7% heap: 16G/32G direct: 54M postGC: 13G
+ read(30%) -> (974/1.6k) -> encode(90% 92% 89% 91% 90% 92% 92% 90% 92% 87% 91% 92% 92% 92% 85% 92% 92% 92% 92% 90% 92% 92% 92% 90% 90% 92% 90% 92% 91% 92% 92% 90%) -> (1.6k/1.6k) -> write( 8%)
+ last tile: 13/6754/4125 (z13 82%) https://www.openstreetmap.org/#map=13/-1.27431/116.80664
+1:14:48 INF [mbtiles] - features: [ 1.3B 45% 567k/s ] 199G tiles: [ 59M 43k/s ] 34G
+ cpus: 31.1 gc: 8% heap: 15G/32G direct: 54M postGC: 14G
+ read(44%) -> (1.5k/1.6k) -> encode(90% 92% 92% 88% 87% 92% 92% 92% 89% 92% 87% 92% 88% 87% 92% 90% 91% 90% 87% 91% 87% 90% 92% 88% 91% 91% 88% 92% 92% 89% 91% 88%) -> (1.6k/1.6k) -> write(13%)
+ last tile: 13/6838/3752 (z13 83%) https://www.openstreetmap.org/#map=13/14.94478/120.49805
+1:14:58 INF [mbtiles] - features: [ 1.3B 46% 458k/s ] 199G tiles: [ 59M 4.1k/s ] 34G
+ cpus: 31.2 gc: 8% heap: 24G/32G direct: 54M postGC: 15G
+ read(11%) -> (1.4k/1.6k) -> encode(92% 92% 92% 92% 91% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 92% 90% 92% 92% 90% 91% 92% 92% 92% 90%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/6846/3766 (z13 83%) https://www.openstreetmap.org/#map=13/14.34955/120.84961
+1:15:08 INF [mbtiles] - features: [ 1.3B 46% 385k/s ] 199G tiles: [ 59M 2k/s ] 34G
+ cpus: 31 gc: 9% heap: 22G/32G direct: 54M postGC: 17G
+ read( 4%) -> (1.2k/1.6k) -> encode(90% 90% 90% 89% 90% 90% 90% 90% 91% 90% 90% 90% 91% 90% 90% 91% 89% 90% 90% 90% 90% 90% 91% 90% 90% 90% 90% 91% 90% 89% 90% 90%) -> (1.6k/1.6k) -> write( 1%)
+ last tile: 13/6850/3758 (z13 83%) https://www.openstreetmap.org/#map=13/14.68988/121.02539
+1:15:18 INF [mbtiles] - features: [ 1.3B 46% 571k/s ] 199G tiles: [ 60M 29k/s ] 34G
+ cpus: 31.1 gc: 7% heap: 21G/32G direct: 54M postGC: 18G
+ read(22%) -> (1.2k/1.6k) -> encode(92% 92% 91% 92% 91% 92% 88% 92% 92% 89% 92% 92% 93% 93% 91% 93% 91% 92% 92% 89% 91% 92% 93% 89% 93% 90% 92% 91% 92% 92% 93% 93%) -> (1.6k/1.6k) -> write( 9%)
+ last tile: 13/6908/4329 (z13 84%) https://www.openstreetmap.org/#map=13/-10.18519/123.57422
+1:15:28 INF [mbtiles] - features: [ 1.3B 46% 691k/s ] 199G tiles: [ 60M 44k/s ] 34G
+ cpus: 31.2 gc: 7% heap: 20G/32G direct: 54M postGC: 18G
+ read(31%) -> (1.4k/1.6k) -> encode(92% 89% 92% 93% 93% 92% 91% 92% 92% 87% 93% 93% 90% 90% 90% 91% 89% 92% 90% 92% 91% 91% 92% 90% 92% 91% 91% 93% 92% 88% 91% 91%) -> (1.6k/1.6k) -> write(12%)
+ last tile: 13/6994/4079 (z13 85%) https://www.openstreetmap.org/#map=13/0.74705/127.35352
+1:15:38 INF [mbtiles] - features: [ 1.3B 46% 773k/s ] 199G tiles: [ 61M 64k/s ] 35G
+ cpus: 31.1 gc: 8% heap: 23G/32G direct: 54M postGC: 19G
+ read(38%) -> (1.3k/1.6k) -> encode(91% 90% 92% 92% 91% 90% 90% 91% 88% 92% 89% 92% 92% 91% 88% 90% 89% 92% 89% 87% 92% 89% 92% 91% 84% 90% 86% 88% 86% 91% 92% 90%) -> (1.5k/1.6k) -> write(18%)
+ last tile: 13/7116/523 (z13 86%) https://www.openstreetmap.org/#map=13/82.61441/132.71484
+1:15:48 INF [mbtiles] - features: [ 1.3B 47% 545k/s ] 199G tiles: [ 61M 34k/s ] 35G
+ cpus: 31.2 gc: 7% heap: 15G/32G direct: 54M postGC: 4G
+ read(28%) -> (1.4k/1.6k) -> encode(90% 89% 89% 90% 92% 88% 89% 86% 90% 92% 89% 90% 91% 92% 88% 91% 86% 90% 92% 92% 92% 88% 92% 89% 92% 92% 92% 92% 90% 92% 91% 90%) -> (1.6k/1.6k) -> write( 9%)
+ last tile: 13/7181/3250 (z13 87%) https://www.openstreetmap.org/#map=13/34.81380/135.57129
+1:15:58 INF [mbtiles] - features: [ 1.3B 47% 591k/s ] 199G tiles: [ 62M 33k/s ] 35G
+ cpus: 31.3 gc: 6% heap: 6.2G/32G direct: 54M postGC: 4.5G
+ read(25%) -> (1.4k/1.6k) -> encode(90% 93% 93% 91% 93% 93% 89% 92% 93% 94% 93% 90% 90% 93% 93% 93% 91% 93% 93% 93% 93% 93% 93% 94% 93% 91% 93% 89% 88% 93% 93% 93%) -> (1.6k/1.6k) -> write( 9%)
+ last tile: 13/7244/3247 (z13 88%) https://www.openstreetmap.org/#map=13/34.92197/138.33984
+1:16:08 INF [mbtiles] - features: [ 1.3B 47% 540k/s ] 199G tiles: [ 62M 15k/s ] 35G
+ cpus: 31.3 gc: 7% heap: 18G/32G direct: 54M postGC: 5.3G
+ read(14%) -> (1.5k/1.6k) -> encode(93% 93% 93% 92% 93% 92% 90% 93% 93% 91% 88% 91% 93% 93% 93% 92% 93% 93% 93% 93% 91% 93% 93% 93% 90% 93% 93% 93% 93% 93% 93% 91%) -> (1.6k/1.6k) -> write( 4%)
+ last tile: 13/7272/3233 (z13 88%) https://www.openstreetmap.org/#map=13/35.42487/139.57031
+1:16:18 INF [mbtiles] - features: [ 1.3B 47% 499k/s ] 199G tiles: [ 62M 13k/s ] 35G
+ cpus: 31.4 gc: 5% heap: 11G/32G direct: 54M postGC: 5.1G
+ read(12%) -> (1.4k/1.6k) -> encode(92% 95% 94% 94% 94% 95% 94% 94% 95% 94% 91% 95% 94% 94% 95% 95% 94% 94% 94% 94% 93% 95% 95% 94% 93% 94% 92% 90% 94% 95% 95% 94%) -> (1.5k/1.6k) -> write( 4%)
+ last tile: 13/7297/578 (z13 89%) https://www.openstreetmap.org/#map=13/82.29712/140.66895
+1:16:28 INF [mbtiles] - features: [ 1.3B 47% 676k/s ] 199G tiles: [ 62M 53k/s ] 35G
+ cpus: 31.4 gc: 5% heap: 11G/32G direct: 54M postGC: 5.6G
+ read(17%) -> (1.4k/1.6k) -> encode(95% 94% 94% 89% 93% 94% 94% 95% 93% 94% 94% 93% 95% 94% 94% 91% 90% 93% 92% 94% 95% 94% 94% 94% 94% 95% 92% 95% 94% 93% 92% 94%) -> (1.6k/1.6k) -> write(15%)
+ last tile: 13/7394/5028 (z13 90%) https://www.openstreetmap.org/#map=13/-37.85751/144.93164
+1:16:38 INF [mbtiles] - features: [ 1.3B 48% 1M/s ] 199G tiles: [ 65M 284k/s ] 36G
+ cpus: 19.6 gc: 3% heap: 20G/32G direct: 54M postGC: 5.7G
+ read(26%) -> (0/1.6k) -> encode(53% 60% 56% 58% 59% 54% 59% 54% 55% 53% 55% 55% 63% 53% 62% 53% 54% 57% 54% 53% 54% 55% 54% 54% 60% 59% 59% 67% 54% 53% 58% 58%) -> (1.6k/1.6k) -> write(70%)
+ last tile: 13/7855/5425 (z13 95%) https://www.openstreetmap.org/#map=13/-50.31741/165.19043
+1:16:45 INF [mbtiles:write] - Finished z13 in 22m34s cpu:11h26m33s gc:1m34s avg:30.4, now starting z14
+1:16:48 INF [mbtiles] - features: [ 1.3B 48% 655k/s ] 199G tiles: [ 69M 410k/s ] 36G
+ cpus: 12.6 gc: 2% heap: 14G/32G direct: 54M postGC: 5.8G
+ read(30%) -> (0/1.6k) -> encode(34% 36% 34% 34% 34% 27% 34% 30% 31% 36% 34% 30% 30% 34% 34% 33% 36% 31% 41% 37% 34% 34% 37% 34% 40% 32% 34% 33% 30% 33% 33% 34%) -> (1.6k/1.6k) -> write(94%)
+ last tile: 14/99/5322 (z14 0%) https://www.openstreetmap.org/#map=14/53.19945/-177.82471
+1:16:58 INF [mbtiles] - features: [ 1.3B 48% 497k/s ] 199G tiles: [ 74M 446k/s ] 37G
+ cpus: 1.7 gc: 0% heap: 17G/32G direct: 54M postGC: 5.8G
+ read(23%) -> (0/1.6k) -> encode( 1% 1% 2% 1% 2% 1% 2% 2% 2% 1% 1% 2% 2% 2% 2% 2% 2% 1% 2% 1% 1% 2% 1% 1% 1% 2% 1% 1% 2% 2% 2% 2%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/380/13940 (z14 2%) https://www.openstreetmap.org/#map=14/-77.40868/-171.65039
+1:17:08 INF [mbtiles] - features: [ 1.4B 48% 497k/s ] 199G tiles: [ 78M 445k/s ] 37G
+ cpus: 1.7 gc: 0% heap: 21G/32G direct: 54M postGC: 5.8G
+ read(23%) -> (0/1.6k) -> encode( 2% 1% 2% 2% 2% 2% 1% 1% 1% 2% 2% 1% 2% 2% 1% 1% 1% 2% 2% 2% 2% 2% 2% 1% 2% 1% 1% 1% 1% 1% 2% 1%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/658/3054 (z14 4%) https://www.openstreetmap.org/#map=14/74.12807/-165.54199
+1:17:18 INF [mbtiles] - features: [ 1.4B 49% 550k/s ] 199G tiles: [ 83M 434k/s ] 38G
+ cpus: 2.4 gc: 0% heap: 9.7G/32G direct: 54M postGC: 5.5G
+ read(26%) -> (0/1.6k) -> encode( 3% 3% 4% 3% 4% 5% 2% 3% 4% 4% 5% 3% 4% 2% 3% 3% 4% 3% 2% 4% 3% 2% 2% 2% 4% 2% 3% 5% 3% 3% 2% 4%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/943/8524 (z14 5%) https://www.openstreetmap.org/#map=14/-7.27529/-159.27979
+1:17:28 INF [mbtiles] - features: [ 1.4B 49% 497k/s ] 199G tiles: [ 87M 441k/s ] 39G
+ cpus: 2.1 gc: 0% heap: 14G/32G direct: 54M postGC: 5.5G
+ read(24%) -> (0/1.6k) -> encode( 3% 2% 3% 3% 2% 3% 3% 4% 3% 2% 2% 2% 3% 2% 2% 2% 2% 2% 2% 3% 3% 3% 3% 3% 2% 3% 4% 3% 3% 2% 3% 3%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/1249/2642 (z14 7%) https://www.openstreetmap.org/#map=14/76.42429/-152.55615
+1:17:38 INF [mbtiles] - features: [ 1.4B 49% 512k/s ] 199G tiles: [ 91M 440k/s ] 39G
+ cpus: 2.2 gc: 0% heap: 20G/32G direct: 54M postGC: 5.5G
+ read(24%) -> (0/1.6k) -> encode( 3% 3% 4% 4% 2% 2% 3% 3% 2% 4% 3% 4% 3% 3% 3% 4% 3% 4% 3% 3% 3% 4% 2% 3% 3% 3% 3% 3% 4% 3% 2% 3%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/1574/13470 (z14 9%) https://www.openstreetmap.org/#map=14/-74.94798/-145.41504
+1:17:48 INF [mbtiles] - features: [ 1.4B 49% 486k/s ] 199G tiles: [ 96M 434k/s ] 40G
+ cpus: 2.2 gc: 0% heap: 7.8G/32G direct: 54M postGC: 5.5G
+ read(23%) -> (0/1.6k) -> encode( 4% 3% 3% 2% 3% 3% 3% 3% 2% 2% 3% 4% 3% 3% 3% 3% 3% 3% 3% 3% 3% 4% 2% 3% 2% 4% 4% 2% 2% 3% 3% 3%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/1903/3562 (z14 11%) https://www.openstreetmap.org/#map=14/70.77244/-138.18604
+1:17:58 INF [mbtiles] - features: [ 1.4B 49% 545k/s ] 199G tiles: [ 100M 434k/s ] 40G
+ cpus: 2.8 gc: 0% heap: 15G/32G direct: 54M postGC: 5.5G
+ read(26%) -> (0/1.6k) -> encode( 5% 6% 4% 7% 3% 5% 7% 6% 6% 4% 4% 5% 4% 5% 4% 3% 6% 6% 7% 4% 5% 5% 5% 5% 4% 5% 4% 4% 5% 7% 5% 4%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/2246/5460 (z14 13%) https://www.openstreetmap.org/#map=14/51.34434/-130.64941
+1:18:08 INF [mbtiles] - features: [ 1.4B 50% 1.4M/s ] 199G tiles: [ 104M 422k/s ] 41G
+ cpus: 8.6 gc: 1% heap: 22G/32G direct: 54M postGC: 6.1G
+ read(65%) -> (0/1.6k) -> encode(22% 22% 21% 19% 24% 21% 21% 21% 21% 20% 18% 20% 22% 22% 21% 22% 23% 20% 21% 21% 22% 23% 21% 21% 20% 18% 19% 22% 22% 21% 24% 21%) -> (1.1k/1.6k) -> write(99%)
+ last tile: 14/2592/5043 (z14 15%) https://www.openstreetmap.org/#map=14/56.71657/-123.04688
+1:18:18 INF [mbtiles] - features: [ 1.4B 51% 2.2M/s ] 199G tiles: [ 107M 295k/s ] 42G
+ cpus: 13.2 gc: 1% heap: 22G/32G direct: 54M postGC: 5.1G
+ read(99%) -> (0/1.6k) -> encode(38% 35% 34% 39% 33% 36% 38% 35% 35% 34% 38% 35% 35% 32% 32% 37% 34% 38% 32% 33% 35% 36% 32% 35% 40% 36% 35% 35% 35% 35% 37% 36%) -> (46/1.6k) -> write(79%)
+ last tile: 14/2838/7142 (z14 17%) https://www.openstreetmap.org/#map=14/22.47195/-117.64160
+1:18:28 INF [mbtiles] - features: [ 1.4B 51% 2.1M/s ] 199G tiles: [ 111M 364k/s ] 43G
+ cpus: 14.3 gc: 1% heap: 9.3G/32G direct: 54M postGC: 5.4G
+ read(99%) -> (0/1.6k) -> encode(35% 40% 34% 38% 39% 39% 39% 38% 38% 37% 41% 39% 39% 39% 40% 42% 36% 34% 37% 40% 34% 37% 39% 38% 37% 37% 37% 41% 38% 37% 42% 39%) -> (693/1.6k) -> write(93%)
+ last tile: 14/3152/11752 (z14 19%) https://www.openstreetmap.org/#map=14/-61.35461/-110.74219
+1:18:38 INF [mbtiles] - features: [ 1.5B 52% 2M/s ] 199G tiles: [ 115M 395k/s ] 44G
+ cpus: 14.6 gc: 2% heap: 15G/32G direct: 54M postGC: 6G
+ read(91%) -> (0/1.6k) -> encode(38% 36% 41% 40% 35% 43% 37% 38% 36% 39% 40% 37% 40% 36% 41% 38% 45% 35% 34% 37% 39% 36% 42% 40% 36% 41% 35% 39% 37% 35% 41% 37%) -> (1.5k/1.6k) -> write(98%)
+ last tile: 14/3493/10425 (z14 21%) https://www.openstreetmap.org/#map=14/-43.97700/-103.24951
+1:18:48 INF [mbtiles] - features: [ 1.5B 53% 2.1M/s ] 199G tiles: [ 118M 351k/s ] 46G
+ cpus: 14 gc: 2% heap: 9.2G/32G direct: 54M postGC: 5.1G
+ read(96%) -> (0/1.6k) -> encode(38% 33% 35% 39% 33% 37% 35% 39% 38% 38% 37% 38% 37% 36% 38% 37% 35% 41% 34% 37% 37% 32% 35% 38% 40% 38% 36% 37% 35% 36% 35% 36%) -> (47/1.6k) -> write(92%)
+ last tile: 14/3800/8044 (z14 23%) https://www.openstreetmap.org/#map=14/3.25021/-96.50391
+1:18:58 INF [mbtiles] - features: [ 1.5B 54% 2.1M/s ] 199G tiles: [ 121M 286k/s ] 47G
+ cpus: 14.4 gc: 0% heap: 21G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(39% 40% 38% 39% 35% 42% 39% 42% 44% 43% 34% 41% 39% 40% 38% 42% 40% 45% 36% 42% 38% 36% 36% 43% 40% 38% 38% 40% 36% 40% 41% 41%) -> (40/1.6k) -> write(78%)
+ last tile: 14/4060/483 (z14 24%) https://www.openstreetmap.org/#map=14/84.04573/-90.79102
+1:19:08 INF [mbtiles] - features: [ 1.5B 54% 2.1M/s ] 199G tiles: [ 123M 202k/s ] 48G
+ cpus: 12.8 gc: 0% heap: 7.3G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(33% 34% 32% 35% 38% 37% 36% 38% 35% 33% 35% 38% 34% 37% 36% 38% 33% 35% 34% 35% 31% 34% 32% 32% 35% 34% 36% 37% 39% 36% 36% 35%) -> (30/1.6k) -> write(56%)
+ last tile: 14/4244/6326 (z14 25%) https://www.openstreetmap.org/#map=14/37.89220/-86.74805
+1:19:18 INF [mbtiles] - features: [ 1.5B 55% 2.1M/s ] 199G tiles: [ 125M 175k/s ] 49G
+ cpus: 13.1 gc: 0% heap: 14G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(35% 34% 38% 40% 35% 34% 34% 35% 39% 37% 37% 40% 39% 38% 38% 35% 37% 37% 39% 39% 34% 35% 37% 36% 33% 35% 36% 33% 35% 34% 30% 38%) -> (23/1.6k) -> write(51%)
+ last tile: 14/4403/6034 (z14 26%) https://www.openstreetmap.org/#map=14/42.77928/-83.25439
+1:19:28 INF [mbtiles] - features: [ 1.6B 56% 2.1M/s ] 199G tiles: [ 127M 147k/s ] 49G
+ cpus: 12.7 gc: 0% heap: 20G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(31% 35% 35% 31% 35% 35% 36% 35% 36% 36% 36% 35% 33% 35% 36% 36% 36% 40% 32% 36% 38% 34% 40% 32% 35% 34% 35% 38% 34% 34% 34% 34%) -> (19/1.6k) -> write(44%)
+ last tile: 14/4533/6880 (z14 27%) https://www.openstreetmap.org/#map=14/27.68353/-80.39795
+1:19:38 INF [mbtiles] - features: [ 1.6B 57% 2.2M/s ] 199G tiles: [ 128M 149k/s ] 50G
+ cpus: 12.9 gc: 0% heap: 8.2G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(37% 35% 37% 35% 35% 36% 36% 38% 34% 36% 39% 38% 36% 35% 33% 35% 39% 40% 36% 36% 36% 38% 28% 35% 35% 32% 39% 33% 36% 37% 34% 34%) -> (17/1.6k) -> write(45%)
+ last tile: 14/4661/6006 (z14 28%) https://www.openstreetmap.org/#map=14/43.22920/-77.58545
+1:19:48 INF [mbtiles] - features: [ 1.6B 57% 2.2M/s ] 199G tiles: [ 129M 129k/s ] 51G
+ cpus: 12.3 gc: 0% heap: 8.4G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(35% 33% 37% 34% 31% 35% 34% 33% 35% 35% 37% 35% 35% 33% 32% 38% 34% 33% 29% 36% 35% 32% 32% 38% 34% 34% 32% 33% 35% 34% 37% 34%) -> (22/1.6k) -> write(40%)
+ last tile: 14/4770/5841 (z14 29%) https://www.openstreetmap.org/#map=14/45.81349/-75.19043
+1:19:58 INF [mbtiles] - features: [ 1.6B 58% 2.2M/s ] 199G tiles: [ 131M 131k/s ] 52G
+ cpus: 12 gc: 0% heap: 22G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(32% 35% 38% 31% 33% 33% 31% 32% 35% 31% 31% 31% 33% 34% 34% 34% 32% 39% 35% 32% 32% 34% 34% 31% 37% 33% 33% 33% 33% 34% 31% 33%) -> (21/1.6k) -> write(40%)
+ last tile: 14/4876/6015 (z14 29%) https://www.openstreetmap.org/#map=14/43.08494/-72.86133
+1:20:08 INF [mbtiles] - features: [ 1.7B 59% 2.2M/s ] 199G tiles: [ 132M 153k/s ] 53G
+ cpus: 13.1 gc: 0% heap: 5.2G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(36% 36% 37% 35% 35% 37% 37% 35% 33% 38% 43% 38% 38% 35% 40% 33% 35% 37% 37% 35% 38% 37% 37% 36% 37% 37% 33% 34% 38% 36% 35% 35%) -> (53/1.6k) -> write(48%)
+ last tile: 14/5013/6294 (z14 30%) https://www.openstreetmap.org/#map=14/38.44498/-69.85107
+1:20:18 INF [mbtiles] - features: [ 1.7B 60% 2M/s ] 199G tiles: [ 136M 368k/s ] 54G
+ cpus: 15.1 gc: 1% heap: 5.8G/32G direct: 54M postGC: 5.8G
+ read(99%) -> (0/1.6k) -> encode(39% 40% 40% 40% 41% 41% 41% 39% 38% 42% 36% 42% 41% 42% 41% 41% 41% 41% 43% 39% 41% 42% 42% 39% 41% 39% 41% 40% 39% 41% 38% 40%) -> (1.3k/1.6k) -> write(99%)
+ last tile: 14/5322/10112 (z14 32%) https://www.openstreetmap.org/#map=14/-38.82259/-63.06152
+1:20:28 INF [mbtiles] - features: [ 1.7B 60% 1.4M/s ] 199G tiles: [ 140M 393k/s ] 55G
+ cpus: 8.8 gc: 1% heap: 10G/32G direct: 54M postGC: 5.9G
+ read(67%) -> (0/1.6k) -> encode(24% 21% 21% 21% 21% 22% 22% 24% 20% 21% 22% 22% 18% 21% 28% 21% 20% 19% 23% 24% 23% 22% 20% 20% 24% 24% 20% 23% 22% 21% 22% 19%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 14/5596/4020 (z14 34%) https://www.openstreetmap.org/#map=14/67.16995/-57.04102
+1:20:38 INF [mbtiles] - features: [ 1.7B 61% 1.3M/s ] 199G tiles: [ 144M 396k/s ] 56G
+ cpus: 8.8 gc: 1% heap: 19G/32G direct: 54M postGC: 5.9G
+ read(63%) -> (0/1.6k) -> encode(20% 18% 17% 21% 21% 19% 26% 19% 22% 22% 21% 21% 22% 22% 25% 23% 26% 22% 23% 24% 17% 21% 20% 23% 21% 22% 22% 26% 21% 21% 21% 26%) -> (1.5k/1.6k) -> write(99%)
+ last tile: 14/5870/6814 (z14 35%) https://www.openstreetmap.org/#map=14/28.96009/-51.02051
+1:20:43 WAR [mbtiles:encode] - {x=6070 y=9294 z=14} 1000kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6070 y=9292 z=14} 1001kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6071 y=9291 z=14} 1010kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6071 y=9292 z=14} 1281kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6073 y=9297 z=14} 1064kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6074 y=9296 z=14} 1065kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6074 y=9297 z=14} 1203kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6074 y=9293 z=14} 1026kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6075 y=9297 z=14} 1092kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6075 y=9293 z=14} 1134kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6076 y=9293 z=14} 1108kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6077 y=9293 z=14} 985kb uncompressed
+1:20:43 WAR [mbtiles:encode] - {x=6079 y=9292 z=14} 1016kb uncompressed
+1:20:48 INF [mbtiles] - features: [ 1.7B 61% 1.5M/s ] 199G tiles: [ 148M 397k/s ] 57G
+ cpus: 9.4 gc: 1% heap: 17G/32G direct: 54M postGC: 5.9G
+ read(72%) -> (0/1.6k) -> encode(22% 20% 25% 23% 26% 22% 20% 18% 26% 19% 23% 26% 25% 23% 25% 22% 24% 23% 19% 20% 24% 21% 25% 23% 26% 26% 25% 26% 25% 26% 24% 19%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 14/6149/8001 (z14 37%) https://www.openstreetmap.org/#map=14/4.19303/-44.89014
+1:20:55 WAR [mbtiles:encode] - {x=6435 y=8363 z=14} 1049kb uncompressed
+1:20:55 WAR [mbtiles:encode] - {x=6435 y=8361 z=14} 1688kb uncompressed
+1:20:58 INF [mbtiles] - features: [ 1.7B 61% 1M/s ] 199G tiles: [ 152M 404k/s ] 58G
+ cpus: 6.5 gc: 1% heap: 14G/32G direct: 54M postGC: 6G
+ read(50%) -> (0/1.6k) -> encode(20% 17% 12% 14% 14% 17% 10% 11% 15% 17% 18% 15% 14% 16% 17% 15% 13% 14% 14% 16% 16% 17% 17% 16% 13% 19% 12% 17% 15% 15% 12% 14%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 14/6422/1353 (z14 39%) https://www.openstreetmap.org/#map=14/81.69467/-38.89160
+1:21:08 INF [mbtiles] - features: [ 1.7B 62% 674k/s ] 199G tiles: [ 156M 421k/s ] 58G
+ cpus: 2.6 gc: 0% heap: 6.5G/32G direct: 54M postGC: 5.5G
+ read(32%) -> (0/1.6k) -> encode( 4% 3% 3% 5% 6% 3% 5% 4% 3% 2% 6% 3% 5% 4% 4% 4% 5% 4% 4% 3% 2% 6% 2% 3% 3% 6% 5% 5% 4% 3% 2% 4%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/6713/12128 (z14 40%) https://www.openstreetmap.org/#map=14/-65.07213/-32.49756
+1:21:18 INF [mbtiles] - features: [ 1.7B 62% 546k/s ] 199G tiles: [ 160M 423k/s ] 59G
+ cpus: 2.2 gc: 0% heap: 12G/32G direct: 54M postGC: 5.5G
+ read(27%) -> (0/1.6k) -> encode( 3% 4% 3% 4% 3% 2% 3% 3% 4% 3% 3% 3% 3% 3% 2% 3% 2% 2% 2% 3% 3% 3% 3% 3% 3% 3% 3% 3% 3% 2% 3% 3%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/7020/10090 (z14 42%) https://www.openstreetmap.org/#map=14/-38.44498/-25.75195
+1:21:28 INF [mbtiles] - features: [ 1.7B 62% 667k/s ] 199G tiles: [ 165M 420k/s ] 60G
+ cpus: 3.3 gc: 0% heap: 5.7G/32G direct: 54M postGC: 5.7G
+ read(32%) -> (0/1.6k) -> encode( 7% 5% 5% 7% 5% 6% 7% 5% 7% 5% 6% 4% 6% 5% 5% 5% 5% 6% 5% 5% 7% 7% 7% 5% 7% 6% 5% 6% 7% 6% 6% 5%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/7331/6068 (z14 44%) https://www.openstreetmap.org/#map=14/42.22852/-18.91846
+1:21:38 INF [mbtiles] - features: [ 1.8B 63% 1.1M/s ] 199G tiles: [ 169M 422k/s ] 60G
+ cpus: 5.6 gc: 0% heap: 13G/32G direct: 54M postGC: 5.7G
+ read(51%) -> (0/1.6k) -> encode(16% 12% 13% 11% 13% 13% 13% 12% 15% 12% 14% 11% 10% 12% 14% 14% 14% 11% 12% 13% 14% 9% 10% 10% 14% 13% 11% 12% 12% 12% 12% 14%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/7656/2385 (z14 46%) https://www.openstreetmap.org/#map=14/77.68819/-11.77734
+1:21:48 INF [mbtiles] - features: [ 1.8B 63% 2.1M/s ] 199G tiles: [ 173M 370k/s ] 62G
+ cpus: 13.1 gc: 1% heap: 20G/32G direct: 54M postGC: 5.1G
+ read(98%) -> (0/1.6k) -> encode(32% 34% 31% 36% 33% 35% 35% 35% 30% 33% 36% 36% 36% 35% 34% 34% 37% 35% 38% 34% 33% 34% 37% 36% 28% 37% 36% 33% 30% 34% 32% 32%) -> (43/1.6k) -> write(95%)
+ last tile: 14/7955/7776 (z14 48%) https://www.openstreetmap.org/#map=14/9.10210/-5.20752
+1:21:50 WAR [mbtiles:encode] - {x=7990 y=6392 z=14} 1283kb uncompressed
+1:21:58 INF [mbtiles] - features: [ 1.8B 64% 2.1M/s ] 199G tiles: [ 174M 135k/s ] 62G
+ cpus: 11.9 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(33% 30% 30% 33% 32% 32% 33% 32% 33% 35% 33% 34% 36% 35% 35% 34% 31% 32% 34% 33% 33% 35% 34% 32% 28% 30% 32% 28% 31% 33% 35% 32%) -> (17/1.6k) -> write(40%)
+ last tile: 14/8066/5309 (z14 49%) https://www.openstreetmap.org/#map=14/53.37022/-2.76855
+1:22:08 INF [mbtiles] - features: [ 1.8B 65% 2.2M/s ] 199G tiles: [ 175M 75k/s ] 63G
+ cpus: 11 gc: 0% heap: 15G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(32% 31% 27% 32% 29% 30% 29% 31% 31% 31% 27% 31% 31% 32% 29% 29% 31% 29% 31% 30% 30% 31% 34% 31% 31% 31% 30% 33% 30% 31% 32% 30%) -> (8/1.6k) -> write(24%)
+ last tile: 14/8128/5477 (z14 49%) https://www.openstreetmap.org/#map=14/51.11042/-1.40625
+1:22:17 WAR [mbtiles:encode] - {x=8174 y=6234 z=14} 1236kb uncompressed
+1:22:18 INF [mbtiles] - features: [ 1.8B 66% 2.2M/s ] 199G tiles: [ 175M 65k/s ] 64G
+ cpus: 10.7 gc: 0% heap: 9.3G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(30% 28% 29% 31% 29% 27% 32% 28% 31% 30% 29% 31% 32% 30% 30% 27% 29% 27% 28% 28% 32% 28% 30% 29% 30% 32% 29% 30% 28% 30% 32% 29%) -> (8/1.6k) -> write(22%)
+ last tile: 14/8182/5449 (z14 49%) https://www.openstreetmap.org/#map=14/51.49506/-0.21973
+1:22:28 INF [mbtiles] - features: [ 1.9B 66% 2.2M/s ] 199G tiles: [ 176M 82k/s ] 64G
+ cpus: 10.7 gc: 0% heap: 20G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(29% 30% 28% 30% 31% 28% 31% 29% 26% 30% 31% 29% 26% 33% 31% 28% 30% 30% 30% 31% 31% 30% 29% 29% 32% 29% 27% 28% 30% 28% 30% 28%) -> (16/1.6k) -> write(27%)
+ last tile: 14/8250/5407 (z14 50%) https://www.openstreetmap.org/#map=14/52.06600/1.27441
+1:22:31 WAR [mbtiles:encode] - {x=8270 y=6129 z=14} 1036kb uncompressed
+1:22:34 WAR [mbtiles:encode] - {x=8290 y=6119 z=14} 1276kb uncompressed
+1:22:34 WAR [mbtiles:encode] - {x=8290 y=6118 z=14} 1319kb uncompressed
+1:22:35 WAR [mbtiles:encode] - {x=8292 y=6115 z=14} 1272kb uncompressed
+1:22:38 INF [mbtiles] - features: [ 1.9B 67% 2.2M/s ] 199G tiles: [ 177M 73k/s ] 65G
+ cpus: 10.5 gc: 0% heap: 9.8G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(28% 29% 29% 31% 29% 29% 28% 27% 27% 30% 27% 26% 28% 30% 29% 30% 30% 30% 31% 29% 28% 29% 28% 29% 29% 28% 30% 27% 26% 28% 29% 32%) -> (18/1.6k) -> write(24%)
+ last tile: 14/8311/5478 (z14 50%) https://www.openstreetmap.org/#map=14/51.09662/2.61475
+1:22:48 INF [mbtiles] - features: [ 1.9B 68% 2.2M/s ] 199G tiles: [ 178M 81k/s ] 66G
+ cpus: 10.3 gc: 0% heap: 16G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(27% 29% 28% 28% 26% 28% 29% 30% 27% 28% 30% 27% 29% 30% 24% 27% 28% 28% 30% 28% 28% 27% 27% 29% 27% 27% 30% 29% 29% 29% 28% 28%) -> (9/1.6k) -> write(25%)
+ last tile: 14/8379/5644 (z14 51%) https://www.openstreetmap.org/#map=14/48.74895/4.10889
+1:22:50 WAR [mbtiles:encode] - {x=8387 y=5406 z=14} 981kb uncompressed
+1:22:58 WAR [mbtiles:encode] - {x=8413 y=5384 z=14} 1142kb uncompressed
+1:22:58 WAR [mbtiles:encode] - {x=8414 y=5385 z=14} 1045kb uncompressed
+1:22:58 WAR [mbtiles:encode] - {x=8414 y=5384 z=14} 1159kb uncompressed
+1:22:58 INF [mbtiles] - features: [ 1.9B 69% 2.4M/s ] 199G tiles: [ 178M 43k/s ] 66G
+ cpus: 9.8 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(28% 28% 26% 26% 29% 26% 26% 30% 25% 27% 24% 25% 27% 26% 27% 27% 27% 26% 28% 30% 27% 28% 28% 27% 28% 29% 27% 24% 28% 28% 26% 27%) -> (21/1.6k) -> write(15%)
+ last tile: 14/8415/5386 (z14 51%) https://www.openstreetmap.org/#map=14/52.34876/4.89990
+1:23:08 INF [mbtiles] - features: [ 2B 70% 2.3M/s ] 199G tiles: [ 179M 44k/s ] 67G
+ cpus: 10 gc: 0% heap: 6.1G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(28% 26% 28% 29% 30% 27% 28% 29% 28% 28% 28% 27% 27% 28% 28% 27% 29% 27% 26% 29% 29% 29% 27% 29% 27% 27% 26% 26% 27% 27% 27% 27%) -> (7/1.6k) -> write(17%)
+ last tile: 14/8452/5359 (z14 51%) https://www.openstreetmap.org/#map=14/52.70968/5.71289
+1:23:18 INF [mbtiles] - features: [ 2B 70% 2.3M/s ] 199G tiles: [ 179M 45k/s ] 67G
+ cpus: 10.1 gc: 0% heap: 11G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(27% 28% 28% 26% 28% 29% 27% 30% 30% 27% 28% 28% 27% 27% 27% 28% 28% 29% 27% 28% 28% 28% 30% 28% 28% 28% 26% 27% 27% 30% 27% 28%) -> (20/1.6k) -> write(17%)
+ last tile: 14/8490/12358 (z14 51%) https://www.openstreetmap.org/#map=14/-67.11875/6.54785
+1:23:29 INF [mbtiles] - features: [ 2B 71% 2.3M/s ] 199G tiles: [ 179M 42k/s ] 68G
+ cpus: 10.4 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(30% 29% 30% 28% 29% 30% 29% 28% 30% 27% 29% 30% 27% 27% 29% 29% 30% 29% 29% 30% 30% 28% 28% 29% 28% 28% 29% 30% 28% 26% 28% 27%) -> (6/1.6k) -> write(16%)
+ last tile: 14/8524/5442 (z14 52%) https://www.openstreetmap.org/#map=14/51.59072/7.29492
+1:23:39 INF [mbtiles] - features: [ 2B 72% 2.2M/s ] 199G tiles: [ 180M 50k/s ] 69G
+ cpus: 10.6 gc: 0% heap: 11G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (1/1.6k) -> encode(30% 27% 31% 28% 29% 31% 30% 27% 28% 30% 27% 31% 30% 32% 30% 30% 29% 31% 30% 30% 28% 26% 28% 30% 31% 28% 30% 29% 30% 27% 30% 30%) -> (20/1.6k) -> write(19%)
+ last tile: 14/8565/6310 (z14 52%) https://www.openstreetmap.org/#map=14/38.16911/8.19580
+1:23:49 INF [mbtiles] - features: [ 2.1B 73% 2.2M/s ] 199G tiles: [ 180M 41k/s ] 69G
+ cpus: 10.4 gc: 0% heap: 21G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(29% 29% 30% 27% 28% 29% 29% 28% 30% 30% 29% 29% 28% 28% 30% 29% 29% 29% 29% 29% 31% 28% 29% 29% 28% 28% 28% 28% 29% 29% 30% 30%) -> (7/1.6k) -> write(16%)
+ last tile: 14/8598/5651 (z14 52%) https://www.openstreetmap.org/#map=14/48.64743/8.92090
+1:23:59 INF [mbtiles] - features: [ 2.1B 74% 2.2M/s ] 199G tiles: [ 181M 42k/s ] 70G
+ cpus: 10.6 gc: 0% heap: 14G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(29% 30% 29% 30% 30% 29% 28% 29% 29% 29% 29% 28% 29% 30% 29% 30% 29% 29% 31% 30% 30% 29% 32% 29% 31% 29% 30% 30% 29% 29% 30% 29%) -> (16/1.6k) -> write(17%)
+ last tile: 14/8633/7026 (z14 52%) https://www.openstreetmap.org/#map=14/24.80668/9.68994
+1:24:09 INF [mbtiles] - features: [ 2.1B 74% 2.2M/s ] 199G tiles: [ 181M 45k/s ] 71G
+ cpus: 10.5 gc: 0% heap: 6.2G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(29% 30% 29% 29% 29% 30% 28% 28% 30% 29% 30% 28% 30% 30% 30% 29% 28% 29% 31% 28% 29% 29% 31% 29% 28% 30% 29% 29% 29% 28% 29% 31%) -> (20/1.6k) -> write(18%)
+ last tile: 14/8670/4646 (z14 52%) https://www.openstreetmap.org/#map=14/61.20680/10.50293
+1:24:19 INF [mbtiles] - features: [ 2.1B 75% 2.2M/s ] 199G tiles: [ 182M 51k/s ] 71G
+ cpus: 10.8 gc: 0% heap: 17G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(28% 32% 32% 30% 31% 29% 29% 30% 30% 29% 29% 28% 31% 29% 29% 31% 31% 30% 29% 31% 32% 33% 30% 29% 30% 29% 28% 32% 29% 30% 33% 29%) -> (20/1.6k) -> write(20%)
+ last tile: 14/8712/4817 (z14 53%) https://www.openstreetmap.org/#map=14/59.34439/11.42578
+1:24:29 INF [mbtiles] - features: [ 2.1B 76% 2.2M/s ] 199G tiles: [ 182M 52k/s ] 72G
+ cpus: 10.9 gc: 0% heap: 10G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(28% 30% 30% 33% 31% 30% 30% 29% 33% 30% 32% 31% 31% 29% 30% 30% 28% 31% 31% 28% 30% 28% 30% 29% 29% 30% 30% 29% 32% 31% 31% 29%) -> (8/1.6k) -> write(20%)
+ last tile: 14/8755/5361 (z14 53%) https://www.openstreetmap.org/#map=14/52.68304/12.37061
+1:24:39 INF [mbtiles] - features: [ 2.2B 77% 2.2M/s ] 199G tiles: [ 183M 59k/s ] 73G
+ cpus: 11.1 gc: 0% heap: 22G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(30% 31% 32% 29% 31% 31% 32% 30% 30% 32% 32% 31% 32% 30% 32% 31% 28% 33% 32% 31% 30% 28% 35% 30% 31% 30% 29% 30% 31% 29% 31% 32%) -> (12/1.6k) -> write(23%)
+ last tile: 14/8805/5821 (z14 53%) https://www.openstreetmap.org/#map=14/46.11894/13.46924
+1:24:49 INF [mbtiles] - features: [ 2.2B 77% 2.1M/s ] 199G tiles: [ 184M 62k/s ] 73G
+ cpus: 11.8 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(35% 31% 29% 34% 33% 34% 32% 33% 35% 33% 34% 29% 33% 35% 32% 33% 31% 32% 33% 35% 35% 32% 33% 33% 31% 33% 32% 32% 33% 34% 33% 34%) -> (25/1.6k) -> write(24%)
+ last tile: 14/8859/4964 (z14 54%) https://www.openstreetmap.org/#map=14/57.65716/14.65576
+1:24:59 INF [mbtiles] - features: [ 2.2B 78% 2.1M/s ] 199G tiles: [ 184M 74k/s ] 74G
+ cpus: 11.9 gc: 0% heap: 17G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(33% 34% 33% 32% 34% 34% 33% 34% 37% 33% 33% 31% 31% 32% 32% 34% 32% 34% 33% 35% 31% 36% 33% 31% 34% 34% 33% 33% 34% 32% 32% 34%) -> (19/1.6k) -> write(28%)
+ last tile: 14/8925/5755 (z14 54%) https://www.openstreetmap.org/#map=14/47.11500/16.10596
+1:25:09 INF [mbtiles] - features: [ 2.2B 79% 2.2M/s ] 199G tiles: [ 185M 79k/s ] 75G
+ cpus: 11.3 gc: 0% heap: 9.6G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(34% 28% 33% 30% 32% 29% 32% 32% 30% 30% 31% 31% 32% 32% 34% 33% 32% 33% 31% 30% 29% 30% 28% 30% 32% 33% 29% 34% 33% 31% 33% 28%) -> (14/1.6k) -> write(28%)
+ last tile: 14/8997/5342 (z14 54%) https://www.openstreetmap.org/#map=14/52.93540/17.68799
+1:25:19 INF [mbtiles] - features: [ 2.3B 80% 2.2M/s ] 199G tiles: [ 186M 75k/s ] 76G
+ cpus: 11.1 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(29% 31% 31% 31% 30% 31% 30% 33% 30% 32% 31% 29% 31% 33% 31% 30% 29% 30% 32% 30% 31% 31% 29% 33% 30% 29% 30% 31% 31% 29% 31% 30%) -> (15/1.6k) -> write(26%)
+ last tile: 14/9067/5316 (z14 55%) https://www.openstreetmap.org/#map=14/53.27835/19.22607
+1:25:29 INF [mbtiles] - features: [ 2.3B 81% 2.2M/s ] 199G tiles: [ 187M 96k/s ] 77G
+ cpus: 11.4 gc: 0% heap: 13G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(33% 32% 31% 36% 30% 28% 32% 30% 28% 32% 34% 30% 36% 30% 30% 37% 32% 26% 30% 30% 34% 30% 31% 34% 33% 33% 31% 32% 29% 27% 32% 34%) -> (19/1.6k) -> write(33%)
+ last tile: 14/9155/5045 (z14 55%) https://www.openstreetmap.org/#map=14/56.69244/21.15967
+1:25:39 INF [mbtiles] - features: [ 2.3B 81% 2.2M/s ] 199G tiles: [ 188M 109k/s ] 77G
+ cpus: 12.6 gc: 0% heap: 13G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(35% 33% 35% 36% 35% 34% 35% 34% 30% 31% 38% 35% 40% 38% 36% 35% 35% 35% 36% 33% 33% 37% 35% 32% 33% 35% 37% 35% 33% 34% 35% 37%) -> (25/1.6k) -> write(38%)
+ last tile: 14/9254/4594 (z14 56%) https://www.openstreetmap.org/#map=14/61.75233/23.33496
+1:25:49 INF [mbtiles] - features: [ 2.3B 82% 2.1M/s ] 199G tiles: [ 189M 123k/s ] 78G
+ cpus: 13.2 gc: 0% heap: 15G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(37% 36% 39% 37% 38% 35% 35% 39% 35% 40% 39% 34% 36% 36% 38% 37% 39% 33% 37% 36% 33% 40% 37% 38% 37% 36% 40% 35% 37% 36% 38% 33%) -> (27/1.6k) -> write(42%)
+ last tile: 14/9363/1213 (z14 57%) https://www.openstreetmap.org/#map=14/82.12742/25.72998
+1:25:59 INF [mbtiles] - features: [ 2.3B 83% 2.2M/s ] 199G tiles: [ 190M 129k/s ] 79G
+ cpus: 12.7 gc: 0% heap: 14G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(35% 34% 35% 36% 36% 36% 35% 36% 33% 36% 34% 34% 37% 34% 37% 37% 37% 35% 34% 33% 35% 36% 39% 35% 35% 37% 33% 36% 38% 34% 35% 34%) -> (15/1.6k) -> write(43%)
+ last tile: 14/9477/8904 (z14 57%) https://www.openstreetmap.org/#map=14/-15.45368/28.23486
+1:26:09 INF [mbtiles] - features: [ 2.4B 84% 2.2M/s ] 199G tiles: [ 191M 102k/s ] 80G
+ cpus: 12 gc: 0% heap: 9.4G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(33% 32% 34% 34% 34% 33% 32% 33% 32% 32% 33% 34% 33% 35% 32% 35% 35% 36% 33% 32% 31% 34% 33% 32% 34% 35% 33% 31% 34% 32% 32% 33%) -> (12/1.6k) -> write(35%)
+ last tile: 14/9566/6376 (z14 58%) https://www.openstreetmap.org/#map=14/37.02010/30.19043
+1:26:19 INF [mbtiles] - features: [ 2.4B 84% 2.3M/s ] 199G tiles: [ 192M 86k/s ] 81G
+ cpus: 11.4 gc: 0% heap: 21G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(31% 32% 32% 29% 31% 32% 30% 32% 32% 32% 31% 30% 32% 30% 28% 33% 32% 31% 32% 33% 32% 33% 32% 30% 31% 32% 33% 32% 33% 31% 33% 31%) -> (22/1.6k) -> write(30%)
+ last tile: 14/9641/4766 (z14 58%) https://www.openstreetmap.org/#map=14/59.91098/31.83838
+1:26:21 WAR [mbtiles:encode] - {x=9674 y=8175 z=14} 1014kb uncompressed
+1:26:29 INF [mbtiles] - features: [ 2.4B 85% 2.3M/s ] 199G tiles: [ 194M 123k/s ] 82G
+ cpus: 11.8 gc: 0% heap: 15G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(33% 34% 32% 33% 34% 34% 33% 34% 35% 34% 34% 32% 33% 30% 31% 33% 34% 32% 32% 31% 34% 29% 30% 34% 35% 33% 30% 33% 33% 30% 32% 31%) -> (18/1.6k) -> write(40%)
+ last tile: 14/9749/8140 (z14 59%) https://www.openstreetmap.org/#map=14/1.14250/34.21143
+1:26:39 INF [mbtiles] - features: [ 2.4B 86% 2.2M/s ] 199G tiles: [ 195M 132k/s ] 83G
+ cpus: 12.1 gc: 0% heap: 10G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(37% 34% 34% 32% 33% 33% 29% 32% 33% 34% 32% 31% 35% 33% 35% 34% 34% 35% 30% 31% 30% 35% 35% 33% 31% 34% 37% 36% 35% 34% 34% 33%) -> (25/1.6k) -> write(42%)
+ last tile: 14/9863/5075 (z14 60%) https://www.openstreetmap.org/#map=14/56.32872/36.71631
+1:26:48 WAR [mbtiles:encode] - {x=9977 y=8504 z=14} 992kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9977 y=8503 z=14} 1239kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9977 y=8501 z=14} 1277kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9977 y=8502 z=14} 1596kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9978 y=8505 z=14} 1089kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9978 y=8503 z=14} 1071kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9978 y=8501 z=14} 1324kb uncompressed
+1:26:48 WAR [mbtiles:encode] - {x=9978 y=8502 z=14} 1438kb uncompressed
+1:26:49 INF [mbtiles] - features: [ 2.5B 87% 2.2M/s ] 199G tiles: [ 196M 148k/s ] 83G
+ cpus: 11.9 gc: 0% heap: 21G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(34% 31% 33% 34% 33% 33% 33% 32% 32% 34% 34% 29% 34% 37% 30% 30% 34% 33% 35% 34% 35% 33% 33% 30% 33% 34% 31% 27% 33% 29% 36% 32%) -> (21/1.6k) -> write(45%)
+ last tile: 14/9991/7043 (z14 60%) https://www.openstreetmap.org/#map=14/24.46715/39.52881
+1:26:55 WAR [mbtiles:encode] - {x=10153 y=7662 z=14} 1025kb uncompressed
+1:26:59 INF [mbtiles] - features: [ 2.5B 88% 2.1M/s ] 199G tiles: [ 199M 260k/s ] 85G
+ cpus: 13.8 gc: 0% heap: 20G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(32% 41% 39% 40% 36% 44% 34% 38% 38% 39% 39% 34% 36% 37% 42% 38% 41% 35% 38% 34% 35% 38% 40% 35% 36% 37% 42% 41% 39% 34% 34% 36%) -> (23/1.6k) -> write(74%)
+ last tile: 14/10218/5644 (z14 62%) https://www.openstreetmap.org/#map=14/48.74895/44.51660
+1:27:09 INF [mbtiles] - features: [ 2.5B 88% 2.1M/s ] 199G tiles: [ 202M 269k/s ] 86G
+ cpus: 13.4 gc: 0% heap: 19G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(35% 36% 36% 35% 36% 37% 36% 36% 37% 35% 34% 37% 37% 36% 38% 37% 36% 36% 36% 34% 39% 37% 35% 37% 36% 41% 34% 39% 36% 32% 38% 36%) -> (29/1.6k) -> write(77%)
+ last tile: 14/10458/7818 (z14 63%) https://www.openstreetmap.org/#map=14/8.18974/49.79004
+1:27:19 INF [mbtiles] - features: [ 2.5B 89% 2.1M/s ] 199G tiles: [ 205M 374k/s ] 87G
+ cpus: 13 gc: 1% heap: 12G/32G direct: 54M postGC: 5.5G
+ read(99%) -> (0/1.6k) -> encode(34% 34% 33% 33% 34% 35% 36% 33% 36% 32% 36% 35% 38% 32% 35% 33% 31% 32% 34% 29% 31% 37% 33% 38% 37% 34% 36% 31% 38% 33% 34% 33%) -> (1.1k/1.6k) -> write(98%)
+ last tile: 14/10806/3508 (z14 65%) https://www.openstreetmap.org/#map=14/71.15939/57.43652
+1:27:29 INF [mbtiles] - features: [ 2.5B 90% 1.2M/s ] 199G tiles: [ 209M 396k/s ] 88G
+ cpus: 7.9 gc: 1% heap: 11G/32G direct: 54M postGC: 5.9G
+ read(61%) -> (0/1.6k) -> encode(17% 21% 17% 18% 21% 20% 18% 18% 18% 18% 20% 20% 21% 21% 19% 20% 20% 18% 15% 19% 21% 19% 16% 19% 18% 23% 20% 20% 17% 21% 19% 17%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 14/11172/2176 (z14 68%) https://www.openstreetmap.org/#map=14/78.63001/65.47852
+1:27:39 INF [mbtiles] - features: [ 2.6B 90% 1.7M/s ] 199G tiles: [ 213M 392k/s ] 89G
+ cpus: 11.5 gc: 1% heap: 16G/32G direct: 54M postGC: 6.2G
+ read(78%) -> (0/1.6k) -> encode(27% 30% 27% 31% 31% 33% 26% 28% 31% 29% 26% 30% 29% 30% 27% 31% 28% 29% 31% 32% 25% 30% 33% 30% 30% 29% 27% 28% 31% 30% 32% 28%) -> (1.5k/1.6k) -> write(98%)
+ last tile: 14/11527/165 (z14 70%) https://www.openstreetmap.org/#map=14/84.72830/73.27881
+1:27:49 INF [mbtiles] - features: [ 2.6B 91% 2.1M/s ] 199G tiles: [ 217M 369k/s ] 90G
+ cpus: 12.9 gc: 2% heap: 15G/32G direct: 54M postGC: 5.5G
+ read(97%) -> (0/1.6k) -> encode(32% 39% 33% 32% 33% 34% 36% 33% 34% 32% 34% 35% 34% 30% 33% 32% 36% 35% 31% 35% 34% 34% 33% 31% 31% 36% 34% 33% 31% 36% 29% 31%) -> (158/1.6k) -> write(98%)
+ last tile: 14/11870/717 (z14 72%) https://www.openstreetmap.org/#map=14/83.48785/80.81543
+1:27:55 WAR [mbtiles:encode] - {x=12074 y=6878 z=14} 985kb uncompressed
+1:27:59 INF [mbtiles] - features: [ 2.6B 92% 2.2M/s ] 199G tiles: [ 221M 348k/s ] 91G
+ cpus: 12.5 gc: 0% heap: 9.1G/32G direct: 54M postGC: 5G
+ read(100%) -> (0/1.6k) -> encode(30% 34% 31% 34% 33% 33% 32% 34% 34% 35% 32% 33% 31% 34% 32% 32% 31% 32% 34% 37% 33% 33% 36% 33% 30% 34% 33% 32% 33% 33% 32% 34%) -> (172/1.6k) -> write(92%)
+ last tile: 14/12209/8367 (z14 74%) https://www.openstreetmap.org/#map=14/-3.84233/88.26416
+1:28:02 WAR [mbtiles:encode] - {x=12306 y=7080 z=14} 998kb uncompressed
+1:28:05 WAR [mbtiles:encode] - {x=12385 y=7204 z=14} 1047kb uncompressed
+1:28:05 WAR [mbtiles:encode] - {x=12386 y=7204 z=14} 1436kb uncompressed
+1:28:09 INF [mbtiles] - features: [ 2.6B 93% 2.3M/s ] 199G tiles: [ 224M 332k/s ] 92G
+ cpus: 11.3 gc: 0% heap: 9.6G/32G direct: 54M postGC: 5.6G
+ read(100%) -> (0/1.6k) -> encode(30% 28% 29% 30% 26% 30% 27% 32% 30% 30% 26% 30% 28% 28% 30% 32% 30% 28% 30% 30% 29% 30% 29% 30% 29% 29% 28% 30% 30% 30% 28% 28%) -> (1.1k/1.6k) -> write(85%)
+ last tile: 14/12558/9368 (z14 76%) https://www.openstreetmap.org/#map=14/-25.00597/95.93262
+1:28:19 INF [mbtiles] - features: [ 2.6B 93% 2.1M/s ] 199G tiles: [ 228M 375k/s ] 93G
+ cpus: 14.9 gc: 1% heap: 22G/32G direct: 54M postGC: 5.5G
+ read(98%) -> (0/1.6k) -> encode(38% 37% 40% 43% 38% 39% 41% 43% 39% 37% 39% 39% 42% 40% 39% 41% 33% 38% 41% 39% 38% 41% 42% 40% 41% 40% 39% 38% 37% 36% 39% 43%) -> (287/1.6k) -> write(99%)
+ last tile: 14/12973/11099 (z14 79%) https://www.openstreetmap.org/#map=14/-53.68370/105.05127
+1:28:22 WAR [mbtiles:encode] - {x=13052 y=8472 z=14} 1259kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13055 y=8478 z=14} 1009kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13055 y=8475 z=14} 978kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13055 y=8474 z=14} 1038kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13055 y=8473 z=14} 1100kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13057 y=8471 z=14} 1019kb uncompressed
+1:28:23 WAR [mbtiles:encode] - {x=13058 y=8475 z=14} 1043kb uncompressed
+1:28:25 WAR [mbtiles:encode] - {x=13088 y=8508 z=14} 1130kb uncompressed
+1:28:29 INF [mbtiles] - features: [ 2.7B 94% 2.4M/s ] 199G tiles: [ 229M 177k/s ] 94G
+ cpus: 11.3 gc: 0% heap: 15G/32G direct: 54M postGC: 4.9G
+ read(99%) -> (0/1.6k) -> encode(27% 31% 31% 26% 33% 32% 28% 28% 30% 34% 33% 33% 29% 32% 29% 32% 32% 31% 29% 31% 28% 31% 28% 29% 33% 35% 28% 28% 32% 32% 34% 29%) -> (39/1.6k) -> write(50%)
+ last tile: 14/13163/7412 (z14 80%) https://www.openstreetmap.org/#map=14/16.88866/109.22607
+1:28:36 WAR [mbtiles:encode] - {x=13322 y=8523 z=14} 1137kb uncompressed
+1:28:36 WAR [mbtiles:encode] - {x=13323 y=8522 z=14} 1040kb uncompressed
+1:28:39 INF [mbtiles] - features: [ 2.7B 95% 2.3M/s ] 199G tiles: [ 232M 228k/s ] 95G
+ cpus: 11.7 gc: 0% heap: 7.7G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(32% 36% 29% 34% 30% 31% 32% 32% 29% 32% 31% 31% 32% 32% 29% 34% 35% 27% 32% 34% 29% 31% 33% 29% 30% 29% 31% 33% 31% 31% 32% 32%) -> (42/1.6k) -> write(63%)
+ last tile: 14/13400/228 (z14 81%) https://www.openstreetmap.org/#map=14/84.59957/114.43359
+1:28:49 INF [mbtiles] - features: [ 2.7B 96% 2.2M/s ] 199G tiles: [ 234M 265k/s ] 96G
+ cpus: 13.5 gc: 0% heap: 10G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(37% 35% 35% 32% 35% 37% 35% 36% 37% 38% 39% 40% 38% 38% 42% 39% 35% 40% 35% 36% 35% 35% 33% 38% 38% 36% 40% 36% 35% 35% 36% 34%) -> (20/1.6k) -> write(74%)
+ last tile: 14/13670/7072 (z14 83%) https://www.openstreetmap.org/#map=14/23.88584/120.36621
+1:28:50 WAR [mbtiles:encode] - {x=13682 y=7058 z=14} 1154kb uncompressed
+1:28:50 WAR [mbtiles:encode] - {x=13682 y=7057 z=14} 1228kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13683 y=7057 z=14} 1060kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13683 y=7059 z=14} 1406kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13683 y=7058 z=14} 1658kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13684 y=7059 z=14} 1346kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13684 y=7057 z=14} 1468kb uncompressed
+1:28:51 WAR [mbtiles:encode] - {x=13684 y=7058 z=14} 1638kb uncompressed
+1:28:53 WAR [mbtiles:encode] - {x=13702 y=7515 z=14} 1208kb uncompressed
+1:28:53 WAR [mbtiles:encode] - {x=13703 y=7515 z=14} 1017kb uncompressed
+1:28:59 INF [mbtiles] - features: [ 2.7B 96% 2.3M/s ] 199G tiles: [ 236M 212k/s ] 96G
+ cpus: 11.2 gc: 0% heap: 18G/32G direct: 54M postGC: 5G
+ read(100%) -> (0/1.6k) -> encode(31% 28% 29% 33% 27% 31% 28% 28% 28% 32% 32% 33% 28% 29% 30% 30% 32% 32% 27% 29% 30% 32% 33% 30% 31% 30% 32% 29% 29% 30% 29% 30%) -> (18/1.6k) -> write(58%)
+ last tile: 14/13885/6617 (z14 84%) https://www.openstreetmap.org/#map=14/32.67637/125.09033
+1:29:09 INF [mbtiles] - features: [ 2.8B 97% 2.1M/s ] 199G tiles: [ 240M 377k/s ] 98G
+ cpus: 13.3 gc: 0% heap: 19G/32G direct: 54M postGC: 5.2G
+ read(98%) -> (0/1.6k) -> encode(38% 37% 37% 33% 34% 35% 35% 35% 36% 38% 33% 37% 37% 36% 33% 34% 35% 35% 35% 33% 35% 35% 35% 32% 35% 35% 35% 33% 33% 37% 37% 37%) -> (533/1.6k) -> write(97%)
+ last tile: 14/14257/7968 (z14 87%) https://www.openstreetmap.org/#map=14/4.91583/133.26416
+1:29:12 WAR [mbtiles:encode] - {x=14369 y=6489 z=14} 1003kb uncompressed
+1:29:12 WAR [mbtiles:encode] - {x=14369 y=6488 z=14} 1186kb uncompressed
+1:29:12 WAR [mbtiles:encode] - {x=14370 y=6487 z=14} 991kb uncompressed
+1:29:12 WAR [mbtiles:encode] - {x=14370 y=6489 z=14} 1182kb uncompressed
+1:29:19 INF [mbtiles] - features: [ 2.8B 98% 2.2M/s ] 199G tiles: [ 243M 296k/s ] 99G
+ cpus: 12.4 gc: 0% heap: 16G/32G direct: 54M postGC: 4.9G
+ read(100%) -> (0/1.6k) -> encode(33% 36% 35% 37% 34% 33% 33% 29% 37% 32% 33% 33% 32% 35% 31% 33% 33% 35% 31% 36% 35% 30% 32% 33% 34% 31% 35% 32% 32% 34% 27% 32%) -> (21/1.6k) -> write(78%)
+ last tile: 14/14546/5365 (z14 88%) https://www.openstreetmap.org/#map=14/52.62973/139.61426
+1:29:20 WAR [mbtiles:encode] - {x=14552 y=6450 z=14} 992kb uncompressed
+1:29:20 WAR [mbtiles:encode] - {x=14553 y=6450 z=14} 1383kb uncompressed
+1:29:29 INF [mbtiles] - features: [ 2.8B 99% 2.2M/s ] 199G tiles: [ 246M 281k/s ] 99G
+ cpus: 13 gc: 0% heap: 13G/32G direct: 54M postGC: 5.4G
+ read(100%) -> (0/1.6k) -> encode(36% 33% 35% 36% 34% 35% 35% 32% 37% 36% 38% 36% 34% 33% 36% 36% 34% 35% 35% 34% 37% 34% 34% 36% 36% 34% 33% 34% 40% 34% 36% 37%) -> (1k/1.6k) -> write(74%)
+ last tile: 14/14811/11399 (z14 90%) https://www.openstreetmap.org/#map=14/-57.40946/145.43701
+1:29:39 INF [mbtiles] - features: [ 2.8B 99% 1M/s ] 199G tiles: [ 250M 403k/s ] 100G
+ cpus: 6.7 gc: 1% heap: 9.8G/32G direct: 54M postGC: 5.9G
+ read(51%) -> (0/1.6k) -> encode(17% 18% 16% 14% 14% 15% 20% 13% 17% 17% 16% 17% 15% 14% 16% 15% 18% 14% 14% 17% 17% 15% 14% 15% 13% 15% 15% 14% 18% 16% 16% 14%) -> (1.6k/1.6k) -> write(99%)
+ last tile: 14/15161/3779 (z14 92%) https://www.openstreetmap.org/#map=14/69.13910/153.12744
+1:29:49 INF [mbtiles] - features: [ 2.8B 99% 517k/s ] 199G tiles: [ 254M 421k/s ] 101G
+ cpus: 2.6 gc: 0% heap: 15G/32G direct: 54M postGC: 5.9G
+ read(25%) -> (0/1.6k) -> encode( 4% 4% 4% 4% 5% 3% 5% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 4% 3% 5% 4% 3% 5% 4% 5% 5% 3% 5% 4% 5% 4% 5%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/15513/2963 (z14 94%) https://www.openstreetmap.org/#map=14/74.66583/160.86182
+1:29:59 INF [mbtiles] - features: [ 2.8B 100% 551k/s ] 199G tiles: [ 259M 423k/s ] 101G
+ cpus: 2.5 gc: 0% heap: 22G/32G direct: 54M postGC: 5.9G
+ read(26%) -> (0/1.6k) -> encode( 4% 4% 5% 3% 3% 4% 3% 3% 4% 4% 4% 4% 3% 4% 4% 3% 4% 5% 5% 4% 4% 5% 5% 4% 3% 3% 4% 4% 4% 4% 4% 4%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/15820/4749 (z14 96%) https://www.openstreetmap.org/#map=14/60.09772/167.60742
+1:30:09 INF [mbtiles] - features: [ 2.8B 100% 909k/s ] 199G tiles: [ 263M 422k/s ] 102G
+ cpus: 4.3 gc: 0% heap: 22G/32G direct: 54M postGC: 5.6G
+ read(41%) -> (0/1.6k) -> encode( 6% 9% 8% 8% 9% 10% 8% 10% 9% 9% 8% 10% 9% 7% 9% 9% 10% 8% 9% 9% 10% 8% 10% 8% 9% 10% 8% 8% 9% 9% 9% 8%) -> (1.6k/1.6k) -> write(100%)
+ last tile: 14/16105/407 (z14 98%) https://www.openstreetmap.org/#map=14/84.21647/173.86963
+1:30:19 INF [mbtiles] - features: [ 2.8B 100% 434k/s ] 199G tiles: [ 267M 425k/s ] 103G
+ cpus: 2.3 gc: 0% heap: 11G/32G direct: 54M postGC: 5.8G
+ read( -%) -> (0/1.6k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (15/1.6k) -> write(100%)
+ last tile: 14/16383/15324 (z14 100%) https://www.openstreetmap.org/#map=14/-82.57476/179.97803
+1:30:19 INF [mbtiles:write] - Finished z14 in 13m34s cpu:2h15m19s gc:3s avg:10
+1:30:19 INF [mbtiles] - features: [ 2.8B 100% 0/s ] 199G tiles: [ 267M 350k/s ] 103G
+ cpus: 0.9 gc: 0% heap: 11G/32G direct: 54M postGC: 5.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
+1:30:19 DEB [mbtiles] - Tile stats:
+1:30:19 DEB [mbtiles] - z0 avg:67k max:67k
+1:30:19 DEB [mbtiles] - z1 avg:159k max:180k
+1:30:19 DEB [mbtiles] - z2 avg:297k max:537k
+1:30:19 DEB [mbtiles] - z3 avg:104k max:498k
+1:30:19 DEB [mbtiles] - z4 avg:42k max:501k
+1:30:19 DEB [mbtiles] - z5 avg:23k max:524k
+1:30:19 DEB [mbtiles] - z6 avg:12k max:341k
+1:30:19 DEB [mbtiles] - z7 avg:9.9k max:408k
+1:30:19 DEB [mbtiles] - z8 avg:5.8k max:341k
+1:30:19 DEB [mbtiles] - z9 avg:5.6k max:461k
+1:30:19 DEB [mbtiles] - z10 avg:2.5k max:319k
+1:30:19 DEB [mbtiles] - z11 avg:1.2k max:182k
+1:30:19 DEB [mbtiles] - z12 avg:716 max:205k
+1:30:19 DEB [mbtiles] - z13 avg:390 max:266k
+1:30:19 DEB [mbtiles] - z14 avg:354 max:1.7M
+1:30:19 DEB [mbtiles] - all avg:404 max:0
+1:30:19 DEB [mbtiles] - # features: 2,891,993,886
+1:30:19 DEB [mbtiles] - # tiles: 267,503,963
+1:30:19 INF [mbtiles] - Finished in 40m24s cpu:15h9m28s gc:1m42s avg:22.5
+1:30:19 INF [mbtiles] - read 1x(54% 21m38s sys:1m46s wait:16m14s done:4s)
+1:30:19 INF [mbtiles] - encode 32x(65% 26m8s sys:2s wait:12m7s done:4s)
+1:30:19 INF [mbtiles] - write 1x(30% 12m sys:1m15s wait:27m22s)
+1:30:19 INF - Finished in 1h30m20s cpu:35h23m3s gc:4m20s avg:23.5
+1:30:19 INF - FINISHED!
+1:30:19 INF -
+1:30:19 INF - ----------------------------------------
+1:30:19 INF - overall 1h30m20s cpu:35h23m3s gc:4m20s avg:23.5
+1:30:19 INF - lake_centerlines 2s cpu:5s avg:2.9
+1:30:19 INF - read 1x(87% 1s)
+1:30:19 INF - process 32x(2% 0s wait:2s)
+1:30:19 INF - write 1x(0% 0s wait:2s)
+1:30:19 INF - water_polygons 59s cpu:16m11s gc:1s avg:16.5
+1:30:19 INF - read 1x(24% 14s wait:37s done:4s)
+1:30:19 INF - process 32x(46% 27s wait:29s)
+1:30:19 INF - write 1x(71% 42s sys:5s wait:16s)
+1:30:19 INF - natural_earth 10s cpu:29s avg:2.7
+1:30:19 INF - read 1x(93% 10s sys:2s)
+1:30:19 INF - process 32x(3% 0.3s wait:10s)
+1:30:19 INF - write 1x(0% 0s wait:10s)
+1:30:19 INF - osm_pass1 4m6s cpu:1h25m55s gc:23s avg:20.9
+1:30:19 INF - read 1x(13% 33s sys:27s wait:2m21s done:6s)
+1:30:19 INF - process 31x(54% 2m12s sys:6s block:1m20s wait:13s)
+1:30:19 INF - osm_pass2 40m20s cpu:17h32m47s gc:1m54s avg:26.1
+1:30:19 INF - read 1x(1% 35s sys:29s wait:38m4s done:1m7s)
+1:30:19 INF - process 31x(79% 31m41s sys:43s block:27s wait:4s)
+1:30:19 INF - write 1x(38% 15m18s sys:1m31s wait:24m21s)
+1:30:19 INF - boundaries 18s cpu:22s avg:1.2
+1:30:19 INF - sort 3m51s cpu:57m32s gc:20s avg:14.9
+1:30:19 INF - worker 32x(32% 1m14s sys:6s wait:1m58s done:6s)
+1:30:19 INF - mbtiles 40m24s cpu:15h9m28s gc:1m42s avg:22.5
+1:30:19 INF - read 1x(54% 21m38s sys:1m46s wait:16m14s done:4s)
+1:30:19 INF - encode 32x(65% 26m8s sys:2s wait:12m7s done:4s)
+1:30:19 INF - write 1x(30% 12m sys:1m15s wait:27m22s)
+1:30:19 INF - ----------------------------------------
+1:30:19 INF - features 199GB
+1:30:19 INF - mbtiles 103GB
diff --git a/planetiler-core/pom.xml b/planetiler-core/pom.xml
index 22896787..1e28d718 100644
--- a/planetiler-core/pom.xml
+++ b/planetiler-core/pom.xml
@@ -7,7 +7,7 @@
planetiler-core
Planetiler Core
- Planetiler Core
+ Planetiler is tool to build planet-scale vector tilesets from OpenStreetMap data fast.
com.onthegomap.planetiler
diff --git a/planetiler-core/src/main/java/com/onthegomap/planetiler/Planetiler.java b/planetiler-core/src/main/java/com/onthegomap/planetiler/Planetiler.java
index 4313d1e0..c095a342 100644
--- a/planetiler-core/src/main/java/com/onthegomap/planetiler/Planetiler.java
+++ b/planetiler-core/src/main/java/com/onthegomap/planetiler/Planetiler.java
@@ -66,6 +66,9 @@ public class Planetiler {
private final Arguments arguments;
private final Stats stats;
private final Path tmpDir;
+ private final Path nodeDbPath;
+ private final Path multipolygonPath;
+ private final Path featureDbPath;
private final boolean downloadSources;
private final boolean onlyDownloadSources;
private Profile profile = null;
@@ -76,8 +79,6 @@ public class Planetiler {
private Path output;
private boolean overwrite = false;
private boolean ran = false;
- private Path nodeDbPath;
- private Path multipolygonPath;
// most common OSM languages
private List languages = List.of(
"en", "ru", "ar", "zh", "ja", "ko", "fr",
@@ -98,6 +99,11 @@ public class Planetiler {
tmpDir = arguments.file("tmpdir", "temp directory", Path.of("data", "tmp"));
onlyDownloadSources = arguments.getBoolean("only_download", "download source data then exit", false);
downloadSources = onlyDownloadSources || arguments.getBoolean("download", "download sources", false);
+
+ nodeDbPath = arguments.file("temp_nodes", "temp node db location", tmpDir.resolve("node.db"));
+ multipolygonPath =
+ arguments.file("temp_multipolygons", "temp multipolygon db location", tmpDir.resolve("multipolygon.db"));
+ featureDbPath = arguments.file("temp_features", "temp feature db location", tmpDir.resolve("feature.db"));
}
/** Returns a new empty runner that will get configuration from {@code arguments}. */
@@ -487,13 +493,15 @@ public class Planetiler {
}
// in case any temp files are left from a previous run...
- FileUtils.delete(tmpDir);
+ FileUtils.delete(tmpDir, nodeDbPath, featureDbPath, multipolygonPath);
+ Files.createDirectories(tmpDir);
+ FileUtils.createParentDirectories(nodeDbPath, featureDbPath, multipolygonPath, output);
if (!toDownload.isEmpty()) {
download();
}
ensureInputFilesExist();
- Files.createDirectories(tmpDir);
+
if (fetchWikidata) {
Wikidata.fetch(osmInputFile(), wikidataNamesFile, config(), profile(), stats());
}
@@ -510,13 +518,10 @@ public class Planetiler {
config.bounds().setFallbackProvider(osmInputFile);
}
- Files.createDirectories(tmpDir);
- nodeDbPath = tmpDir.resolve("node.db");
- multipolygonPath = tmpDir.resolve("multipolygon.db");
- Path featureDbPath = tmpDir.resolve("feature.db");
featureGroup = FeatureGroup.newDiskBackedFeatureGroup(featureDbPath, profile, config, stats);
stats.monitorFile("nodes", nodeDbPath);
stats.monitorFile("features", featureDbPath);
+ stats.monitorFile("multipolygons", multipolygonPath);
stats.monitorFile("mbtiles", output);
for (Stage stage : stages) {
@@ -554,11 +559,11 @@ public class Planetiler {
long outputSize = profile.estimateOutputBytes(osmSize);
// node locations and multipolygon geometries only needed while reading inputs
- readPhase.addDisk(tmpDir, nodeMapSize, "temporary node location cache");
- readPhase.addDisk(tmpDir, multipolygonGeometrySize, "temporary multipolygon geometry cache");
+ readPhase.addDisk(nodeDbPath, nodeMapSize, "temporary node location cache");
+ readPhase.addDisk(multipolygonPath, multipolygonGeometrySize, "temporary multipolygon geometry cache");
// feature db persists across read/write phase
- readPhase.addDisk(tmpDir, featureSize, "temporary feature storage");
- writePhase.addDisk(tmpDir, featureSize, "temporary feature storage");
+ readPhase.addDisk(featureDbPath, featureSize, "temporary feature storage");
+ writePhase.addDisk(featureDbPath, featureSize, "temporary feature storage");
// output only needed during write phase
writePhase.addDisk(output, outputSize, "mbtiles output");
// if the user opts to remove an input source after reading to free up additional space for the output...
diff --git a/planetiler-core/src/main/java/com/onthegomap/planetiler/util/FileUtils.java b/planetiler-core/src/main/java/com/onthegomap/planetiler/util/FileUtils.java
index 5d831882..9358f660 100644
--- a/planetiler-core/src/main/java/com/onthegomap/planetiler/util/FileUtils.java
+++ b/planetiler-core/src/main/java/com/onthegomap/planetiler/util/FileUtils.java
@@ -88,12 +88,14 @@ public class FileUtils {
}
}
- /** Deletes a file or directory recursively, failing silently if missing. */
- public static void delete(Path path) {
- if (Files.isDirectory(path)) {
- deleteDirectory(path);
- } else {
- deleteFile(path);
+ /** Deletes files or directories recursively, failing silently if missing. */
+ public static void delete(Path... paths) {
+ for (Path path : paths) {
+ if (Files.isDirectory(path)) {
+ deleteDirectory(path);
+ } else {
+ deleteFile(path);
+ }
}
}
@@ -139,22 +141,24 @@ public class FileUtils {
}
/**
- * Ensures all parent directories of {@code path} exist.
+ * Ensures all parent directories of each path in {@code paths} exist.
*
* @throws IllegalStateException if an error occurs
*/
- public static void createParentDirectories(Path path) {
- try {
- if (Files.isDirectory(path) && !Files.exists(path)) {
- Files.createDirectories(path);
- } else {
- Path parent = path.getParent();
- if (parent != null && !Files.exists(parent)) {
- Files.createDirectories(parent);
+ public static void createParentDirectories(Path... paths) {
+ for (var path : paths) {
+ try {
+ if (Files.isDirectory(path) && !Files.exists(path)) {
+ Files.createDirectories(path);
+ } else {
+ Path parent = path.getParent();
+ if (parent != null && !Files.exists(parent)) {
+ Files.createDirectories(parent);
+ }
}
+ } catch (IOException e) {
+ throw new IllegalStateException("Unable to create parent directories " + path, e);
}
- } catch (IOException e) {
- throw new IllegalStateException("Unable to create parent directories " + path, e);
}
}
diff --git a/planetiler-core/src/main/java/com/onthegomap/planetiler/util/Wikidata.java b/planetiler-core/src/main/java/com/onthegomap/planetiler/util/Wikidata.java
index 70c842ae..d239406e 100644
--- a/planetiler-core/src/main/java/com/onthegomap/planetiler/util/Wikidata.java
+++ b/planetiler-core/src/main/java/com/onthegomap/planetiler/util/Wikidata.java
@@ -163,14 +163,19 @@ public class Wikidata {
*/
public static WikidataTranslations load(Path path) {
Timer timer = Timer.start();
- try (BufferedReader fis = Files.newBufferedReader(path)) {
- WikidataTranslations result = load(fis);
- LOGGER.info(
- "loaded from " + result.getAll().size() + " mappings from " + path.toAbsolutePath() + " in " + timer.stop());
- return result;
- } catch (IOException e) {
- LOGGER.info("error loading " + path.toAbsolutePath() + ": " + e);
+ if (!Files.exists(path)) {
+ LOGGER.info("no wikidata translations found, run with --fetch-wikidata to download");
return new WikidataTranslations();
+ } else {
+ try (BufferedReader fis = Files.newBufferedReader(path)) {
+ WikidataTranslations result = load(fis);
+ LOGGER.info(
+ "loaded from " + result.getAll().size() + " mappings from " + path.toAbsolutePath() + " in " + timer.stop());
+ return result;
+ } catch (IOException e) {
+ LOGGER.info("error loading " + path.toAbsolutePath() + ": " + e);
+ return new WikidataTranslations();
+ }
}
}
diff --git a/pom.xml b/pom.xml
index 23ceba2e..d5b7a981 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,9 @@
pom
Planetiler Parent
- Planetiler Parent
+
+ Super pom of the Planetiler tool for building planet-scale vector tilesets from OpenStreetMap data fast.
+
https://github.com/onthegomap/planetiler