Skip to content

Instantly share code, notes, and snippets.

@lostdesign
Created August 24, 2023 11:34
Show Gist options
  • Save lostdesign/8d5bcce2f0db5adff78eba6c573c91e3 to your computer and use it in GitHub Desktop.
Save lostdesign/8d5bcce2f0db5adff78eba6c573c91e3 to your computer and use it in GitHub Desktop.
Planetiler Data
java -Xmx175g \
`# 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 \
--output=output.mbtiles \
`# Store temporary node locations in memory` \
--nodemap-type=array --storage=ram
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 - argument: stats=use in-memory stats
0:00:00 DEB - argument: madvise=true (default value for whether to use linux madvise(random) to improve memory-mapped read performance for temporary storage)
0:00:00 DEB - argument: storage=ram (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=48 (num threads)
0:00:00 DEB - argument: write_threads=2 (number of threads to use when writing temp features)
0:00:00 DEB - argument: process_threads=46 (number of threads to use when processing input features)
0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
0:00:00 DEB - argument: polygon=null (a .poly file that limits output to tiles intersecting the shape)
0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level up to 15)
0:00:00 DEB - argument: render_maxzoom=14 (maximum rendering zoom level up to 15)
0:00:00 DEB - argument: feature_read_threads=2 (number of threads to use when reading features at tile write time)
0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
0:00:00 DEB - argument: force=false (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: gzip_temp=false (gzip temporary feature storage (uses more CPU, but less disk space))
0:00:00 DEB - argument: mmap_temp=true (use memory-mapped IO for temp feature files)
0:00:00 DEB - argument: sort_max_readers=6 (maximum number of concurrent read threads to use when sorting chunks)
0:00:00 DEB - argument: sort_max_writers=6 (maximum number of concurrent write threads to use when sorting chunks)
0:00:00 DEB - argument: nodemap_type=array (type of node location map, one of [noop, sortedtable, sparsearray, array])
0:00:00 DEB - argument: nodemap_storage=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=1000 (Size of file chunks to download in parallel in megabytes)
0:00:00 DEB - argument: download_threads=10 (Number of parallel threads to use when downloading each file)
0:00:00 DEB - argument: download_max_bandwidth= (Maximum bandwidth to consume when downloading files in units mb/s, mbps, kbps, etc.)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=true (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tile_warning_size_mb=1.0 (Maximum size in megabytes of a tile to emit a warning about)
0:00:00 DEB - argument: color=null (Color the terminal output)
0:00:00 DEB - argument: keep_unzipped=false (keep unzipped sources by default after reading)
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
0:00:00 DEB - argument: only_download=false (download source data then exit)
0:00:00 DEB - argument: download=true (download sources)
0:00:00 DEB - argument: temp_nodes=data/tmp/node.db (temp node db location)
0:00:00 DEB - argument: temp_multipolygons=data/tmp/multipolygon.db (temp multipolygon db location)
0:00:00 DEB - argument: temp_features=data/tmp/feature.db (temp feature db location)
0:00:00 DEB - argument: osm_parse_node_bounds=false (parse bounds from OSM nodes instead of header)
0:00:00 DEB - argument: only_fetch_wikidata=false (fetch wikidata translations then quit)
0:00:00 DEB - argument: fetch_wikidata=true (fetch wikidata translations then continue)
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: lake_centerlines_url=https://dev.maptiler.download/geodata/omt/lake_centerline.shp.zip (lake_centerlines shapefile url)
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: water_polygons_url=https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip (water_polygons shapefile url)
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: natural_earth_url=https://dev.maptiler.download/geodata/omt/natural_earth_vector.sqlite.zip (natural_earth sqlite db url)
0:00:00 DEB - argument: natural_earth_keep_unzipped=false (keep unzipped natural_earth after reading)
0:00:00 DEB - argument: osm_path=data/sources/planet.osm.pbf (osm OSM input file path)
0:00:00 DEB - argument: free_osm_after_read=false (delete osm input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: osm_url=aws:latest (osm OSM input file url)
0:00:00 DEB - argument: output=output.mbtiles (output tile archive path)
0:00:00 DEB - argument: version=false (show version then exit)
0:00:00 INF - Planetiler build git hash: 72f86c8b6361f1b6ae80337220525333f943d7e9
0:00:00 INF - Planetiler build version: 0.6.0
0:00:00 INF - Planetiler build timestamp: 2023-04-01T09:24:50.895Z
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: boundary_osm_only=false (boundary layer: only use OSM, even at low zoom levels)
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: help=false (show arguments then exit)
0:00:00 INF - Building OpenMapTilesProfile profile into file:///root/output.mbtiles in these phases:
0:00:00 INF - download: Download sources [lake_centerlines, water_polygons, natural_earth, osm]
0:00:00 INF - wikidata: Fetch translations from wikidata query service
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 - archive: Encode each tile and write to TileArchiveConfig[format=MBTILES, scheme=FILE, uri=file:///root/output.mbtiles, options={}]
0:00:00 INF [download] -
0:00:00 INF [download] - Starting...
0:00:01 INF [download] - Downloading https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip to data/sources/water-polygons-split-3857.zip
0:00:01 INF [download] - Downloading https://dev.maptiler.download/geodata/omt/lake_centerline.shp.zip to data/sources/lake_centerline.shp.zip
0:00:01 INF [download] - Downloading https://dev.maptiler.download/geodata/omt/natural_earth_vector.sqlite.zip to data/sources/natural_earth_vector.sqlite.zip
0:00:02 INF [download] - Downloading https://osm-pds.s3.amazonaws.com/planet-latest.osm.pbf to data/sources/planet.osm.pbf
0:00:02 INF [download] - Finished downloading https://dev.maptiler.download/geodata/omt/lake_centerline.shp.zip to data/sources/lake_centerline.shp.zip
0:00:03 INF [download] - Finished downloading https://dev.maptiler.download/geodata/omt/natural_earth_vector.sqlite.zip to data/sources/natural_earth_vector.sqlite.zip
0:00:04 INF [download] - Finished downloading https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip to data/sources/water-polygons-split-3857.zip
0:00:12 INF [download] - lake_centerlines: [ 80M 100% 7.8M/s ] water_polygons: [ 839M 100% 81M/s ] natural_earth: [ 433M 100% 42M/s ] osm: [ 2.6G 3% 262M/s ] cpus: 2.1 gc: 1% heap: 214M/187G direct: 198k postGC: 66M
0:00:22 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 5.6G 7% 303M/s ] cpus: 1.4 gc: 0% heap: 492M/187G direct: 198k postGC: 66M
0:00:32 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 8.7G 12% 310M/s ] cpus: 1.5 gc: 0% heap: 144M/187G direct: 198k postGC: 66M
0:00:42 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 11G 15% 287M/s ] cpus: 2 gc: 0% heap: 415M/187G direct: 198k postGC: 66M
0:00:52 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 14G 19% 295M/s ] cpus: 1.9 gc: 0% heap: 50M/187G direct: 198k postGC: 66M
0:01:02 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 17G 23% 298M/s ] cpus: 1.5 gc: 0% heap: 332M/187G direct: 197k postGC: 66M
0:01:12 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 20G 27% 285M/s ] cpus: 1.2 gc: 0% heap: 598M/187G direct: 196k postGC: 66M
0:01:22 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 23G 31% 299M/s ] cpus: 1.3 gc: 0% heap: 246M/187G direct: 196k postGC: 66M
0:01:32 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 26G 35% 303M/s ] cpus: 1.8 gc: 0% heap: 522M/187G direct: 196k postGC: 66M
0:01:42 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 29G 39% 303M/s ] cpus: 1.5 gc: 0% heap: 167M/187G direct: 196k postGC: 66M
0:01:52 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 32G 43% 283M/s ] cpus: 1.2 gc: 0% heap: 436M/187G direct: 196k postGC: 66M
0:02:02 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 35G 47% 293M/s ] cpus: 1.4 gc: 0% heap: 76M/187G direct: 196k postGC: 66M
0:02:12 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 38G 51% 294M/s ] cpus: 1.8 gc: 0% heap: 345M/187G direct: 196k postGC: 66M
0:02:22 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 41G 55% 294M/s ] cpus: 1.6 gc: 0% heap: 621M/187G direct: 196k postGC: 66M
0:02:32 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 44G 58% 288M/s ] cpus: 1.4 gc: 0% heap: 255M/187G direct: 196k postGC: 66M
0:02:42 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 46G 62% 291M/s ] cpus: 1.3 gc: 0% heap: 520M/187G direct: 196k postGC: 66M
0:02:52 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 49G 66% 290M/s ] cpus: 1.8 gc: 0% heap: 154M/187G direct: 196k postGC: 66M
0:03:02 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 52G 70% 290M/s ] cpus: 1.4 gc: 0% heap: 428M/187G direct: 196k postGC: 66M
0:03:12 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 55G 74% 300M/s ] cpus: 1.4 gc: 0% heap: 68M/187G direct: 196k postGC: 66M
0:03:22 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 58G 78% 303M/s ] cpus: 1.3 gc: 0% heap: 349M/187G direct: 196k postGC: 66M
0:03:32 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 61G 82% 292M/s ] cpus: 1.9 gc: 0% heap: 621M/187G direct: 196k postGC: 66M
0:03:42 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 64G 86% 306M/s ] cpus: 1.5 gc: 0% heap: 269M/187G direct: 196k postGC: 67M
0:03:52 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 67G 90% 307M/s ] cpus: 1.3 gc: 0% heap: 551M/187G direct: 196k postGC: 67M
0:04:02 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 70G 94% 285M/s ] cpus: 1.2 gc: 0% heap: 185M/187G direct: 147k postGC: 67M
0:04:12 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 72G 96% 189M/s ] cpus: 0.9 gc: 0% heap: 361M/187G direct: 131k postGC: 67M
0:04:22 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 74G 98% 168M/s ] cpus: 0.6 gc: 0% heap: 518M/187G direct: 114k postGC: 67M
0:04:32 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 75G 100% 117M/s ] cpus: 0.4 gc: 0% heap: 627M/187G direct: 65k postGC: 67M
0:04:33 INF [download] - Finished downloading https://osm-pds.s3.amazonaws.com/planet-latest.osm.pbf to data/sources/planet.osm.pbf
0:04:33 INF [download] - lake_centerlines: [ 80M 100% 0/s ] water_polygons: [ 839M 100% 0/s ] natural_earth: [ 433M 100% 0/s ] osm: [ 75G 100% 37M/s ] cpus: 0.1 gc: 0% heap: 630M/187G direct: 32k postGC: 67M
0:04:33 INF [download] - Finished in 4m32s cpu:6m33s avg:1.4
0:04:33 INF [download] - download-lake_centerlines_chunk-downloader 1x(0% 0.5s done:4m32s)
0:04:33 INF [download] - download-natural_earth_chunk-downloader 1x(1% 2s done:4m31s)
0:04:33 INF [download] - download-water_polygons_chunk-downloader 1x(1% 2s sys:1s done:4m30s)
0:04:33 INF [download] - download-osm_chunk-downloader 10x(14% 38s sys:28s done:17s)
0:04:33 INF [wikidata] -
0:04:33 INF [wikidata] - Starting...
0:04:33 INF [wikidata] - Starting with 47 process threads
0:04:33 INF [wikidata] - no wikidata translations found, run with --fetch-wikidata to download
0:04:36 INF [wikidata:fetch] - Fetched batch 1 (5000 qids) 3s cpu:1m52s avg:40.8
0:04:38 INF [wikidata:fetch] - Fetched batch 2 (5000 qids) 2s cpu:1m23s avg:43.1
0:04:40 INF [wikidata:fetch] - Fetched batch 3 (5000 qids) 2s cpu:1m24s avg:43.5
0:04:43 INF [wikidata:fetch] - Fetched batch 4 (5000 qids) 2s cpu:1m38s avg:45.9
0:04:43 INF [wikidata] - blocks: [ 2.8k 285/s ] nodes: [ 651M 64M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 20k 1.9k/s ] 6.8M
cpus: 43.2 gc: 4% heap: 4.9G/187G direct: 114k postGC: 1.7G
parse() -> pbf( 3%) -> (95/142) -> filter(85% 85% 86% 86% 87% 86% 86% 86% 86% 86% 86% 86% 85% 85% 86% 86% 86% 86% 85% 86% 87% 87% 85% 85% 87% 86% 86% 87% 87% 86% 85% 85% 86% 86% 85% 86% 86% 87% 86% 87% 85% 88% 86% 86% 86% 87% 86%) -> (383k/1M) -> fetch(23%)
0:04:46 INF [wikidata:fetch] - Fetched batch 5 (5000 qids) 3s cpu:2m17s avg:45.6
0:04:51 INF [wikidata:fetch] - Fetched batch 6 (5000 qids) 5s cpu:3m39s avg:45.3
0:04:53 INF [wikidata] - blocks: [ 7k 413/s ] nodes: [ 1.6B 102M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 30k 994/s ] 14M
cpus: 45.6 gc: 3% heap: 7G/187G direct: 114k postGC: 1.6G
parse() -> pbf( 3%) -> (95/142) -> filter(94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 95% 94% 94% 94% 95% 94% 94% 93% 94% 94% 95% 94% 94% 94% 94% 95% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 95% 93% 94% 94% 94% 94% 93%) -> (589k/1M) -> fetch(20%)
0:04:53 INF [wikidata:fetch] - Fetched batch 7 (5000 qids) 3s cpu:2m avg:46.3
0:04:55 INF [wikidata:fetch] - Fetched batch 8 (5000 qids) 2s cpu:1m32s avg:46.3
0:04:58 INF [wikidata:fetch] - Fetched batch 9 (5000 qids) 3s cpu:2m3s avg:46.2
0:05:02 INF [wikidata:fetch] - Fetched batch 10 (5000 qids) 3s cpu:2m35s avg:45.6
0:05:03 INF [wikidata] - blocks: [ 10k 384/s ] nodes: [ 2.8B 117M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 50k 1.9k/s ] 25M
cpus: 46.1 gc: 3% heap: 23G/187G direct: 114k postGC: 1.6G
parse() -> pbf( 2%) -> (93/142) -> filter(96% 96% 96% 96% 94% 95% 96% 96% 95% 96% 96% 96% 96% 95% 95% 96% 96% 96% 96% 95% 95% 95% 96% 95% 95% 96% 96% 96% 96% 96% 96% 95% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 95% 95% 95%) -> (704k/1M) -> fetch(28%)
0:05:06 INF [wikidata:fetch] - Fetched batch 11 (5000 qids) 4s cpu:3m5s avg:46.2
0:05:10 INF [wikidata:fetch] - Fetched batch 12 (5000 qids) 4s cpu:2m46s avg:46.4
0:05:12 INF [wikidata:fetch] - Fetched batch 13 (5000 qids) 2s cpu:1m49s avg:46.4
0:05:13 INF [wikidata] - blocks: [ 14k 385/s ] nodes: [ 4.2B 133M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 65k 1.4k/s ] 33M
cpus: 46.3 gc: 2% heap: 19G/187G direct: 114k postGC: 1.6G
parse() -> pbf( 2%) -> (95/142) -> filter(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 96% 97% 97% 96% 97% 97% 97% 97% 97% 97% 96% 96% 96% 97% 97% 97% 97% 96% 97% 96% 96% 97% 96% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (792k/1M) -> fetch(17%)
0:05:14 INF [wikidata:fetch] - Fetched batch 14 (5000 qids) 2s cpu:1m38s avg:46.4
0:05:17 INF [wikidata:fetch] - Fetched batch 15 (5000 qids) 2s cpu:1m51s avg:46.5
0:05:19 INF [wikidata:fetch] - Fetched batch 16 (5000 qids) 2s cpu:1m47s avg:46.5
0:05:22 INF [wikidata:fetch] - Fetched batch 17 (5000 qids) 3s cpu:2m7s avg:46.5
0:05:23 INF [wikidata] - blocks: [ 18k 387/s ] nodes: [ 5.5B 135M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 85k 1.9k/s ] 41M
cpus: 46.5 gc: 2% heap: 22G/187G direct: 114k postGC: 1.6G
parse() -> pbf( 2%) -> (93/142) -> filter(97% 96% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (826k/1M) -> fetch(21%)
0:05:24 INF [wikidata:fetch] - Fetched batch 18 (5000 qids) 2s cpu:1m42s avg:46.5
0:05:26 INF [wikidata:fetch] - Fetched batch 19 (5000 qids) 2s cpu:1m33s avg:46.5
0:05:29 INF [wikidata:fetch] - Fetched batch 20 (5000 qids) 2s cpu:1m39s avg:46.6
0:05:32 INF [wikidata:fetch] - Fetched batch 21 (5000 qids) 3s cpu:2m18s avg:46.5
0:05:33 INF [wikidata] - blocks: [ 22k 382/s ] nodes: [ 6.9B 136M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 105k 1.9k/s ] 50M
cpus: 46.5 gc: 2% heap: 2G/187G direct: 114k postGC: 1.6G
parse() -> pbf( 2%) -> (91/142) -> filter(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97%) -> (842k/1M) -> fetch(20%)
0:05:34 INF [wikidata:fetch] - Fetched batch 22 (5000 qids) 3s cpu:1m57s avg:46.5
0:05:36 INF [wikidata:fetch] - Fetched batch 23 (5000 qids) 2s cpu:1m35s avg:46.6
0:05:41 INF [wikidata:fetch] - Fetched batch 24 (5000 qids) 4s cpu:3m12s avg:46.4
0:05:43 INF [wikidata] - blocks: [ 26k 382/s ] nodes: [ 8.3B 138M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 120k 1.4k/s ] 57M
cpus: 46.5 gc: 2% heap: 12G/187G direct: 114k postGC: 1.7G
parse() -> pbf( 2%) -> (95/142) -> filter(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (857k/1M) -> fetch(18%)
0:05:44 INF [wikidata:fetch] - Fetched batch 25 (5000 qids) 4s cpu:2m49s avg:46.3
0:05:50 INF [wikidata:fetch] - Fetched batch 26 (5000 qids) 5s cpu:4m9s avg:46.2
0:05:53 INF [wikidata] - blocks: [ 28k 203/s ] nodes: [ 8.5B 23M/s ] ways: [ 63M 6.3M/s ] rels: [ 0 0/s ] wiki: [ 130k 997/s ] 62M
cpus: 33.5 gc: 2% heap: 3.7G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 1%) -> (95/142) -> filter(69% 69% 67% 68% 68% 69% 68% 69% 68% 68% 68% 66% 70% 68% 67% 69% 70% 68% 68% 67% 69% 70% 69% 69% 68% 68% 68% 68% 68% 67% 69% 68% 70% 68% 69% 68% 68% 69% 67% 69% 69% 69% 68% 68% 70% 68% 68%) -> (1M/1M) -> fetch(11%)
0:05:55 INF [wikidata:fetch] - Fetched batch 27 (5000 qids) 5s cpu:7s avg:1.4
0:05:59 INF [wikidata:fetch] - Fetched batch 28 (5000 qids) 4s cpu:7s avg:1.6
0:06:01 INF [wikidata:fetch] - Fetched batch 29 (5000 qids) 2s cpu:7s avg:4
0:06:03 INF [wikidata] - blocks: [ 28k 13/s ] nodes: [ 8.5B 0/s ] ways: [ 70M 715k/s ] rels: [ 0 0/s ] wiki: [ 145k 1.4k/s ] 69M
cpus: 2 gc: 0% heap: 17G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 5% 4% 4% 3% 4% 4% 4% 3% 3% 4% 5% 4% 5% 5% 4% 4% 4% 5% 4% 4% 3% 5% 4% 5% 4% 4% 5% 4% 4% 4% 3% 5% 5% 2% 3% 4% 4% 5% 4% 3% 4% 3% 4% 4% 4% 4% 4%) -> (1M/1M) -> fetch( 8%)
0:06:03 INF [wikidata:fetch] - Fetched batch 30 (5000 qids) 2s cpu:6s avg:3.2
0:06:05 INF [wikidata:fetch] - Fetched batch 31 (5000 qids) 2s cpu:7s avg:3.4
0:06:07 INF [wikidata:fetch] - Fetched batch 32 (5000 qids) 2s cpu:8s avg:4.7
0:06:09 INF [wikidata:fetch] - Fetched batch 33 (5000 qids) 2s cpu:7s avg:3.5
0:06:11 INF [wikidata:fetch] - Fetched batch 34 (5000 qids) 2s cpu:6s avg:3.5
0:06:13 INF [wikidata] - blocks: [ 28k 22/s ] nodes: [ 8.5B 0/s ] ways: [ 83M 1.2M/s ] rels: [ 0 0/s ] wiki: [ 170k 2.4k/s ] 78M
cpus: 3.6 gc: 0% heap: 17G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 7% 5% 7% 7% 7% 6% 7% 7% 8% 9% 6% 6% 7% 7% 8% 6% 8% 8% 7% 6% 7% 6% 8% 5% 8% 7% 8% 7% 7% 6% 7% 7% 8% 8% 8% 7% 8% 7% 9% 7% 7% 8% 7% 7% 7% 8% 6%) -> (1M/1M) -> fetch(10%)
0:06:15 INF [wikidata:fetch] - Fetched batch 35 (5000 qids) 4s cpu:7s avg:1.7
0:06:18 INF [wikidata:fetch] - Fetched batch 36 (5000 qids) 2s cpu:8s avg:3.2
0:06:19 INF [wikidata:fetch] - Fetched batch 37 (5000 qids) 2s cpu:8s avg:4.3
0:06:23 INF [wikidata] - blocks: [ 28k 14/s ] nodes: [ 8.5B 0/s ] ways: [ 92M 865k/s ] rels: [ 0 0/s ] wiki: [ 185k 1.4k/s ] 85M
cpus: 2.4 gc: 0% heap: 8.5G/187G direct: 114k postGC: 1.9G
parse() -> pbf( 0%) -> (95/142) -> filter( 4% 4% 5% 4% 5% 3% 5% 5% 4% 5% 5% 4% 4% 4% 5% 4% 3% 3% 5% 5% 5% 5% 5% 5% 5% 5% 4% 5% 4% 4% 6% 5% 4% 5% 5% 5% 5% 4% 4% 5% 5% 5% 5% 4% 4% 5% 5%) -> (1M/1M) -> fetch( 9%)
0:06:24 INF [wikidata:fetch] - Fetched batch 38 (5000 qids) 5s cpu:8s avg:1.5
0:06:26 INF [wikidata:fetch] - Fetched batch 39 (5000 qids) 2s cpu:8s avg:4.6
0:06:29 INF [wikidata:fetch] - Fetched batch 40 (5000 qids) 2s cpu:7s avg:3.5
0:06:30 INF [wikidata:fetch] - Fetched batch 41 (5000 qids) 2s cpu:6s avg:3.8
0:06:32 INF [wikidata:fetch] - Fetched batch 42 (5000 qids) 2s cpu:7s avg:4
0:06:33 INF [wikidata] - blocks: [ 29k 23/s ] nodes: [ 8.5B 0/s ] ways: [ 107M 1.4M/s ] rels: [ 0 0/s ] wiki: [ 210k 2.4k/s ] 93M
cpus: 3.7 gc: 0% heap: 8.6G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(10% 7% 7% 8% 8% 8% 7% 7% 8% 6% 7% 7% 6% 7% 8% 8% 8% 6% 8% 7% 7% 7% 6% 8% 7% 7% 9% 8% 8% 7% 8% 8% 8% 6% 6% 7% 7% 8% 8% 7% 7% 8% 6% 7% 6% 6% 7%) -> (1M/1M) -> fetch( 9%)
0:06:34 INF [wikidata:fetch] - Fetched batch 43 (5000 qids) 2s cpu:7s avg:3.2
0:06:36 INF [wikidata:fetch] - Fetched batch 44 (5000 qids) 2s cpu:7s avg:4.3
0:06:38 INF [wikidata:fetch] - Fetched batch 45 (5000 qids) 2s cpu:7s avg:3.3
0:06:40 INF [wikidata:fetch] - Fetched batch 46 (5000 qids) 2s cpu:7s avg:4.9
0:06:41 INF [wikidata:fetch] - Fetched batch 47 (5000 qids) 2s cpu:7s avg:4.5
0:06:43 INF [wikidata] - blocks: [ 29k 21/s ] nodes: [ 8.5B 0/s ] ways: [ 120M 1.3M/s ] rels: [ 0 0/s ] wiki: [ 235k 2.4k/s ] 100M
cpus: 3.6 gc: 0% heap: 7.7G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 7% 7% 7% 6% 8% 9% 8% 8% 8% 7% 7% 7% 9% 8% 6% 8% 7% 7% 7% 7% 8% 7% 7% 6% 7% 7% 6% 6% 7% 8% 6% 7% 7% 7% 7% 8% 8% 8% 7% 6% 7% 7% 6% 7% 7% 8% 6%) -> (1M/1M) -> fetch( 9%)
0:06:43 INF [wikidata:fetch] - Fetched batch 48 (5000 qids) 2s cpu:7s avg:4.1
0:06:45 INF [wikidata:fetch] - Fetched batch 49 (5000 qids) 2s cpu:7s avg:3.2
0:06:47 INF [wikidata:fetch] - Fetched batch 50 (5000 qids) 1s cpu:7s avg:5
0:06:48 INF [wikidata:fetch] - Fetched batch 51 (5000 qids) 1s cpu:7s avg:5.1
0:06:50 INF [wikidata:fetch] - Fetched batch 52 (5000 qids) 2s cpu:8s avg:4.8
0:06:51 INF [wikidata:fetch] - Fetched batch 53 (5000 qids) 1s cpu:8s avg:5.4
0:06:53 INF [wikidata:fetch] - Fetched batch 54 (5000 qids) 2s cpu:8s avg:5.4
0:06:53 INF [wikidata] - blocks: [ 29k 29/s ] nodes: [ 8.5B 0/s ] ways: [ 138M 1.8M/s ] rels: [ 0 0/s ] wiki: [ 270k 3.4k/s ] 105M
cpus: 4.6 gc: 0% heap: 14G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 9% 9% 10% 9% 10% 9% 10% 9% 11% 9% 9% 11% 10% 10% 9% 9% 8% 9% 9% 8% 8% 9% 9% 11% 8% 10% 8% 10% 10% 10% 9% 9% 10% 9% 10% 10% 10% 10% 9% 10% 11% 9% 11% 9% 10% 9% 9%) -> (1M/1M) -> fetch( 6%)
0:06:54 INF [wikidata:fetch] - Fetched batch 55 (5000 qids) 2s cpu:9s avg:5.7
0:06:56 INF [wikidata:fetch] - Fetched batch 56 (5000 qids) 2s cpu:7s avg:4.5
0:06:58 INF [wikidata:fetch] - Fetched batch 57 (5000 qids) 2s cpu:7s avg:3.3
0:07:03 INF [wikidata] - blocks: [ 29k 18/s ] nodes: [ 8.5B 0/s ] ways: [ 150M 1.1M/s ] rels: [ 0 0/s ] wiki: [ 285k 1.4k/s ] 109M
cpus: 3.1 gc: 0% heap: 10G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 6% 6% 6% 5% 5% 5% 5% 7% 7% 7% 6% 5% 6% 7% 6% 6% 5% 5% 7% 7% 6% 5% 6% 7% 6% 6% 6% 6% 5% 6% 5% 6% 5% 7% 6% 5% 6% 6% 6% 6% 6% 5% 5% 7% 6% 7% 6%) -> (1M/1M) -> fetch( 8%)
0:07:04 INF [wikidata:fetch] - Fetched batch 58 (5000 qids) 5s cpu:8s avg:1.5
0:07:08 INF [wikidata:fetch] - Fetched batch 59 (5000 qids) 4s cpu:10s avg:2.5
0:07:10 INF [wikidata:fetch] - Fetched batch 60 (5000 qids) 2s cpu:9s avg:4.3
0:07:12 INF [wikidata:fetch] - Fetched batch 61 (5000 qids) 2s cpu:8s avg:3.4
0:07:13 INF [wikidata] - blocks: [ 30k 21/s ] nodes: [ 8.5B 0/s ] ways: [ 164M 1.3M/s ] rels: [ 0 0/s ] wiki: [ 305k 1.9k/s ] 117M
cpus: 3.4 gc: 0% heap: 9.6G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 7% 7% 8% 6% 6% 5% 6% 7% 7% 7% 5% 8% 7% 8% 8% 6% 7% 7% 6% 6% 7% 7% 8% 7% 7% 6% 6% 7% 8% 8% 6% 6% 6% 8% 7% 6% 7% 8% 7% 6% 7% 8% 7% 6% 7% 7% 7%) -> (1M/1M) -> fetch( 9%)
0:07:15 INF [wikidata:fetch] - Fetched batch 62 (5000 qids) 2s cpu:8s avg:3.2
0:07:22 INF [wikidata:fetch] - Fetched batch 63 (5000 qids) 7s cpu:8s avg:1.2
0:07:23 INF [wikidata] - blocks: [ 30k 9/s ] nodes: [ 8.5B 0/s ] ways: [ 170M 606k/s ] rels: [ 0 0/s ] wiki: [ 315k 998/s ] 121M
cpus: 1.6 gc: 0% heap: 20G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 3% 4% 3% 3% 4% 3% 5% 3% 3% 3% 3% 3% 4% 3% 4% 3% 3% 3% 3% 3% 3% 3% 4% 4% 3% 3% 3% 3% 3% 3% 3% 3% 3% 3% 4% 3% 3% 4% 3% 4% 4% 3% 4% 3% 3% 3% 3%) -> (1M/1M) -> fetch( 5%)
0:07:24 INF [wikidata:fetch] - Fetched batch 64 (5000 qids) 2s cpu:8s avg:4.3
0:07:26 INF [wikidata:fetch] - Fetched batch 65 (5000 qids) 2s cpu:9s avg:3.6
0:07:28 INF [wikidata:fetch] - Fetched batch 66 (5000 qids) 2s cpu:7s avg:4.3
0:07:30 INF [wikidata:fetch] - Fetched batch 67 (5000 qids) 2s cpu:8s avg:5
0:07:32 INF [wikidata:fetch] - Fetched batch 68 (5000 qids) 2s cpu:10s avg:5.7
0:07:33 INF [wikidata] - blocks: [ 30k 28/s ] nodes: [ 8.5B 0/s ] ways: [ 188M 1.8M/s ] rels: [ 0 0/s ] wiki: [ 340k 2.4k/s ] 129M
cpus: 4.5 gc: 1% heap: 2.8G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 9% 9% 9% 9% 8% 11% 8% 9% 8% 9% 9% 9% 10% 10% 7% 9% 8% 9% 8% 8% 11% 9% 8% 9% 9% 9% 8% 8% 8% 9% 9% 9% 9% 8% 10% 8% 9% 8% 9% 10% 8% 8% 9% 11% 10% 8% 10%) -> (1M/1M) -> fetch(12%)
0:07:33 INF [wikidata:fetch] - Fetched batch 69 (5000 qids) 2s cpu:10s avg:6
0:07:36 INF [wikidata:fetch] - Fetched batch 70 (5000 qids) 2s cpu:8s avg:3.5
0:07:38 INF [wikidata:fetch] - Fetched batch 71 (5000 qids) 3s cpu:8s avg:2.9
0:07:40 INF [wikidata:fetch] - Fetched batch 72 (5000 qids) 2s cpu:8s avg:5
0:07:42 INF [wikidata:fetch] - Fetched batch 73 (5000 qids) 2s cpu:11s avg:6.3
0:07:43 INF [wikidata] - blocks: [ 30k 30/s ] nodes: [ 8.5B 0/s ] ways: [ 207M 1.8M/s ] rels: [ 0 0/s ] wiki: [ 365k 2.4k/s ] 136M
cpus: 4.6 gc: 0% heap: 11G/187G direct: 114k postGC: 1.9G
parse() -> pbf( 0%) -> (95/142) -> filter(10% 9% 10% 8% 8% 10% 11% 10% 11% 10% 7% 6% 7% 10% 10% 10% 10% 9% 9% 6% 11% 9% 8% 9% 11% 9% 10% 9% 11% 10% 9% 10% 9% 9% 9% 9% 11% 10% 10% 11% 8% 11% 10% 9% 8% 10% 11%) -> (1M/1M) -> fetch( 9%)
0:07:44 INF [wikidata:fetch] - Fetched batch 74 (5000 qids) 2s cpu:12s avg:6.2
0:07:48 INF [wikidata:fetch] - Fetched batch 75 (5000 qids) 4s cpu:13s avg:3.1
0:07:49 INF [wikidata:fetch] - Fetched batch 76 (5000 qids) 2s cpu:14s avg:8.8
0:07:51 INF [wikidata:fetch] - Fetched batch 77 (5000 qids) 2s cpu:10s avg:6
0:07:52 INF [wikidata:fetch] - Fetched batch 78 (5000 qids) 1s cpu:9s avg:7.8
0:07:53 INF [wikidata] - blocks: [ 31k 38/s ] nodes: [ 8.5B 0/s ] ways: [ 230M 2.3M/s ] rels: [ 0 0/s ] wiki: [ 390k 2.4k/s ] 143M
cpus: 5.6 gc: 0% heap: 2G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(13% 13% 11% 13% 13% 11% 12% 10% 10% 10% 11% 12% 11% 9% 10% 11% 11% 12% 12% 11% 12% 9% 13% 12% 12% 13% 13% 13% 10% 12% 10% 13% 11% 10% 14% 11% 13% 9% 12% 11% 11% 12% 10% 11% 9% 12% 10%) -> (1M/1M) -> fetch( 8%)
0:07:54 INF [wikidata:fetch] - Fetched batch 79 (5000 qids) 1s cpu:10s avg:6.9
0:07:55 INF [wikidata:fetch] - Fetched batch 80 (5000 qids) 2s cpu:10s avg:6.3
0:07:57 INF [wikidata:fetch] - Fetched batch 81 (5000 qids) 2s cpu:10s avg:5.5
0:07:59 INF [wikidata:fetch] - Fetched batch 82 (5000 qids) 1s cpu:10s avg:7.3
0:08:00 INF [wikidata:fetch] - Fetched batch 83 (5000 qids) 2s cpu:12s avg:6.9
0:08:03 INF [wikidata] - blocks: [ 31k 34/s ] nodes: [ 8.5B 0/s ] ways: [ 253M 2.2M/s ] rels: [ 0 0/s ] wiki: [ 415k 2.4k/s ] 148M
cpus: 5.3 gc: 0% heap: 15G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(11% 11% 11% 11% 10% 9% 11% 11% 11% 11% 11% 11% 11% 10% 11% 11% 11% 11% 11% 12% 10% 10% 11% 11% 12% 10% 11% 12% 11% 10% 11% 11% 12% 11% 10% 11% 13% 10% 12% 11% 11% 9% 10% 12% 11% 12% 11%) -> (1M/1M) -> fetch( 6%)
0:08:04 INF [wikidata:fetch] - Fetched batch 84 (5000 qids) 4s cpu:11s avg:3
0:08:06 INF [wikidata:fetch] - Fetched batch 85 (5000 qids) 2s cpu:12s avg:5.4
0:08:13 INF [wikidata] - blocks: [ 31k 16/s ] nodes: [ 8.5B 0/s ] ways: [ 263M 1M/s ] rels: [ 0 0/s ] wiki: [ 425k 998/s ] 150M
cpus: 2.4 gc: 0% heap: 8.2G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 5% 6% 5% 5% 5% 5% 6% 5% 4% 5% 4% 6% 6% 4% 6% 6% 4% 5% 5% 4% 4% 4% 5% 5% 4% 7% 4% 4% 5% 5% 5% 5% 6% 4% 5% 5% 6% 4% 5% 7% 5% 3% 5% 5% 5% 6% 4%) -> (1M/1M) -> fetch( 4%)
0:08:13 INF [wikidata:fetch] - Fetched batch 86 (5000 qids) 7s cpu:13s avg:1.8
0:08:16 INF [wikidata:fetch] - Fetched batch 87 (5000 qids) 2s cpu:13s avg:5.8
0:08:17 INF [wikidata:fetch] - Fetched batch 88 (5000 qids) 2s cpu:14s avg:9.5
0:08:19 INF [wikidata:fetch] - Fetched batch 89 (5000 qids) 1s cpu:12s avg:8.9
0:08:20 INF [wikidata:fetch] - Fetched batch 90 (5000 qids) 1s cpu:11s avg:7.6
0:08:22 INF [wikidata:fetch] - Fetched batch 91 (5000 qids) 2s cpu:12s avg:6.4
0:08:23 INF [wikidata] - blocks: [ 32k 50/s ] nodes: [ 8.5B 0/s ] ways: [ 298M 3.4M/s ] rels: [ 0 0/s ] wiki: [ 455k 2.9k/s ] 157M
cpus: 7.5 gc: 0% heap: 15G/187G direct: 114k postGC: 1.9G
parse() -> pbf( 0%) -> (95/142) -> filter(16% 17% 14% 17% 14% 15% 19% 15% 19% 15% 16% 18% 15% 15% 16% 13% 19% 13% 18% 15% 14% 16% 15% 16% 17% 14% 16% 14% 14% 16% 14% 13% 15% 16% 17% 15% 17% 15% 16% 15% 15% 17% 14% 17% 16% 14% 12%) -> (1M/1M) -> fetch( 7%)
0:08:24 INF [wikidata:fetch] - Fetched batch 92 (5000 qids) 2s cpu:13s avg:7.1
0:08:25 INF [wikidata:fetch] - Fetched batch 93 (5000 qids) 2s cpu:12s avg:8.3
0:08:27 INF [wikidata:fetch] - Fetched batch 94 (5000 qids) 2s cpu:12s avg:7.9
0:08:29 INF [wikidata:fetch] - Fetched batch 95 (5000 qids) 2s cpu:11s avg:6
0:08:30 INF [wikidata:fetch] - Fetched batch 96 (5000 qids) 2s cpu:14s avg:8.9
0:08:32 INF [wikidata:fetch] - Fetched batch 97 (5000 qids) 1s cpu:17s avg:13.2
0:08:33 INF [wikidata] - blocks: [ 32k 55/s ] nodes: [ 8.5B 0/s ] ways: [ 336M 3.7M/s ] rels: [ 0 0/s ] wiki: [ 485k 2.9k/s ] 164M
cpus: 8.3 gc: 1% heap: 2.8G/187G direct: 114k postGC: 1.9G
parse() -> pbf( 0%) -> (95/142) -> filter(19% 18% 18% 16% 18% 14% 17% 16% 16% 18% 17% 16% 16% 17% 18% 19% 17% 14% 15% 18% 16% 17% 17% 18% 18% 17% 16% 16% 15% 18% 17% 16% 18% 16% 19% 16% 17% 16% 18% 18% 16% 15% 17% 19% 19% 17% 19%) -> (1M/1M) -> fetch( 8%)
0:08:33 INF [wikidata:fetch] - Fetched batch 98 (5000 qids) 1s cpu:16s avg:10.9
0:08:35 INF [wikidata:fetch] - Fetched batch 99 (5000 qids) 1s cpu:14s avg:10.8
0:08:37 INF [wikidata:fetch] - Fetched batch 100 (5000 qids) 2s cpu:13s avg:5.9
0:08:39 INF [wikidata:fetch] - Fetched batch 101 (5000 qids) 2s cpu:15s avg:7.7
0:08:42 INF [wikidata:fetch] - Fetched batch 102 (5000 qids) 3s cpu:14s avg:4.8
0:08:43 INF [wikidata] - blocks: [ 33k 49/s ] nodes: [ 8.5B 0/s ] ways: [ 369M 3.3M/s ] rels: [ 0 0/s ] wiki: [ 510k 2.4k/s ] 170M
cpus: 7.3 gc: 0% heap: 7.3G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(16% 15% 15% 17% 14% 14% 19% 15% 14% 14% 17% 15% 14% 12% 15% 15% 14% 15% 12% 14% 15% 17% 14% 16% 15% 15% 14% 13% 12% 12% 13% 13% 15% 20% 13% 14% 18% 15% 17% 15% 15% 14% 16% 16% 13% 14% 19%) -> (1M/1M) -> fetch( 8%)
0:08:44 INF [wikidata:fetch] - Fetched batch 103 (5000 qids) 2s cpu:17s avg:6.7
0:08:47 INF [wikidata:fetch] - Fetched batch 104 (5000 qids) 2s cpu:16s avg:6.6
0:08:49 INF [wikidata:fetch] - Fetched batch 105 (5000 qids) 2s cpu:17s avg:8.6
0:08:51 INF [wikidata:fetch] - Fetched batch 106 (5000 qids) 2s cpu:17s avg:8.7
0:08:53 INF [wikidata:fetch] - Fetched batch 107 (5000 qids) 2s cpu:19s avg:11.1
0:08:53 INF [wikidata] - blocks: [ 33k 62/s ] nodes: [ 8.5B 0/s ] ways: [ 414M 4.5M/s ] rels: [ 0 0/s ] wiki: [ 535k 2.4k/s ] 179M
cpus: 9.1 gc: 1% heap: 2.4G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(22% 19% 18% 18% 19% 19% 19% 19% 19% 19% 18% 20% 20% 20% 18% 20% 20% 17% 20% 17% 17% 25% 18% 17% 18% 18% 18% 18% 19% 19% 19% 19% 17% 19% 21% 17% 19% 17% 17% 19% 19% 17% 20% 18% 19% 16% 20%) -> (1M/1M) -> fetch(13%)
0:08:54 INF [wikidata:fetch] - Fetched batch 108 (5000 qids) 1s cpu:25s avg:17.6
0:08:56 INF [wikidata:fetch] - Fetched batch 109 (5000 qids) 2s cpu:22s avg:11
0:08:58 INF [wikidata:fetch] - Fetched batch 110 (5000 qids) 2s cpu:17s avg:10.3
0:08:59 INF [wikidata:fetch] - Fetched batch 111 (5000 qids) 2s cpu:15s avg:9.6
0:09:01 INF [wikidata:fetch] - Fetched batch 112 (5000 qids) 2s cpu:18s avg:10.8
0:09:03 INF [wikidata] - blocks: [ 34k 70/s ] nodes: [ 8.5B 0/s ] ways: [ 465M 5.1M/s ] rels: [ 0 0/s ] wiki: [ 560k 2.4k/s ] 186M
cpus: 10 gc: 1% heap: 5.9G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(22% 23% 20% 15% 19% 22% 22% 17% 21% 20% 18% 21% 22% 21% 22% 25% 20% 20% 19% 18% 21% 20% 22% 22% 19% 20% 22% 22% 20% 17% 17% 20% 22% 19% 21% 21% 20% 23% 20% 24% 22% 18% 19% 19% 22% 21% 20%) -> (1M/1M) -> fetch(11%)
0:09:04 INF [wikidata:fetch] - Fetched batch 113 (5000 qids) 3s cpu:24s avg:7.6
0:09:06 INF [wikidata:fetch] - Fetched batch 114 (5000 qids) 2s cpu:25s avg:15.2
0:09:08 INF [wikidata:fetch] - Fetched batch 115 (5000 qids) 2s cpu:25s avg:15.2
0:09:09 INF [wikidata:fetch] - Fetched batch 116 (5000 qids) 2s cpu:28s avg:17.8
0:09:11 INF [wikidata:fetch] - Fetched batch 117 (5000 qids) 2s cpu:30s avg:18.1
0:09:13 INF [wikidata:fetch] - Fetched batch 118 (5000 qids) 2s cpu:24s avg:13.7
0:09:13 INF [wikidata] - blocks: [ 35k 104/s ] nodes: [ 8.5B 0/s ] ways: [ 542M 7.6M/s ] rels: [ 0 0/s ] wiki: [ 590k 2.9k/s ] 194M
cpus: 14.5 gc: 1% heap: 21G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 1%) -> (95/142) -> filter(37% 31% 29% 31% 29% 35% 30% 27% 26% 27% 26% 26% 30% 34% 29% 32% 32% 29% 34% 28% 33% 34% 28% 26% 29% 29% 30% 28% 33% 29% 32% 32% 34% 27% 30% 31% 32% 29% 23% 30% 28% 28% 30% 30% 32% 33% 30%) -> (1M/1M) -> fetch(10%)
0:09:15 INF [wikidata:fetch] - Fetched batch 119 (5000 qids) 3s cpu:24s avg:9.3
0:09:17 INF [wikidata:fetch] - Fetched batch 120 (5000 qids) 2s cpu:24s avg:12.5
0:09:19 INF [wikidata:fetch] - Fetched batch 121 (5000 qids) 2s cpu:25s avg:13.7
0:09:21 INF [wikidata:fetch] - Fetched batch 122 (5000 qids) 2s cpu:29s avg:16.1
0:09:23 INF [wikidata] - blocks: [ 36k 77/s ] nodes: [ 8.5B 0/s ] ways: [ 596M 5.4M/s ] rels: [ 0 0/s ] wiki: [ 610k 1.9k/s ] 200M
cpus: 11.3 gc: 1% heap: 9.2G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter(28% 19% 22% 20% 25% 20% 28% 18% 22% 25% 24% 22% 27% 24% 23% 25% 22% 17% 25% 20% 25% 22% 26% 26% 22% 19% 19% 25% 26% 26% 25% 22% 22% 23% 24% 23% 23% 23% 24% 20% 21% 23% 29% 24% 24% 25% 23%) -> (1M/1M) -> fetch( 7%)
0:09:23 INF [wikidata:fetch] - Fetched batch 123 (5000 qids) 2s cpu:24s avg:11.1
0:09:25 INF [wikidata:fetch] - Fetched batch 124 (5000 qids) 2s cpu:25s avg:15
0:09:27 INF [wikidata:fetch] - Fetched batch 125 (5000 qids) 2s cpu:21s avg:13.9
0:09:30 INF [wikidata:fetch] - Fetched batch 126 (5000 qids) 3s cpu:24s avg:7.2
0:09:32 INF [wikidata:fetch] - Fetched batch 127 (5000 qids) 2s cpu:22s avg:13.1
0:09:33 INF [wikidata:fetch] - Fetched batch 128 (5000 qids) 1s cpu:24s avg:17.9
0:09:33 INF [wikidata] - blocks: [ 37k 87/s ] nodes: [ 8.5B 0/s ] ways: [ 658M 6.1M/s ] rels: [ 0 0/s ] wiki: [ 640k 2.9k/s ] 208M
cpus: 12.5 gc: 1% heap: 7G/187G direct: 114k postGC: 1.7G
parse() -> pbf( 1%) -> (95/142) -> filter(24% 22% 30% 28% 25% 27% 31% 26% 26% 29% 26% 24% 30% 23% 28% 27% 25% 25% 28% 22% 27% 28% 24% 24% 26% 26% 29% 26% 24% 27% 23% 23% 26% 25% 28% 24% 27% 24% 30% 27% 24% 26% 27% 26% 26% 21% 26%) -> (1M/1M) -> fetch( 9%)
0:09:35 INF [wikidata:fetch] - Fetched batch 129 (5000 qids) 1s cpu:26s avg:17.3
0:09:37 INF [wikidata:fetch] - Fetched batch 130 (5000 qids) 2s cpu:26s avg:12.4
0:09:39 INF [wikidata:fetch] - Fetched batch 131 (5000 qids) 2s cpu:29s avg:12.7
0:09:41 INF [wikidata:fetch] - Fetched batch 132 (5000 qids) 2s cpu:28s avg:15.7
0:09:43 INF [wikidata:fetch] - Fetched batch 133 (5000 qids) 2s cpu:31s avg:18.7
0:09:43 INF [wikidata] - blocks: [ 38k 115/s ] nodes: [ 8.5B 0/s ] ways: [ 742M 8.3M/s ] rels: [ 0 0/s ] wiki: [ 665k 2.4k/s ] 213M
cpus: 16.2 gc: 1% heap: 10G/187G direct: 114k postGC: 1.8G
parse() -> pbf( 1%) -> (95/142) -> filter(31% 31% 37% 35% 31% 31% 35% 32% 33% 33% 38% 36% 28% 32% 34% 31% 32% 31% 34% 33% 36% 33% 34% 33% 34% 29% 28% 36% 35% 36% 35% 38% 33% 39% 33% 35% 36% 34% 32% 30% 36% 32% 34% 38% 36% 31% 36%) -> (1M/1M) -> fetch( 6%)
0:09:44 INF [wikidata:fetch] - Fetched batch 134 (5000 qids) 2s cpu:36s avg:22.8
0:09:46 INF [wikidata:fetch] - Fetched batch 135 (5000 qids) 2s cpu:37s avg:22.9
0:09:47 INF [wikidata:fetch] - Fetched batch 136 (5000 qids) 2s cpu:33s avg:21.5
0:09:49 INF [wikidata:fetch] - Fetched batch 137 (5000 qids) 2s cpu:35s avg:20.7
0:09:51 INF [wikidata:fetch] - Fetched batch 138 (5000 qids) 1s cpu:33s avg:23.3
0:09:52 INF [wikidata:fetch] - Fetched batch 139 (5000 qids) 1s cpu:42s avg:29
0:09:53 INF [wikidata] - blocks: [ 39k 164/s ] nodes: [ 8.5B 0/s ] ways: [ 862M 11M/s ] rels: [ 0 0/s ] wiki: [ 695k 2.9k/s ] 219M
cpus: 22.5 gc: 1% heap: 17G/187G direct: 98k postGC: 1.8G
parse() -> pbf( 1%) -> (95/142) -> filter(50% 42% 48% 41% 55% 42% 47% 49% 49% 40% 47% 49% 40% 49% 49% 61% 48% 46% 41% 46% 52% 45% 46% 48% 53% 49% 44% 46% 45% 45% 49% 48% 52% 52% 45% 43% 51% 43% 52% 48% 51% 33% 42% 40% 47% 49% 46%) -> (1M/1M) -> fetch( 7%)
0:09:53 INF [wikidata:fetch] - Fetched batch 140 (5000 qids) 1s cpu:41s avg:28.9
0:09:55 INF [wikidata:fetch] - Fetched batch 141 (5000 qids) 1s cpu:33s avg:22.4
0:09:56 INF [wikidata:fetch] - Fetched batch 142 (5000 qids) 1s cpu:33s avg:22.3
0:09:58 INF [wikidata:fetch] - Fetched batch 143 (5000 qids) 1s cpu:29s avg:20.2
0:09:59 INF [wikidata:fetch] - Fetched batch 144 (5000 qids) 1s cpu:35s avg:25.6
0:10:01 INF [wikidata:fetch] - Fetched batch 145 (5000 qids) 1s cpu:43s avg:28.8
0:10:03 INF [wikidata:fetch] - Fetched batch 146 (5000 qids) 2s cpu:37s avg:20.9
0:10:03 INF [wikidata] - blocks: [ 41k 138/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 9.8M/s ] rels: [ 148k 14k/s ] wiki: [ 730k 3.4k/s ] 226M
cpus: 21.3 gc: 1% heap: 20G/187G direct: 98k postGC: 1.8G
parse() -> pbf( 1%) -> (95/142) -> filter(46% 46% 40% 38% 52% 43% 50% 51% 37% 44% 51% 47% 40% 45% 46% 45% 43% 48% 41% 42% 48% 44% 46% 42% 40% 43% 44% 41% 44% 45% 44% 48% 42% 48% 47% 43% 42% 44% 45% 47% 47% 43% 38% 40% 41% 44% 37%) -> (1M/1M) -> fetch( 7%)
0:10:04 INF [wikidata:fetch] - Fetched batch 147 (5000 qids) 1s cpu:3s avg:1.8
0:10:06 INF [wikidata:fetch] - Fetched batch 148 (5000 qids) 2s cpu:4s avg:2.3
0:10:07 INF [wikidata:fetch] - Fetched batch 149 (5000 qids) 1s cpu:2s avg:1.4
0:10:09 INF [wikidata:fetch] - Fetched batch 150 (5000 qids) 1s cpu:3s avg:1.8
0:10:10 INF [wikidata:fetch] - Fetched batch 151 (5000 qids) 1s cpu:3s avg:2.3
0:10:12 INF [wikidata:fetch] - Fetched batch 152 (5000 qids) 1s cpu:2s avg:1.5
0:10:13 INF [wikidata] - blocks: [ 41k 8/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 2M 190k/s ] wiki: [ 760k 2.9k/s ] 231M
cpus: 1.6 gc: 0% heap: 5.1G/187G direct: 98k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 3% 3% 3% 2% 4% 4% 4% 3% 3% 3% 2% 3% 3% 3% 3% 3% 3% 2% 3% 3% 3% 5% 2% 4% 3% 3% 3% 2% 3% 4% 3% 3% 3% 2% 3% 3% 2% 3% 2% 3% 4% 3% 2% 3% 3% 4% 2%) -> (1M/1M) -> fetch( 7%)
0:10:14 INF [wikidata:fetch] - Fetched batch 153 (5000 qids) 2s cpu:2s avg:1
0:10:15 INF [wikidata:fetch] - Fetched batch 154 (5000 qids) 1s cpu:2s avg:1.6
0:10:17 INF [wikidata:fetch] - Fetched batch 155 (5000 qids) 2s cpu:3s avg:1.8
0:10:19 INF [wikidata:fetch] - Fetched batch 156 (5000 qids) 2s cpu:3s avg:1.8
0:10:20 INF [wikidata:fetch] - Fetched batch 157 (5000 qids) 1s cpu:3s avg:2.3
0:10:23 INF [wikidata:fetch] - Fetched batch 158 (5000 qids) 3s cpu:3s avg:1
0:10:23 INF [wikidata] - blocks: [ 41k 10/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 5.7M 370k/s ] wiki: [ 790k 2.9k/s ] 235M
cpus: 1.7 gc: 0% heap: 17G/187G direct: 98k postGC: 1.8G
parse() -> pbf( 0%) -> (95/142) -> filter( 3% 3% 3% 4% 3% 3% 4% 4% 4% 3% 3% 3% 3% 4% 4% 4% 3% 3% 3% 3% 4% 4% 4% 3% 4% 4% 3% 3% 3% 4% 3% 3% 4% 3% 3% 4% 3% 3% 4% 4% 3% 4% 3% 4% 3% 4% 3%) -> (1M/1M) -> fetch( 4%)
0:10:25 INF [wikidata:fetch] - Fetched batch 159 (5000 qids) 2s cpu:3s avg:1.7
0:10:26 INF [wikidata:fetch] - Fetched batch 160 (5000 qids) 1s cpu:4s avg:2.7
0:10:28 INF [wikidata:fetch] - Fetched batch 161 (5000 qids) 1s cpu:3s avg:2.2
0:10:29 INF [wikidata:fetch] - Fetched batch 162 (5000 qids) 1s cpu:4s avg:2.9
0:10:31 INF [wikidata:fetch] - Fetched batch 163 (5000 qids) 2s cpu:4s avg:2.9
0:10:32 INF [wikidata:fetch] - Fetched batch 164 (5000 qids) 2s cpu:3s avg:1.7
0:10:33 INF [wikidata] - blocks: [ 41k 15/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 542k/s ] wiki: [ 820k 2.9k/s ] 241M
cpus: 2 gc: 0% heap: 6G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% 5% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (1M/1M) -> fetch( 9%)
0:10:34 INF [wikidata:fetch] - Fetched batch 165 (5000 qids) 1s cpu:1s avg:0.8
0:10:35 INF [wikidata:fetch] - Fetched batch 166 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:38 INF [wikidata:fetch] - Fetched batch 167 (5000 qids) 2s cpu:0.2s avg:0.1
0:10:40 INF [wikidata:fetch] - Fetched batch 168 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:42 INF [wikidata:fetch] - Fetched batch 169 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:43 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 845k 2.4k/s ] 246M
cpus: 0.1 gc: 0% heap: 6.5G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (975k/1M) -> fetch( 7%)
0:10:43 INF [wikidata:fetch] - Fetched batch 170 (5000 qids) 2s cpu:0.2s avg:0.1
0:10:45 INF [wikidata:fetch] - Fetched batch 171 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:47 INF [wikidata:fetch] - Fetched batch 172 (5000 qids) 1s cpu:0.1s avg:0.1
0:10:49 INF [wikidata:fetch] - Fetched batch 173 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:51 INF [wikidata:fetch] - Fetched batch 174 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:52 INF [wikidata:fetch] - Fetched batch 175 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:53 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 875k 2.9k/s ] 251M
cpus: 0.1 gc: 0% heap: 7G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (943k/1M) -> fetch( 7%)
0:10:54 INF [wikidata:fetch] - Fetched batch 176 (5000 qids) 1s cpu:0.1s avg:0.1
0:10:56 INF [wikidata:fetch] - Fetched batch 177 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:57 INF [wikidata:fetch] - Fetched batch 178 (5000 qids) 2s cpu:0.1s avg:0.1
0:10:59 INF [wikidata:fetch] - Fetched batch 179 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:01 INF [wikidata:fetch] - Fetched batch 180 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:03 INF [wikidata:fetch] - Fetched batch 181 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:03 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 905k 2.9k/s ] 256M
cpus: 0.1 gc: 0% heap: 7.6G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (912k/1M) -> fetch( 7%)
0:11:04 INF [wikidata:fetch] - Fetched batch 182 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:06 INF [wikidata:fetch] - Fetched batch 183 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:07 INF [wikidata:fetch] - Fetched batch 184 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:09 INF [wikidata:fetch] - Fetched batch 185 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:13 INF [wikidata:fetch] - Fetched batch 186 (5000 qids) 4s cpu:0.2s avg:0
0:11:13 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 930k 2.4k/s ] 261M
cpus: 0.1 gc: 0% heap: 8G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (886k/1M) -> fetch( 5%)
0:11:14 INF [wikidata:fetch] - Fetched batch 187 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:15 INF [wikidata:fetch] - Fetched batch 188 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:17 INF [wikidata:fetch] - Fetched batch 189 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:20 INF [wikidata:fetch] - Fetched batch 190 (5000 qids) 3s cpu:0.1s avg:0
0:11:21 INF [wikidata:fetch] - Fetched batch 191 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:22 INF [wikidata:fetch] - Fetched batch 192 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:23 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 960k 2.9k/s ] 266M
cpus: 0.1 gc: 0% heap: 8.5G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (854k/1M) -> fetch( 7%)
0:11:25 INF [wikidata:fetch] - Fetched batch 193 (5000 qids) 3s cpu:0.1s avg:0
0:11:28 INF [wikidata:fetch] - Fetched batch 194 (5000 qids) 2s cpu:0.1s avg:0
0:11:30 INF [wikidata:fetch] - Fetched batch 195 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:33 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 975k 1.4k/s ] 268M
cpus: 0.1 gc: 0% heap: 8.9G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (838k/1M) -> fetch( 4%)
0:11:34 INF [wikidata:fetch] - Fetched batch 196 (5000 qids) 4s cpu:0.2s avg:0
0:11:35 INF [wikidata:fetch] - Fetched batch 197 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:38 INF [wikidata:fetch] - Fetched batch 198 (5000 qids) 2s cpu:0.1s avg:0
0:11:40 INF [wikidata:fetch] - Fetched batch 199 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:41 INF [wikidata:fetch] - Fetched batch 200 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:42 INF [wikidata:fetch] - Fetched batch 201 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:43 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 2.9k/s ] 274M
cpus: 0.1 gc: 0% heap: 9.3G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (806k/1M) -> fetch( 6%)
0:11:43 INF [wikidata:fetch] - Fetched batch 202 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:45 INF [wikidata:fetch] - Fetched batch 203 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:46 INF [wikidata:fetch] - Fetched batch 204 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:49 INF [wikidata:fetch] - Fetched batch 205 (5000 qids) 3s cpu:0.1s avg:0
0:11:51 INF [wikidata:fetch] - Fetched batch 206 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:52 INF [wikidata:fetch] - Fetched batch 207 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:53 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 2.9k/s ] 279M
cpus: 0.1 gc: 0% heap: 9.8G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (774k/1M) -> fetch( 5%)
0:11:53 INF [wikidata:fetch] - Fetched batch 208 (5000 qids) 2s cpu:0.1s avg:0.1
0:11:55 INF [wikidata:fetch] - Fetched batch 209 (5000 qids) 1s cpu:0.1s avg:0.1
0:11:58 INF [wikidata:fetch] - Fetched batch 210 (5000 qids) 3s cpu:0.1s avg:0
0:11:59 INF [wikidata:fetch] - Fetched batch 211 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:01 INF [wikidata:fetch] - Fetched batch 212 (5000 qids) 2s cpu:0.1s avg:0.1
0:12:02 INF [wikidata:fetch] - Fetched batch 213 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:03 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 2.9k/s ] 283M
cpus: 0.1 gc: 0% heap: 10G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (740k/1M) -> fetch( 5%)
0:12:04 INF [wikidata:fetch] - Fetched batch 214 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:05 INF [wikidata:fetch] - Fetched batch 215 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:08 INF [wikidata:fetch] - Fetched batch 216 (5000 qids) 3s cpu:0.1s avg:0
0:12:09 INF [wikidata:fetch] - Fetched batch 217 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:11 INF [wikidata:fetch] - Fetched batch 218 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:13 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 2.4k/s ] 287M
cpus: 0.1 gc: 0% heap: 10G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (713k/1M) -> fetch( 4%)
0:12:15 INF [wikidata:fetch] - Fetched batch 219 (5000 qids) 4s cpu:0.1s avg:0
0:12:16 INF [wikidata:fetch] - Fetched batch 220 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:17 INF [wikidata:fetch] - Fetched batch 221 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:20 INF [wikidata:fetch] - Fetched batch 222 (5000 qids) 2s cpu:0.1s avg:0
0:12:21 INF [wikidata:fetch] - Fetched batch 223 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:22 INF [wikidata:fetch] - Fetched batch 224 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:23 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.1M 2.9k/s ] 291M
cpus: 0.1 gc: 0% heap: 10G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (680k/1M) -> fetch( 4%)
0:12:25 INF [wikidata:fetch] - Fetched batch 225 (5000 qids) 3s cpu:0.1s avg:0
0:12:27 INF [wikidata:fetch] - Fetched batch 226 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:28 INF [wikidata:fetch] - Fetched batch 227 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:29 INF [wikidata:fetch] - Fetched batch 228 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:31 INF [wikidata:fetch] - Fetched batch 229 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:32 INF [wikidata:fetch] - Fetched batch 230 (5000 qids) 1s cpu:0.1s avg:0
0:12:33 INF [wikidata:fetch] - Fetched batch 231 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:33 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.1M 3.4k/s ] 295M
cpus: 0.1 gc: 0% heap: 11G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (642k/1M) -> fetch( 5%)
0:12:35 INF [wikidata:fetch] - Fetched batch 232 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:39 INF [wikidata:fetch] - Fetched batch 233 (5000 qids) 5s cpu:0.1s avg:0
0:12:41 INF [wikidata:fetch] - Fetched batch 234 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:43 INF [wikidata:fetch] - Fetched batch 235 (5000 qids) 2s cpu:0.1s avg:0
0:12:43 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.1M 1.9k/s ] 298M
cpus: 0 gc: 0% heap: 11G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (621k/1M) -> fetch( 3%)
0:12:44 INF [wikidata:fetch] - Fetched batch 236 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:45 INF [wikidata:fetch] - Fetched batch 237 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:49 INF [wikidata:fetch] - Fetched batch 238 (5000 qids) 3s cpu:0.1s avg:0
0:12:51 INF [wikidata:fetch] - Fetched batch 239 (5000 qids) 2s cpu:0.2s avg:0.1
0:12:52 INF [wikidata:fetch] - Fetched batch 240 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:53 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 2.4k/s ] 301M
cpus: 0.1 gc: 0% heap: 11G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (594k/1M) -> fetch( 4%)
0:12:55 INF [wikidata:fetch] - Fetched batch 241 (5000 qids) 3s cpu:0.1s avg:0
0:12:57 INF [wikidata:fetch] - Fetched batch 242 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:58 INF [wikidata:fetch] - Fetched batch 243 (5000 qids) 1s cpu:0.1s avg:0.1
0:12:59 INF [wikidata:fetch] - Fetched batch 244 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:01 INF [wikidata:fetch] - Fetched batch 245 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:02 INF [wikidata:fetch] - Fetched batch 246 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:03 INF [wikidata:fetch] - Fetched batch 247 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:03 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 3.4k/s ] 306M
cpus: 0.1 gc: 0% heap: 12G/187G direct: 98k postGC: 1.7G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (556k/1M) -> fetch( 5%)
0:13:05 INF [wikidata:fetch] - Fetched batch 248 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:06 INF [wikidata:fetch] - Fetched batch 249 (5000 qids) 1s cpu:1s avg:1
0:13:07 INF [wikidata:fetch] - Fetched batch 250 (5000 qids) 1s cpu:0.8s avg:0.6
0:13:09 INF [wikidata:fetch] - Fetched batch 251 (5000 qids) 1s cpu:0.8s avg:0.6
0:13:10 INF [wikidata:fetch] - Fetched batch 252 (5000 qids) 1s cpu:0.8s avg:0.6
0:13:13 INF [wikidata:fetch] - Fetched batch 253 (5000 qids) 2s cpu:0.4s avg:0.2
0:13:13 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 2.9k/s ] 310M
cpus: 0.5 gc: 0% heap: 1G/187G direct: 98k postGC: 1.4G
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (522k/1M) -> fetch( 4%)
0:13:14 INF [wikidata:fetch] - Fetched batch 254 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:15 INF [wikidata:fetch] - Fetched batch 255 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:17 INF [wikidata:fetch] - Fetched batch 256 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:18 INF [wikidata:fetch] - Fetched batch 257 (5000 qids) 2s cpu:0.1s avg:0
0:13:21 INF [wikidata:fetch] - Fetched batch 258 (5000 qids) 2s cpu:0.3s avg:0.1
0:13:22 INF [wikidata:fetch] - Fetched batch 259 (5000 qids) 1s cpu:0.2s avg:0.2
0:13:23 INF [wikidata:fetch] - Fetched batch 260 (5000 qids) 1s cpu:0.2s avg:0.1
0:13:23 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 3.4k/s ] 314M
cpus: 0.1 gc: 0% heap: 172M/187G direct: 98k postGC: 199M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (484k/1M) -> fetch( 5%)
0:13:25 INF [wikidata:fetch] - Fetched batch 261 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:26 INF [wikidata:fetch] - Fetched batch 262 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:27 INF [wikidata:fetch] - Fetched batch 263 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:29 INF [wikidata:fetch] - Fetched batch 264 (5000 qids) 2s cpu:0.1s avg:0
0:13:30 INF [wikidata:fetch] - Fetched batch 265 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:32 INF [wikidata:fetch] - Fetched batch 266 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:33 INF [wikidata:fetch] - Fetched batch 267 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:33 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 3.4k/s ] 319M
cpus: 0.1 gc: 0% heap: 551M/187G direct: 98k postGC: 199M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (445k/1M) -> fetch( 5%)
0:13:34 INF [wikidata:fetch] - Fetched batch 268 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:36 INF [wikidata:fetch] - Fetched batch 269 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:37 INF [wikidata:fetch] - Fetched batch 270 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:38 INF [wikidata:fetch] - Fetched batch 271 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:39 INF [wikidata:fetch] - Fetched batch 272 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:41 INF [wikidata:fetch] - Fetched batch 273 (5000 qids) 2s cpu:0.1s avg:0
0:13:43 INF [wikidata:fetch] - Fetched batch 274 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:43 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 3.4k/s ] 323M
cpus: 0.1 gc: 0% heap: 170M/187G direct: 98k postGC: 185M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (406k/1M) -> fetch( 5%)
0:13:44 INF [wikidata:fetch] - Fetched batch 275 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:45 INF [wikidata:fetch] - Fetched batch 276 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:47 INF [wikidata:fetch] - Fetched batch 277 (5000 qids) 1s cpu:0.1s avg:0
0:13:48 INF [wikidata:fetch] - Fetched batch 278 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:50 INF [wikidata:fetch] - Fetched batch 279 (5000 qids) 2s cpu:0.1s avg:0.1
0:13:53 INF [wikidata:fetch] - Fetched batch 280 (5000 qids) 3s cpu:0.1s avg:0
0:13:53 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 2.9k/s ] 327M
cpus: 0.1 gc: 0% heap: 505M/187G direct: 98k postGC: 185M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (372k/1M) -> fetch( 4%)
0:13:55 INF [wikidata:fetch] - Fetched batch 281 (5000 qids) 2s cpu:0.1s avg:0.1
0:13:56 INF [wikidata:fetch] - Fetched batch 282 (5000 qids) 1s cpu:0.1s avg:0.1
0:13:58 INF [wikidata:fetch] - Fetched batch 283 (5000 qids) 2s cpu:0.1s avg:0.1
0:13:59 INF [wikidata:fetch] - Fetched batch 284 (5000 qids) 1s cpu:0.1s avg:0
0:14:00 INF [wikidata:fetch] - Fetched batch 285 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:02 INF [wikidata:fetch] - Fetched batch 286 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:03 INF [wikidata:fetch] - Fetched batch 287 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:03 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 3.4k/s ] 332M
cpus: 0.1 gc: 0% heap: 887M/187G direct: 98k postGC: 185M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (333k/1M) -> fetch( 5%)
0:14:05 INF [wikidata:fetch] - Fetched batch 288 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:06 INF [wikidata:fetch] - Fetched batch 289 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:08 INF [wikidata:fetch] - Fetched batch 290 (5000 qids) 1s cpu:0.1s avg:0
0:14:09 INF [wikidata:fetch] - Fetched batch 291 (5000 qids) 1s cpu:0.1s avg:0
0:14:10 INF [wikidata:fetch] - Fetched batch 292 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:12 INF [wikidata:fetch] - Fetched batch 293 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:13 INF [wikidata:fetch] - Fetched batch 294 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:13 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 3.4k/s ] 336M
cpus: 0.1 gc: 0% heap: 436M/187G direct: 98k postGC: 183M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (293k/1M) -> fetch( 5%)
0:14:15 INF [wikidata:fetch] - Fetched batch 295 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:16 INF [wikidata:fetch] - Fetched batch 296 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:17 INF [wikidata:fetch] - Fetched batch 297 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:18 INF [wikidata:fetch] - Fetched batch 298 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:20 INF [wikidata:fetch] - Fetched batch 299 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:21 INF [wikidata:fetch] - Fetched batch 300 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:23 INF [wikidata:fetch] - Fetched batch 301 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:23 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.5M 3.4k/s ] 340M
cpus: 0.1 gc: 0% heap: 805M/187G direct: 98k postGC: 183M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (250k/1M) -> fetch( 5%)
0:14:24 INF [wikidata:fetch] - Fetched batch 302 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:25 INF [wikidata:fetch] - Fetched batch 303 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:27 INF [wikidata:fetch] - Fetched batch 304 (5000 qids) 2s cpu:0.1s avg:0
0:14:28 INF [wikidata:fetch] - Fetched batch 305 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:30 INF [wikidata:fetch] - Fetched batch 306 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:31 INF [wikidata:fetch] - Fetched batch 307 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:32 INF [wikidata:fetch] - Fetched batch 308 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:33 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.5M 3.4k/s ] 345M
cpus: 0.1 gc: 0% heap: 338M/187G direct: 98k postGC: 182M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (207k/1M) -> fetch( 5%)
0:14:34 INF [wikidata:fetch] - Fetched batch 309 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:35 INF [wikidata:fetch] - Fetched batch 310 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:36 INF [wikidata:fetch] - Fetched batch 311 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:38 INF [wikidata:fetch] - Fetched batch 312 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:39 INF [wikidata:fetch] - Fetched batch 313 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:40 INF [wikidata:fetch] - Fetched batch 314 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:14:41 INF [wikidata:fetch] - Fetched batch 315 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:42 INF [wikidata:fetch] - Fetched batch 316 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:43 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.5M 3.9k/s ] 349M
cpus: 0.1 gc: 0% heap: 790M/187G direct: 98k postGC: 182M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (151k/1M) -> fetch( 5%)
0:14:44 INF [wikidata:fetch] - Fetched batch 317 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:46 INF [wikidata:fetch] - Fetched batch 318 (5000 qids) 2s cpu:0.1s avg:0
0:14:47 INF [wikidata:fetch] - Fetched batch 319 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:48 INF [wikidata:fetch] - Fetched batch 320 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:50 INF [wikidata:fetch] - Fetched batch 321 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:51 INF [wikidata:fetch] - Fetched batch 322 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:53 INF [wikidata:fetch] - Fetched batch 323 (5000 qids) 2s cpu:0.1s avg:0.1
0:14:53 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.6M 3.4k/s ] 354M
cpus: 0.1 gc: 0% heap: 313M/187G direct: 98k postGC: 226M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (96k/1M) -> fetch( 5%)
0:14:54 INF [wikidata:fetch] - Fetched batch 324 (5000 qids) 1s cpu:0.1s avg:0.1
0:14:56 INF [wikidata:fetch] - Fetched batch 325 (5000 qids) 2s cpu:0.2s avg:0.1
0:14:57 INF [wikidata:fetch] - Fetched batch 326 (5000 qids) 1s cpu:0.2s avg:0.1
0:14:59 INF [wikidata:fetch] - Fetched batch 327 (5000 qids) 1s cpu:0.1s avg:0.1
0:15:00 INF [wikidata:fetch] - Fetched batch 328 (5000 qids) 1s cpu:0.2s avg:0.1
0:15:02 INF [wikidata:fetch] - Fetched batch 329 (5000 qids) 2s cpu:0.2s avg:0.1
0:15:03 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.6M 2.9k/s ] 361M
cpus: 0.1 gc: 0% heap: 936M/187G direct: 98k postGC: 226M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (62k/1M) -> fetch( 8%)
0:15:05 INF [wikidata:fetch] - Fetched batch 330 (5000 qids) 2s cpu:0.3s avg:0.2
0:15:06 INF [wikidata:fetch] - Fetched batch 331 (5000 qids) 1s cpu:0.2s avg:0.1
0:15:07 INF [wikidata:fetch] - Fetched batch 332 (5000 qids) 1s cpu:0.1s avg:0.1
0:15:13 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.6M 1.4k/s ] 364M
cpus: 0.1 gc: 0% heap: 526M/187G direct: 98k postGC: 266M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (46k/1M) -> fetch( 5%)
0:15:14 INF [wikidata:fetch] - Fetched batch 333 (5000 qids) 6s cpu:0.2s avg:0
0:15:17 INF [wikidata:fetch] - Fetched batch 334 (5000 qids) 3s cpu:0.2s avg:0
0:15:19 INF [wikidata:fetch] - Fetched batch 335 (5000 qids) 2s cpu:0.1s avg:0.1
0:15:21 INF [wikidata:fetch] - Fetched batch 336 (5000 qids) 2s cpu:0.1s avg:0.1
0:15:22 INF [wikidata:fetch] - Fetched batch 337 (5000 qids) 1s cpu:0.1s avg:0.1
0:15:23 INF [wikidata:fetch] - Fetched batch 338 (5000 qids) 1s cpu:0.1s avg:0.1
0:15:23 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.6M 2.9k/s ] 371M
cpus: 0.1 gc: 0% heap: 1G/187G direct: 98k postGC: 266M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (12k/1M) -> fetch( 7%)
0:15:25 INF [wikidata:fetch] - Fetched batch 339 (5000 qids) 1s cpu:0.2s avg:0.1
0:15:27 INF [wikidata:fetch] - Fetched batch 340 (5000 qids) 2s cpu:0.1s avg:0.1
0:15:28 INF [wikidata:fetch] - Fetched batch 341 (5000 qids) 1s cpu:0.1s avg:0.1
0:15:29 INF [wikidata:fetch] - Fetched batch 342 (1083 qids) 0.8s cpu:0s avg:0
0:15:29 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 960M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.7M 2.8k/s ] 374M
cpus: 0.1 gc: 0% heap: 441M/187G direct: 82k postGC: 220M
parse() -> pbf( -%) -> (0/142) -> filter( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/1M) -> fetch( -%)
0:15:29 INF [wikidata] - DONE fetched:1706083
0:15:29 INF [wikidata] - Finished in 10m57s cpu:1h32m30s gc:3s avg:8.5
0:15:29 INF [wikidata] - pbf 1x(0% 3s sys:1s wait:5m50s done:5m4s)
0:15:29 INF [wikidata] - filter 47x(17% 1m54s sys:2s wait:4m done:4m57s)
0:15:29 INF [wikidata] - fetch 1x(8% 54s sys:2s wait:10m2s)
0:15:40 INF - loaded from 1704538 mappings from /root/data/sources/wikidata_names.json in 11s cpu:50s avg:4.4
0:15:40 DEB - ✓ 251G storage on / (/dev/sda1) requested for read phase disk, 887G available
0:15:40 DEB - - 251G used for temporary feature storage
0:15:40 DEB - ✓ 377G storage on / (/dev/sda1) requested for write phase disk, 887G available
0:15:40 DEB - - 251G used for temporary feature storage
0:15:40 DEB - - 125G used for archive output
0:15:40 DEB - ✓ 120G JVM heap requested for read phase, 187G available
0:15:40 DEB - - 86G used for array node location cache (switch to sparsearray to reduce size)
0:15:40 DEB - - 11G used for multipolygon way geometries
0:15:40 DEB - - 22G used for temporary profile storage
0:15:40 DEB - ✓ 0 temporary files and 9.9G of free memory for OS to cache them
0:15:40 DEB - argument: archive_name=OpenMapTiles ('name' attribute for tileset metadata)
0:15:40 DEB - argument: archive_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for tileset metadata)
0:15:40 DEB - argument: archive_attribution=<a href="https://www.openmaptiles.org/" target="_blank">&copy; OpenMapTiles</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a> ('attribution' attribute for tileset metadata)
0:15:40 DEB - argument: archive_version=3.14.0 ('version' attribute for tileset metadata)
0:15:40 DEB - argument: archive_type=baselayer ('type' attribute for tileset metadata)
0:15:40 DEB - argument: archive_format=pbf ('format' attribute for tileset metadata)
0:15:41 DEB - argument: compact=true (mbtiles: reduce the DB size by separating and deduping the tile data)
0:15:41 DEB - argument: no_index=false (mbtiles: skip adding index to sqlite DB)
0:15:41 DEB - argument: vacuum_analyze=false (mbtiles: vacuum analyze sqlite DB after writing)
0:15:41 INF - Using merge sort feature map, chunk size=2000mb max workers=48
0:15:41 INF [lake_centerlines] -
0:15:41 INF [lake_centerlines] - Starting...
0:15:45 INF [lake_centerlines] - read: [ 59k 100% 21k/s ] write: [ 0 0/s ] 0
cpus: 3.3 gc: 0% heap: 4.9G/187G direct: 245k postGC: 2G
-> (0/4) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/98k) -> write( -% -%)
0:15:45 INF [lake_centerlines] - Finished in 4s cpu:18s avg:4.5
0:15:45 INF [lake_centerlines] - read 2x(25% 1s done:3s)
0:15:45 INF [lake_centerlines] - process 46x(2% 0.1s wait:3s done:1s)
0:15:45 INF [lake_centerlines] - write 2x(0% 0s wait:3s done:1s)
0:15:45 INF [water_polygons] -
0:15:45 INF [water_polygons] - Starting...
0:15:55 INF [water_polygons] - read: [ 1.4k 10% 142/s ] write: [ 8.2M 828k/s ] 4G
cpus: 43.4 gc: 11% heap: 14G/187G direct: 54M postGC: 4.8G
-> (0/4) -> read(78%) -> (698/1k) -> process(78% 74% 74% 81% 81% 76% 80% 76% 78% 75% 77% 75% 74% 78% 75% 75% 76% 79% 76% 76% 80% 76% 74% 73% 75% 80% 77% 77% 78% 75% 72% 76% 77% 77% 77% 78% 76% 76% 81% 74% 78% 77% 78% 75% 75% 77%) -> (22k/98k) -> write(12% 13%)
0:16:05 INF [water_polygons] - read: [ 3k 21% 162/s ] write: [ 17M 938k/s ] 4G
cpus: 45.9 gc: 6% heap: 19G/187G direct: 54M postGC: 6.4G
-> (0/4) -> read(75%) -> (1k/1k) -> process(93% 93% 93% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94% 94% 94% 93% 94% 94% 93% 93% 94% 94% 94% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 93% 94%) -> (23k/98k) -> write(13% 13%)
0:16:15 INF [water_polygons] - read: [ 4.8k 33% 179/s ] write: [ 28M 1.1M/s ] 4G
cpus: 45.7 gc: 6% heap: 32G/187G direct: 54M postGC: 6.5G
-> (0/4) -> read(61%) -> (926/1k) -> process(93% 93% 94% 94% 94% 92% 92% 94% 93% 94% 93% 94% 94% 92% 94% 93% 93% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 93% 94% 93% 93% 94% 94% 94% 94% 94% 92% 94% 94% 93% 94% 94% 93% 93% 94% 93%) -> (21k/98k) -> write(14% 14%)
0:16:25 INF [water_polygons] - read: [ 7.1k 49% 229/s ] write: [ 53M 2.4M/s ] 6.1G
cpus: 44.4 gc: 3% heap: 8.6G/187G direct: 54M postGC: 6.1G
-> (0/4) -> read(24%) -> (1k/1k) -> process(87% 96% 88% 90% 97% 87% 89% 90% 97% 88% 96% 97% 88% 97% 89% 89% 88% 88% 88% 96% 97% 97% 97% 89% 93% 89% 97% 97% 97% 88% 97% 88% 97% 89% 97% 97% 89% 95% 89% 89% 96% 95% 89% 89% 94% 90%) -> (83k/98k) -> write(33% 33%)
0:16:35 INF [water_polygons] - read: [ 12k 86% 525/s ] write: [ 174M 12M/s ] 11G
cpus: 24.3 gc: 1% heap: 27G/187G direct: 54M postGC: 5.4G
-> (0/4) -> read( 2%) -> (1k/1k) -> process(39% 44% 43% 42% 49% 41% 41% 41% 46% 41% 42% 70% 40% 48% 40% 39% 40% 40% 39% 56% 48% 66% 79% 42% 41% 41% 59% 58% 78% 40% 44% 39% 95% 40% 99% 47% 40% 40% 42% 41% 42% 41% 41% 40% 41% 40%) -> (90k/98k) -> write(99% 98%)
0:16:39 INF [water_polygons] - read: [ 14k 100% 471/s ] write: [ 222M 10M/s ] 10G
cpus: 17.1 gc: 0% heap: 35G/187G direct: 54M postGC: 5.3G
-> (0/4) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/98k) -> write( -% -%)
0:16:39 INF [water_polygons] - Finished in 55s cpu:35m20s gc:3s avg:38.8
0:16:39 INF [water_polygons] - read 2x(22% 12s sys:1s wait:12s done:29s)
0:16:39 INF [water_polygons] - process 46x(77% 42s sys:3s wait:8s)
0:16:39 INF [water_polygons] - write 2x(38% 21s sys:6s wait:32s)
0:16:39 INF [natural_earth] -
0:16:39 INF [natural_earth] - Starting...
0:16:39 INF [natural_earth] - unzipping /root/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:16:45 INF [natural_earth] - unzipping /root/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:16:55 INF [natural_earth] - read: [ 52k 15% 5.2k/s ] write: [ 0 0/s ] 14G
cpus: 2 gc: 0% heap: 37G/187G direct: 54M postGC: 5.3G
-> (0/4) -> read(96%) -> (0/1k) -> process( 1% 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% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1% 1%) -> (681/98k) -> write( 0% 0%)
0:17:05 INF [natural_earth] - read: [ 349k 100% 31k/s ] write: [ 33k 3.5k/s ] 10G
cpus: 3.9 gc: 0% heap: 43G/187G direct: 54M postGC: 5.3G
-> (0/4) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/98k) -> write( -% -%)
0:17:05 INF [natural_earth] - Finished in 26s cpu:1m4s avg:2.5
0:17:05 INF [natural_earth] - read 2x(31% 8s wait:2s done:16s)
0:17:05 INF [natural_earth] - process 46x(2% 0.6s wait:19s done:6s)
0:17:05 INF [natural_earth] - write 2x(0% 0s wait:20s done:6s)
0:17:05 INF [osm_pass1] -
0:17:05 INF [osm_pass1] - Starting...
0:17:15 INF [osm_pass1] - nodes: [ 698M 68M/s ] 8.6G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3k 300/s ]
cpus: 46.1 gc: 5% heap: 15G/187G direct: 54M postGC: 14G hppc: 1k
read( 2%) -> (92/142) -> process(95% 95% 94% 95% 95% 95% 95% 95% 95% 94% 95% 94% 95% 95% 95% 95% 95% 95% 94% 94% 95% 94% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 94% 94%)
0:17:25 INF [osm_pass1] - nodes: [ 1.4B 70M/s ] 16G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.9k 291/s ]
cpus: 45.9 gc: 6% heap: 33G/187G direct: 54M postGC: 21G hppc: 1k
read( 2%) -> (95/142) -> process(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 94% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%)
0:17:35 INF [osm_pass1] - nodes: [ 2.1B 74M/s ] 23G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.7k 272/s ]
cpus: 46 gc: 6% heap: 65G/187G direct: 54M postGC: 28G hppc: 1k
read( 1%) -> (95/142) -> process(94% 94% 94% 94% 93% 93% 94% 94% 94% 93% 94% 93% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 93% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94% 93%)
0:17:45 INF [osm_pass1] - nodes: [ 2.9B 78M/s ] 31G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 238/s ]
cpus: 45.8 gc: 6% heap: 39G/187G direct: 54M postGC: 38G hppc: 1k
read( 1%) -> (95/142) -> process(94% 94% 94% 94% 94% 93% 93% 94% 94% 94% 93% 94% 93% 94% 93% 94% 94% 94% 94% 94% 93% 94% 93% 94% 93% 94% 94% 94% 94% 94% 93% 94% 94% 93% 93% 93% 93% 94% 94% 94% 94% 93% 94% 94% 94% 93% 94%)
0:17:55 INF [osm_pass1] - nodes: [ 3.7B 81M/s ] 39G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 13k 236/s ]
cpus: 46.1 gc: 4% heap: 75G/187G direct: 54M postGC: 45G hppc: 1k
read( 1%) -> (95/142) -> process(96% 95% 96% 96% 95% 96% 96% 96% 96% 96% 95% 96% 96% 95% 96% 95% 95% 96% 95% 96% 95% 96% 96% 96% 96% 96% 96% 96% 95% 96% 95% 96% 96% 96% 95% 96% 96% 95% 96% 96% 95% 96% 96% 95% 96% 95% 96%)
0:18:05 INF [osm_pass1] - nodes: [ 4.5B 79M/s ] 47G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 227/s ]
cpus: 45.8 gc: 6% heap: 68G/187G direct: 54M postGC: 54G hppc: 1k
read( 1%) -> (93/142) -> process(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%)
0:18:15 INF [osm_pass1] - nodes: [ 5.3B 80M/s ] 55G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 229/s ]
cpus: 45.9 gc: 5% heap: 74G/187G direct: 54M postGC: 62G hppc: 1k
read( 1%) -> (95/142) -> process(95% 95% 95% 94% 94% 95% 94% 95% 94% 94% 95% 94% 94% 95% 95% 95% 95% 95% 95% 94% 94% 95% 95% 95% 94% 95% 95% 94% 95% 95% 94% 94% 94% 95% 94% 95% 94% 95% 95% 95% 95% 94% 94% 95% 95% 94% 95%)
0:18:25 INF [osm_pass1] - nodes: [ 6.1B 80M/s ] 63G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 20k 227/s ]
cpus: 45.6 gc: 6% heap: 74G/187G direct: 54M postGC: 71G hppc: 1k
read( 1%) -> (95/142) -> process(93% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 93% 93% 94% 93% 94% 94% 94% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%)
0:18:35 INF [osm_pass1] - nodes: [ 6.9B 76M/s ] 71G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 213/s ]
cpus: 44 gc: 7% heap: 81G/187G direct: 54M postGC: 79G hppc: 1k
read( 1%) -> (95/142) -> process(90% 90% 90% 90% 90% 90% 90% 89% 89% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 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% 90%)
0:18:45 INF [osm_pass1] - nodes: [ 7.6B 73M/s ] 78G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 203/s ]
cpus: 42.9 gc: 7% heap: 93G/187G direct: 54M postGC: 89G hppc: 1k
read( 1%) -> (95/142) -> process(87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 88% 87% 87% 87% 87% 87% 87% 87% 88% 87% 87% 87% 87% 87% 89% 87% 87% 87% 87% 87% 87% 87% 87% 87% 88% 87% 88% 87% 87% 87% 87% 87% 87% 87% 87%)
0:18:55 INF [osm_pass1] - nodes: [ 7.9B 30M/s ] 81G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 83/s ]
cpus: 37.7 gc: 10% heap: 97G/187G direct: 54M postGC: 89G hppc: 1k
read( 1%) -> (95/142) -> process(64% 74% 71% 71% 65% 68% 69% 75% 73% 77% 69% 62% 59% 64% 57% 64% 69% 73% 78% 73% 67% 72% 70% 71% 57% 68% 66% 76% 74% 73% 75% 63% 65% 73% 74% 71% 70% 72% 70% 67% 72% 69% 63% 72% 67% 72% 74%)
0:19:05 INF [osm_pass1] - nodes: [ 8.4B 47M/s ] 87G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 26k 134/s ]
cpus: 40 gc: 13% heap: 123G/187G direct: 54M postGC: 95G hppc: 1k
read( 1%) -> (95/142) -> process(73% 75% 74% 77% 82% 80% 79% 78% 73% 78% 76% 78% 74% 78% 68% 76% 79% 72% 81% 79% 78% 80% 77% 76% 77% 78% 79% 81% 82% 76% 78% 69% 77% 77% 78% 78% 71% 76% 79% 69% 77% 76% 74% 79% 77% 80% 79%)
0:19:08 INF [osm_pass1:process] - Finished nodes: 8,567,543,086 (69M/s) in 2m3s cpu:1h30m29s gc:8s avg:44.2
0:19:15 INF [osm_pass1] - nodes: [ 8.5B 11M/s ] 88G ways: [ 72M 7.2M/s ] rels: [ 0 0/s ] blocks: [ 28k 185/s ]
cpus: 41.3 gc: 7% heap: 144G/187G direct: 54M postGC: 97G hppc: 1k
read( 2%) -> (95/142) -> process(83% 82% 85% 84% 84% 84% 82% 83% 80% 80% 83% 80% 82% 86% 82% 83% 82% 84% 82% 82% 85% 81% 83% 79% 81% 86% 87% 84% 80% 83% 81% 87% 81% 85% 80% 82% 84% 85% 83% 85% 81% 84% 83% 84% 78% 81% 86%)
0:19:25 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 179M 10M/s ] rels: [ 0 0/s ] blocks: [ 30k 171/s ]
cpus: 41 gc: 4% heap: 101G/187G direct: 54M postGC: 97G hppc: 1k
read( 3%) -> (94/142) -> process(88% 85% 86% 86% 84% 86% 86% 87% 86% 83% 86% 87% 85% 90% 84% 84% 83% 78% 87% 86% 86% 88% 87% 87% 81% 81% 82% 81% 88% 78% 80% 89% 77% 89% 86% 88% 87% 84% 88% 82% 79% 83% 82% 81% 86% 86% 86%)
0:19:35 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 356M 17M/s ] rels: [ 0 0/s ] blocks: [ 32k 272/s ]
cpus: 43.8 gc: 2% heap: 110G/187G direct: 54M postGC: 97G hppc: 1k
read( 2%) -> (86/142) -> process(91% 92% 92% 92% 92% 92% 91% 94% 92% 92% 93% 91% 91% 90% 92% 92% 92% 91% 91% 93% 94% 91% 92% 92% 92% 91% 93% 90% 91% 92% 92% 91% 91% 90% 90% 92% 92% 93% 90% 94% 93% 92% 92% 92% 91% 92% 90%)
0:19:45 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 559M 20M/s ] rels: [ 0 0/s ] blocks: [ 35k 279/s ]
cpus: 44.6 gc: 1% heap: 136G/187G direct: 54M postGC: 97G hppc: 1k
read( 2%) -> (95/142) -> process(94% 94% 95% 94% 96% 95% 95% 95% 95% 94% 94% 94% 95% 94% 94% 94% 94% 94% 95% 94% 94% 93% 93% 94% 95% 94% 95% 94% 94% 94% 94% 93% 96% 95% 95% 95% 94% 94% 94% 95% 95% 95% 94% 94% 95% 94% 93%)
0:19:55 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 761M 20M/s ] rels: [ 0 0/s ] blocks: [ 38k 282/s ]
cpus: 44.5 gc: 1% heap: 105G/187G direct: 54M postGC: 97G hppc: 1k
read( 2%) -> (95/142) -> process(94% 94% 95% 95% 94% 94% 94% 94% 94% 94% 94% 94% 94% 95% 94% 94% 95% 94% 94% 93% 94% 94% 93% 94% 94% 94% 93% 95% 94% 94% 94% 95% 93% 93% 94% 95% 94% 94% 93% 94% 93% 93% 94% 95% 95% 94% 94%)
0:20:05 INF [osm_pass1:process] - Finished ways: 960,779,416 (16M/s) in 57s cpu:41m27s gc:1s avg:43.5
0:20:05 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 960M 19M/s ] rels: [ 133k 13k/s ] blocks: [ 41k 277/s ]
cpus: 43.7 gc: 1% heap: 125G/187G direct: 54M postGC: 97G hppc: 15M
read( 3%) -> (95/142) -> process(92% 91% 91% 91% 92% 91% 90% 91% 94% 90% 91% 91% 91% 91% 91% 91% 92% 91% 94% 91% 91% 91% 91% 91% 94% 91% 91% 91% 90% 91% 91% 90% 92% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 92% 91%)
0:20:15 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 960M 0/s ] rels: [ 3.5M 336k/s ] blocks: [ 41k 10/s ]
cpus: 13.7 gc: 0% heap: 112G/187G direct: 54M postGC: 97G hppc: 313M
read( 0%) -> (95/142) -> process(14% 14% 15% 14% 12% 14% 14% 13% 12% 16% 17% 15% 16% 13% 15% 14% 13% 13% 10% 15% 13% 13% 15% 15% 11% 14% 14% 13% 15% 17% 13% 13% 14% 15% 13% 16% 13% 17% 13% 12% 14% 14% 13% 14% 14% 13% 16%)
0:20:25 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 960M 0/s ] rels: [ 8.1M 465k/s ] blocks: [ 41k 13/s ]
cpus: 10.8 gc: 0% heap: 129G/187G direct: 54M postGC: 97G hppc: 501M
read( -%) -> (63/142) -> process(13% 14% 14% 12% 13% 13% 14% 14% 11% 11% 11% 15% 11% 11% 14% 14% 14% 12% 12% 14% 14% 13% 15% 13% 11% 14% 14% 12% 14% 12% 13% 13% 13% 12% 13% 15% 14% 15% 11% 14% 14% 13% 14% 14% 14% 14% 10%)
0:20:32 INF [osm_pass1:process] - Finished relations: 11,197,118 (416k/s) in 27s cpu:5m3s avg:11.3
0:20:32 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 88G ways: [ 960M 0/s ] rels: [ 11M 484k/s ] blocks: [ 41k 17/s ]
cpus: 7.4 gc: 0% heap: 139G/187G direct: 54M postGC: 97G hppc: 696M
read( -%) -> (0/142) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
0:20:32 DEB [osm_pass1] - Processed 41,721 blocks:
0:20:32 DEB [osm_pass1] - nodes: 8,567,543,086 (69M/s) in 2m3s cpu:1h30m29s gc:8s avg:44.2
0:20:32 DEB [osm_pass1] - ways: 960,779,416 (16M/s) in 57s cpu:41m27s gc:1s avg:43.5
0:20:32 DEB [osm_pass1] - relations: 11,197,118 (416k/s) in 27s cpu:5m3s avg:11.3
0:20:32 INF [osm_pass1] - Finished in 3m27s cpu:2h16m57s gc:10s avg:39.8
0:20:32 INF [osm_pass1] - read 1x(1% 3s sys:2s wait:3m5s done:9s)
0:20:32 INF [osm_pass1] - process 47x(80% 2m45s sys:11s block:24s)
0:20:32 INF [osm_pass2] -
0:20:32 INF [osm_pass2] - Starting...
0:20:42 INF [osm_pass2] - nodes: [ 62M 1% 6.2M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 226M 429k/s ] 14G blocks: [ 274 1% 27/s ]
cpus: 39.5 gc: 4% heap: 105G/187G direct: 54M postGC: 98G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(71% 66% 69% 69% 70% 68% 69% 66% 70% 70% 68% 69% 63% 73% 69% 70% 72% 68% 67% 73% 69% 67% 67% 70% 74% 69% 69% 66% 68% 74% 72% 72% 72% 67% 75% 68% 63% 60% 68% 61% 68% 70% 67% 73% 68% 72%) -> (69k/98k) -> write(34% 33%)
0:20:52 INF [osm_pass2] - nodes: [ 241M 3% 17M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 247M 2M/s ] 17G blocks: [ 1.1k 3% 83/s ]
cpus: 42.8 gc: 4% heap: 125G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(70% 70% 71% 72% 74% 71% 70% 69% 76% 70% 71% 71% 73% 74% 72% 73% 69% 69% 72% 69% 69% 66% 74% 76% 68% 74% 72% 71% 71% 67% 68% 75% 67% 74% 73% 72% 73% 72% 72% 72% 77% 72% 75% 71% 72% 69%) -> (82k/98k) -> write(75% 76%)
0:21:02 INF [osm_pass2] - nodes: [ 479M 6% 23M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 267M 2M/s ] 20G blocks: [ 2k 5% 95/s ]
cpus: 42.5 gc: 3% heap: 138G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(71% 71% 70% 68% 74% 65% 63% 64% 67% 73% 69% 70% 72% 69% 69% 71% 69% 69% 71% 67% 69% 65% 72% 65% 71% 74% 68% 64% 68% 70% 68% 75% 70% 71% 69% 69% 68% 69% 65% 66% 71% 67% 65% 63% 68% 70%) -> (23k/98k) -> write(74% 73%)
0:21:12 INF [osm_pass2] - nodes: [ 837M 10% 35M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 282M 1.4M/s ] 23G blocks: [ 3.6k 9% 161/s ]
cpus: 45.2 gc: 1% heap: 139G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(84% 83% 87% 84% 86% 84% 84% 84% 86% 86% 86% 85% 83% 83% 85% 86% 85% 87% 85% 85% 85% 85% 87% 84% 83% 85% 85% 84% 86% 85% 84% 84% 85% 84% 86% 84% 85% 86% 85% 84% 84% 84% 84% 86% 85% 85%) -> (25k/98k) -> write(42% 42%)
0:21:22 INF [osm_pass2] - nodes: [ 1.1B 14% 32M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 298M 1.5M/s ] 24G blocks: [ 5k 12% 133/s ]
cpus: 45.1 gc: 1% heap: 123G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(89% 86% 87% 89% 87% 88% 88% 89% 90% 88% 90% 88% 88% 90% 88% 87% 89% 88% 94% 88% 87% 88% 87% 89% 92% 92% 87% 87% 91% 88% 92% 88% 89% 89% 88% 90% 89% 88% 90% 88% 94% 90% 92% 91% 88% 89%) -> (26k/98k) -> write(48% 49%)
0:21:32 INF [osm_pass2] - nodes: [ 1.5B 18% 38M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 312M 1.3M/s ] 26G blocks: [ 6.5k 16% 147/s ]
cpus: 44.9 gc: 1% heap: 128G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(91% 89% 89% 90% 91% 90% 89% 90% 91% 90% 90% 92% 91% 90% 89% 90% 90% 90% 90% 91% 92% 91% 90% 92% 90% 92% 91% 90% 91% 90% 89% 91% 91% 90% 89% 89% 91% 89% 91% 91% 92% 91% 91% 90% 89% 90%) -> (27k/98k) -> write(42% 40%)
0:21:42 INF [osm_pass2] - nodes: [ 1.9B 23% 37M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 328M 1.6M/s ] 29G blocks: [ 7.9k 19% 138/s ]
cpus: 44.6 gc: 1% heap: 141G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (22/70) -> process(92% 90% 91% 91% 91% 90% 90% 90% 91% 90% 92% 91% 90% 91% 91% 91% 92% 91% 89% 91% 90% 92% 90% 92% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 92% 91% 91% 91% 91% 92% 91% 90% 93% 90% 90% 91%) -> (20k/98k) -> write(49% 48%)
0:21:52 INF [osm_pass2] - nodes: [ 2.3B 27% 40M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 354M 2.5M/s ] 30G blocks: [ 9.2k 22% 136/s ]
cpus: 45.9 gc: 1% heap: 141G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(95% 96% 95% 94% 95% 94% 94% 94% 95% 94% 94% 95% 95% 95% 95% 96% 95% 95% 95% 95% 94% 94% 96% 94% 94% 95% 94% 94% 95% 95% 94% 95% 94% 96% 94% 95% 94% 95% 95% 95% 95% 94% 95% 95% 94% 94%) -> (25k/98k) -> write(57% 58%)
0:22:02 INF [osm_pass2] - nodes: [ 2.7B 32% 43M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 368M 1.4M/s ] 31G blocks: [ 10k 25% 130/s ]
cpus: 45.6 gc: 1% heap: 117G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(95% 95% 96% 93% 95% 94% 95% 94% 95% 94% 94% 93% 94% 95% 95% 94% 95% 94% 95% 93% 95% 95% 94% 95% 95% 95% 95% 94% 95% 94% 95% 94% 95% 95% 94% 94% 94% 95% 93% 93% 94% 94% 94% 95% 94% 94%) -> (25k/98k) -> write(40% 39%)
0:22:12 INF [osm_pass2] - nodes: [ 3.2B 37% 42M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 380M 1.2M/s ] 32G blocks: [ 11k 28% 125/s ]
cpus: 45.1 gc: 1% heap: 144G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(94% 92% 93% 93% 92% 93% 93% 92% 94% 93% 93% 93% 93% 93% 93% 94% 92% 93% 92% 92% 92% 93% 93% 94% 93% 94% 93% 94% 94% 93% 92% 92% 95% 93% 92% 93% 93% 94% 93% 93% 94% 94% 93% 93% 92% 93%) -> (21k/98k) -> write(34% 36%)
0:22:22 INF [osm_pass2] - nodes: [ 3.6B 42% 43M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 396M 1.6M/s ] 34G blocks: [ 13k 31% 124/s ]
cpus: 45.2 gc: 1% heap: 129G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(92% 93% 93% 91% 90% 93% 93% 94% 93% 93% 94% 94% 93% 92% 94% 92% 94% 93% 93% 95% 92% 94% 93% 93% 91% 93% 94% 92% 95% 93% 92% 93% 92% 93% 92% 92% 94% 92% 92% 92% 91% 93% 95% 93% 92% 92%) -> (25k/98k) -> write(43% 42%)
0:22:32 INF [osm_pass2] - nodes: [ 4B 48% 45M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 408M 1.1M/s ] 35G blocks: [ 14k 35% 130/s ]
cpus: 45.5 gc: 1% heap: 117G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(95% 95% 96% 95% 96% 95% 95% 95% 95% 96% 96% 96% 95% 96% 96% 94% 95% 95% 95% 96% 95% 96% 96% 95% 96% 95% 95% 96% 95% 95% 95% 95% 96% 95% 95% 95% 96% 95% 95% 95% 95% 95% 95% 95% 96% 95%) -> (21k/98k) -> write(33% 35%)
0:22:42 INF [osm_pass2] - nodes: [ 4.5B 53% 43M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 422M 1.3M/s ] 36G blocks: [ 15k 38% 123/s ]
cpus: 45 gc: 1% heap: 151G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(95% 94% 95% 94% 94% 94% 95% 94% 95% 94% 94% 95% 94% 95% 94% 94% 95% 94% 95% 95% 94% 96% 94% 94% 94% 94% 95% 94% 95% 95% 94% 96% 95% 95% 94% 95% 95% 95% 94% 95% 95% 95% 95% 94% 95% 95%) -> (31k/98k) -> write(38% 36%)
0:22:52 INF [osm_pass2] - nodes: [ 4.9B 58% 44M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 434M 1.1M/s ] 38G blocks: [ 16k 41% 125/s ]
cpus: 45.2 gc: 1% heap: 129G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (23/70) -> process(95% 94% 94% 94% 95% 94% 95% 94% 96% 95% 95% 95% 95% 94% 95% 95% 94% 95% 93% 95% 96% 94% 95% 95% 95% 94% 94% 94% 96% 94% 95% 95% 94% 95% 94% 94% 95% 93% 95% 95% 94% 95% 95% 95% 95% 95%) -> (25k/98k) -> write(32% 33%)
0:23:02 INF [osm_pass2] - nodes: [ 5.4B 63% 46M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 446M 1.2M/s ] 39G blocks: [ 18k 44% 133/s ]
cpus: 45.3 gc: 1% heap: 125G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(96% 95% 96% 96% 95% 96% 95% 95% 96% 96% 96% 95% 94% 96% 95% 96% 96% 95% 96% 95% 96% 96% 96% 96% 95% 96% 96% 95% 96% 96% 94% 96% 96% 95% 95% 96% 95% 96% 95% 95% 96% 96% 97% 95% 95% 96%) -> (23k/98k) -> write(34% 33%)
0:23:12 INF [osm_pass2] - nodes: [ 5.8B 69% 46M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 461M 1.4M/s ] 40G blocks: [ 19k 47% 129/s ]
cpus: 45.5 gc: 1% heap: 122G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (22/70) -> process(96% 96% 96% 96% 95% 96% 95% 96% 96% 96% 95% 96% 96% 95% 96% 96% 95% 96% 94% 95% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 95% 95% 96% 96% 96% 96% 96% 95% 96% 96% 96% 97% 95% 96% 96% 96%) -> (23k/98k) -> write(39% 40%)
0:23:22 INF [osm_pass2] - nodes: [ 6.3B 74% 45M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 472M 1.1M/s ] 42G blocks: [ 20k 50% 127/s ]
cpus: 45 gc: 1% heap: 105G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(96% 96% 96% 96% 95% 95% 95% 95% 95% 95% 94% 96% 94% 95% 95% 95% 96% 96% 95% 95% 95% 96% 95% 95% 94% 95% 96% 95% 96% 94% 94% 95% 95% 94% 94% 96% 94% 95% 96% 95% 95% 96% 96% 95% 96% 96%) -> (24k/98k) -> write(32% 31%)
0:23:32 INF [osm_pass2] - nodes: [ 6.7B 79% 42M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 487M 1.5M/s ] 43G blocks: [ 22k 53% 120/s ]
cpus: 45.4 gc: 1% heap: 146G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(96% 97% 97% 96% 97% 96% 97% 95% 97% 96% 97% 97% 97% 96% 97% 96% 96% 96% 96% 97% 97% 95% 97% 96% 96% 96% 96% 97% 95% 95% 97% 96% 96% 97% 96% 96% 96% 96% 96% 97% 95% 96% 95% 96% 95% 95%) -> (27k/98k) -> write(38% 41%)
0:23:42 INF [osm_pass2] - nodes: [ 7.2B 85% 46M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 501M 1.3M/s ] 44G blocks: [ 23k 56% 129/s ]
cpus: 46.3 gc: 1% heap: 149G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(99% 97% 97% 98% 98% 98% 98% 98% 99% 97% 98% 98% 98% 98% 98% 99% 99% 98% 98% 98% 98% 99% 97% 98% 98% 98% 97% 98% 98% 99% 98% 98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98% 99% 98% 98% 98%) -> (22k/98k) -> write(37% 35%)
0:23:52 INF [osm_pass2] - nodes: [ 7.7B 90% 44M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 514M 1.2M/s ] 45G blocks: [ 24k 59% 123/s ]
cpus: 45.9 gc: 1% heap: 130G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 2%) -> (24/70) -> process(98% 97% 98% 96% 98% 97% 97% 95% 97% 97% 96% 97% 97% 97% 97% 96% 98% 98% 98% 97% 96% 97% 97% 97% 98% 94% 97% 95% 97% 98% 97% 96% 97% 97% 96% 98% 98% 97% 97% 98% 98% 97% 96% 96% 98% 97%) -> (26k/98k) -> write(34% 35%)
0:24:02 INF [osm_pass2] - nodes: [ 8.1B 95% 46M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 528M 1.3M/s ] 47G blocks: [ 25k 62% 127/s ]
cpus: 46.2 gc: 1% heap: 126G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 97% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (19k/98k) -> write(38% 36%)
0:24:11 DEB [osm_pass2:process] - Sorting long long multimap...
0:24:11 INF [osm_pass2:process] - Finished nodes: 8,567,543,086 (38M/s) in 3m40s cpu:2h44m23s gc:3s avg:44.9
0:24:12 INF [osm_pass2] - nodes: [ 8.5B 100% 40M/s ] 88G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 542M 1.4M/s ] 48G blocks: [ 27k 65% 119/s ]
cpus: 45 gc: 1% heap: 152G/187G direct: 54M postGC: 97G relInfo: 696M mpGeoms: 297
read( 1%) -> (24/70) -> process(87% 86% 89% 86% 88% 87% 87% 87% 86% 86% 86% 87% 87% 87% 88% 85% 87% 86% 88% 86% 86% 85% 86% 87% 86% 87% 86% 86% 85% 85% 88% 86% 86% 86% 87% 85% 87% 89% 86% 87% 85% 86% 86% 88% 86% 88%) -> (21k/98k) -> write(35% 36%)
0:24:21 DEB [osm_pass2:process] - Sorted long long multimap 10s cpu:56s avg:5.8
0:24:22 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 173k 0% 17k/s ] rels: [ 0 0% 0/s ] features: [ 543M 116k/s ] 48G blocks: [ 27k 65% 0/s ]
cpus: 8.5 gc: 0% heap: 101G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 3.2M
read( 0%) -> (24/70) -> process(15% 16% 16% 16% 16% 15% 15% 15% 13% 13% 15% 16% 14% 15% 14% 15% 14% 16% 12% 15% 15% 15% 14% 15% 16% 15% 16% 15% 15% 15% 15% 15% 13% 16% 15% 13% 15% 99% 16% 15% 16% 15% 15% 15% 14% 14%) -> (25k/98k) -> write( 3% 3%)
0:24:32 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 4.9M 1% 476k/s ] rels: [ 0 0% 0/s ] features: [ 575M 3.1M/s ] 51G blocks: [ 27k 65% 9/s ]
cpus: 46.7 gc: 1% heap: 108G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 58M
read( 0%) -> (24/70) -> process(96% 94% 95% 94% 94% 95% 95% 93% 94% 94% 97% 96% 95% 96% 94% 96% 97% 97% 95% 96% 95% 96% 94% 95% 95% 96% 94% 96% 92% 95% 94% 95% 95% 94% 94% 93% 96% 96% 95% 95% 94% 94% 96% 96% 95% 95%) -> (76k/98k) -> write(92% 92%)
0:24:43 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 9.7M 1% 482k/s ] rels: [ 0 0% 0/s ] features: [ 604M 2.9M/s ] 53G blocks: [ 27k 65% 9/s ]
cpus: 45.4 gc: 1% heap: 154G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 91M
read( 0%) -> (24/70) -> process(91% 93% 94% 92% 93% 95% 94% 94% 92% 94% 94% 91% 94% 94% 95% 95% 94% 94% 95% 94% 93% 93% 94% 93% 92% 94% 94% 93% 95% 94% 94% 93% 95% 94% 93% 92% 94% 90% 93% 94% 93% 94% 93% 94% 94% 94%) -> (74k/98k) -> write(93% 91%)
0:24:53 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 14M 1% 443k/s ] rels: [ 0 0% 0/s ] features: [ 630M 2.6M/s ] 56G blocks: [ 27k 66% 11/s ]
cpus: 45.6 gc: 2% heap: 146G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 167M
read( 0%) -> (24/70) -> process(93% 94% 94% 95% 94% 95% 94% 95% 95% 94% 95% 95% 95% 95% 95% 95% 93% 94% 95% 95% 95% 96% 96% 95% 95% 93% 94% 95% 95% 93% 94% 94% 95% 94% 92% 94% 95% 96% 96% 94% 96% 94% 95% 95% 94% 96%) -> (27k/98k) -> write(82% 82%)
0:25:03 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 18M 2% 375k/s ] rels: [ 0 0% 0/s ] features: [ 652M 2.1M/s ] 58G blocks: [ 27k 66% 8/s ]
cpus: 46.3 gc: 2% heap: 106G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 255M
read( 0%) -> (24/70) -> process(96% 97% 97% 96% 97% 96% 96% 97% 97% 97% 95% 96% 96% 96% 96% 96% 97% 97% 97% 96% 95% 94% 97% 96% 97% 94% 95% 95% 96% 96% 97% 96% 97% 96% 96% 97% 97% 96% 96% 97% 96% 95% 97% 96% 97% 97%) -> (30k/98k) -> write(64% 62%)
0:25:13 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 21M 2% 378k/s ] rels: [ 0 0% 0/s ] features: [ 672M 1.9M/s ] 61G blocks: [ 27k 66% 8/s ]
cpus: 45.9 gc: 2% heap: 119G/187G direct: 54M postGC: 97G relInfo: 545M mpGeoms: 357M
read( 0%) -> (24/70) -> process(96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 97% 96% 96% 96% 96% 96% 96% 96% 96% 96% 97% 96% 97% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (25k/98k) -> write(59% 58%)
0:25:23 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 25M 3% 396k/s ] rels: [ 0 0% 0/s ] features: [ 690M 1.7M/s ] 62G blocks: [ 27k 66% 9/s ]
cpus: 46.2 gc: 2% heap: 149G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 458M
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 96% 97% 98% 97% 97% 97% 97% 97% 97%) -> (30k/98k) -> write(51% 54%)
0:25:33 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 28M 3% 310k/s ] rels: [ 0 0% 0/s ] features: [ 704M 1.4M/s ] 63G blocks: [ 27k 66% 6/s ]
cpus: 46.2 gc: 2% heap: 123G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 572M
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 98% 97% 97% 98% 97% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(41% 40%)
0:25:43 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 32M 3% 323k/s ] rels: [ 0 0% 0/s ] features: [ 718M 1.3M/s ] 65G blocks: [ 27k 66% 6/s ]
cpus: 46.2 gc: 2% heap: 98G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 649M
read( 0%) -> (24/70) -> process(98% 97% 97% 98% 98% 98% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 98% 98% 97% 98% 97% 98% 97% 97% 97% 97% 97% 98% 97% 98% 98% 97% 97% 97% 98% 97%) -> (34k/98k) -> write(40% 40%)
0:25:53 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 36M 4% 387k/s ] rels: [ 0 0% 0/s ] features: [ 733M 1.4M/s ] 66G blocks: [ 27k 67% 8/s ]
cpus: 46 gc: 1% heap: 131G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 722M
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (37k/98k) -> write(42% 42%)
0:26:03 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 41M 4% 523k/s ] rels: [ 0 0% 0/s ] features: [ 748M 1.5M/s ] 66G blocks: [ 27k 67% 9/s ]
cpus: 46.2 gc: 2% heap: 135G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 768M
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (28k/98k) -> write(40% 39%)
0:26:13 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 46M 5% 530k/s ] rels: [ 0 0% 0/s ] features: [ 763M 1.4M/s ] 68G blocks: [ 28k 67% 9/s ]
cpus: 46 gc: 1% heap: 136G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 820M
read( 0%) -> (24/70) -> process(98% 98% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 98% 97% 97% 98% 98% 97% 97%) -> (29k/98k) -> write(40% 40%)
0:26:23 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 51M 5% 501k/s ] rels: [ 0 0% 0/s ] features: [ 778M 1.4M/s ] 68G blocks: [ 28k 67% 9/s ]
cpus: 46.1 gc: 1% heap: 130G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 882M
read( 0%) -> (24/70) -> process(97% 97% 98% 98% 98% 97% 98% 98% 97% 97% 98% 98% 97% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 97% 97% 98% 98% 97% 98% 98% 97%) -> (30k/98k) -> write(38% 39%)
0:26:33 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 55M 6% 421k/s ] rels: [ 0 0% 0/s ] features: [ 791M 1.2M/s ] 71G blocks: [ 28k 68% 7/s ]
cpus: 45.8 gc: 1% heap: 120G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 965M
read( 0%) -> (24/70) -> process(97% 97% 97% 96% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 96% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97%) -> (43k/98k) -> write(36% 36%)
0:26:43 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 60M 6% 413k/s ] rels: [ 0 0% 0/s ] features: [ 804M 1.2M/s ] 71G blocks: [ 28k 68% 8/s ]
cpus: 46.3 gc: 2% heap: 125G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (30k/98k) -> write(36% 36%)
0:26:53 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 64M 7% 401k/s ] rels: [ 0 0% 0/s ] features: [ 817M 1.3M/s ] 72G blocks: [ 28k 68% 7/s ]
cpus: 46.1 gc: 1% heap: 112G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(36% 36%)
0:27:03 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 68M 7% 457k/s ] rels: [ 0 0% 0/s ] features: [ 831M 1.4M/s ] 73G blocks: [ 28k 68% 8/s ]
cpus: 46 gc: 1% heap: 107G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.1G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 98% 98% 98% 98% 97% 97% 98% 98% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97%) -> (28k/98k) -> write(40% 39%)
0:27:13 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 73M 8% 449k/s ] rels: [ 0 0% 0/s ] features: [ 846M 1.4M/s ] 74G blocks: [ 28k 68% 8/s ]
cpus: 46 gc: 1% heap: 154G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.2G
read( 0%) -> (24/70) -> process(97% 97% 98% 98% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 97% 97% 98% 97% 98% 98% 98% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97%) -> (28k/98k) -> write(40% 41%)
0:27:23 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 78M 8% 533k/s ] rels: [ 0 0% 0/s ] features: [ 863M 1.6M/s ] 75G blocks: [ 28k 69% 9/s ]
cpus: 46.2 gc: 1% heap: 143G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 97% 97% 97% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 98% 98%) -> (26k/98k) -> write(45% 46%)
0:27:33 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 83M 9% 507k/s ] rels: [ 0 0% 0/s ] features: [ 880M 1.6M/s ] 76G blocks: [ 28k 69% 8/s ]
cpus: 46.1 gc: 1% heap: 129G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.3G
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98%) -> (24k/98k) -> write(45% 46%)
0:27:43 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 88M 9% 521k/s ] rels: [ 0 0% 0/s ] features: [ 897M 1.6M/s ] 78G blocks: [ 28k 69% 8/s ]
cpus: 46 gc: 1% heap: 119G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.3G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (26k/98k) -> write(46% 44%)
0:27:53 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 93M 10% 485k/s ] rels: [ 0 0% 0/s ] features: [ 912M 1.5M/s ] 79G blocks: [ 28k 69% 7/s ]
cpus: 46.2 gc: 1% heap: 110G/187G direct: 54M postGC: 98G relInfo: 545M mpGeoms: 1.4G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (24k/98k) -> write(41% 42%)
0:28:03 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 98M 10% 462k/s ] rels: [ 0 0% 0/s ] features: [ 927M 1.4M/s ] 80G blocks: [ 28k 69% 7/s ]
cpus: 46.1 gc: 1% heap: 109G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.5G
read( 0%) -> (24/70) -> process(97% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 98% 97% 97% 98%) -> (25k/98k) -> write(39% 39%)
0:28:13 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 103M 11% 491k/s ] rels: [ 0 0% 0/s ] features: [ 942M 1.5M/s ] 80G blocks: [ 29k 70% 8/s ]
cpus: 45.8 gc: 2% heap: 104G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.6G
read( 0%) -> (24/70) -> process(97% 96% 96% 97% 97% 97% 96% 96% 96% 97% 96% 96% 96% 96% 96% 96% 97% 96% 96% 96% 97% 96% 96% 96% 96% 97% 96% 97% 96% 96% 96% 96% 96% 97% 96% 96% 96% 97% 96% 96% 96% 96% 96% 96% 96% 97%) -> (35k/98k) -> write(40% 41%)
0:28:23 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 108M 11% 504k/s ] rels: [ 0 0% 0/s ] features: [ 958M 1.5M/s ] 82G blocks: [ 29k 70% 8/s ]
cpus: 45.8 gc: 1% heap: 100G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.6G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 98% 97% 97% 98% 97% 97% 97% 98% 97% 98% 98% 97% 97% 98%) -> (27k/98k) -> write(43% 42%)
0:28:34 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 113M 12% 524k/s ] rels: [ 0 0% 0/s ] features: [ 975M 1.7M/s ] 83G blocks: [ 29k 70% 7/s ]
cpus: 46.2 gc: 1% heap: 100G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.7G
read( 0%) -> (24/70) -> process(98% 98% 97% 98% 98% 97% 97% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 97% 98% 97% 97% 98% 97% 98% 98% 98% 97%) -> (28k/98k) -> write(46% 47%)
0:28:44 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 119M 12% 583k/s ] rels: [ 0 0% 0/s ] features: [ 994M 1.8M/s ] 84G blocks: [ 29k 70% 9/s ]
cpus: 46.6 gc: 1% heap: 129G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.7G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(50% 49%)
0:28:54 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 125M 13% 583k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.9M/s ] 86G blocks: [ 29k 70% 9/s ]
cpus: 46.5 gc: 2% heap: 103G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (33k/98k) -> write(53% 54%)
0:29:04 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 130M 14% 504k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.6M/s ] 87G blocks: [ 29k 71% 8/s ]
cpus: 46 gc: 1% heap: 101G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 97% 97% 97% 98% 98% 98% 98% 97% 98% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 97% 98% 98% 97% 98% 97% 97% 97% 98% 97% 98% 97% 97% 98%) -> (23k/98k) -> write(43% 44%)
0:29:14 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 134M 14% 448k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.4M/s ] 88G blocks: [ 29k 71% 6/s ]
cpus: 46.2 gc: 1% heap: 157G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 1.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (29k/98k) -> write(40% 40%)
0:29:24 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 139M 15% 489k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.5M/s ] 89G blocks: [ 29k 71% 7/s ]
cpus: 46.1 gc: 2% heap: 100G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2G
read( 0%) -> (24/70) -> process(98% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 98% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(41% 41%)
0:29:34 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 144M 15% 503k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.5M/s ] 90G blocks: [ 29k 71% 7/s ]
cpus: 45.9 gc: 1% heap: 100G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(42% 42%)
0:29:44 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 149M 16% 490k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.5M/s ] 91G blocks: [ 29k 71% 7/s ]
cpus: 46.1 gc: 1% heap: 101G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2.1G
read( 0%) -> (24/70) -> process(98% 98% 97% 98% 98% 97% 97% 98% 97% 97% 97% 98% 97% 97% 98% 98% 97% 98% 98% 97% 98% 97% 97% 98% 97% 98% 97% 97% 98% 97% 98% 97% 98% 98% 97% 98% 98% 97% 98% 97% 97% 97% 98% 97% 97% 98%) -> (26k/98k) -> write(42% 41%)
0:29:54 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 155M 16% 511k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 93G blocks: [ 29k 72% 8/s ]
cpus: 46.1 gc: 2% heap: 107G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2.2G
read( 0%) -> (24/70) -> process(98% 98% 95% 98% 97% 97% 97% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97% 96% 98% 97% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(40% 42%)
0:30:04 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 160M 17% 520k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 94G blocks: [ 29k 72% 7/s ]
cpus: 46.2 gc: 1% heap: 117G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (27k/98k) -> write(40% 40%)
0:30:14 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 165M 17% 501k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 95G blocks: [ 29k 72% 7/s ]
cpus: 46.1 gc: 2% heap: 117G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 98% 98% 98% 98% 97% 97% 97% 98% 97% 97% 98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 97% 97% 97% 97% 98% 98% 98% 97% 98%) -> (27k/98k) -> write(42% 42%)
0:30:24 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 170M 18% 475k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 96G blocks: [ 30k 72% 7/s ]
cpus: 46.1 gc: 2% heap: 116G/187G direct: 54M postGC: 99G relInfo: 545M mpGeoms: 2.3G
read( 0%) -> (24/70) -> process(98% 97% 98% 97% 98% 97% 98% 98% 97% 97% 97% 98% 98% 97% 97% 98% 97% 97% 98% 97% 98% 98% 98% 97% 97% 98% 97% 98% 98% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 97% 98% 98% 98% 98%) -> (27k/98k) -> write(41% 41%)
0:30:34 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 174M 18% 492k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 97G blocks: [ 30k 72% 8/s ]
cpus: 46 gc: 2% heap: 116G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.4G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 98%) -> (24k/98k) -> write(41% 41%)
0:30:44 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 180M 19% 514k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.5M/s ] 97G blocks: [ 30k 72% 8/s ]
cpus: 46.1 gc: 1% heap: 120G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.4G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98% 98% 97% 97% 97% 98% 98% 98% 98%) -> (28k/98k) -> write(41% 40%)
0:30:54 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 185M 19% 529k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.5M/s ] 98G blocks: [ 30k 73% 7/s ]
cpus: 46 gc: 2% heap: 127G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.5G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (24k/98k) -> write(41% 40%)
0:31:04 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 190M 20% 529k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.5M/s ] 99G blocks: [ 30k 73% 8/s ]
cpus: 46.1 gc: 2% heap: 139G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.5G
read( 0%) -> (24/70) -> process(97% 97% 98% 97% 98% 97% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 97% 97% 98% 97% 97% 98% 98% 98% 97% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 98%) -> (23k/98k) -> write(41% 41%)
0:31:14 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 195M 20% 503k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.5M/s ] 100G blocks: [ 30k 73% 7/s ]
cpus: 46.2 gc: 2% heap: 148G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.6G
read( 0%) -> (24/70) -> process(98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (28k/98k) -> write(40% 40%)
0:31:24 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 200M 21% 485k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.4M/s ] 101G blocks: [ 30k 73% 8/s ]
cpus: 44.5 gc: 2% heap: 151G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.8G
read( 0%) -> (24/70) -> process(94% 95% 95% 94% 94% 94% 95% 94% 94% 95% 94% 94% 94% 94% 94% 95% 94% 95% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 95% 98% 94% 94% 94% 94% 94% 94%) -> (29k/98k) -> write(36% 37%)
0:31:34 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 206M 21% 551k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.4M/s ] 103G blocks: [ 30k 73% 9/s ]
cpus: 45.9 gc: 2% heap: 118G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 96% 97%) -> (23k/98k) -> write(37% 37%)
0:31:44 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 211M 22% 551k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.4M/s ] 104G blocks: [ 30k 74% 9/s ]
cpus: 46.1 gc: 2% heap: 141G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.9G
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 98% 97% 97% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97%) -> (25k/98k) -> write(38% 38%)
0:31:54 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 217M 23% 544k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 1.4M/s ] 104G blocks: [ 30k 74% 9/s ]
cpus: 46 gc: 2% heap: 106G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.9G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 96% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (28k/98k) -> write(37% 37%)
0:32:04 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 222M 23% 523k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.4M/s ] 105G blocks: [ 30k 74% 8/s ]
cpus: 46.1 gc: 2% heap: 121G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 2.9G
read( 0%) -> (24/70) -> process(98% 98% 97% 97% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 97% 98% 97% 97% 97% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 97% 97% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 97%) -> (25k/98k) -> write(39% 39%)
0:32:14 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 228M 24% 552k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.5M/s ] 106G blocks: [ 31k 74% 8/s ]
cpus: 46.3 gc: 1% heap: 150G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (28k/98k) -> write(41% 43%)
0:32:24 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 233M 24% 528k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.4M/s ] 107G blocks: [ 31k 75% 7/s ]
cpus: 46.1 gc: 2% heap: 104G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3.1G
read( 0%) -> (24/70) -> process(97% 97% 98% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97%) -> (67k/98k) -> write(39% 39%)
0:32:34 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 238M 25% 508k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.5M/s ] 108G blocks: [ 31k 75% 7/s ]
cpus: 46.1 gc: 1% heap: 111G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (29k/98k) -> write(39% 40%)
0:32:45 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 243M 25% 509k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.5M/s ] 109G blocks: [ 31k 75% 8/s ]
cpus: 46.3 gc: 1% heap: 118G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(39% 40%)
0:32:55 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 248M 26% 498k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.4M/s ] 110G blocks: [ 31k 75% 7/s ]
cpus: 45.8 gc: 1% heap: 124G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3.3G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(39% 40%)
0:33:05 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 253M 26% 522k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 1.5M/s ] 110G blocks: [ 31k 75% 8/s ]
cpus: 46.3 gc: 1% heap: 139G/187G direct: 54M postGC: 100G relInfo: 545M mpGeoms: 3.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (21k/98k) -> write(38% 39%)
0:33:15 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 259M 27% 528k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.5M/s ] 112G blocks: [ 31k 76% 8/s ]
cpus: 46.3 gc: 2% heap: 105G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write(41% 41%)
0:33:25 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 264M 28% 543k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.5M/s ] 112G blocks: [ 31k 76% 8/s ]
cpus: 46.1 gc: 2% heap: 123G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.5G
read( 0%) -> (24/70) -> process(98% 97% 97% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 97% 97% 97% 97% 98% 97% 98% 98% 97% 97% 98% 98% 97%) -> (30k/98k) -> write(39% 39%)
0:33:35 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 270M 28% 587k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.4M/s ] 114G blocks: [ 31k 76% 8/s ]
cpus: 46.2 gc: 1% heap: 150G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (21k/98k) -> write(39% 38%)
0:33:45 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 276M 29% 577k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.4M/s ] 115G blocks: [ 31k 76% 8/s ]
cpus: 46.1 gc: 2% heap: 122G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.7G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 97% 97% 98% 97% 98% 98% 98% 98% 97% 98% 97% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97%) -> (27k/98k) -> write(38% 38%)
0:33:55 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 282M 29% 586k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.5M/s ] 116G blocks: [ 31k 76% 8/s ]
cpus: 46.2 gc: 1% heap: 149G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.7G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write(40% 40%)
0:34:05 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 287M 30% 544k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 1.5M/s ] 117G blocks: [ 31k 77% 8/s ]
cpus: 46 gc: 2% heap: 109G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (28k/98k) -> write(39% 39%)
0:34:15 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 293M 30% 537k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.5M/s ] 117G blocks: [ 32k 77% 8/s ]
cpus: 46.3 gc: 1% heap: 121G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.8G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (31k/98k) -> write(41% 40%)
0:34:25 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 298M 31% 534k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.5M/s ] 119G blocks: [ 32k 77% 7/s ]
cpus: 46.2 gc: 1% heap: 138G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.9G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 96% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98%) -> (30k/98k) -> write(39% 40%)
0:34:35 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 303M 32% 543k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.4M/s ] 119G blocks: [ 32k 77% 8/s ]
cpus: 46.2 gc: 2% heap: 102G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 3.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write(37% 38%)
0:34:45 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 309M 32% 554k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.4M/s ] 120G blocks: [ 32k 77% 8/s ]
cpus: 46.1 gc: 1% heap: 123G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 4G
read( 0%) -> (24/70) -> process(98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 97% 97% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98%) -> (24k/98k) -> write(39% 39%)
0:34:55 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 315M 33% 592k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.6M/s ] 121G blocks: [ 32k 78% 8/s ]
cpus: 46.2 gc: 2% heap: 105G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 4.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (27k/98k) -> write(41% 41%)
0:35:05 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 320M 33% 564k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.5M/s ] 122G blocks: [ 32k 78% 8/s ]
cpus: 46.1 gc: 1% heap: 134G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 4.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 97% 98% 97% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97%) -> (22k/98k) -> write(39% 38%)
0:35:15 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 326M 34% 582k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 1.4M/s ] 123G blocks: [ 32k 78% 8/s ]
cpus: 45.9 gc: 2% heap: 110G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 4.2G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(37% 38%)
0:35:25 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 332M 35% 603k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.5M/s ] 123G blocks: [ 32k 78% 8/s ]
cpus: 46.2 gc: 1% heap: 136G/187G direct: 54M postGC: 101G relInfo: 545M mpGeoms: 4.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (27k/98k) -> write(40% 40%)
0:35:35 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 338M 35% 584k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.5M/s ] 125G blocks: [ 32k 78% 8/s ]
cpus: 46.2 gc: 2% heap: 113G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 97% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write(40% 38%)
0:35:45 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 344M 36% 569k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.5M/s ] 125G blocks: [ 32k 79% 8/s ]
cpus: 46.2 gc: 1% heap: 138G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 97% 98% 97% 98%) -> (28k/98k) -> write(40% 40%)
0:35:55 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 350M 36% 562k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.4M/s ] 126G blocks: [ 32k 79% 8/s ]
cpus: 46 gc: 2% heap: 107G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.4G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(38% 38%)
0:36:05 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 355M 37% 583k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.5M/s ] 127G blocks: [ 32k 79% 8/s ]
cpus: 46 gc: 1% heap: 138G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.5G
read( 0%) -> (24/70) -> process(97% 98% 97% 97% 97% 98% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 98% 97% 97% 97% 98% 98% 97% 97% 98% 97% 97% 98% 98% 97% 97% 98% 97% 98% 98% 97% 97% 97% 98% 97%) -> (32k/98k) -> write(39% 39%)
0:36:15 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 361M 38% 584k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 1.5M/s ] 129G blocks: [ 33k 79% 8/s ]
cpus: 46.2 gc: 2% heap: 114G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98%) -> (31k/98k) -> write(39% 39%)
0:36:25 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 367M 38% 574k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.5M/s ] 130G blocks: [ 33k 79% 7/s ]
cpus: 46.2 gc: 1% heap: 145G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (31k/98k) -> write(39% 39%)
0:36:35 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 373M 39% 556k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.4M/s ] 130G blocks: [ 33k 80% 8/s ]
cpus: 46 gc: 2% heap: 121G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.6G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(36% 36%)
0:36:45 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 379M 39% 591k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.5M/s ] 132G blocks: [ 33k 80% 9/s ]
cpus: 43.5 gc: 1% heap: 156G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.8G
read( 0%) -> (24/70) -> process(92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 98% 92% 92% 91%) -> (27k/98k) -> write(40% 40%)
0:36:55 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 385M 40% 599k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.5M/s ] 132G blocks: [ 33k 80% 7/s ]
cpus: 46.1 gc: 2% heap: 139G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 4.9G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 97% 97% 97% 97% 97% 97% 98% 98% 98% 97% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 98% 97% 97% 97% 97%) -> (30k/98k) -> write(39% 39%)
0:37:05 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 391M 41% 598k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.4M/s ] 133G blocks: [ 33k 80% 8/s ]
cpus: 46 gc: 1% heap: 117G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5G
read( 0%) -> (24/70) -> process(97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 98% 97% 97% 98% 97% 98% 98% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97%) -> (26k/98k) -> write(38% 38%)
0:37:15 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 397M 41% 617k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.5M/s ] 134G blocks: [ 33k 80% 8/s ]
cpus: 46.2 gc: 1% heap: 157G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98%) -> (20k/98k) -> write(39% 40%)
0:37:25 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 403M 42% 610k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 1.5M/s ] 134G blocks: [ 33k 81% 8/s ]
cpus: 46.1 gc: 2% heap: 139G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (36k/98k) -> write(39% 38%)
0:37:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 409M 43% 628k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.5M/s ] 136G blocks: [ 33k 81% 8/s ]
cpus: 46 gc: 2% heap: 129G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.1G
read( 0%) -> (24/70) -> process(97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 96% 97% 98% 97% 97% 97% 98% 98% 97% 98% 98% 97% 98% 97% 97% 98% 97% 97% 97%) -> (26k/98k) -> write(40% 39%)
0:37:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 416M 43% 636k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.5M/s ] 136G blocks: [ 33k 81% 8/s ]
cpus: 46.2 gc: 1% heap: 125G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.1G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write(38% 39%)
0:37:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 422M 44% 617k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.5M/s ] 138G blocks: [ 33k 81% 8/s ]
cpus: 46.1 gc: 1% heap: 112G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.2G
read( 0%) -> (24/70) -> process(98% 97% 98% 97% 98% 98% 97% 98% 98% 97% 97% 98% 97% 97% 98% 97% 98% 98% 97% 98% 96% 98% 98% 97% 98% 97% 98% 98% 97% 97% 97% 97% 98% 98% 97% 98% 97% 98% 98% 97% 97% 98% 98% 98% 98% 98%) -> (27k/98k) -> write(39% 39%)
0:38:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 428M 45% 638k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.6M/s ] 138G blocks: [ 33k 81% 8/s ]
cpus: 46.2 gc: 1% heap: 107G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98%) -> (22k/98k) -> write(39% 40%)
0:38:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 434M 45% 607k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.5M/s ] 139G blocks: [ 34k 82% 8/s ]
cpus: 46.2 gc: 1% heap: 139G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (23k/98k) -> write(40% 40%)
0:38:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 440M 46% 592k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 1.5M/s ] 140G blocks: [ 34k 82% 8/s ]
cpus: 46.1 gc: 2% heap: 109G/187G direct: 54M postGC: 102G relInfo: 545M mpGeoms: 5.3G
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 96% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97%) -> (30k/98k) -> write(40% 40%)
0:38:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 446M 47% 607k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.5M/s ] 140G blocks: [ 34k 82% 8/s ]
cpus: 46.2 gc: 1% heap: 142G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write(39% 39%)
0:38:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 453M 47% 624k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.6M/s ] 142G blocks: [ 34k 82% 8/s ]
cpus: 45.9 gc: 2% heap: 122G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.4G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (21k/98k) -> write(40% 41%)
0:38:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 459M 48% 633k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.5M/s ] 142G blocks: [ 34k 82% 8/s ]
cpus: 46.1 gc: 1% heap: 104G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.5G
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 98% 97% 97% 98% 98% 98% 98% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 98%) -> (21k/98k) -> write(39% 39%)
0:39:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 466M 49% 661k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.6M/s ] 144G blocks: [ 34k 83% 8/s ]
cpus: 46 gc: 1% heap: 150G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.5G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 97% 97% 98% 98% 97% 98% 98% 97% 98% 97% 98% 98% 97% 97% 98% 97% 98% 97% 97% 97% 98% 98% 98% 97% 97% 98% 97% 98% 98% 97%) -> (31k/98k) -> write(40% 40%)
0:39:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 472M 49% 644k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.6M/s ] 144G blocks: [ 34k 83% 8/s ]
cpus: 46.4 gc: 1% heap: 143G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (27k/98k) -> write(40% 40%)
0:39:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 479M 50% 641k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 1.5M/s ] 145G blocks: [ 34k 83% 8/s ]
cpus: 46 gc: 2% heap: 132G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97%) -> (24k/98k) -> write(39% 38%)
0:39:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 485M 51% 683k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.6M/s ] 146G blocks: [ 34k 83% 9/s ]
cpus: 46 gc: 1% heap: 135G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.6G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(46% 44%)
0:39:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 492M 51% 638k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.5M/s ] 146G blocks: [ 34k 83% 8/s ]
cpus: 45.9 gc: 2% heap: 117G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.7G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (29k/98k) -> write(42% 40%)
0:39:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 498M 52% 616k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.5M/s ] 148G blocks: [ 34k 84% 8/s ]
cpus: 45.8 gc: 1% heap: 147G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.7G
read( 0%) -> (24/70) -> process(96% 97% 96% 97% 96% 97% 96% 96% 96% 96% 96% 96% 97% 96% 96% 96% 97% 97% 97% 96% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 96% 97% 97% 97% 97% 96% 97% 97% 96% 96% 96%) -> (23k/98k) -> write(42% 41%)
0:40:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 504M 53% 599k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.5M/s ] 148G blocks: [ 34k 84% 8/s ]
cpus: 45.9 gc: 2% heap: 123G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(41% 41%)
0:40:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 510M 53% 597k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.4M/s ] 149G blocks: [ 35k 84% 8/s ]
cpus: 46 gc: 2% heap: 105G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 98% 97% 98% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 97% 97% 98% 98% 98% 98% 97% 97% 98% 97% 97% 98% 97% 97% 97%) -> (24k/98k) -> write(41% 41%)
0:40:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 516M 54% 625k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.5M/s ] 150G blocks: [ 35k 84% 8/s ]
cpus: 46.2 gc: 1% heap: 151G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.9G
read( 0%) -> (24/70) -> process(98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98%) -> (29k/98k) -> write(41% 42%)
0:40:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 523M 54% 644k/s ] rels: [ 0 0% 0/s ] features: [ 2B 1.5M/s ] 150G blocks: [ 35k 84% 8/s ]
cpus: 46.1 gc: 2% heap: 139G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 5.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 97% 97% 98% 98% 98% 97% 97% 98% 98% 98% 97% 98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 98% 97% 97% 98% 97% 98% 98% 98% 98%) -> (24k/98k) -> write(41% 41%)
0:40:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 529M 55% 618k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.5M/s ] 152G blocks: [ 35k 85% 8/s ]
cpus: 46.3 gc: 2% heap: 123G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(42% 42%)
0:40:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 535M 56% 564k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.4M/s ] 152G blocks: [ 35k 85% 7/s ]
cpus: 46.1 gc: 2% heap: 104G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6G
read( 0%) -> (24/70) -> process(97% 98% 98% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 98% 97% 98% 97% 98% 97% 97% 98% 98% 98% 97% 98% 97% 98% 97% 97% 98% 98% 97% 98% 98% 97% 97% 97% 98% 97% 98% 98% 97% 97% 97% 97% 98%) -> (27k/98k) -> write(38% 39%)
0:41:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 540M 56% 567k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.4M/s ] 154G blocks: [ 35k 85% 8/s ]
cpus: 46.1 gc: 1% heap: 133G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98%) -> (24k/98k) -> write(41% 40%)
0:41:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 546M 57% 577k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.5M/s ] 154G blocks: [ 35k 85% 7/s ]
cpus: 46.2 gc: 2% heap: 105G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98%) -> (27k/98k) -> write(40% 40%)
0:41:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 552M 58% 582k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.5M/s ] 154G blocks: [ 35k 85% 8/s ]
cpus: 46.2 gc: 1% heap: 128G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (31k/98k) -> write(41% 42%)
0:41:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 558M 58% 587k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.5M/s ] 156G blocks: [ 35k 86% 8/s ]
cpus: 46.3 gc: 2% heap: 108G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97%) -> (29k/98k) -> write(42% 43%)
0:41:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 564M 59% 562k/s ] rels: [ 0 0% 0/s ] features: [ 2.1B 1.4M/s ] 156G blocks: [ 35k 86% 8/s ]
cpus: 46.2 gc: 1% heap: 134G/187G direct: 54M postGC: 103G relInfo: 545M mpGeoms: 6.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write(40% 40%)
0:41:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 569M 59% 580k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.5M/s ] 159G blocks: [ 35k 86% 8/s ]
cpus: 46 gc: 2% heap: 107G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.3G
read( 0%) -> (24/70) -> process(96% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97%) -> (46k/98k) -> write(42% 41%)
0:42:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 575M 60% 595k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.5M/s ] 159G blocks: [ 35k 86% 8/s ]
cpus: 46.2 gc: 1% heap: 142G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(40% 41%)
0:42:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 582M 61% 612k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.5M/s ] 161G blocks: [ 36k 86% 8/s ]
cpus: 46.2 gc: 2% heap: 124G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 97% 98% 97% 97% 98% 98% 97%) -> (26k/98k) -> write(40% 40%)
0:42:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 588M 61% 658k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.6M/s ] 161G blocks: [ 36k 87% 9/s ]
cpus: 46.4 gc: 2% heap: 121G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (21k/98k) -> write(46% 45%)
0:42:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 594M 62% 609k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.5M/s ] 161G blocks: [ 36k 87% 8/s ]
cpus: 46.1 gc: 1% heap: 153G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98%) -> (30k/98k) -> write(40% 40%)
0:42:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 601M 63% 633k/s ] rels: [ 0 0% 0/s ] features: [ 2.2B 1.6M/s ] 163G blocks: [ 36k 87% 9/s ]
cpus: 46.2 gc: 2% heap: 147G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (25k/98k) -> write(42% 42%)
0:42:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 607M 63% 622k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.5M/s ] 163G blocks: [ 36k 87% 8/s ]
cpus: 46.1 gc: 2% heap: 123G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.7G
read( 0%) -> (24/70) -> process(98% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 98% 98% 98% 98% 97% 98% 97% 98% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97%) -> (22k/98k) -> write(43% 43%)
0:43:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 613M 64% 590k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.4M/s ] 165G blocks: [ 36k 88% 8/s ]
cpus: 45.9 gc: 2% heap: 104G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.8G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (22k/98k) -> write(39% 39%)
0:43:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 619M 64% 577k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.5M/s ] 165G blocks: [ 36k 88% 7/s ]
cpus: 46.2 gc: 1% heap: 134G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write(38% 38%)
0:43:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 625M 65% 604k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.5M/s ] 167G blocks: [ 36k 88% 8/s ]
cpus: 46 gc: 2% heap: 118G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 6.9G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 98%) -> (24k/98k) -> write(41% 40%)
0:43:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 631M 66% 631k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.5M/s ] 167G blocks: [ 36k 88% 9/s ]
cpus: 46.1 gc: 2% heap: 117G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 7.1G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98%) -> (27k/98k) -> write(38% 39%)
0:43:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 637M 66% 576k/s ] rels: [ 0 0% 0/s ] features: [ 2.3B 1.4M/s ] 167G blocks: [ 36k 88% 7/s ]
cpus: 46.2 gc: 1% heap: 153G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 7.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (28k/98k) -> write(36% 36%)
0:43:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 643M 67% 606k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.5M/s ] 169G blocks: [ 36k 89% 8/s ]
cpus: 46.1 gc: 2% heap: 135G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 7.2G
read( 0%) -> (24/70) -> process(98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 97% 97% 98% 98% 97% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 97% 97% 97% 97% 97% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98%) -> (23k/98k) -> write(39% 39%)
0:44:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 650M 68% 669k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.6M/s ] 169G blocks: [ 37k 89% 9/s ]
cpus: 46.3 gc: 2% heap: 138G/187G direct: 54M postGC: 104G relInfo: 545M mpGeoms: 7.2G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (28k/98k) -> write(43% 42%)
0:44:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 656M 68% 669k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.6M/s ] 171G blocks: [ 37k 89% 9/s ]
cpus: 46.2 gc: 2% heap: 135G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (29k/98k) -> write(43% 44%)
0:44:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 663M 69% 644k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.5M/s ] 171G blocks: [ 37k 89% 9/s ]
cpus: 46 gc: 2% heap: 122G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.4G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 96% 97% 97% 97%) -> (27k/98k) -> write(40% 40%)
0:44:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 669M 70% 627k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.5M/s ] 173G blocks: [ 37k 89% 8/s ]
cpus: 46.2 gc: 2% heap: 121G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(41% 41%)
0:44:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 675M 70% 606k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.5M/s ] 173G blocks: [ 37k 90% 8/s ]
cpus: 46.1 gc: 2% heap: 107G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98% 98%) -> (24k/98k) -> write(38% 39%)
0:44:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 681M 71% 632k/s ] rels: [ 0 0% 0/s ] features: [ 2.4B 1.5M/s ] 174G blocks: [ 37k 90% 8/s ]
cpus: 46.2 gc: 1% heap: 147G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(39% 39%)
0:45:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 688M 72% 653k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.6M/s ] 175G blocks: [ 37k 90% 8/s ]
cpus: 46 gc: 1% heap: 146G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.6G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 98% 97% 98% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 98% 97% 97% 97% 98% 98% 98% 97% 98% 97% 98% 97% 98% 98% 97% 97% 97% 97% 97% 98% 97%) -> (26k/98k) -> write(41% 40%)
0:45:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 694M 72% 621k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.5M/s ] 175G blocks: [ 37k 90% 9/s ]
cpus: 46 gc: 1% heap: 134G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.7G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 97% 98% 97% 98% 98% 98% 98% 97% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(38% 38%)
0:45:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 701M 73% 632k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.5M/s ] 178G blocks: [ 37k 90% 8/s ]
cpus: 45.9 gc: 1% heap: 126G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.7G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (24k/98k) -> write(39% 38%)
0:45:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 707M 74% 633k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.5M/s ] 178G blocks: [ 37k 91% 8/s ]
cpus: 46.1 gc: 2% heap: 117G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.8G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(38% 38%)
0:45:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 713M 74% 623k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.5M/s ] 180G blocks: [ 37k 91% 8/s ]
cpus: 46 gc: 1% heap: 155G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.8G
read( 0%) -> (24/70) -> process(97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 97% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98%) -> (24k/98k) -> write(38% 38%)
0:45:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 720M 75% 664k/s ] rels: [ 0 0% 0/s ] features: [ 2.5B 1.5M/s ] 180G blocks: [ 38k 91% 9/s ]
cpus: 46.2 gc: 2% heap: 106G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(39% 39%)
0:46:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 726M 76% 649k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.5M/s ] 180G blocks: [ 38k 91% 9/s ]
cpus: 46.3 gc: 1% heap: 147G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 7.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (28k/98k) -> write(39% 39%)
0:46:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 733M 76% 648k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.5M/s ] 182G blocks: [ 38k 92% 9/s ]
cpus: 46.2 gc: 2% heap: 131G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 97% 98% 98% 97% 98% 98% 97% 97% 97% 97% 98% 97% 98% 97% 98% 98% 98% 98% 97% 97%) -> (26k/98k) -> write(43% 43%)
0:46:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 739M 77% 653k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.5M/s ] 182G blocks: [ 38k 92% 9/s ]
cpus: 46 gc: 2% heap: 125G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8G
read( 0%) -> (24/70) -> process(97% 97% 98% 98% 98% 97% 98% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 98% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97%) -> (27k/98k) -> write(39% 38%)
0:46:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 746M 78% 659k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.5M/s ] 184G blocks: [ 38k 92% 8/s ]
cpus: 46.1 gc: 1% heap: 120G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98%) -> (26k/98k) -> write(39% 39%)
0:46:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 753M 78% 696k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.6M/s ] 184G blocks: [ 38k 92% 9/s ]
cpus: 46.3 gc: 1% heap: 131G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8.1G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write(40% 40%)
0:46:58 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 760M 79% 655k/s ] rels: [ 0 0% 0/s ] features: [ 2.6B 1.5M/s ] 185G blocks: [ 38k 92% 8/s ]
cpus: 46.2 gc: 2% heap: 128G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(38% 39%)
0:47:08 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 766M 80% 662k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.5M/s ] 186G blocks: [ 38k 93% 9/s ]
cpus: 46.2 gc: 2% heap: 134G/187G direct: 54M postGC: 105G relInfo: 545M mpGeoms: 8.2G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(40% 39%)
0:47:18 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 773M 80% 634k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.5M/s ] 186G blocks: [ 38k 93% 8/s ]
cpus: 46.1 gc: 2% heap: 125G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (31k/98k) -> write(38% 38%)
0:47:28 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 779M 81% 636k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.5M/s ] 188G blocks: [ 38k 93% 8/s ]
cpus: 46 gc: 1% heap: 120G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.3G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 97% 97% 97% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 98% 97% 98% 97% 97% 98% 97% 98% 97% 98% 97% 97% 98% 97% 97% 98% 98% 97% 97% 98%) -> (26k/98k) -> write(40% 40%)
0:47:38 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 785M 82% 626k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.5M/s ] 188G blocks: [ 38k 93% 8/s ]
cpus: 46.2 gc: 2% heap: 113G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 96% 97% 98% 97% 98% 98% 97% 97% 98% 98% 98% 98% 97% 97% 98% 98% 97% 98% 97% 98% 98% 97% 98% 98% 97% 96% 98% 98%) -> (28k/98k) -> write(38% 39%)
0:47:48 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 792M 82% 625k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.4M/s ] 189G blocks: [ 38k 93% 8/s ]
cpus: 46.1 gc: 2% heap: 110G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.4G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97%) -> (30k/98k) -> write(37% 37%)
0:47:58 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 798M 83% 636k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.5M/s ] 190G blocks: [ 39k 94% 8/s ]
cpus: 46.1 gc: 2% heap: 108G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.5G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97%) -> (27k/98k) -> write(38% 38%)
0:48:08 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 804M 84% 624k/s ] rels: [ 0 0% 0/s ] features: [ 2.7B 1.4M/s ] 190G blocks: [ 39k 94% 8/s ]
cpus: 46 gc: 2% heap: 108G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.5G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 97% 97% 97% 98% 97% 98% 97% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 98% 98% 98% 98% 97% 98% 98% 97% 97% 97% 97% 98% 98% 98% 97% 98% 97% 97% 97% 96% 97% 97% 97% 98% 98%) -> (26k/98k) -> write(37% 37%)
0:48:18 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 810M 84% 621k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 192G blocks: [ 39k 94% 9/s ]
cpus: 46.1 gc: 2% heap: 106G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97%) -> (23k/98k) -> write(37% 37%)
0:48:28 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 817M 85% 629k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 192G blocks: [ 39k 94% 7/s ]
cpus: 46.1 gc: 2% heap: 108G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (22k/98k) -> write(38% 38%)
0:48:38 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 823M 86% 616k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 193G blocks: [ 39k 95% 8/s ]
cpus: 46 gc: 1% heap: 156G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.7G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 97% 98% 98% 97% 97% 98% 98% 98% 98% 97% 98% 97% 97% 97% 98% 97%) -> (25k/98k) -> write(36% 37%)
0:48:48 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 829M 86% 617k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 194G blocks: [ 39k 95% 8/s ]
cpus: 46 gc: 2% heap: 156G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 8.7G
read( 0%) -> (24/70) -> process(97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 98% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97%) -> (21k/98k) -> write(37% 37%)
0:48:58 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 835M 87% 584k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.3M/s ] 194G blocks: [ 39k 95% 7/s ]
cpus: 40.5 gc: 1% heap: 140G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 9.2G
read( 0%) -> (24/70) -> process(84% 85% 85% 85% 85% 85% 85% 86% 85% 86% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 85% 86% 85% 85% 86% 85% 85% 85% 98% 85% 85% 85% 85% 85% 85% 85% 89% 85% 85% 85% 85%) -> (24k/98k) -> write(36% 36%)
0:49:08 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 842M 88% 654k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 196G blocks: [ 39k 95% 8/s ]
cpus: 45.9 gc: 1% heap: 151G/187G direct: 54M postGC: 106G relInfo: 545M mpGeoms: 9.2G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97%) -> (25k/98k) -> write(37% 37%)
0:49:18 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 848M 88% 615k/s ] rels: [ 0 0% 0/s ] features: [ 2.8B 1.4M/s ] 196G blocks: [ 39k 95% 9/s ]
cpus: 46 gc: 1% heap: 152G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 97% 97% 97% 97% 98% 97% 98% 98% 97% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (26k/98k) -> write(37% 36%)
0:49:28 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 854M 89% 634k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.4M/s ] 197G blocks: [ 39k 96% 8/s ]
cpus: 46.1 gc: 1% heap: 156G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.3G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (26k/98k) -> write(37% 38%)
0:49:38 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 861M 90% 638k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.5M/s ] 198G blocks: [ 39k 96% 8/s ]
cpus: 46 gc: 2% heap: 115G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.4G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 97% 97%) -> (71k/98k) -> write(38% 38%)
0:49:48 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 867M 90% 645k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.5M/s ] 198G blocks: [ 40k 96% 8/s ]
cpus: 46.2 gc: 1% heap: 121G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.4G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98%) -> (32k/98k) -> write(38% 39%)
0:49:58 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 874M 91% 657k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.5M/s ] 200G blocks: [ 40k 96% 9/s ]
cpus: 46.1 gc: 1% heap: 141G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.5G
read( 0%) -> (24/70) -> process(97% 97% 97% 97% 97% 98% 97% 97% 98% 98% 97% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 97% 97% 97% 98% 97% 97% 97% 98% 98% 97% 97% 97% 97% 98% 97% 97% 98% 97% 98% 97% 97% 97% 97% 97% 97%) -> (59k/98k) -> write(41% 41%)
0:50:08 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 880M 92% 610k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.4M/s ] 200G blocks: [ 40k 96% 7/s ]
cpus: 46.2 gc: 1% heap: 141G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.5G
read( 0%) -> (24/70) -> process(97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98%) -> (50k/98k) -> write(36% 36%)
0:50:18 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 886M 92% 616k/s ] rels: [ 0 0% 0/s ] features: [ 2.9B 1.4M/s ] 201G blocks: [ 40k 97% 9/s ]
cpus: 46.1 gc: 1% heap: 148G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (20k/98k) -> write(37% 37%)
0:50:28 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 892M 93% 642k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.5M/s ] 202G blocks: [ 40k 97% 8/s ]
cpus: 46.3 gc: 2% heap: 107G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.6G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (29k/98k) -> write(39% 38%)
0:50:38 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 899M 94% 609k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.4M/s ] 202G blocks: [ 40k 97% 8/s ]
cpus: 46 gc: 1% heap: 110G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.7G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97%) -> (24k/98k) -> write(35% 36%)
0:50:48 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 905M 94% 591k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.3M/s ] 204G blocks: [ 40k 97% 8/s ]
cpus: 46 gc: 2% heap: 111G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.8G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 97% 97% 97% 97% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 97% 97% 98% 98% 97% 97% 97% 98% 97% 97% 98% 98% 98% 98% 97% 97% 98% 97% 97% 97% 97% 98% 97%) -> (22k/98k) -> write(36% 36%)
0:50:58 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 911M 95% 614k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.4M/s ] 204G blocks: [ 40k 97% 8/s ]
cpus: 46.2 gc: 1% heap: 123G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.9G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(36% 37%)
0:51:08 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 917M 95% 609k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.4M/s ] 205G blocks: [ 40k 98% 8/s ]
cpus: 46 gc: 1% heap: 130G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 9.9G
read( 0%) -> (24/70) -> process(98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(35% 35%)
0:51:19 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 923M 96% 642k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.4M/s ] 206G blocks: [ 40k 98% 8/s ]
cpus: 46.1 gc: 1% heap: 147G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97%) -> (23k/98k) -> write(38% 37%)
0:51:23 ERR [osm_pass2:process] - Error processing OSM Way 1155021504
java.lang.NullPointerException: Cannot invoke "java.lang.Integer.intValue()" because the return value of "java.util.Map.get(Object)" is null
at org.openmaptiles.layers.Transportation.getMinzoom(Transportation.java:412)
at org.openmaptiles.layers.Transportation.process(Transportation.java:350)
at org.openmaptiles.OpenMapTilesProfile.lambda$new$6(OpenMapTilesProfile.java:138)
at com.onthegomap.planetiler.ForwardingProfile.processFeature(ForwardingProfile.java:116)
at com.onthegomap.planetiler.reader.osm.OsmReader.render(OsmReader.java:467)
at com.onthegomap.planetiler.reader.osm.OsmReader.lambda$pass2$6(OsmReader.java:359)
at com.onthegomap.planetiler.worker.WorkerPipeline$Builder.lambda$addWorker$0(WorkerPipeline.java:252)
at com.onthegomap.planetiler.worker.Worker.lambda$new$0(Worker.java:41)
at com.onthegomap.planetiler.worker.Worker.lambda$new$1(Worker.java:68)
at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
0:51:29 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 930M 97% 630k/s ] rels: [ 0 0% 0/s ] features: [ 3B 1.4M/s ] 206G blocks: [ 40k 98% 8/s ]
cpus: 46.2 gc: 2% heap: 109G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 98% 98% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98%) -> (23k/98k) -> write(36% 37%)
0:51:39 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 936M 97% 597k/s ] rels: [ 0 0% 0/s ] features: [ 3.1B 1.4M/s ] 208G blocks: [ 40k 98% 8/s ]
cpus: 46 gc: 2% heap: 112G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 97% 98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 97% 97% 98% 97% 98% 97% 98% 98% 98% 97% 97% 97% 98% 98%) -> (25k/98k) -> write(37% 37%)
0:51:49 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 942M 98% 596k/s ] rels: [ 0 0% 0/s ] features: [ 3.1B 1.3M/s ] 208G blocks: [ 41k 98% 8/s ]
cpus: 45.9 gc: 2% heap: 122G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 97% 97% 97% 97% 97% 97% 97% 98% 97% 97% 98% 97% 97% 98% 98% 97% 97% 97% 97% 97% 98% 98% 97% 97% 97% 97% 98% 97% 97% 98% 97% 98% 97% 97% 97% 97% 98% 98% 98% 97% 97% 97% 97% 97%) -> (24k/98k) -> write(35% 35%)
0:51:59 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 948M 99% 604k/s ] rels: [ 0 0% 0/s ] features: [ 3.1B 1.4M/s ] 210G blocks: [ 41k 99% 8/s ]
cpus: 46.1 gc: 1% heap: 137G/187G direct: 54M postGC: 107G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 97% 97% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (21k/98k) -> write(36% 37%)
0:52:09 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 954M 99% 625k/s ] rels: [ 0 0% 0/s ] features: [ 3.1B 1.4M/s ] 211G blocks: [ 41k 99% 8/s ]
cpus: 46.1 gc: 1% heap: 153G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write(37% 37%)
0:52:19 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 579k/s ] rels: [ 0 0% 0/s ] features: [ 3.1B 1.3M/s ] 211G blocks: [ 41k 99% 8/s ]
cpus: 44.2 gc: 1% heap: 150G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 84% 98% 98% 98% 97% 98% 81% 84% 95% 98% 98% 82% 97% 98% 97% 85% 92% 98% 83% 98% 83% 98% 98% 98% 90% 98% 98% 98% 84% 85% 98% 85% 98% 81% 87% 98% 93% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write(35% 35%)
0:52:22 INF [osm_pass2:process] - Finished ways: 960,779,416 (568k/s) in 28m11s cpu:21h28m58s gc:25s avg:45.7
0:52:29 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 59k/s ] rels: [ 200k 2% 20k/s ] features: [ 3.1B 220k/s ] 211G blocks: [ 41k 99% 2/s ]
cpus: 33.7 gc: 1% heap: 145G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(79% 61% 74% 68% 83% 78% 75% 62% 61% 58% 65% 98% 62% 61% 70% 62% 62% 58% 69% 62% 63% 62% 89% 71% 68% 62% 70% 65% 77% 59% 58% 67% 62% 77% 61% 60% 88% 60% 79% 92% 63% 72% 64% 82% 70% 64%) -> (21k/98k) -> write( 8% 8%)
0:52:39 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 363k 3% 16k/s ] features: [ 3.1B 130k/s ] 212G blocks: [ 41k 99% <1/s ]
cpus: 46 gc: 2% heap: 125G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write( 6% 6%)
0:52:49 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 529k 5% 16k/s ] features: [ 3.1B 130k/s ] 212G blocks: [ 41k 99% <1/s ]
cpus: 45.9 gc: 2% heap: 124G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (25k/98k) -> write( 7% 7%)
0:52:59 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 702k 6% 17k/s ] features: [ 3.1B 127k/s ] 212G blocks: [ 41k 99% <1/s ]
cpus: 45.9 gc: 1% heap: 123G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 99% 99% 99% 99% 99% 99% 98% 98% 99% 99% 99% 98% 99% 98% 99% 99% 98% 98% 98% 98% 99% 99% 98% 99% 99% 99% 98% 98% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 98% 98% 99%) -> (23k/98k) -> write( 6% 6%)
0:53:09 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 868k 8% 16k/s ] features: [ 3.1B 158k/s ] 213G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 130G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (25k/98k) -> write( 7% 7%)
0:53:19 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 1M 9% 15k/s ] features: [ 3.1B 144k/s ] 213G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 127G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (24k/98k) -> write( 7% 7%)
0:53:29 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 1.2M 11% 18k/s ] features: [ 3.1B 131k/s ] 213G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 137G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 98% 99% 99% 98% 99% 99% 98% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 98% 98% 99% 98% 98% 98% 99% 98% 99% 98% 98% 98% 99% 99% 99% 99% 99% 99% 98% 99% 99% 98% 99% 98% 98% 98%) -> (21k/98k) -> write( 6% 6%)
0:53:39 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 1.3M 12% 17k/s ] features: [ 3.1B 554k/s ] 213G blocks: [ 41k 99% <1/s ]
cpus: 46 gc: 1% heap: 133G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (23k/98k) -> write(11% 11%)
0:53:49 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 1.5M 14% 20k/s ] features: [ 3.1B 335k/s ] 215G blocks: [ 41k 99% <1/s ]
cpus: 45.7 gc: 1% heap: 131G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 97% 98% 97% 98% 97% 98% 97% 98% 98% 98% 98% 97% 98% 97% 98% 98% 98% 98% 97% 99% 98% 98% 98% 99% 98% 98% 98% 98% 98% 98% 98% 99% 98% 97% 98% 98% 99% 98% 98% 98% 98% 98% 98% 98% 98%) -> (17k/98k) -> write( 9% 10%)
0:53:59 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 1.8M 16% 21k/s ] features: [ 3.1B 672k/s ] 215G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 136G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 99% 99% 98% 98% 98% 99% 98% 99% 98% 99% 98% 98% 98% 99% 98% 99% 99% 98% 99% 98% 98% 99% 98% 98% 98% 99% 98% 99% 98% 98% 98% 98% 98% 98% 98% 99% 98% 99% 98% 99% 99% 98% 99% 98% 98%) -> (22k/98k) -> write(12% 12%)
0:54:09 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 2M 18% 20k/s ] features: [ 3.1B 484k/s ] 216G blocks: [ 41k 99% <1/s ]
cpus: 45.9 gc: 1% heap: 139G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (23k/98k) -> write(11% 11%)
0:54:19 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 2.2M 20% 20k/s ] features: [ 3.1B 134k/s ] 216G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 139G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (27k/98k) -> write( 6% 7%)
0:54:29 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 2.4M 22% 23k/s ] features: [ 3.1B 150k/s ] 216G blocks: [ 41k 99% 1/s ]
cpus: 45.9 gc: 1% heap: 150G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (24k/98k) -> write( 7% 7%)
0:54:39 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 2.7M 24% 24k/s ] features: [ 3.1B 178k/s ] 216G blocks: [ 41k 99% <1/s ]
cpus: 45.9 gc: 1% heap: 109G/187G direct: 54M postGC: 108G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (26k/98k) -> write( 7% 7%)
0:54:49 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 2.9M 27% 26k/s ] features: [ 3.1B 208k/s ] 216G blocks: [ 41k 99% 1/s ]
cpus: 45.9 gc: 1% heap: 116G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (22k/98k) -> write( 8% 8%)
0:54:59 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 3.2M 29% 28k/s ] features: [ 3.1B 142k/s ] 217G blocks: [ 41k 99% <1/s ]
cpus: 45.7 gc: 1% heap: 121G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 99% 98% 99% 98%) -> (24k/98k) -> write( 7% 8%)
0:55:09 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 3.5M 32% 27k/s ] features: [ 3.1B 216k/s ] 217G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 129G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (23k/98k) -> write( 8% 8%)
0:55:19 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 3.8M 34% 29k/s ] features: [ 3.2B 157k/s ] 217G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 135G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (23k/98k) -> write( 7% 7%)
0:55:29 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 4.1M 37% 28k/s ] features: [ 3.2B 153k/s ] 219G blocks: [ 41k 99% <1/s ]
cpus: 45.8 gc: 1% heap: 150G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/98k) -> write( 7% 7%)
0:55:39 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 4.4M 39% 27k/s ] features: [ 3.2B 127k/s ] 219G blocks: [ 41k 99% 1/s ]
cpus: 45.7 gc: 1% heap: 144G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write( 6% 6%)
0:55:49 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 4.7M 42% 30k/s ] features: [ 3.2B 216k/s ] 219G blocks: [ 41k 100% 1/s ]
cpus: 45.9 gc: 1% heap: 154G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (23k/98k) -> write( 8% 8%)
0:55:59 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 4.9M 45% 28k/s ] features: [ 3.2B 835k/s ] 222G blocks: [ 41k 100% <1/s ]
cpus: 46 gc: 1% heap: 156G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 99% 98% 99% 99% 99% 99% 98% 99% 98% 97% 99% 99% 98% 99% 97% 99% 98% 99% 99% 99% 99% 99% 98% 98% 99% 99% 98% 99% 99% 99% 99% 97% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 96%) -> (25k/98k) -> write(25% 25%)
0:56:09 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 5.3M 47% 31k/s ] features: [ 3.2B 212k/s ] 222G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 1% heap: 114G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (18k/98k) -> write( 9% 8%)
0:56:20 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 5.6M 50% 30k/s ] features: [ 3.2B 316k/s ] 222G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 122G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (20k/98k) -> write(11% 12%)
0:56:30 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 5.9M 53% 30k/s ] features: [ 3.2B 209k/s ] 222G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 129G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (25k/98k) -> write( 8% 8%)
0:56:40 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 6.2M 56% 31k/s ] features: [ 3.2B 221k/s ] 224G blocks: [ 41k 100% 1/s ]
cpus: 45.9 gc: 1% heap: 137G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (21k/98k) -> write( 9% 9%)
0:56:50 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 6.5M 59% 31k/s ] features: [ 3.2B 155k/s ] 224G blocks: [ 41k 100% 1/s ]
cpus: 45.9 gc: 1% heap: 145G/187G direct: 54M postGC: 109G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 97% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (22k/98k) -> write( 7% 7%)
0:57:00 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 6.8M 61% 28k/s ] features: [ 3.2B 129k/s ] 224G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 1% heap: 155G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (19k/98k) -> write( 7% 6%)
0:57:10 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 7.1M 64% 27k/s ] features: [ 3.2B 222k/s ] 226G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 1% heap: 117G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 98% 99% 99% 99% 99% 99% 99% 98% 99% 98% 98% 98% 99% 99%) -> (19k/98k) -> write( 8% 7%)
0:57:20 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 7.3M 66% 27k/s ] features: [ 3.2B 161k/s ] 226G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 129G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (24k/98k) -> write( 7% 7%)
0:57:30 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 7.6M 69% 29k/s ] features: [ 3.2B 132k/s ] 226G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 145G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 97% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (20k/98k) -> write( 6% 6%)
0:57:40 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 7.9M 71% 30k/s ] features: [ 3.2B 181k/s ] 226G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 156G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (21k/98k) -> write( 7% 7%)
0:57:50 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 8.3M 74% 30k/s ] features: [ 3.2B 142k/s ] 226G blocks: [ 41k 100% 1/s ]
cpus: 45.8 gc: 1% heap: 122G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (24k/98k) -> write( 7% 7%)
0:58:00 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 8.6M 77% 32k/s ] features: [ 3.2B 149k/s ] 227G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 141G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (23k/98k) -> write( 7% 8%)
0:58:10 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 8.9M 80% 29k/s ] features: [ 3.2B 155k/s ] 227G blocks: [ 41k 100% 1/s ]
cpus: 46 gc: 1% heap: 151G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (22k/98k) -> write( 7% 7%)
0:58:20 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 9.2M 83% 31k/s ] features: [ 3.2B 156k/s ] 227G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 2% heap: 122G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (22k/98k) -> write( 7% 7%)
0:58:30 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 9.5M 85% 31k/s ] features: [ 3.2B 145k/s ] 227G blocks: [ 41k 100% <1/s ]
cpus: 45.7 gc: 1% heap: 133G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( 0%) -> (24/70) -> process(98% 98% 98% 98% 98% 98% 98% 99% 98% 98% 99% 98% 98% 98% 99% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 99% 98% 98%) -> (26k/98k) -> write( 7% 7%)
0:58:40 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 9.8M 88% 31k/s ] features: [ 3.2B 206k/s ] 229G blocks: [ 41k 100% <1/s ]
cpus: 45.9 gc: 1% heap: 152G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( -%) -> (14/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (25k/98k) -> write( 9% 8%)
0:58:50 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 10M 91% 34k/s ] features: [ 3.2B 158k/s ] 229G blocks: [ 41k 100% 1/s ]
cpus: 45.8 gc: 1% heap: 119G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( -%) -> (2/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 98% 99% 99% 99% 99% 99% 99% 99%) -> (26k/98k) -> write( 7% 7%)
0:59:00 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 10M 94% 32k/s ] features: [ 3.2B 142k/s ] 229G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 1% heap: 136G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( -%) -> (0/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (23k/98k) -> write( 7% 6%)
0:59:10 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 10M 97% 34k/s ] features: [ 3.2B 147k/s ] 229G blocks: [ 41k 100% <1/s ]
cpus: 45.8 gc: 1% heap: 114G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( -%) -> (0/70) -> process(99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99% 99%) -> (20k/98k) -> write( 6% 6%)
0:59:19 INF [osm_pass2:process] - Finished relations: 11,197,118 (26k/s) in 6m57s cpu:5h18m46s gc:4s avg:45.9
0:59:20 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 88G ways: [ 960M 100% 0/s ] rels: [ 11M 100% 31k/s ] features: [ 3.2B 131k/s ] 227G blocks: [ 41k 100% 2/s ]
cpus: 44 gc: 1% heap: 122G/187G direct: 54M postGC: 110G relInfo: 545M mpGeoms: 10G
read( -%) -> (0/70) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/98k) -> write( -% -%)
0:59:20 DEB [osm_pass2] - Processed 41,721 blocks:
0:59:20 DEB [osm_pass2] - nodes: 8,567,543,086 (38M/s) in 3m40s cpu:2h44m23s gc:3s avg:44.9
0:59:20 DEB [osm_pass2] - ways: 960,779,416 (568k/s) in 28m11s cpu:21h28m58s gc:25s avg:45.7
0:59:20 DEB [osm_pass2] - relations: 11,197,118 (26k/s) in 6m57s cpu:5h18m46s gc:4s avg:45.9
0:59:20 INF [osm_pass2] - Finished in 38m48s cpu:29h31m57s gc:33s avg:45.7
0:59:20 INF [osm_pass2] - read 1x(0% 5s sys:3s wait:37m37s done:49s)
0:59:20 INF [osm_pass2] - process 46x(96% 37m24s sys:7s block:12s wait:14s)
0:59:20 INF [osm_pass2] - write 2x(35% 13m31s sys:2m55s wait:22m56s)
0:59:20 INF [boundaries] -
0:59:20 INF [boundaries] - Starting...
0:59:20 INF [boundaries] - Creating polygons for 218 boundaries
0:59:30 INF [boundaries] - Finished creating 218 country polygons
0:59:32 WAR [boundaries] - no left or right country for border between OSM country relations: [51477] around https://www.openstreetmap.org/#map=10/54.19118/7.52130
0:59:32 WAR [boundaries] - no left or right country for border between OSM country relations: [51477] around https://www.openstreetmap.org/#map=10/54.61356/12.41358
0:59:37 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:59:38 WAR [boundaries] - no left or right country for border between OSM country relations: [51477] around https://www.openstreetmap.org/#map=10/50.01340/6.13601
0:59:38 WAR [boundaries] - no left or right country for border between OSM country relations: [51477] around https://www.openstreetmap.org/#map=10/49.77642/6.51023
0:59:39 WAR [boundaries] - no left or right country for border between OSM country relations: [51477, 16239] around https://www.openstreetmap.org/#map=10/47.38574/10.16939
0:59:39 WAR [boundaries] - no left or right country for border between OSM country relations: [51477, 16239] around https://www.openstreetmap.org/#map=10/47.67531/12.17294
0:59:40 WAR [boundaries] - no left or right country for border between OSM country relations: [51477] around https://www.openstreetmap.org/#map=10/53.42387/6.88641
0:59:40 INF [boundaries] - Finished in 20s cpu:28s avg:1.4
0:59:40 INF - Deleting node.db to make room for output file
0:59:40 INF [sort] -
0:59:40 INF [sort] - Starting...
0:59:40 INF [sort] - Grouped 208 chunks into 199
0:59:55 INF [sort] - chunks: [ 0 / 199 0% ] 231G
cpus: 16 gc: 10% heap: 37G/187G direct: 54M postGC: 35G
-> (168/231) -> worker(25% 27% 35% 31% 25% 24% 32% 31% 7% 4% 13% 19% 4% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:00:08 INF [sort] - chunks: [ 3 / 199 2% ] 232G
cpus: 15.6 gc: 7% heap: 42G/187G direct: 54M postGC: 41G
-> (165/231) -> worker(39% 48% 49% 46% 35% 47% 25% 10% 37% 39% 26% 42% 40% 37% 24% 14% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:00:20 INF [sort] - chunks: [ 9 / 199 5% ] 231G
cpus: 8.1 gc: 3% heap: 45G/187G direct: 54M postGC: 45G
-> (159/231) -> worker( 0% 0% 13% 16% 17% 0% 1% 28% 47% 35% 43% 1% 38% 35% 18% 14% 15% 18% 14% 5% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:00:32 INF [sort] - chunks: [ 17 / 199 9% ] 228G
cpus: 10.2 gc: 4% heap: 52G/187G direct: 54M postGC: 51G
-> (151/231) -> worker( 0% 0% 0% 0% 4% 0% 0% 7% 0% 0% 0% 0% 0% 1% 23% 24% 40% 39% 7% 11% 12% 0% 4% 4% 2% 0% 0% 0% 0% 0% 0%)
1:00:44 INF [sort] - chunks: [ 20 / 199 10% ] 228G
cpus: 7.4 gc: 4% heap: 32G/187G direct: 54M postGC: 32G
-> (148/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 36% 52% 39% 10% 15% 15% 16% 11% 7% 0% 0% 0% 0%)
1:00:57 INF [sort] - chunks: [ 24 / 199 12% ] 229G
cpus: 8.8 gc: 3% heap: 38G/187G direct: 54M postGC: 37G
-> (144/231) -> worker( 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 25% 32% 28% 28% 35% 10% 9% 7% 7% 3%)
1:01:07 INF [sort] - chunks: [ 30 / 199 15% ] 227G
cpus: 10.1 gc: 5% heap: 44G/187G direct: 54M postGC: 43G
-> (138/231) -> worker(11% 15% 0% 0% 0% 8% 8% 0% 0% 0% 0% 7% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 33% 47% 35% 47% 18%)
1:01:17 INF [sort] - chunks: [ 33 / 199 17% ] 227G
cpus: 7.6 gc: 6% heap: 48G/187G direct: 54M postGC: 48G
-> (135/231) -> worker(26% 46% 5% 0% 0% 11% 12% 0% 7% 0% 5% 12% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 39%)
1:01:28 INF [sort] - chunks: [ 36 / 199 18% ] 227G
cpus: 9 gc: 6% heap: 55G/187G direct: 54M postGC: 55G
-> (132/231) -> worker( 0% 0% 13% 12% 0% 42% 38% 0% 8% 9% 11% 38% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:01:40 INF [sort] - chunks: [ 39 / 199 20% ] 229G
cpus: 14.5 gc: 5% heap: 32G/187G direct: 54M postGC: 32G
-> (129/231) -> worker( 0% 0% 41% 42% 7% 0% 0% 8% 18% 41% 25% 0% 10% 11% 3% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:01:50 INF [sort] - chunks: [ 43 / 199 22% ] 227G
cpus: 11.1 gc: 4% heap: 40G/187G direct: 54M postGC: 39G
-> (125/231) -> worker( 0% 0% 0% 0% 24% 0% 0% 27% 0% 0% 0% 0% 30% 57% 26% 28% 26% 4% 2% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:02:00 INF [sort] - chunks: [ 46 / 199 23% ] 229G
cpus: 7.5 gc: 4% heap: 37G/187G direct: 54M postGC: 37G
-> (122/231) -> worker( 0% 0% 0% 0% 21% 0% 0% 35% 0% 0% 0% 0% 0% 0% 28% 37% 29% 8% 10% 11% 7% 0% 0% 5% 4% 0% 0% 0% 0% 0% 0%)
1:02:13 INF [sort] - chunks: [ 51 / 199 26% ] 230G
cpus: 16.7 gc: 5% heap: 31G/187G direct: 54M postGC: 31G
-> (117/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 31% 35% 43% 46% 13% 15% 45% 45% 13% 5% 0% 2% 4% 0%)
1:02:23 INF [sort] - chunks: [ 58 / 199 29% ] 227G
cpus: 9.8 gc: 6% heap: 41G/187G direct: 54M postGC: 40G
-> (110/231) -> worker( 3% 3% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 37% 38% 0% 0% 50% 17% 7% 17% 31% 5%)
1:02:35 INF [sort] - chunks: [ 60 / 199 30% ] 229G
cpus: 13.1 gc: 7% heap: 51G/187G direct: 54M postGC: 51G
-> (108/231) -> worker(18% 17% 1% 1% 0% 14% 18% 0% 4% 0% 2% 6% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 27% 42% 30% 0% 43%)
1:02:48 INF [sort] - chunks: [ 66 / 199 33% ] 229G
cpus: 16 gc: 4% heap: 34G/187G direct: 54M postGC: 28G
-> (102/231) -> worker(33% 38% 23% 23% 0% 39% 22% 0% 52% 21% 23% 51% 2% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:02:58 INF [sort] - chunks: [ 72 / 199 36% ] 227G
cpus: 13.5 gc: 10% heap: 47G/187G direct: 54M postGC: 44G
-> (96/231) -> worker( 0% 0% 38% 45% 23% 0% 0% 19% 0% 40% 14% 0% 22% 25% 18% 16% 2% 2% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:03:08 INF [sort] - chunks: [ 78 / 199 39% ] 227G
cpus: 17 gc: 8% heap: 60G/187G direct: 54M postGC: 55G
-> (90/231) -> worker( 0% 0% 0% 0% 30% 0% 0% 33% 0% 0% 0% 0% 33% 32% 34% 34% 24% 20% 21% 21% 3% 0% 3% 18% 16% 0% 0% 0% 0% 0% 0%)
1:03:20 INF [sort] - chunks: [ 84 / 199 42% ] 229G
cpus: 21.3 gc: 12% heap: 74G/187G direct: 54M postGC: 71G
-> (84/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 24% 24% 31% 28% 42% 21% 46% 30% 24% 16% 17% 3% 4% 19% 1%)
1:03:31 INF [sort] - chunks: [ 90 / 199 45% ] 227G
cpus: 9.2 gc: 11% heap: 84G/187G direct: 54M postGC: 83G
-> (78/231) -> worker(17% 18% 0% 0% 0% 1% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 34% 1% 0% 0% 27% 40% 16% 18% 41% 18%)
1:03:41 INF [sort] - chunks: [ 96 / 199 48% ] 227G
cpus: 20.3 gc: 6% heap: 28G/187G direct: 54M postGC: 90G
-> (72/231) -> worker(40% 43% 6% 0% 0% 12% 26% 0% 9% 7% 6% 11% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 38% 38% 0% 43%)
1:03:51 INF [sort] - chunks: [ 97 / 199 49% ] 229G
cpus: 11.6 gc: 5% heap: 35G/187G direct: 54M postGC: 35G
-> (71/231) -> worker( 0% 0% 37% 5% 0% 68% 0% 0% 32% 37% 35% 69% 3% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:04:01 INF [sort] - chunks: [ 102 / 199 51% ] 227G
cpus: 8.8 gc: 3% heap: 40G/187G direct: 54M postGC: 39G
-> (66/231) -> worker( 0% 0% 48% 19% 10% 0% 0% 9% 28% 43% 49% 0% 19% 21% 0% 9% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:04:11 INF [sort] - chunks: [ 104 / 199 52% ] 227G
cpus: 10 gc: 6% heap: 47G/187G direct: 54M postGC: 46G
-> (64/231) -> worker( 0% 0% 0% 47% 18% 0% 0% 20% 0% 0% 0% 0% 43% 25% 9% 14% 2% 1% 7% 0% 0% 0% 0% 0% 1% 0% 0% 0% 0% 0% 0%)
1:04:21 INF [sort] - chunks: [ 109 / 199 55% ] 227G
cpus: 16.6 gc: 5% heap: 27G/187G direct: 54M postGC: 26G
-> (59/231) -> worker( 0% 0% 0% 0% 45% 0% 0% 33% 0% 0% 0% 0% 0% 37% 28% 30% 22% 20% 19% 6% 0% 0% 0% 20% 22% 0% 0% 0% 0% 0% 0%)
1:04:34 INF [sort] - chunks: [ 110 / 199 55% ] 229G
cpus: 9.8 gc: 4% heap: 30G/187G direct: 54M postGC: 30G
-> (58/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 49% 56% 32% 13% 4% 2% 13% 16% 14% 1% 3% 0% 0% 0% 0%)
1:04:46 INF [sort] - chunks: [ 115 / 199 58% ] 228G
cpus: 7.7 gc: 5% heap: 22G/187G direct: 54M postGC: 22G
-> (53/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 24% 14% 15% 45% 27% 26% 14% 14% 0% 2% 5% 0%)
1:04:56 INF [sort] - chunks: [ 120 / 199 60% ] 227G
cpus: 11.9 gc: 4% heap: 29G/187G direct: 54M postGC: 28G
-> (48/231) -> worker(12% 10% 0% 0% 0% 0% 11% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 36% 39% 0% 0% 0% 36% 40% 10% 11% 13% 0%)
1:05:10 INF [sort] - chunks: [ 122 / 199 61% ] 231G
cpus: 19.2 gc: 8% heap: 37G/187G direct: 54M postGC: 37G
-> (46/231) -> worker(36% 45% 0% 0% 0% 10% 49% 0% 7% 7% 5% 12% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 38% 29% 34% 13%)
1:05:21 INF [sort] - chunks: [ 127 / 199 64% ] 232G
cpus: 16.5 gc: 5% heap: 37G/187G direct: 54M postGC: 37G
-> (41/231) -> worker( 1% 0% 13% 7% 6% 46% 0% 6% 45% 49% 50% 45% 7% 3% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 30%)
1:05:34 INF [sort] - chunks: [ 133 / 199 67% ] 231G
cpus: 12 gc: 8% heap: 49G/187G direct: 54M postGC: 49G
-> (35/231) -> worker( 0% 0% 38% 45% 40% 0% 0% 44% 0% 0% 1% 0% 40% 15% 4% 8% 4% 4% 4% 0% 0% 0% 0% 1% 0% 0% 0% 0% 0% 0% 0%)
1:05:46 INF [sort] - chunks: [ 138 / 199 69% ] 229G
cpus: 12.1 gc: 12% heap: 61G/187G direct: 54M postGC: 61G
-> (30/231) -> worker( 0% 0% 0% 1% 1% 0% 0% 0% 0% 0% 0% 0% 1% 30% 46% 40% 15% 17% 18% 4% 3% 0% 3% 15% 7% 3% 0% 0% 0% 0% 0%)
1:05:57 INF [sort] - chunks: [ 144 / 199 72% ] 228G
cpus: 10.8 gc: 11% heap: 71G/187G direct: 54M postGC: 71G
-> (24/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 1% 0% 35% 33% 34% 19% 19% 18% 20% 30% 48% 18% 3% 0% 1% 0% 0%)
1:06:09 INF [sort] - chunks: [ 147 / 199 74% ] 227G
cpus: 17.4 gc: 4% heap: 27G/187G direct: 54M postGC: 78G
-> (18/231) -> worker( 0% 11% 0% 0% 0% 0% 12% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 33% 48% 51% 40% 0% 0% 32% 16% 15% 15% 16% 0%)
1:06:21 INF [sort] - chunks: [ 152 / 199 76% ] 229G
cpus: 12.4 gc: 4% heap: 33G/187G direct: 54M postGC: 32G
-> (16/231) -> worker( 9% 16% 0% 0% 0% 2% 17% 0% 1% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 37% 51% 45% 47% 3%)
1:06:31 INF [sort] - chunks: [ 156 / 199 78% ] 227G
cpus: 6.1 gc: 4% heap: 41G/187G direct: 54M postGC: 40G
-> (12/231) -> worker(28% 25% 0% 0% 0% 30% 50% 0% 30% 16% 0% 24% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 26%)
1:06:41 INF [sort] - chunks: [ 160 / 199 80% ] 229G
cpus: 13.6 gc: 7% heap: 48G/187G direct: 54M postGC: 48G
-> (8/231) -> worker(39% 0% 11% 6% 5% 42% 0% 9% 45% 32% 14% 43% 12% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 31%)
1:06:51 INF [sort] - chunks: [ 165 / 199 83% ] 227G
cpus: 11.4 gc: 4% heap: 22G/187G direct: 54M postGC: 21G
-> (3/231) -> worker( 0% 0% 46% 14% 11% 0% 0% 13% 0% 0% 46% 1% 27% 7% 4% 5% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0%)
1:07:01 INF [sort] - chunks: [ 168 / 199 84% ] 227G
cpus: 7.7 gc: 4% heap: 26G/187G direct: 54M postGC: 24G
-> (0/231) -> worker( 0% 0% 0% 17% 38% 0% 0% 33% 0% 0% 0% 0% 0% 24% 24% 21% 14% 23% 0% 0% 0% 0% 0% 25% 0% 0% 0% 0% 0% 0% 0%)
1:07:14 INF [sort] - chunks: [ 170 / 199 85% ] 229G
cpus: 19.6 gc: 7% heap: 36G/187G direct: 54M postGC: 34G
-> (0/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% -% 34% -% 15% 12% 10% 7% 0% 3% 4% 33% 9% 7% 0% 0% 0% 0% 0%)
1:07:26 INF [sort] - chunks: [ 175 / 199 88% ] 230G
cpus: 9.5 gc: 5% heap: 35G/187G direct: 54M postGC: 35G
-> (0/231) -> worker( 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% 0% -% -% -% -% -% -% -% 5% 14% 13% -% -% -% 4% 4% 0% 5% 0%)
1:07:36 INF [sort] - chunks: [ 180 / 199 90% ] 229G
cpus: 10.8 gc: 6% heap: 42G/187G direct: 54M postGC: 41G
-> (0/231) -> worker( 0% 11% 0% 0% 0% 0% 1% 0% 0% 0% 0% 0% 0% -% -% -% -% -% -% -% 16% -% -% -% -% -% 30% 17% 15% 18% 0%)
1:07:50 INF [sort] - chunks: [ 184 / 199 92% ] 228G
cpus: 16.6 gc: 6% heap: 25G/187G direct: 54M postGC: 25G
-> (0/231) -> worker( 8% 37% 0% 0% 0% 13% 14% 0% 14% 1% 0% 0% 0% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 14%)
1:08:00 INF [sort] - chunks: [ 186 / 199 93% ] 232G
cpus: 17.7 gc: 7% heap: 35G/187G direct: 54M postGC: 35G
-> (0/231) -> worker(-370% -% 11% 7% 0% 57% 63% 0% -409% 23% 14% 15% 12% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% 52%)
1:08:14 INF [sort] - chunks: [ 194 / 199 97% ] 229G
cpus: 10.6 gc: 4% heap: 32G/187G direct: 54M postGC: 31G
-> (0/231) -> worker( -% -% -% 14% 7% -% -% 14% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
1:08:19 INF [sort] - chunks: [ 199 / 199 100% ] 227G
cpus: 5.2 gc: 3% heap: 33G/187G direct: 54M postGC: 33G
-> (0/231) -> worker( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
1:08:19 INF [sort] - Finished in 8m39s cpu:1h47m27s gc:31s avg:12.4
1:08:19 INF [sort] - worker 31x(8% 42s sys:14s wait:5m51s done:35s)
1:08:19 INF - read:3066s write:919s sort:375s
1:08:19 INF [archive] -
1:08:19 INF [archive] - Starting...
1:08:20 DEB [archive:write] - Execute mbtiles: create table metadata (name text, value text);
1:08:20 DEB [archive:write] - Execute mbtiles: create unique index name on metadata (name);
1:08:20 DEB [archive:write] - Execute mbtiles: create table tiles_shallow (
zoom_level integer,
tile_column integer,
tile_row integer,
tile_data_id integer
, primary key(zoom_level,tile_column,tile_row)
) without rowid
1:08:20 DEB [archive:write] - Execute mbtiles: create table tiles_data (
tile_data_id integer primary key,
tile_data blob
)
1:08:20 DEB [archive:write] - Execute mbtiles: create view tiles AS
select
tiles_shallow.zoom_level as zoom_level,
tiles_shallow.tile_column as tile_column,
tiles_shallow.tile_row as tile_row,
tiles_data.tile_data as tile_data
from tiles_shallow
join tiles_data on tiles_shallow.tile_data_id = tiles_data.tile_data_id
1:08:20 DEB [archive:write] - Set mbtiles metadata: format=pbf
1:08:20 DEB [archive:write] - Set mbtiles metadata: center=0,0,0
1:08:20 DEB [archive:write] - Set mbtiles metadata: bounds=-180,-85.05113,180,85.05113
1:08:20 DEB [archive: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:ru":"String","name:fi":"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":"St... 11876 more characters
1:08:20 DEB [archive:write] - Set mbtiles metadata: name=OpenMapTiles
1:08:20 DEB [archive:write] - Set mbtiles metadata: description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org
1:08:20 DEB [archive:write] - Set mbtiles metadata: attribution=<a href="https://www.openmaptiles.org/" target="_blank">&copy; OpenMapTiles</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a>
1:08:20 DEB [archive:write] - Set mbtiles metadata: version=3.14.0
1:08:20 DEB [archive:write] - Set mbtiles metadata: type=baselayer
1:08:20 DEB [archive:write] - Set mbtiles metadata: minzoom=0
1:08:20 DEB [archive:write] - Set mbtiles metadata: maxzoom=14
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:version=0.6.0
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:githash=72f86c8b6361f1b6ae80337220525333f943d7e9
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:buildtime=2023-04-01T09:24:50.895Z
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationtime=2023-08-14T00:00:02Z
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationseq=0
1:08:20 DEB [archive:write] - Set mbtiles metadata: planetiler:osm:osmosisreplicationurl=
1:08:22 WAR [archive:encode] - {x=2 y=2 z=2} 1120kb uncompressed
1:08:22 WAR [archive:encode] - {x=5 y=3 z=3} 1054kb uncompressed
1:08:23 WAR [archive:encode] - {x=2 y=1 z=2} 1173kb uncompressed
1:08:23 INF [archive:write] - Starting z0
1:08:23 INF [archive:write] - Finished z0 in 0s cpu:0s avg:0, now starting z1
1:08:23 INF [archive:write] - Finished z1 in 0s cpu:0s avg:0, now starting z2
1:08:24 INF [archive:write] - Finished z2 in 0.9s cpu:38s avg:43.8, now starting z3
1:08:24 INF [archive:write] - Finished z3 in 0.4s cpu:8s avg:21.6, now starting z4
1:08:26 INF [archive:write] - Finished z4 in 1s cpu:1m5s avg:44.4, now starting z5
1:08:26 INF [archive:write] - Finished z5 in 0.4s cpu:16s avg:45.6, now starting z6
1:08:30 INF [archive] - features: [ 8.9M 0% 890k/s ] 227G tiles: [ 2.4k 242/s ] 49M
cpus: 41.8 gc: 24% heap: 20G/187G direct: 54M postGC: 13G
read(42% 41%) -> merge(45%) -> (1k/9.4k) -> encode(61% 63% 62% 59% 57% 60% 61% 58% 56% 56% 56% 56% 60% 58% 59% 59% 57% 56% 57% 58% 55% 59% 58% 58% 57% 59% 58% 61% 56% 58% 59% 58% 56% 57% 58% 58% 56% 54% 58% 54% 57% 56% 54% 55% 56% 58%) -> (1.1k/9.3k) -> write( 2%)
last tile: 6/16/24 (z6 25%) https://www.openstreetmap.org/#map=6/40.97990/-90.00000
1:08:34 INF [archive:write] - Finished z6 in 8s cpu:5m34s gc:1s avg:44, now starting z7
1:08:40 INF [archive] - features: [ 15M 0% 605k/s ] 227G tiles: [ 7.4k 500/s ] 100M
cpus: 45 gc: 10% heap: 24G/187G direct: 54M postGC: 16G
read(38% 39%) -> merge(40%) -> (1.8k/9.4k) -> encode(89% 88% 89% 87% 88% 88% 88% 88% 89% 89% 89% 87% 88% 85% 89% 88% 88% 88% 87% 89% 85% 89% 88% 87% 89% 89% 89% 89% 88% 86% 88% 88% 89% 88% 88% 89% 88% 89% 88% 87% 88% 87% 88% 88% 88% 88%) -> (2k/9.3k) -> write( 2%)
last tile: 7/16/38 (z7 12%) https://www.openstreetmap.org/#map=7/58.81374/-135.00000
1:08:50 INF [archive] - features: [ 19M 1% 485k/s ] 227G tiles: [ 9.7k 226/s ] 126M
cpus: 43.5 gc: 6% heap: 105G/187G direct: 54M postGC: 17G
read(43% 47%) -> merge(52%) -> (2.7k/9.4k) -> encode(87% 86% 87% 87% 86% 87% 86% 86% 87% 91% 86% 87% 87% 86% 86% 87% 86% 85% 92% 87% 88% 87% 86% 86% 87% 87% 87% 86% 87% 86% 88% 87% 86% 86% 87% 87% 87% 87% 87% 80% 85% 87% 85% 87% 87% 87%) -> (2.9k/9.3k) -> write(10%)
last tile: 7/37/45 (z7 29%) https://www.openstreetmap.org/#map=7/47.04018/-75.93750
1:09:00 INF [archive] - features: [ 21M 1% 161k/s ] 227G tiles: [ 13k 340/s ] 160M
cpus: 32.5 gc: 10% heap: 17G/187G direct: 54M postGC: 14G
read(31% 31%) -> merge(24%) -> (3.5k/9.4k) -> encode(57% 61% 54% 56% 53% 59% 59% 56% 58% 56% 56% 59% 57% 59% 62% 60% 54% 61% 55% 59% 56% 58% 60% 52% 52% 57% 53% 53% 59% 58% 62% 59% 55% 59% 57% 57% 54% 59% 54% 55% 56% 56% 60% 56% 61% 57%) -> (3.7k/9.3k) -> write(10%)
last tile: 7/67/36 (z7 52%) https://www.openstreetmap.org/#map=7/61.60640/8.43750
1:09:10 INF [archive] - features: [ 27M 1% 561k/s ] 227G tiles: [ 13k 10/s ] 160M
cpus: 41.3 gc: 17% heap: 20G/187G direct: 54M postGC: 14G
read(32% 32%) -> merge(21%) -> (4k/9.4k) -> encode(75% 76% 72% 68% 77% 74% 74% 70% 73% 74% 74% 74% 72% 73% 75% 71% 68% 71% 72% 73% 77% 75% 70% 76% 74% 73% 78% 67% 74% 73% 74% 74% 74% 75% 69% 78% 81% 75% 71% 75% 72% 66% 74% 75% 71% 75%) -> (4.5k/9.3k) -> write( 0%)
last tile: 7/68/35 (z7 53%) https://www.openstreetmap.org/#map=7/62.91523/11.25000
1:09:20 INF [archive] - features: [ 32M 1% 523k/s ] 227G tiles: [ 13k 30/s ] 160M
cpus: 45.4 gc: 4% heap: 64G/187G direct: 54M postGC: 16G
read(39% 40%) -> merge(26%) -> (4.7k/9.4k) -> encode(91% 85% 87% 90% 87% 84% 87% 89% 89% 79% 89% 85% 87% 84% 89% 83% 87% 82% 83% 89% 87% 87% 85% 85% 83% 91% 88% 84% 88% 86% 86% 90% 82% 87% 87% 83% 87% 90% 83% 82% 81% 83% 80% 85% 89% 89%) -> (5.6k/9.3k) -> write( 1%)
last tile: 7/71/32 (z7 55%) https://www.openstreetmap.org/#map=7/66.51326/19.68750
1:09:21 INF [archive:write] - Finished z7 in 47s cpu:32m23s gc:5s avg:41.1, now starting z8
1:09:30 INF [archive] - features: [ 41M 1% 872k/s ] 227G tiles: [ 48k 3.4k/s ] 404M
cpus: 44.3 gc: 18% heap: 37G/187G direct: 54M postGC: 19G
read(38% 38%) -> merge(39%) -> (6.1k/9.4k) -> encode(81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 80% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81% 81%) -> (6.4k/9.3k) -> write( 8%)
last tile: 8/127/86 (z8 50%) https://www.openstreetmap.org/#map=8/50.73646/-1.40625
1:09:40 INF [archive] - features: [ 47M 1% 672k/s ] 227G tiles: [ 51k 343/s ] 486M
cpus: 44.3 gc: 11% heap: 48G/187G direct: 54M postGC: 20G
read(37% 37%) -> merge(35%) -> (7.8k/9.4k) -> encode(86% 84% 73% 85% 88% 80% 85% 81% 85% 87% 83% 78% 86% 80% 80% 79% 84% 82% 79% 78% 75% 85% 76% 77% 84% 84% 75% 80% 76% 84% 83% 79% 83% 87% 85% 85% 87% 80% 85% 81% 84% 80% 85% 75% 83% 88%) -> (8k/9.3k) -> write( 3%)
last tile: 8/144/91 (z8 56%) https://www.openstreetmap.org/#map=8/46.07323/22.50000
1:09:50 INF [archive] - features: [ 60M 2% 1.2M/s ] 227G tiles: [ 60k 872/s ] 620M
cpus: 45.5 gc: 11% heap: 35G/187G direct: 54M postGC: 22G
read(37% 33%) -> merge(32%) -> (8.6k/9.4k) -> encode(77% 81% 82% 87% 79% 80% 85% 88% 86% 77% 82% 78% 81% 82% 81% 82% 87% 81% 88% 83% 84% 82% 85% 73% 82% 81% 81% 75% 80% 81% 82% 71% 75% 81% 75% 88% 80% 73% 77% 88% 88% 76% 88% 82% 80% 87%) -> (8.9k/9.3k) -> write( 5%)
last tile: 8/188/86 (z8 73%) https://www.openstreetmap.org/#map=8/50.73646/84.37500
1:10:00 INF [archive:write] - Finished z8 in 39s cpu:29m10s gc:4s avg:45.3, now starting z9
1:10:00 INF [archive] - features: [ 66M 2% 600k/s ] 227G tiles: [ 85k 2.5k/s ] 707M
cpus: 45.5 gc: 10% heap: 64G/187G direct: 54M postGC: 24G
read(37% 20%) -> merge(28%) -> (9k/9.4k) -> encode(79% 82% 77% 84% 81% 86% 78% 79% 87% 83% 84% 85% 87% 84% 80% 86% 85% 83% 86% 82% 83% 84% 80% 85% 87% 87% 87% 82% 83% 87% 87% 86% 85% 84% 83% 82% 82% 85% 81% 85% 82% 84% 87% 88% 88% 84%) -> (9.3k/9.3k) -> write( 4%)
last tile: 9/25/261 (z9 5%) https://www.openstreetmap.org/#map=9/-3.51342/-162.42188
1:10:10 INF [archive] - features: [ 71M 2% 536k/s ] 227G tiles: [ 139k 5.3k/s ] 885M
cpus: 39.3 gc: 8% heap: 28G/187G direct: 54M postGC: 24G
read(10% 11%) -> merge( 9%) -> (9.2k/9.4k) -> encode(79% 80% 79% 78% 77% 78% 79% 80% 78% 78% 78% 79% 79% 78% 78% 80% 78% 78% 79% 79% 80% 78% 78% 79% 79% 78% 78% 79% 78% 79% 79% 78% 79% 79% 78% 78% 79% 78% 78% 78% 79% 79% 78% 79% 79% 78%) -> (9.3k/9.3k) -> write(12%)
last tile: 9/147/185 (z9 29%) https://www.openstreetmap.org/#map=9/44.59047/-76.64063
1:10:20 INF [archive] - features: [ 81M 2% 922k/s ] 227G tiles: [ 188k 4.8k/s ] 1G
cpus: 45.6 gc: 10% heap: 28G/187G direct: 54M postGC: 23G
read( 5% 4%) -> merge( 5%) -> (9.1k/9.4k) -> encode(81% 89% 80% 87% 84% 82% 86% 88% 80% 85% 71% 86% 89% 89% 80% 76% 75% 82% 86% 83% 89% 85% 89% 79% 87% 89% 81% 89% 82% 77% 89% 86% 86% 78% 86% 82% 84% 83% 78% 80% 89% 81% 87% 74% 79% 79%) -> (9.3k/9.3k) -> write( 7%)
last tile: 9/255/171 (z9 50%) https://www.openstreetmap.org/#map=9/51.17934/-0.70313
1:10:30 INF [archive] - features: [ 86M 3% 555k/s ] 227G tiles: [ 195k 727/s ] 1.1G
cpus: 46.5 gc: 3% heap: 81G/187G direct: 54M postGC: 24G
read( 9% 10%) -> merge(11%) -> (9.1k/9.4k) -> encode(87% 88% 85% 96% 93% 81% 92% 92% 86% 86% 94% 94% 87% 87% 96% 83% 86% 95% 88% 96% 86% 87% 87% 85% 87% 76% 85% 90% 93% 92% 94% 88% 88% 83% 77% 88% 86% 93% 93% 93% 83% 86% 90% 89% 96% 89%) -> (9.3k/9.3k) -> write( 4%)
last tile: 9/273/150 (z9 53%) https://www.openstreetmap.org/#map=9/59.53432/11.95313
1:10:41 INF [archive] - features: [ 92M 3% 560k/s ] 227G tiles: [ 201k 581/s ] 1.2G
cpus: 45 gc: 7% heap: 60G/187G direct: 54M postGC: 23G
read( 8% 8%) -> merge( 8%) -> (9.1k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write( 4%)
last tile: 9/288/252 (z9 56%) https://www.openstreetmap.org/#map=9/2.81137/22.50000
1:10:51 INF [archive] - features: [ 102M 3% 983k/s ] 227G tiles: [ 220k 1.9k/s ] 1.5G
cpus: 45.8 gc: 3% heap: 80G/187G direct: 54M postGC: 24G
read(13% 12%) -> merge(15%) -> (9.1k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 96% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 96% 97% 96% 96% 97% 97% 97% 97% 97% 95% 97% 97% 97% 97% 96% 96%) -> (9.3k/9.3k) -> write( 9%)
last tile: 9/337/198 (z9 66%) https://www.openstreetmap.org/#map=9/37.71859/56.95313
1:11:01 INF [archive] - features: [ 114M 4% 1.2M/s ] 227G tiles: [ 255k 3.4k/s ] 1.7G
cpus: 45.3 gc: 5% heap: 48G/187G direct: 54M postGC: 26G
read( 8% 8%) -> merge( 9%) -> (8.8k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 93% 94% 94% 94% 93% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 7%)
last tile: 9/425/212 (z9 83%) https://www.openstreetmap.org/#map=9/29.53523/118.82813
1:11:04 INF [archive:write] - Finished z9 in 1m4s cpu:47m39s gc:4s avg:44.6, now starting z10
1:11:11 INF [archive] - features: [ 126M 4% 1.1M/s ] 227G tiles: [ 448k 19k/s ] 1.8G
cpus: 45.7 gc: 4% heap: 99G/187G direct: 54M postGC: 27G
read(10% 10%) -> merge(10%) -> (8.2k/9.4k) -> encode(95% 96% 95% 96% 96% 96% 96% 95% 95% 94% 96% 95% 96% 95% 95% 93% 96% 95% 94% 96% 96% 95% 95% 96% 95% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 94% 96% 96% 95% 96% 94% 96% 96% 96% 95% 95%) -> (9.3k/9.3k) -> write( 9%)
last tile: 10/171/400 (z10 17%) https://www.openstreetmap.org/#map=10/36.59789/-119.88281
1:11:21 INF [archive] - features: [ 140M 4% 1.3M/s ] 227G tiles: [ 501k 5.2k/s ] 1.9G
cpus: 45.4 gc: 5% heap: 69G/187G direct: 54M postGC: 27G
read( 4% 4%) -> merge( 4%) -> (7k/9.4k) -> encode(95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 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% 94% 95%) -> (9.3k/9.3k) -> write( 4%)
last tile: 10/236/414 (z10 23%) https://www.openstreetmap.org/#map=10/32.54681/-97.03125
1:11:31 INF [archive] - features: [ 151M 5% 1.1M/s ] 227G tiles: [ 501k 0/s ] 1.9G
cpus: 45.4 gc: 5% heap: 50G/187G direct: 54M postGC: 28G
read( 0% 0%) -> merge( 0%) -> (6k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 0%)
last tile: 10/236/414 (z10 23%) https://www.openstreetmap.org/#map=10/32.54681/-97.03125
1:11:41 INF [archive] - features: [ 170M 5% 1.9M/s ] 227G tiles: [ 1M 51k/s ] 3.7G
cpus: 46.7 gc: 5% heap: 35G/187G direct: 54M postGC: 30G
read(32% 31%) -> merge(51%) -> (7.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 93% 94% 94% 94% 91% 94% 94% 94% 94% 94% 91% 94% 94% 92% 94% 93% 94% 93% 92% 93% 94% 94% 93% 94% 93% 94%) -> (7.3k/9.3k) -> write(66%)
last tile: 10/878/380 (z10 86%) https://www.openstreetmap.org/#map=10/42.03297/128.67188
1:11:44 INF [archive:write] - Finished z10 in 40s cpu:30m15s gc:2s avg:45.8, now starting z11
1:11:51 INF [archive] - features: [ 186M 6% 1.5M/s ] 227G tiles: [ 1.7M 74k/s ] 4G
cpus: 46.1 gc: 7% heap: 75G/187G direct: 54M postGC: 34G
read(40% 37%) -> merge(46%) -> (7.3k/9.4k) -> encode(91% 92% 92% 90% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 89% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 91% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (8.5k/9.3k) -> write(23%)
last tile: 11/342/799 (z11 17%) https://www.openstreetmap.org/#map=11/36.73888/-119.88281
1:12:01 INF [archive] - features: [ 203M 6% 1.7M/s ] 227G tiles: [ 2.2M 45k/s ] 4.6G
cpus: 46.6 gc: 5% heap: 45G/187G direct: 54M postGC: 22G
read(38% 37%) -> merge(25%) -> (7.9k/9.4k) -> encode(87% 85% 83% 92% 90% 89% 94% 85% 85% 86% 85% 86% 90% 79% 92% 88% 93% 86% 84% 82% 91% 93% 87% 89% 86% 91% 89% 86% 86% 81% 84% 87% 84% 89% 90% 89% 78% 87% 91% 79% 84% 86% 83% 90% 88% 87%) -> (9.3k/9.3k) -> write(28%)
last tile: 11/639/1158 (z11 31%) https://www.openstreetmap.org/#map=11/-22.91792/-67.67578
1:12:11 INF [archive] - features: [ 221M 7% 1.7M/s ] 227G tiles: [ 3M 80k/s ] 5.6G
cpus: 45.9 gc: 6% heap: 36G/187G direct: 54M postGC: 26G
read(27% 30%) -> merge(25%) -> (9.2k/9.4k) -> encode(92% 93% 91% 91% 93% 91% 93% 91% 91% 92% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 91% 92% 93% 92% 92% 91% 93% 92% 93% 93% 92% 91% 91% 92% 91% 93% 93% 92% 93% 93% 93% 93% 93% 92% 93% 92%) -> (9.3k/9.3k) -> write(39%)
last tile: 11/1106/582 (z11 54%) https://www.openstreetmap.org/#map=11/61.10079/14.41406
1:12:21 INF [archive] - features: [ 233M 7% 1.2M/s ] 227G tiles: [ 3.1M 14k/s ] 6.2G
cpus: 46.7 gc: 1% heap: 95G/187G direct: 54M postGC: 19G
read(19% 20%) -> merge(16%) -> (9.2k/9.4k) -> encode(85% 94% 89% 90% 94% 92% 94% 97% 95% 98% 96% 92% 94% 86% 95% 97% 96% 97% 91% 97% 88% 88% 83% 95% 94% 97% 93% 95% 98% 98% 85% 87% 98% 97% 94% 92% 91% 97% 84% 92% 92% 98% 79% 98% 89% 89%) -> (9.3k/9.3k) -> write(21%)
last tile: 11/1201/611 (z11 59%) https://www.openstreetmap.org/#map=11/58.53959/31.11328
1:12:31 INF [archive] - features: [ 252M 8% 1.8M/s ] 227G tiles: [ 3.7M 58k/s ] 7.2G
cpus: 46.7 gc: 3% heap: 29G/187G direct: 54M postGC: 18G
read(25% 26%) -> merge(21%) -> (9.2k/9.4k) -> encode(95% 91% 91% 96% 95% 89% 86% 97% 86% 90% 89% 94% 91% 96% 94% 94% 92% 95% 93% 87% 86% 96% 91% 96% 94% 94% 85% 88% 91% 91% 90% 91% 89% 94% 95% 94% 89% 95% 85% 95% 96% 96% 92% 90% 91% 95%) -> (9.3k/9.3k) -> write(37%)
last tile: 11/1598/858 (z11 78%) https://www.openstreetmap.org/#map=11/27.99440/100.89844
1:12:39 INF [archive:write] - Finished z11 in 55s cpu:42m40s gc:3s avg:46.4, now starting z12
1:12:41 INF [archive] - features: [ 276M 9% 2.4M/s ] 227G tiles: [ 5.3M 153k/s ] 7.8G
cpus: 46.2 gc: 8% heap: 53G/187G direct: 54M postGC: 21G
read(36% 37%) -> merge(33%) -> (7.4k/9.4k) -> encode(90% 91% 83% 85% 90% 86% 91% 89% 90% 87% 91% 90% 91% 85% 87% 87% 89% 89% 86% 89% 88% 85% 88% 88% 89% 91% 86% 89% 90% 84% 87% 87% 87% 83% 91% 91% 85% 88% 87% 91% 85% 90% 86% 89% 82% 88%) -> (9.3k/9.3k) -> write(44%)
last tile: 12/212/2937 (z12 5%) https://www.openstreetmap.org/#map=12/-61.31245/-161.36719
1:12:51 INF [archive] - features: [ 304M 9% 2.7M/s ] 227G tiles: [ 7.7M 238k/s ] 8.5G
cpus: 46.1 gc: 8% heap: 21G/187G direct: 54M postGC: 20G
read(32% 30%) -> merge(30%) -> (7.4k/9.4k) -> encode(84% 88% 86% 87% 89% 88% 88% 84% 82% 89% 88% 88% 87% 90% 89% 89% 86% 90% 83% 88% 85% 87% 92% 82% 91% 88% 79% 86% 87% 90% 82% 85% 89% 86% 87% 89% 89% 87% 85% 88% 85% 90% 87% 87% 86% 88%) -> (8.7k/9.3k) -> write(62%)
last tile: 12/951/1835 (z12 23%) https://www.openstreetmap.org/#map=12/18.39623/-96.41602
1:13:01 INF [archive] - features: [ 329M 10% 2.4M/s ] 227G tiles: [ 8.5M 83k/s ] 9.5G
cpus: 46 gc: 9% heap: 50G/187G direct: 54M postGC: 19G
read(36% 37%) -> merge(34%) -> (6.7k/9.4k) -> encode(83% 82% 79% 80% 88% 83% 86% 83% 85% 87% 88% 88% 84% 88% 84% 83% 87% 88% 78% 85% 89% 82% 81% 84% 90% 89% 83% 84% 88% 86% 90% 86% 85% 86% 83% 88% 80% 88% 84% 82% 82% 80% 80% 83% 87% 84%) -> (6.9k/9.3k) -> write(41%)
last tile: 12/1233/3672 (z12 30%) https://www.openstreetmap.org/#map=12/-80.53207/-71.63086
1:13:11 INF [archive] - features: [ 357M 11% 2.7M/s ] 227G tiles: [ 10M 239k/s ] 10G
cpus: 46.5 gc: 5% heap: 56G/187G direct: 54M postGC: 13G
read(32% 33%) -> merge(27%) -> (4.2k/9.4k) -> encode(92% 91% 87% 93% 89% 92% 90% 90% 91% 88% 90% 92% 91% 90% 92% 90% 91% 86% 92% 90% 84% 84% 90% 88% 89% 89% 87% 89% 94% 89% 90% 90% 89% 88% 90% 91% 94% 87% 88% 90% 92% 83% 86% 84% 90% 90%) -> (4.9k/9.3k) -> write(67%)
last tile: 12/1915/2108 (z12 47%) https://www.openstreetmap.org/#map=12/-5.26601/-11.68945
1:13:21 INF [archive] - features: [ 383M 12% 2.6M/s ] 227G tiles: [ 11M 60k/s ] 11G
cpus: 46.2 gc: 7% heap: 51G/187G direct: 54M postGC: 10G
read(36% 35%) -> merge(26%) -> (2.9k/9.4k) -> encode(83% 89% 92% 92% 88% 86% 92% 89% 92% 88% 84% 91% 88% 88% 84% 91% 91% 90% 90% 86% 90% 91% 88% 90% 89% 87% 91% 88% 90% 85% 92% 90% 90% 89% 86% 89% 87% 92% 91% 92% 90% 86% 87% 92% 92% 85%) -> (3k/9.3k) -> write(29%)
last tile: 12/2106/1922 (z12 51%) https://www.openstreetmap.org/#map=12/11.00590/5.09766
1:13:31 INF [archive] - features: [ 411M 13% 2.7M/s ] 227G tiles: [ 11M 28k/s ] 11G
cpus: 46.2 gc: 6% heap: 56G/187G direct: 54M postGC: 10G
read(35% 34%) -> merge(37%) -> (2k/9.4k) -> encode(93% 88% 89% 93% 93% 89% 87% 89% 89% 93% 89% 89% 88% 86% 93% 92% 92% 91% 93% 92% 89% 93% 90% 93% 90% 82% 89% 93% 89% 86% 93% 87% 93% 91% 93% 86% 87% 93% 93% 87% 93% 89% 89% 83% 93% 89%) -> (2.2k/9.3k) -> write(24%)
last tile: 12/2196/1123 (z12 54%) https://www.openstreetmap.org/#map=12/62.79493/13.00781
1:13:41 INF [archive] - features: [ 430M 13% 1.9M/s ] 227G tiles: [ 12M 31k/s ] 12G
cpus: 46.2 gc: 7% heap: 29G/187G direct: 54M postGC: 8.1G
read(36% 33%) -> merge(29%) -> (1.7k/9.4k) -> encode(92% 90% 85% 84% 90% 89% 86% 83% 84% 84% 89% 87% 86% 89% 86% 83% 88% 89% 89% 80% 89% 85% 86% 88% 89% 84% 86% 88% 85% 87% 86% 83% 89% 80% 87% 85% 89% 80% 90% 90% 89% 89% 88% 88% 90% 88%) -> (1.9k/9.3k) -> write(26%)
last tile: 12/2302/1478 (z12 56%) https://www.openstreetmap.org/#map=12/44.71551/22.32422
1:13:51 INF [archive] - features: [ 450M 14% 1.9M/s ] 227G tiles: [ 12M 38k/s ] 13G
cpus: 46 gc: 7% heap: 15G/187G direct: 54M postGC: 11G
read(37% 37%) -> merge(36%) -> (1.8k/9.4k) -> 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% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92%) -> (2k/9.3k) -> write(30%)
last tile: 12/2429/2178 (z12 59%) https://www.openstreetmap.org/#map=12/-11.35080/33.48633
1:14:01 INF [archive] - features: [ 475M 15% 2.4M/s ] 227G tiles: [ 13M 128k/s ] 14G
cpus: 46.7 gc: 6% heap: 59G/187G direct: 54M postGC: 12G
read(35% 34%) -> merge(35%) -> (1.8k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94%) -> (2k/9.3k) -> write(56%)
last tile: 12/2856/384 (z12 70%) https://www.openstreetmap.org/#map=12/81.09321/71.01563
1:14:11 INF [archive] - features: [ 509M 16% 3.3M/s ] 227G tiles: [ 15M 131k/s ] 15G
cpus: 46.8 gc: 5% heap: 23G/187G direct: 54M postGC: 10G
read(36% 34%) -> merge(37%) -> (743/9.4k) -> encode(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% 94% 94% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (855/9.3k) -> write(57%)
last tile: 12/3338/1786 (z12 81%) https://www.openstreetmap.org/#map=12/22.43134/113.37891
1:14:21 INF [archive] - features: [ 542M 17% 3.2M/s ] 227G tiles: [ 17M 197k/s ] 16G
cpus: 47.2 gc: 3% heap: 37G/187G direct: 54M postGC: 10G
read(38% 36%) -> merge(40%) -> (1.2k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 96% 96% 96% 97% 97% 97% 97% 97% 97% 94% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (4.7k/9.3k) -> write(62%)
last tile: 12/3997/1200 (z12 98%) https://www.openstreetmap.org/#map=12/59.53432/171.29883
1:14:22 INF [archive:write] - Finished z12 in 1m43s cpu:1h19m54s gc:6s avg:46.4, now starting z13
1:14:31 INF [archive] - features: [ 557M 17% 1.5M/s ] 227G tiles: [ 22M 485k/s ] 16G
cpus: 44.4 gc: 21% heap: 22G/187G direct: 54M postGC: 16G
read(28% 28%) -> merge(29%) -> (1.1k/9.4k) -> encode(78% 79% 78% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 79% 77% 79% 78% 75% 77% 78% 79% 79% 79% 79% 78% 79% 79% 79% 78% 78% 79% 78% 77% 78% 78% 79% 78% 79% 79% 78% 79% 79% 79% 79% 79%) -> (6.5k/9.3k) -> write(79%)
last tile: 13/576/5591 (z13 7%) https://www.openstreetmap.org/#map=13/-54.74999/-154.68750
1:14:41 INF [archive] - features: [ 562M 17% 500k/s ] 227G tiles: [ 26M 471k/s ] 17G
cpus: 45.9 gc: 10% heap: 33G/187G direct: 54M postGC: 19G
read(29% 30%) -> merge(27%) -> (3.8k/9.4k) -> encode(89% 88% 89% 88% 89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 88% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 86% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89% 89%) -> (4.7k/9.3k) -> write(87%)
last tile: 13/1297/3137 (z13 16%) https://www.openstreetmap.org/#map=13/38.78835/-123.00293
1:14:52 INF [archive] - features: [ 569M 18% 656k/s ] 227G tiles: [ 27M 38k/s ] 17G
cpus: 45.3 gc: 12% heap: 23G/187G direct: 54M postGC: 22G
read(36% 35%) -> merge(30%) -> (6.5k/9.4k) -> encode(87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 86% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87% 87%) -> (6.9k/9.3k) -> write(14%)
last tile: 13/1361/3056 (z13 17%) https://www.openstreetmap.org/#map=13/41.50858/-120.19043
1:15:02 INF [archive] - features: [ 573M 18% 353k/s ] 227G tiles: [ 27M 25k/s ] 17G
cpus: 45.6 gc: 9% heap: 37G/187G direct: 54M postGC: 27G
read(40% 37%) -> merge(31%) -> (9.2k/9.4k) -> encode(90% 90% 90% 88% 89% 90% 90% 90% 90% 90% 90% 90% 88% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/1402/3272 (z13 17%) https://www.openstreetmap.org/#map=13/34.01624/-118.38867
1:15:12 INF [archive] - features: [ 576M 18% 348k/s ] 227G tiles: [ 27M 8.3k/s ] 17G
cpus: 45.6 gc: 3% heap: 105G/187G direct: 54M postGC: 28G
read(11% 3%) -> merge( 3%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/1416/3281 (z13 17%) https://www.openstreetmap.org/#map=13/33.68778/-117.77344
1:15:22 INF [archive] - features: [ 583M 18% 653k/s ] 227G tiles: [ 27M 8.8k/s ] 17G
cpus: 46.3 gc: 5% heap: 71G/187G direct: 54M postGC: 16G
read( 4% 4%) -> merge( 3%) -> (8.5k/9.4k) -> encode(88% 93% 85% 88% 92% 88% 93% 95% 85% 94% 89% 82% 91% 87% 83% 85% 90% 95% 85% 93% 77% 88% 93% 91% 95% 91% 88% 89% 94% 94% 92% 92% 88% 78% 93% 83% 93% 84% 94% 93% 88% 87% 88% 91% 89% 95%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/1431/3313 (z13 17%) https://www.openstreetmap.org/#map=13/32.50976/-117.11426
1:15:32 INF [archive] - features: [ 589M 18% 609k/s ] 227G tiles: [ 27M 2.9k/s ] 17G
cpus: 46.3 gc: 2% heap: 83G/187G direct: 54M postGC: 17G
read( 1% 1%) -> merge( 1%) -> (7.7k/9.4k) -> encode(98% 96% 98% 98% 98% 97% 98% 98% 84% 98% 98% 98% 91% 98% 98% 98% 89% 93% 98% 98% 84% 98% 98% 98% 93% 98% 94% 86% 98% 98% 98% 93% 94% 98% 98% 87% 98% 86% 98% 98% 98% 90% 98% 98% 98% 89%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/1436/3314 (z13 18%) https://www.openstreetmap.org/#map=13/32.47270/-116.89453
Aug 24, 2023 6:05:18 AM org.geotools.referencing.factory.DeferredAuthorityFactory disposeBackingStore
INFO: Disposing class org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory backing store
1:15:42 INF [archive] - features: [ 601M 18% 1.1M/s ] 227G tiles: [ 29M 175k/s ] 18G
cpus: 46.9 gc: 2% heap: 66G/187G direct: 54M postGC: 17G
read(19% 19%) -> merge(26%) -> (8.6k/9.4k) -> encode(94% 96% 93% 92% 96% 95% 97% 96% 95% 93% 93% 93% 97% 91% 94% 97% 96% 97% 96% 93% 97% 97% 97% 91% 95% 97% 93% 92% 97% 96% 95% 97% 94% 97% 97% 95% 97% 92% 92% 93% 95% 97% 96% 87% 96% 94%) -> (9.2k/9.3k) -> write(47%)
last tile: 13/1736/4970 (z13 21%) https://www.openstreetmap.org/#map=13/-35.81781/-103.71094
1:15:52 INF [archive] - features: [ 612M 19% 1.1M/s ] 227G tiles: [ 30M 85k/s ] 18G
cpus: 46.1 gc: 6% heap: 64G/187G direct: 54M postGC: 20G
read(30% 31%) -> merge(18%) -> (9.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 93% 92% 94% 94% 92% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write(25%)
last tile: 13/1879/3440 (z13 23%) https://www.openstreetmap.org/#map=13/27.68353/-97.42676
1:16:02 INF [archive] - features: [ 621M 19% 892k/s ] 227G tiles: [ 30M 26k/s ] 18G
cpus: 45.6 gc: 5% heap: 90G/187G direct: 54M postGC: 21G
read(10% 10%) -> merge(10%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 9%)
last tile: 13/1924/3388 (z13 23%) https://www.openstreetmap.org/#map=13/29.68805/-95.44922
1:16:12 INF [archive] - features: [ 631M 19% 997k/s ] 227G tiles: [ 30M 49k/s ] 18G
cpus: 45.3 gc: 8% heap: 39G/187G direct: 54M postGC: 23G
read(15% 14%) -> merge(12%) -> (9.2k/9.4k) -> encode(91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 89% 91% 91% 91% 89% 91% 90% 90% 91% 91% 90% 88% 88% 91% 91% 89% 91% 91% 91% 90% 91% 88% 91% 88% 91% 91% 91% 91% 89% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write(17%)
last tile: 13/2014/3743 (z13 25%) https://www.openstreetmap.org/#map=13/15.32657/-91.49414
1:16:22 INF [archive] - features: [ 639M 20% 717k/s ] 227G tiles: [ 31M 23k/s ] 19G
cpus: 46.4 gc: 3% heap: 27G/187G direct: 54M postGC: 17G
read( 9% 9%) -> merge( 9%) -> (9.2k/9.4k) -> encode(94% 96% 93% 92% 96% 96% 90% 93% 92% 94% 93% 96% 89% 82% 96% 85% 86% 95% 90% 90% 88% 92% 87% 94% 93% 87% 87% 96% 90% 96% 92% 91% 94% 90% 92% 84% 92% 96% 95% 87% 91% 88% 96% 96% 87% 96%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/2056/3081 (z13 25%) https://www.openstreetmap.org/#map=13/40.68064/-89.64844
1:16:32 INF [archive] - features: [ 647M 20% 849k/s ] 227G tiles: [ 31M 20k/s ] 19G
cpus: 46.6 gc: 3% heap: 32G/187G direct: 54M postGC: 17G
read( 9% 9%) -> merge( 8%) -> (9.1k/9.4k) -> encode(88% 95% 94% 93% 95% 86% 97% 96% 92% 93% 94% 97% 88% 90% 83% 89% 96% 97% 94% 91% 86% 94% 94% 97% 91% 85% 93% 97% 87% 84% 92% 94% 90% 92% 89% 95% 87% 97% 94% 94% 92% 88% 96% 95% 93% 91%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/2093/3740 (z13 26%) https://www.openstreetmap.org/#map=13/15.45368/-88.02246
1:16:42 INF [archive] - features: [ 657M 20% 936k/s ] 227G tiles: [ 31M 31k/s ] 19G
cpus: 45.9 gc: 4% heap: 84G/187G direct: 54M postGC: 17G
read(14% 14%) -> merge(11%) -> (9k/9.4k) -> encode(95% 96% 96% 96% 96% 95% 95% 95% 96% 96% 96% 95% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 94% 96% 96% 96% 95% 95% 96% 95% 93% 95% 95% 96% 96% 96% 96% 95% 95% 96% 95% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/2150/1185 (z13 26%) https://www.openstreetmap.org/#map=13/77.75827/-85.51758
1:16:52 INF [archive] - features: [ 666M 21% 952k/s ] 227G tiles: [ 32M 27k/s ] 19G
cpus: 46.1 gc: 6% heap: 24G/187G direct: 54M postGC: 17G
read(13% 13%) -> merge(12%) -> (9.1k/9.4k) -> encode(93% 90% 88% 88% 90% 84% 91% 93% 91% 86% 80% 92% 86% 92% 93% 81% 84% 87% 88% 78% 93% 88% 91% 91% 91% 88% 91% 86% 93% 91% 83% 87% 86% 91% 91% 92% 93% 84% 84% 80% 91% 92% 86% 83% 83% 80%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/2198/3774 (z13 27%) https://www.openstreetmap.org/#map=13/14.00870/-83.40820
1:17:02 INF [archive] - features: [ 675M 21% 878k/s ] 227G tiles: [ 32M 23k/s ] 19G
cpus: 46 gc: 2% heap: 68G/187G direct: 54M postGC: 17G
read(10% 9%) -> merge(10%) -> (9.2k/9.4k) -> encode(98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.3k/9.3k) -> write( 9%)
last tile: 13/2239/3371 (z13 27%) https://www.openstreetmap.org/#map=13/30.33495/-81.60645
1:17:12 INF [archive] - features: [ 683M 21% 812k/s ] 227G tiles: [ 32M 16k/s ] 19G
cpus: 45.6 gc: 4% heap: 30G/187G direct: 54M postGC: 19G
read( 7% 6%) -> merge( 6%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/2267/3490 (z13 28%) https://www.openstreetmap.org/#map=13/25.72074/-80.37598
1:17:22 INF [archive] - features: [ 691M 21% 736k/s ] 227G tiles: [ 32M 12k/s ] 20G
cpus: 45.6 gc: 4% heap: 74G/187G direct: 54M postGC: 19G
read( 5% 5%) -> merge( 5%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/2288/2990 (z13 28%) https://www.openstreetmap.org/#map=13/43.64403/-79.45313
1:17:32 INF [archive] - features: [ 700M 22% 981k/s ] 227G tiles: [ 32M 29k/s ] 20G
cpus: 44.9 gc: 10% heap: 54G/187G direct: 54M postGC: 20G
read( 9% 9%) -> merge( 8%) -> (9.1k/9.4k) -> encode(90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/2337/4069 (z13 29%) https://www.openstreetmap.org/#map=13/1.18644/-77.29980
1:17:42 INF [archive] - features: [ 707M 22% 666k/s ] 227G tiles: [ 32M 9.2k/s ] 20G
cpus: 46.8 gc: 2% heap: 56G/187G direct: 54M postGC: 16G
read( 5% 4%) -> merge( 4%) -> (8.9k/9.4k) -> encode(96% 95% 98% 97% 91% 91% 91% 93% 91% 98% 98% 93% 95% 95% 92% 98% 93% 94% 97% 88% 98% 84% 88% 80% 96% 93% 96% 98% 96% 98% 83% 86% 94% 95% 88% 79% 98% 92% 98% 88% 77% 91% 91% 96% 98% 96%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/2352/3122 (z13 29%) https://www.openstreetmap.org/#map=13/39.30030/-76.64063
1:17:52 INF [archive] - features: [ 715M 22% 795k/s ] 227G tiles: [ 33M 20k/s ] 20G
cpus: 45.8 gc: 3% heap: 76G/187G direct: 54M postGC: 17G
read( 8% 7%) -> merge( 7%) -> (8.8k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/2385/3104 (z13 29%) https://www.openstreetmap.org/#map=13/39.90974/-75.19043
1:18:02 INF [archive] - features: [ 719M 22% 430k/s ] 227G tiles: [ 33M 4.8k/s ] 20G
cpus: 46 gc: 6% heap: 56G/187G direct: 54M postGC: 16G
read( 1% 1%) -> merge( 1%) -> (8.6k/9.4k) -> encode(93% 85% 86% 79% 86% 81% 93% 82% 90% 86% 90% 89% 90% 85% 93% 88% 87% 87% 91% 73% 93% 93% 93% 87% 87% 78% 79% 92% 90% 93% 83% 86% 93% 89% 90% 93% 93% 93% 90% 86% 93% 89% 90% 88% 90% 80%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/2393/3846 (z13 29%) https://www.openstreetmap.org/#map=13/10.91962/-74.83887
1:18:12 INF [archive] - features: [ 726M 22% 637k/s ] 227G tiles: [ 33M 24k/s ] 20G
cpus: 46.5 gc: 2% heap: 82G/187G direct: 54M postGC: 18G
read( 8% 7%) -> merge( 8%) -> (9k/9.4k) -> encode(94% 98% 93% 92% 93% 97% 98% 96% 97% 98% 97% 98% 93% 98% 95% 98% 93% 98% 98% 95% 86% 84% 98% 98% 94% 91% 97% 98% 98% 96% 98% 92% 95% 95% 93% 92% 98% 90% 94% 95% 97% 98% 98% 90% 97% 93%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/2432/3935 (z13 30%) https://www.openstreetmap.org/#map=13/7.05728/-73.12500
1:18:22 INF [archive] - features: [ 734M 23% 776k/s ] 227G tiles: [ 33M 10k/s ] 20G
cpus: 45.9 gc: 4% heap: 95G/187G direct: 54M postGC: 16G
read( 2% 2%) -> merge( 2%) -> (8.6k/9.4k) -> encode(96% 95% 93% 94% 89% 93% 96% 96% 93% 96% 95% 96% 92% 96% 95% 94% 93% 96% 96% 90% 88% 94% 90% 93% 96% 96% 96% 96% 95% 96% 96% 94% 96% 90% 96% 92% 94% 93% 95% 89% 94% 96% 96% 96% 95% 89%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/2449/3667 (z13 30%) https://www.openstreetmap.org/#map=13/18.52128/-72.37793
1:18:33 INF [archive] - features: [ 743M 23% 941k/s ] 227G tiles: [ 34M 50k/s ] 21G
cpus: 46.7 gc: 2% heap: 15G/187G direct: 54M postGC: 15G
read( 4% 4%) -> merge( 5%) -> (8.8k/9.4k) -> encode(94% 92% 94% 93% 84% 80% 90% 86% 92% 97% 80% 93% 97% 96% 95% 97% 93% 93% 91% 95% 95% 87% 92% 88% 91% 98% 98% 95% 93% 97% 86% 96% 87% 93% 95% 90% 83% 92% 95% 96% 98% 88% 96% 94% 96% 95%) -> (9.3k/9.3k) -> write(20%)
last tile: 13/2536/4853 (z13 31%) https://www.openstreetmap.org/#map=13/-31.54109/-68.55469
1:18:43 INF [archive] - features: [ 753M 23% 993k/s ] 227G tiles: [ 35M 111k/s ] 21G
cpus: 45.8 gc: 4% heap: 36G/187G direct: 54M postGC: 16G
read( 4% 5%) -> merge( 6%) -> (8.8k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(33%)
last tile: 13/2706/3760 (z13 33%) https://www.openstreetmap.org/#map=13/14.60485/-61.08398
1:18:53 INF [archive] - features: [ 761M 23% 805k/s ] 227G tiles: [ 36M 100k/s ] 21G
cpus: 46 gc: 3% heap: 81G/187G direct: 54M postGC: 17G
read( 8% 8%) -> merge( 8%) -> (8.7k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 96% 97% 97% 97% 97% 97%) -> (9.3k/9.3k) -> write(24%)
last tile: 13/2840/3964 (z13 35%) https://www.openstreetmap.org/#map=13/5.79090/-55.19531
1:19:03 INF [archive] - features: [ 771M 24% 976k/s ] 227G tiles: [ 36M 65k/s ] 21G
cpus: 45.1 gc: 9% heap: 68G/187G direct: 54M postGC: 19G
read( 9% 9%) -> merge( 8%) -> (8k/9.4k) -> encode(91% 91% 91% 91% 89% 91% 91% 90% 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% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write(16%)
last tile: 13/2930/4815 (z13 36%) https://www.openstreetmap.org/#map=13/-30.10712/-51.24023
1:19:13 INF [archive] - features: [ 775M 24% 420k/s ] 227G tiles: [ 37M 72k/s ] 22G
cpus: 45.7 gc: 9% heap: 77G/187G direct: 54M postGC: 19G
read(14% 14%) -> merge(17%) -> (8.7k/9.4k) -> encode(77% 81% 82% 72% 81% 77% 82% 79% 80% 73% 85% 85% 85% 81% 78% 84% 81% 87% 79% 66% 84% 86% 69% 87% 87% 81% 78% 82% 85% 85% 80% 84% 80% 86% 77% 79% 76% 87% 83% 86% 80% 80% 86% 80% 85% 84%) -> (9.3k/9.3k) -> write(16%)
last tile: 13/3031/4651 (z13 37%) https://www.openstreetmap.org/#map=13/-23.68477/-46.80176
1:19:23 INF [archive] - features: [ 784M 24% 833k/s ] 227G tiles: [ 37M 3.5k/s ] 22G
cpus: 45.1 gc: 6% heap: 24G/187G direct: 54M postGC: 21G
read( 1% 1%) -> merge( 1%) -> (7.2k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/3036/4649 (z13 37%) https://www.openstreetmap.org/#map=13/-23.60426/-46.58203
1:19:33 INF [archive] - features: [ 790M 24% 655k/s ] 227G tiles: [ 37M 716/s ] 22G
cpus: 46.2 gc: 4% heap: 61G/187G direct: 54M postGC: 19G
read( 0% 0%) -> merge( 0%) -> (3.8k/9.4k) -> encode(93% 95% 80% 93% 87% 95% 94% 87% 91% 93% 90% 88% 91% 88% 90% 92% 91% 93% 90% 91% 91% 90% 93% 78% 91% 88% 73% 82% 76% 83% 92% 93% 92% 83% 85% 91% 92% 91% 90% 83% 78% 95% 95% 91% 89% 93%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/3037/4649 (z13 37%) https://www.openstreetmap.org/#map=13/-23.60426/-46.53809
1:19:43 INF [archive] - features: [ 795M 24% 438k/s ] 227G tiles: [ 38M 133k/s ] 22G
cpus: 46 gc: 5% heap: 46G/187G direct: 54M postGC: 23G
read(21% 21%) -> merge(20%) -> (4.9k/9.4k) -> encode(95% 95% 95% 95% 95% 95% 94% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 94% 95% 88% 95% 93% 95% 95% 88% 95% 95% 95% 95% 95% 89% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write(33%)
last tile: 13/3217/4183 (z13 39%) https://www.openstreetmap.org/#map=13/-3.82041/-38.62793
1:19:53 INF [archive] - features: [ 798M 25% 330k/s ] 227G tiles: [ 38M 0/s ] 22G
cpus: 43.7 gc: 9% heap: 45G/187G direct: 54M postGC: 14G
read( 0% 0%) -> merge( 0%) -> (4.2k/9.4k) -> encode(79% 81% 76% 83% 85% 83% 84% 80% 82% 84% 80% 74% 84% 78% 78% 84% 80% 84% 84% 84% 84% 85% 79% 79% 77% 80% 84% 84% 84% 81% 85% 82% 82% 77% 84% 79% 84% 80% 76% 85% 83% 81% 78% 77% 84% 83%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/3217/4183 (z13 39%) https://www.openstreetmap.org/#map=13/-3.82041/-38.62793
1:20:03 INF [archive] - features: [ 803M 25% 547k/s ] 227G tiles: [ 41M 260k/s ] 22G
cpus: 45.4 gc: 9% heap: 28G/187G direct: 54M postGC: 15G
read(18% 18%) -> merge(19%) -> (5.5k/9.4k) -> encode(76% 84% 76% 83% 86% 83% 88% 81% 83% 73% 84% 83% 89% 79% 85% 85% 89% 83% 81% 85% 87% 86% 82% 82% 82% 79% 84% 83% 80% 82% 85% 80% 84% 74% 82% 82% 81% 81% 87% 84% 84% 83% 84% 77% 78% 82%) -> (8.6k/9.3k) -> write(45%)
last tile: 13/3594/4304 (z13 44%) https://www.openstreetmap.org/#map=13/-9.10210/-22.06055
1:20:13 INF [archive] - features: [ 810M 25% 686k/s ] 227G tiles: [ 43M 209k/s ] 22G
cpus: 46.2 gc: 7% heap: 37G/187G direct: 54M postGC: 18G
read(39% 37%) -> merge(31%) -> (8k/9.4k) -> encode(92% 93% 92% 92% 92% 92% 92% 93% 92% 93% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 93% 93% 91% 93% 93% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 91% 92%) -> (8.8k/9.3k) -> write(41%)
last tile: 13/3913/3808 (z13 48%) https://www.openstreetmap.org/#map=13/12.55456/-8.04199
1:20:23 INF [archive] - features: [ 816M 25% 584k/s ] 227G tiles: [ 44M 36k/s ] 22G
cpus: 45.3 gc: 9% heap: 26G/187G direct: 54M postGC: 21G
read(24% 23%) -> merge(16%) -> (9k/9.4k) -> encode(91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 89% 91% 91% 91% 91% 91% 91% 91% 91% 91% 87% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/3971/3812 (z13 48%) https://www.openstreetmap.org/#map=13/12.38293/-5.49316
1:20:33 INF [archive] - features: [ 821M 25% 523k/s ] 227G tiles: [ 44M 15k/s ] 22G
cpus: 45.2 gc: 7% heap: 76G/187G direct: 54M postGC: 22G
read( 9% 8%) -> merge( 4%) -> (8.8k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/3995/3197 (z13 49%) https://www.openstreetmap.org/#map=13/36.70366/-4.43848
1:20:43 INF [archive] - features: [ 827M 25% 597k/s ] 227G tiles: [ 44M 19k/s ] 23G
cpus: 45.8 gc: 4% heap: 24G/187G direct: 54M postGC: 23G
read(11% 10%) -> merge( 9%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/4026/2661 (z13 49%) https://www.openstreetmap.org/#map=13/53.19945/-3.07617
1:20:53 INF [archive] - features: [ 833M 26% 605k/s ] 227G tiles: [ 44M 8.6k/s ] 23G
cpus: 45.6 gc: 4% heap: 56G/187G direct: 54M postGC: 24G
read( 6% 6%) -> merge( 5%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/4040/2647 (z13 49%) https://www.openstreetmap.org/#map=13/53.56641/-2.46094
1:21:03 INF [archive] - features: [ 839M 26% 557k/s ] 227G tiles: [ 44M 8k/s ] 23G
cpus: 45.5 gc: 4% heap: 88G/187G direct: 54M postGC: 24G
read( 7% 7%) -> merge( 6%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4053/2690 (z13 49%) https://www.openstreetmap.org/#map=13/52.42922/-1.88965
1:21:13 INF [archive] - features: [ 844M 26% 493k/s ] 227G tiles: [ 44M 3.6k/s ] 23G
cpus: 45 gc: 8% heap: 28G/187G direct: 54M postGC: 25G
read( 3% 3%) -> merge( 3%) -> (8.9k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4059/3814 (z13 50%) https://www.openstreetmap.org/#map=13/12.29707/-1.62598
1:21:23 INF [archive] - features: [ 848M 26% 358k/s ] 227G tiles: [ 44M 5k/s ] 23G
cpus: 40.6 gc: 7% heap: 21G/187G direct: 54M postGC: 17G
read(15% 14%) -> merge( 6%) -> (9.2k/9.4k) -> encode(81% 81% 80% 75% 77% 75% 81% 80% 82% 73% 74% 81% 74% 80% 80% 79% 81% 79% 74% 78% 69% 76% 80% 68% 81% 74% 80% 80% 67% 72% 73% 80% 81% 81% 82% 72% 67% 81% 80% 82% 76% 78% 81% 76% 81% 68%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4067/2672 (z13 50%) https://www.openstreetmap.org/#map=13/52.90890/-1.27441
1:21:33 INF [archive] - features: [ 852M 26% 446k/s ] 227G tiles: [ 44M 4.9k/s ] 23G
cpus: 45.9 gc: 7% heap: 39G/187G direct: 54M postGC: 15G
read(12% 12%) -> merge( 5%) -> (9.2k/9.4k) -> encode(87% 93% 88% 92% 83% 86% 84% 88% 92% 86% 87% 88% 85% 88% 83% 90% 89% 88% 84% 89% 80% 89% 81% 92% 91% 89% 86% 89% 85% 84% 86% 90% 88% 86% 81% 90% 91% 84% 89% 83% 88% 89% 88% 81% 89% 90%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4075/2880 (z13 50%) https://www.openstreetmap.org/#map=13/47.04018/-0.92285
1:21:43 INF [archive] - features: [ 857M 26% 476k/s ] 227G tiles: [ 44M 4.3k/s ] 23G
cpus: 46.5 gc: 2% heap: 19G/187G direct: 54M postGC: 15G
read( 5% 5%) -> merge( 5%) -> (9.1k/9.4k) -> encode(95% 89% 95% 94% 95% 93% 96% 94% 88% 96% 92% 94% 88% 95% 91% 89% 95% 94% 88% 96% 96% 95% 96% 94% 94% 90% 96% 96% 88% 97% 93% 90% 97% 92% 89% 91% 97% 96% 96% 97% 83% 95% 94% 92% 85% 83%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4082/2953 (z13 50%) https://www.openstreetmap.org/#map=13/44.80912/-0.61523
1:21:53 INF [archive] - features: [ 861M 27% 452k/s ] 227G tiles: [ 44M 3k/s ] 23G
cpus: 43.6 gc: 10% heap: 51G/187G direct: 54M postGC: 15G
read( 3% 3%) -> merge( 3%) -> (8.9k/9.4k) -> encode(90% 89% 89% 90% 90% 83% 89% 89% 84% 90% 86% 89% 89% 89% 84% 89% 89% 90% 82% 89% 81% 89% 90% 88% 90% 90% 90% 90% 83% 89% 90% 85% 81% 90% 89% 87% 89% 89% 81% 89% 88% 90% 90% 90% 90% 89%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4087/3118 (z13 50%) https://www.openstreetmap.org/#map=13/39.43619/-0.39551
1:22:03 INF [archive] - features: [ 865M 27% 396k/s ] 227G tiles: [ 44M 4.9k/s ] 23G
cpus: 45.4 gc: 6% heap: 16G/187G direct: 54M postGC: 15G
read(11% 13%) -> merge( 6%) -> (9.1k/9.4k) -> encode(83% 88% 88% 84% 89% 76% 84% 85% 82% 90% 88% 81% 80% 81% 86% 89% 86% 87% 79% 84% 86% 85% 80% 83% 86% 84% 80% 80% 88% 90% 85% 82% 83% 83% 86% 80% 84% 85% 86% 90% 82% 82% 83% 87% 84% 86%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4095/2722 (z13 50%) https://www.openstreetmap.org/#map=13/51.56341/-0.04395
1:22:14 INF [archive] - features: [ 870M 27% 449k/s ] 227G tiles: [ 44M 3k/s ] 23G
cpus: 46 gc: 6% heap: 18G/187G direct: 54M postGC: 14G
read( 4% 4%) -> merge( 4%) -> (8.9k/9.4k) -> encode(84% 85% 84% 93% 88% 91% 82% 83% 90% 87% 88% 85% 92% 93% 90% 84% 91% 90% 85% 93% 90% 91% 92% 91% 93% 92% 91% 94% 92% 89% 92% 92% 92% 91% 94% 90% 91% 88% 87% 87% 93% 90% 93% 86% 85% 94%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4100/2848 (z13 50%) https://www.openstreetmap.org/#map=13/47.98992/0.17578
1:22:24 INF [archive] - features: [ 875M 27% 492k/s ] 227G tiles: [ 44M 11k/s ] 23G
cpus: 44.8 gc: 9% heap: 42G/187G direct: 54M postGC: 14G
read(11% 12%) -> merge(11%) -> (9.2k/9.4k) -> encode(83% 89% 88% 84% 82% 89% 80% 87% 88% 86% 90% 87% 88% 83% 90% 87% 89% 89% 86% 89% 82% 90% 88% 90% 86% 80% 79% 88% 84% 89% 78% 82% 84% 84% 82% 85% 88% 85% 84% 86% 89% 88% 76% 86% 86% 82%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/4119/2804 (z13 50%) https://www.openstreetmap.org/#map=13/49.26780/1.01074
1:22:34 INF [archive] - features: [ 879M 27% 432k/s ] 227G tiles: [ 45M 5.5k/s ] 23G
cpus: 45.8 gc: 5% heap: 19G/187G direct: 54M postGC: 14G
read( 5% 5%) -> merge( 5%) -> (9.3k/9.4k) -> encode(90% 86% 90% 91% 86% 94% 94% 92% 88% 93% 85% 91% 86% 88% 83% 83% 94% 92% 90% 85% 94% 92% 90% 89% 87% 92% 93% 92% 83% 94% 93% 93% 94% 86% 93% 91% 91% 93% 94% 87% 89% 91% 87% 94% 93% 90%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4128/2992 (z13 50%) https://www.openstreetmap.org/#map=13/43.58039/1.40625
1:22:44 INF [archive] - features: [ 884M 27% 505k/s ] 227G tiles: [ 45M 6.1k/s ] 23G
cpus: 45.7 gc: 2% heap: 53G/187G direct: 54M postGC: 14G
read( 5% 5%) -> merge( 5%) -> (9.2k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4138/2745 (z13 51%) https://www.openstreetmap.org/#map=13/50.93074/1.84570
1:22:54 INF [archive] - features: [ 889M 27% 456k/s ] 227G tiles: [ 45M 4.2k/s ] 23G
cpus: 45.3 gc: 5% heap: 31G/187G direct: 54M postGC: 15G
read( 4% 4%) -> merge( 3%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4145/3060 (z13 51%) https://www.openstreetmap.org/#map=13/41.37681/2.15332
1:23:04 INF [archive] - features: [ 893M 27% 387k/s ] 227G tiles: [ 45M 4.3k/s ] 23G
cpus: 45.4 gc: 5% heap: 53G/187G direct: 54M postGC: 16G
read( 5% 5%) -> merge( 4%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4152/2821 (z13 51%) https://www.openstreetmap.org/#map=13/48.77791/2.46094
1:23:14 INF [archive] - features: [ 897M 28% 426k/s ] 227G tiles: [ 45M 4.8k/s ] 23G
cpus: 45.4 gc: 5% heap: 30G/187G direct: 54M postGC: 16G
read( 5% 5%) -> merge( 4%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4160/2764 (z13 51%) https://www.openstreetmap.org/#map=13/50.40152/2.81250
1:23:24 INF [archive] - features: [ 901M 28% 404k/s ] 227G tiles: [ 45M 3.6k/s ] 23G
cpus: 45.5 gc: 4% heap: 54G/187G direct: 54M postGC: 16G
read( 4% 4%) -> merge( 3%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4166/2756 (z13 51%) https://www.openstreetmap.org/#map=13/50.62507/3.07617
1:23:34 INF [archive] - features: [ 905M 28% 412k/s ] 227G tiles: [ 45M 5.3k/s ] 23G
cpus: 45.4 gc: 5% heap: 30G/187G direct: 54M postGC: 17G
read( 5% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4175/3945 (z13 51%) https://www.openstreetmap.org/#map=13/6.62096/3.47168
1:23:44 INF [archive] - features: [ 910M 28% 458k/s ] 227G tiles: [ 45M 5.4k/s ] 23G
cpus: 45.5 gc: 4% heap: 60G/187G direct: 54M postGC: 17G
read( 4% 4%) -> merge( 4%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4184/3928 (z13 51%) https://www.openstreetmap.org/#map=13/7.36247/3.86719
1:23:54 INF [archive] - features: [ 914M 28% 452k/s ] 227G tiles: [ 45M 4.9k/s ] 24G
cpus: 45.4 gc: 5% heap: 38G/187G direct: 54M postGC: 18G
read( 6% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4192/2704 (z13 51%) https://www.openstreetmap.org/#map=13/52.05249/4.21875
1:24:04 INF [archive] - features: [ 918M 28% 371k/s ] 227G tiles: [ 45M 2.4k/s ] 24G
cpus: 45.4 gc: 5% heap: 64G/187G direct: 54M postGC: 18G
read( 3% 3%) -> merge( 2%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4196/2735 (z13 51%) https://www.openstreetmap.org/#map=13/51.20688/4.39453
1:24:14 INF [archive] - features: [ 922M 28% 408k/s ] 227G tiles: [ 45M 3k/s ] 24G
cpus: 45.3 gc: 5% heap: 39G/187G direct: 54M postGC: 19G
read( 4% 5%) -> merge( 4%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4201/2692 (z13 51%) https://www.openstreetmap.org/#map=13/52.37560/4.61426
1:24:24 INF [archive] - features: [ 926M 29% 421k/s ] 227G tiles: [ 45M 3k/s ] 24G
cpus: 45.5 gc: 4% heap: 66G/187G direct: 54M postGC: 19G
read( 5% 5%) -> merge( 5%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4206/2693 (z13 51%) https://www.openstreetmap.org/#map=13/52.34876/4.83398
1:24:34 INF [archive] - features: [ 931M 29% 457k/s ] 227G tiles: [ 45M 3k/s ] 24G
cpus: 45.4 gc: 5% heap: 43G/187G direct: 54M postGC: 20G
read( 4% 5%) -> merge( 4%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4211/2723 (z13 51%) https://www.openstreetmap.org/#map=13/51.53609/5.05371
1:24:44 INF [archive] - features: [ 936M 29% 443k/s ] 227G tiles: [ 45M 4.2k/s ] 24G
cpus: 45.4 gc: 5% heap: 21G/187G direct: 54M postGC: 20G
read( 6% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4218/3003 (z13 51%) https://www.openstreetmap.org/#map=13/43.22920/5.36133
1:24:54 INF [archive] - features: [ 940M 29% 433k/s ] 227G tiles: [ 45M 2.4k/s ] 24G
cpus: 45.4 gc: 4% heap: 49G/187G direct: 54M postGC: 20G
read( 4% 4%) -> merge( 3%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4222/2756 (z13 52%) https://www.openstreetmap.org/#map=13/50.62507/5.53711
1:25:04 INF [archive] - features: [ 945M 29% 463k/s ] 227G tiles: [ 45M 3.6k/s ] 24G
cpus: 45.4 gc: 5% heap: 27G/187G direct: 54M postGC: 21G
read( 6% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4228/2744 (z13 52%) https://www.openstreetmap.org/#map=13/50.95843/5.80078
1:25:14 INF [archive] - features: [ 949M 29% 447k/s ] 227G tiles: [ 45M 3.7k/s ] 24G
cpus: 45.5 gc: 4% heap: 55G/187G direct: 54M postGC: 22G
read( 6% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4234/2751 (z13 52%) https://www.openstreetmap.org/#map=13/50.76426/6.06445
1:25:24 INF [archive] - features: [ 954M 29% 466k/s ] 227G tiles: [ 45M 4k/s ] 24G
cpus: 45.4 gc: 5% heap: 35G/187G direct: 54M postGC: 22G
read( 6% 6%) -> merge( 5%) -> (9.3k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4241/3858 (z13 52%) https://www.openstreetmap.org/#map=13/10.40138/6.37207
1:25:34 INF [archive] - features: [ 958M 30% 473k/s ] 227G tiles: [ 45M 2.7k/s ] 24G
cpus: 45.5 gc: 4% heap: 67G/187G direct: 54M postGC: 23G
read( 4% 4%) -> merge( 4%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4245/2660 (z13 52%) https://www.openstreetmap.org/#map=13/53.22577/6.54785
1:25:44 INF [archive] - features: [ 963M 30% 463k/s ] 227G tiles: [ 45M 4.3k/s ] 24G
cpus: 45.4 gc: 5% heap: 48G/187G direct: 54M postGC: 23G
read( 7% 7%) -> merge( 6%) -> (9.3k/9.4k) -> encode(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% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4252/2748 (z13 52%) https://www.openstreetmap.org/#map=13/50.84757/6.85547
1:25:54 INF [archive] - features: [ 968M 30% 464k/s ] 227G tiles: [ 45M 3k/s ] 24G
cpus: 45.3 gc: 5% heap: 30G/187G direct: 54M postGC: 24G
read( 6% 6%) -> merge( 5%) -> (9.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4257/3787 (z13 52%) https://www.openstreetmap.org/#map=13/13.45374/7.07520
1:26:04 INF [archive] - features: [ 973M 30% 528k/s ] 227G tiles: [ 45M 3.1k/s ] 24G
cpus: 45.5 gc: 4% heap: 68G/187G direct: 54M postGC: 24G
read( 5% 5%) -> merge( 5%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 95% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4262/2857 (z13 52%) https://www.openstreetmap.org/#map=13/47.72454/7.29492
1:26:14 INF [archive] - features: [ 979M 30% 561k/s ] 227G tiles: [ 45M 4.3k/s ] 24G
cpus: 45.4 gc: 5% heap: 55G/187G direct: 54M postGC: 25G
read( 7% 7%) -> merge( 6%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4269/2708 (z13 52%) https://www.openstreetmap.org/#map=13/51.94426/7.60254
1:26:24 INF [archive] - features: [ 985M 30% 624k/s ] 227G tiles: [ 45M 6.6k/s ] 24G
cpus: 45.4 gc: 5% heap: 46G/187G direct: 54M postGC: 26G
read( 8% 8%) -> merge( 7%) -> (9.3k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/4280/4617 (z13 52%) https://www.openstreetmap.org/#map=13/-22.30943/8.08594
1:26:34 INF [archive] - features: [ 992M 31% 678k/s ] 227G tiles: [ 46M 5.7k/s ] 24G
cpus: 45.4 gc: 6% heap: 45G/187G direct: 54M postGC: 27G
read( 8% 9%) -> merge( 7%) -> (9.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4289/3823 (z13 52%) https://www.openstreetmap.org/#map=13/11.91035/8.48145
1:26:44 INF [archive] - features: [ 998M 31% 607k/s ] 227G tiles: [ 46M 3.7k/s ] 24G
cpus: 45.3 gc: 6% heap: 45G/187G direct: 54M postGC: 27G
read( 7% 7%) -> merge( 6%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4295/4113 (z13 52%) https://www.openstreetmap.org/#map=13/-0.74705/8.74512
1:26:55 INF [archive] - features: [ 1B 31% 638k/s ] 227G tiles: [ 46M 5.1k/s ] 24G
cpus: 45.4 gc: 6% heap: 49G/187G direct: 54M postGC: 28G
read(10% 10%) -> merge( 9%) -> (9.3k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4303/2211 (z13 53%) https://www.openstreetmap.org/#map=13/63.48977/9.09668
1:27:05 INF [archive] - features: [ 1B 31% 645k/s ] 227G tiles: [ 46M 4.9k/s ] 25G
cpus: 45.4 gc: 6% heap: 60G/187G direct: 54M postGC: 29G
read( 8% 9%) -> merge( 8%) -> (9.3k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4311/2600 (z13 53%) https://www.openstreetmap.org/#map=13/54.77535/9.44824
1:27:15 INF [archive] - features: [ 1B 31% 629k/s ] 227G tiles: [ 46M 3.5k/s ] 25G
cpus: 45 gc: 7% heap: 31G/187G direct: 54M postGC: 30G
read( 5% 6%) -> merge( 4%) -> (9k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4317/4005 (z13 53%) https://www.openstreetmap.org/#map=13/3.99578/9.71191
1:27:25 INF [archive] - features: [ 1B 31% 592k/s ] 227G tiles: [ 46M 5k/s ] 25G
cpus: 45.4 gc: 5% heap: 47G/187G direct: 54M postGC: 30G
read( 8% 8%) -> merge( 7%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4325/3194 (z13 53%) https://www.openstreetmap.org/#map=13/36.80928/10.06348
1:27:35 INF [archive] - features: [ 1B 32% 647k/s ] 227G tiles: [ 46M 6.1k/s ] 25G
cpus: 45.5 gc: 5% heap: 71G/187G direct: 54M postGC: 31G
read( 8% 9%) -> merge( 8%) -> (9.2k/9.4k) -> encode(95% 95% 95% 95% 95% 94% 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% 95% 95% 95% 95% 95% 95% 95% 94% 95%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4335/3942 (z13 53%) https://www.openstreetmap.org/#map=13/6.75190/10.50293
1:27:45 INF [archive] - features: [ 1B 32% 653k/s ] 227G tiles: [ 46M 5.6k/s ] 25G
cpus: 45.2 gc: 7% heap: 55G/187G direct: 54M postGC: 32G
read( 7% 8%) -> merge( 6%) -> (9.2k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4344/3966 (z13 53%) https://www.openstreetmap.org/#map=13/5.70345/10.89844
1:27:55 INF [archive] - features: [ 1B 32% 667k/s ] 227G tiles: [ 46M 3.7k/s ] 25G
cpus: 45.1 gc: 7% heap: 45G/187G direct: 54M postGC: 33G
read( 5% 5%) -> merge( 4%) -> (8.9k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4350/3861 (z13 53%) https://www.openstreetmap.org/#map=13/10.27168/11.16211
1:28:05 INF [archive] - features: [ 1B 32% 628k/s ] 227G tiles: [ 46M 4.9k/s ] 25G
cpus: 45.3 gc: 5% heap: 35G/187G direct: 54M postGC: 33G
read( 6% 6%) -> merge( 5%) -> (8.8k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4358/4008 (z13 53%) https://www.openstreetmap.org/#map=13/3.86425/11.51367
1:28:15 INF [archive] - features: [ 1B 33% 675k/s ] 227G tiles: [ 46M 4.9k/s ] 25G
cpus: 45.3 gc: 6% heap: 35G/187G direct: 54M postGC: 34G
read( 6% 6%) -> merge( 5%) -> (8.6k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4366/4206 (z13 53%) https://www.openstreetmap.org/#map=13/-4.82826/11.86523
1:28:25 INF [archive] - features: [ 1B 33% 706k/s ] 227G tiles: [ 46M 11k/s ] 25G
cpus: 45.5 gc: 7% heap: 44G/187G direct: 54M postGC: 35G
read(15% 16%) -> merge(14%) -> (9.3k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 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% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/4386/3841 (z13 54%) https://www.openstreetmap.org/#map=13/11.13529/12.74414
1:28:35 INF [archive] - features: [ 1B 33% 717k/s ] 227G tiles: [ 46M 8.3k/s ] 25G
cpus: 45.2 gc: 6% heap: 77G/187G direct: 54M postGC: 36G
read( 9% 9%) -> merge( 8%) -> (9.3k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4399/3157 (z13 54%) https://www.openstreetmap.org/#map=13/38.09998/13.31543
1:28:45 INF [archive] - features: [ 1B 33% 683k/s ] 227G tiles: [ 46M 3.4k/s ] 25G
cpus: 44.9 gc: 8% heap: 54G/187G direct: 54M postGC: 37G
read( 4% 4%) -> merge( 4%) -> (8.9k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4405/3929 (z13 54%) https://www.openstreetmap.org/#map=13/7.31888/13.57910
1:28:55 INF [archive] - features: [ 1B 33% 721k/s ] 227G tiles: [ 46M 10k/s ] 26G
cpus: 45.4 gc: 6% heap: 75G/187G direct: 54M postGC: 38G
read(10% 11%) -> merge( 9%) -> (8.9k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 6%)
last tile: 13/4422/3854 (z13 54%) https://www.openstreetmap.org/#map=13/10.57422/14.32617
1:29:05 INF [archive] - features: [ 1B 34% 751k/s ] 227G tiles: [ 46M 11k/s ] 26G
cpus: 45.2 gc: 8% heap: 57G/187G direct: 54M postGC: 39G
read(10% 10%) -> merge(10%) -> (9.1k/9.4k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 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%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/4442/4194 (z13 54%) https://www.openstreetmap.org/#map=13/-4.30259/15.20508
1:29:15 INF [archive] - features: [ 1B 34% 637k/s ] 227G tiles: [ 46M 588/s ] 26G
cpus: 45 gc: 7% heap: 41G/187G direct: 54M postGC: 39G
read( 1% 1%) -> merge( 1%) -> (8.4k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/4443/4193 (z13 54%) https://www.openstreetmap.org/#map=13/-4.25877/15.24902
1:29:25 INF [archive] - features: [ 1.1B 34% 674k/s ] 227G tiles: [ 47M 19k/s ] 26G
cpus: 45.7 gc: 5% heap: 76G/187G direct: 54M postGC: 40G
read(16% 16%) -> merge(16%) -> (9.3k/9.4k) -> encode(95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 92% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/4477/3067 (z13 55%) https://www.openstreetmap.org/#map=13/41.14557/16.74316
1:29:35 INF [archive] - features: [ 1.1B 34% 634k/s ] 227G tiles: [ 47M 9.2k/s ] 26G
cpus: 45.2 gc: 7% heap: 73G/187G direct: 54M postGC: 41G
read( 8% 8%) -> merge( 7%) -> (9.3k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4493/2812 (z13 55%) https://www.openstreetmap.org/#map=13/49.03787/17.44629
1:29:45 INF [archive] - features: [ 1.1B 34% 696k/s ] 227G tiles: [ 47M 10k/s ] 26G
cpus: 45.1 gc: 8% heap: 72G/187G direct: 54M postGC: 42G
read( 8% 8%) -> merge( 7%) -> (9.2k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4511/4096 (z13 55%) https://www.openstreetmap.org/#map=13/0.00000/18.23730
1:29:55 INF [archive] - features: [ 1.1B 35% 747k/s ] 227G tiles: [ 47M 5k/s ] 26G
cpus: 45.2 gc: 6% heap: 60G/187G direct: 54M postGC: 43G
read( 4% 4%) -> merge( 4%) -> (8.8k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4520/4921 (z13 55%) https://www.openstreetmap.org/#map=13/-34.05266/18.63281
1:30:05 INF [archive] - features: [ 1.1B 35% 807k/s ] 227G tiles: [ 47M 18k/s ] 27G
cpus: 45.4 gc: 7% heap: 59G/187G direct: 54M postGC: 44G
read(13% 14%) -> merge(13%) -> (9.2k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 9%)
last tile: 13/4552/2953 (z13 56%) https://www.openstreetmap.org/#map=13/44.80912/20.03906
1:30:15 INF [archive] - features: [ 1.1B 35% 834k/s ] 227G tiles: [ 47M 9.7k/s ] 27G
cpus: 45.1 gc: 7% heap: 63G/187G direct: 54M postGC: 45G
read( 6% 6%) -> merge( 6%) -> (8.9k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4569/4243 (z13 56%) https://www.openstreetmap.org/#map=13/-6.44632/20.78613
1:30:25 INF [archive] - features: [ 1.1B 35% 905k/s ] 227G tiles: [ 47M 21k/s ] 27G
cpus: 45.2 gc: 7% heap: 74G/187G direct: 54M postGC: 46G
read(13% 14%) -> merge(13%) -> (9.2k/9.4k) -> encode(92% 91% 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% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/4606/4046 (z13 56%) https://www.openstreetmap.org/#map=13/2.19673/22.41211
1:30:35 INF [archive] - features: [ 1.1B 36% 938k/s ] 227G tiles: [ 48M 16k/s ] 27G
cpus: 45.1 gc: 8% heap: 83G/187G direct: 54M postGC: 47G
read( 9% 9%) -> merge( 8%) -> (9.1k/9.4k) -> encode(92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 91% 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% 92% 92%) -> (9.3k/9.3k) -> write( 9%)
last tile: 13/4634/3162 (z13 57%) https://www.openstreetmap.org/#map=13/37.92687/23.64258
1:30:46 INF [archive] - features: [ 1.1B 36% 1M/s ] 227G tiles: [ 48M 18k/s ] 27G
cpus: 45 gc: 8% heap: 67G/187G direct: 54M postGC: 48G
read( 8% 9%) -> merge( 8%) -> (8.9k/9.4k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/4667/2350 (z13 57%) https://www.openstreetmap.org/#map=13/60.63010/25.09277
1:30:56 INF [archive] - features: [ 1.1B 36% 878k/s ] 227G tiles: [ 48M 27k/s ] 28G
cpus: 45.4 gc: 7% heap: 93G/187G direct: 54M postGC: 49G
read(13% 13%) -> merge(12%) -> (9.2k/9.4k) -> encode(91% 90% 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% 92% 91% 91% 91% 91% 91% 91% 91% 91% 92% 92% 91% 91% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write(13%)
last tile: 13/4712/3150 (z13 58%) https://www.openstreetmap.org/#map=13/38.34166/27.07031
1:31:06 INF [archive] - features: [ 1.1B 37% 696k/s ] 227G tiles: [ 48M 9.9k/s ] 28G
cpus: 44.9 gc: 9% heap: 53G/187G direct: 54M postGC: 50G
read( 6% 6%) -> merge( 6%) -> (9.1k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4729/4380 (z13 58%) https://www.openstreetmap.org/#map=13/-12.38293/27.81738
1:31:16 INF [archive] - features: [ 1.1B 37% 640k/s ] 227G tiles: [ 48M 5.3k/s ] 28G
cpus: 45.1 gc: 7% heap: 54G/187G direct: 54M postGC: 50G
read( 4% 4%) -> merge( 3%) -> (8.8k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4738/4452 (z13 58%) https://www.openstreetmap.org/#map=13/-15.45368/28.21289
1:31:26 INF [archive] - features: [ 1.2B 37% 622k/s ] 227G tiles: [ 48M 8.3k/s ] 28G
cpus: 45.3 gc: 6% heap: 57G/187G direct: 54M postGC: 51G
read( 5% 5%) -> merge( 5%) -> (8.8k/9.4k) -> encode(94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 93% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/4752/4154 (z13 58%) https://www.openstreetmap.org/#map=13/-2.54799/28.82813
1:31:36 INF [archive] - features: [ 1.2B 37% 558k/s ] 227G tiles: [ 48M 4.7k/s ] 28G
cpus: 45.3 gc: 5% heap: 65G/187G direct: 54M postGC: 51G
read( 4% 4%) -> merge( 4%) -> (8.5k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4760/4134 (z13 58%) https://www.openstreetmap.org/#map=13/-1.66969/29.17969
1:31:46 INF [archive] - features: [ 1.2B 37% 676k/s ] 227G tiles: [ 48M 14k/s ] 28G
cpus: 45.6 gc: 5% heap: 81G/187G direct: 54M postGC: 53G
read(13% 14%) -> merge(12%) -> (9k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 92% 95% 95% 94%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/4784/4061 (z13 58%) https://www.openstreetmap.org/#map=13/1.53790/30.23438
1:31:56 INF [archive] - features: [ 1.2B 37% 584k/s ] 227G tiles: [ 49M 8.3k/s ] 28G
cpus: 45 gc: 7% heap: 55G/187G direct: 54M postGC: 53G
read( 2% 2%) -> merge( 3%) -> (8.7k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 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% 93% 93% 93% 93%) -> (8.9k/9.3k) -> write( 4%)
last tile: 13/4798/4812 (z13 59%) https://www.openstreetmap.org/#map=13/-29.99300/30.84961
1:32:06 INF [archive] - features: [ 1.2B 38% 615k/s ] 227G tiles: [ 49M 6.6k/s ] 28G
cpus: 45.2 gc: 8% heap: 83G/187G direct: 54M postGC: 54G
read(11% 11%) -> merge(11%) -> (9.1k/9.4k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 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%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4809/4064 (z13 59%) https://www.openstreetmap.org/#map=13/1.40611/31.33301
1:32:16 INF [archive] - features: [ 1.2B 38% 607k/s ] 227G tiles: [ 49M 2.9k/s ] 28G
cpus: 45.1 gc: 7% heap: 68G/187G direct: 54M postGC: 55G
read( 2% 2%) -> merge( 2%) -> (8.7k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4814/3986 (z13 59%) https://www.openstreetmap.org/#map=13/4.82826/31.55273
1:32:26 INF [archive] - features: [ 1.2B 38% 521k/s ] 227G tiles: [ 49M 13k/s ] 28G
cpus: 45.2 gc: 7% heap: 92G/187G direct: 54M postGC: 56G
read( 7% 7%) -> merge( 6%) -> (8.9k/9.4k) -> encode(93% 93% 93% 93% 90% 93% 92% 93% 93% 93% 93% 92% 92% 92% 93% 93% 93% 92% 93% 92% 92% 92% 92% 92% 92% 93% 92% 92% 93% 93% 92% 93% 93% 92% 92% 93% 92% 93% 92% 93% 92% 93% 93% 92% 92% 92%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4836/4090 (z13 59%) https://www.openstreetmap.org/#map=13/0.26367/32.51953
1:32:36 INF [archive] - features: [ 1.2B 38% 509k/s ] 227G tiles: [ 49M 10k/s ] 28G
cpus: 45.3 gc: 6% heap: 85G/187G direct: 54M postGC: 56G
read( 7% 7%) -> merge( 6%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4854/4301 (z13 59%) https://www.openstreetmap.org/#map=13/-8.97190/33.31055
1:32:46 INF [archive] - features: [ 1.2B 38% 509k/s ] 227G tiles: [ 49M 5.9k/s ] 29G
cpus: 44.8 gc: 9% heap: 74G/187G direct: 54M postGC: 57G
read( 4% 4%) -> merge( 4%) -> (9k/9.4k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 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% 91% 91% 91% 91% 91% 91% 91% 91%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/4864/4416 (z13 59%) https://www.openstreetmap.org/#map=13/-13.92340/33.75000
1:32:56 INF [archive] - features: [ 1.2B 39% 626k/s ] 227G tiles: [ 49M 13k/s ] 29G
cpus: 45.3 gc: 6% heap: 84G/187G direct: 54M postGC: 58G
read( 7% 8%) -> merge( 7%) -> (9.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 6%)
last tile: 13/4886/4206 (z13 60%) https://www.openstreetmap.org/#map=13/-4.82826/34.71680
1:33:06 INF [archive] - features: [ 1.2B 39% 612k/s ] 227G tiles: [ 49M 1.7k/s ] 29G
cpus: 45.2 gc: 6% heap: 97G/187G direct: 54M postGC: 58G
read( 1% 1%) -> merge( 1%) -> (8.7k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/4889/4557 (z13 60%) https://www.openstreetmap.org/#map=13/-19.84939/34.84863
1:33:16 INF [archive] - features: [ 1.2B 39% 644k/s ] 227G tiles: [ 49M 16k/s ] 29G
cpus: 45.3 gc: 6% heap: 71G/187G direct: 54M postGC: 59G
read( 7% 7%) -> merge( 8%) -> (9.2k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/4916/4103 (z13 60%) https://www.openstreetmap.org/#map=13/-0.30762/36.03516
1:33:26 INF [archive] - features: [ 1.2B 39% 634k/s ] 227G tiles: [ 49M 10k/s ] 29G
cpus: 45.3 gc: 6% heap: 86G/187G direct: 54M postGC: 60G
read( 3% 3%) -> merge( 3%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/4934/4126 (z13 60%) https://www.openstreetmap.org/#map=13/-1.31824/36.82617
1:33:36 INF [archive] - features: [ 1.2B 39% 676k/s ] 227G tiles: [ 49M 603/s ] 29G
cpus: 45 gc: 6% heap: 63G/187G direct: 54M postGC: 60G
read( 0% 0%) -> merge( 0%) -> (8.3k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/4935/4125 (z13 60%) https://www.openstreetmap.org/#map=13/-1.27431/36.87012
1:33:46 INF [archive] - features: [ 1.2B 40% 740k/s ] 227G tiles: [ 50M 26k/s ] 29G
cpus: 45.4 gc: 6% heap: 84G/187G direct: 54M postGC: 62G
read(10% 10%) -> merge(10%) -> (8.9k/9.4k) -> encode(93% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 93% 94% 93% 94% 94% 94% 94% 94% 94% 94% 94% 94% 93% 94% 94% 94% 94% 94% 94% 92% 94% 94% 94% 94% 94% 94% 94% 93%) -> (9.3k/9.3k) -> write(11%)
last tile: 13/4978/3185 (z13 61%) https://www.openstreetmap.org/#map=13/37.12529/38.75977
1:33:56 INF [archive] - features: [ 1.2B 40% 642k/s ] 227G tiles: [ 50M 6k/s ] 29G
cpus: 45 gc: 7% heap: 90G/187G direct: 54M postGC: 61G
read( 3% 3%) -> merge( 3%) -> (8.4k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/4988/4253 (z13 61%) https://www.openstreetmap.org/#map=13/-6.88280/39.19922
1:34:06 INF [archive] - features: [ 1.3B 40% 897k/s ] 227G tiles: [ 50M 52k/s ] 29G
cpus: 45.4 gc: 7% heap: 90G/187G direct: 54M postGC: 62G
read(14% 14%) -> merge(14%) -> (8.8k/9.4k) -> encode(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% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92%) -> (9.3k/9.3k) -> write(18%)
last tile: 13/5076/3832 (z13 62%) https://www.openstreetmap.org/#map=13/11.52309/43.06641
1:34:16 INF [archive] - features: [ 1.3B 40% 766k/s ] 227G tiles: [ 51M 29k/s ] 30G
cpus: 45.1 gc: 8% heap: 99G/187G direct: 54M postGC: 64G
read( 8% 9%) -> merge( 8%) -> (8.8k/9.4k) -> encode(92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 90% 92%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/5125/4050 (z13 63%) https://www.openstreetmap.org/#map=13/2.02107/45.21973
1:34:26 INF [archive] - features: [ 1.3B 40% 568k/s ] 227G tiles: [ 51M 589/s ] 30G
cpus: 44.9 gc: 7% heap: 83G/187G direct: 54M postGC: 64G
read( 0% 0%) -> merge( 0%) -> (8.1k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 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% 93% 93% 93% 92% 93% 93% 93%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/5126/4050 (z13 63%) https://www.openstreetmap.org/#map=13/2.02107/45.26367
1:34:36 INF [archive] - features: [ 1.3B 41% 972k/s ] 227G tiles: [ 51M 74k/s ] 30G
cpus: 45.3 gc: 9% heap: 66G/187G direct: 54M postGC: 65G
read(15% 15%) -> merge(15%) -> (8.7k/9.4k) -> encode(91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 87% 91% 91%) -> (9.3k/9.3k) -> write(25%)
last tile: 13/5253/3255 (z13 64%) https://www.openstreetmap.org/#map=13/34.63321/50.84473
1:34:46 INF [archive] - features: [ 1.3B 41% 1.1M/s ] 227G tiles: [ 52M 106k/s ] 30G
cpus: 45.5 gc: 7% heap: 103G/187G direct: 54M postGC: 66G
read(13% 13%) -> merge(13%) -> (8.4k/9.4k) -> 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% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write(29%)
last tile: 13/5444/3568 (z13 66%) https://www.openstreetmap.org/#map=13/22.59373/59.23828
1:34:56 INF [archive] - features: [ 1.3B 41% 633k/s ] 227G tiles: [ 54M 127k/s ] 31G
cpus: 45.2 gc: 10% heap: 74G/187G direct: 54M postGC: 69G
read(14% 14%) -> merge(13%) -> (9k/9.4k) -> encode(90% 90% 90% 89% 88% 90% 90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 90% 90% 88% 90% 90% 90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 90% 90% 90% 90% 90% 90% 89% 90% 90% 90%) -> (9.3k/9.3k) -> write(30%)
last tile: 13/5667/3259 (z13 69%) https://www.openstreetmap.org/#map=13/34.48845/69.03809
1:35:07 INF [archive] - features: [ 1.3B 42% 1M/s ] 227G tiles: [ 54M 63k/s ] 31G
cpus: 45.2 gc: 8% heap: 74G/187G direct: 54M postGC: 69G
read( 8% 8%) -> merge(10%) -> (8.7k/9.4k) -> encode(92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 92% 91% 90% 92% 92% 92% 92% 92% 92% 92% 91% 92% 92% 92% 92% 92% 92% 92% 92% 92%) -> (9.3k/9.3k) -> write(18%)
last tile: 13/5777/690 (z13 71%) https://www.openstreetmap.org/#map=13/81.60854/73.87207
1:35:17 INF [archive] - features: [ 1.3B 42% 738k/s ] 227G tiles: [ 55M 25k/s ] 31G
cpus: 46 gc: 6% heap: 45G/187G direct: 54M postGC: 15G
read( 9% 9%) -> merge( 6%) -> (8.4k/9.4k) -> encode(87% 87% 86% 86% 87% 86% 85% 88% 92% 86% 92% 84% 81% 91% 78% 83% 85% 92% 93% 92% 88% 90% 88% 91% 86% 83% 86% 86% 85% 88% 92% 92% 85% 93% 83% 82% 92% 87% 87% 87% 78% 87% 87% 87% 87% 88%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/5821/3565 (z13 71%) https://www.openstreetmap.org/#map=13/22.71539/75.80566
1:35:27 INF [archive] - features: [ 1.3B 42% 633k/s ] 227G tiles: [ 55M 34k/s ] 31G
cpus: 44.1 gc: 10% heap: 50G/187G direct: 54M postGC: 17G
read(14% 14%) -> merge(13%) -> (8.9k/9.4k) -> encode(90% 90% 90% 90% 90% 90% 89% 90% 90% 90% 89% 90% 89% 90% 90% 90% 90% 89% 89% 88% 87% 90% 90% 90% 90% 88% 90% 90% 90% 90% 90% 89% 90% 90% 89% 90% 90% 90% 89% 90% 90% 90% 90% 90% 90% 90%) -> (9.3k/9.3k) -> write(13%)
last tile: 13/5882/3695 (z13 72%) https://www.openstreetmap.org/#map=13/17.35064/78.48633
1:35:37 INF [archive] - features: [ 1.3B 42% 506k/s ] 227G tiles: [ 55M 21k/s ] 31G
cpus: 45.4 gc: 9% heap: 52G/187G direct: 54M postGC: 18G
read( 9% 9%) -> merge( 9%) -> (9.1k/9.4k) -> encode(83% 83% 90% 80% 90% 82% 88% 87% 90% 90% 87% 85% 89% 87% 90% 90% 89% 90% 87% 90% 79% 87% 84% 87% 84% 85% 89% 88% 89% 89% 89% 87% 90% 90% 90% 89% 86% 80% 90% 87% 83% 86% 90% 90% 87% 83%) -> (9.3k/9.3k) -> write( 7%)
last tile: 13/5923/3497 (z13 72%) https://www.openstreetmap.org/#map=13/25.44327/80.28809
1:35:47 INF [archive] - features: [ 1.3B 42% 551k/s ] 227G tiles: [ 55M 18k/s ] 31G
cpus: 46.7 gc: 3% heap: 27G/187G direct: 54M postGC: 17G
read( 9% 11%) -> merge( 7%) -> (9.1k/9.4k) -> encode(96% 97% 97% 88% 97% 85% 89% 93% 87% 93% 88% 94% 96% 95% 97% 88% 93% 97% 93% 94% 95% 91% 85% 84% 97% 94% 82% 83% 96% 94% 89% 89% 96% 97% 95% 95% 91% 89% 96% 90% 90% 93% 85% 94% 93% 95%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/5955/3921 (z13 73%) https://www.openstreetmap.org/#map=13/7.66744/81.69434
1:35:57 INF [archive] - features: [ 1.3B 43% 623k/s ] 227G tiles: [ 56M 27k/s ] 31G
cpus: 46.1 gc: 5% heap: 40G/187G direct: 54M postGC: 16G
read( 8% 8%) -> merge( 8%) -> (8.9k/9.4k) -> encode(90% 94% 92% 85% 90% 89% 90% 90% 85% 93% 94% 94% 91% 92% 93% 94% 94% 89% 94% 90% 89% 94% 91% 94% 89% 94% 92% 89% 89% 92% 94% 90% 92% 86% 94% 85% 94% 92% 94% 92% 94% 91% 92% 94% 94% 90%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/6007/3427 (z13 73%) https://www.openstreetmap.org/#map=13/28.18824/83.97949
1:36:07 INF [archive] - features: [ 1.3B 43% 488k/s ] 227G tiles: [ 56M 15k/s ] 31G
cpus: 45.4 gc: 10% heap: 16G/187G direct: 54M postGC: 15G
read( 6% 6%) -> merge( 6%) -> (8.7k/9.4k) -> encode(88% 87% 88% 83% 82% 84% 87% 86% 90% 90% 85% 88% 90% 85% 85% 85% 87% 78% 86% 82% 90% 84% 84% 77% 85% 85% 82% 82% 81% 89% 85% 87% 90% 88% 83% 85% 78% 88% 90% 81% 88% 85% 83% 87% 90% 86%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/6037/3440 (z13 74%) https://www.openstreetmap.org/#map=13/27.68353/85.29785
1:36:17 INF [archive] - features: [ 1.3B 43% 439k/s ] 227G tiles: [ 56M 36k/s ] 32G
cpus: 46.1 gc: 7% heap: 28G/187G direct: 54M postGC: 17G
read(11% 11%) -> merge(11%) -> (9.1k/9.4k) -> encode(85% 87% 89% 88% 85% 86% 86% 84% 93% 90% 93% 84% 87% 85% 87% 89% 93% 93% 91% 90% 88% 85% 90% 89% 88% 92% 87% 88% 88% 87% 87% 86% 81% 83% 78% 82% 90% 87% 92% 87% 89% 92% 92% 79% 82% 88%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/6105/3571 (z13 75%) https://www.openstreetmap.org/#map=13/22.47195/88.28613
1:36:27 INF [archive] - features: [ 1.3B 43% 401k/s ] 227G tiles: [ 56M 14k/s ] 32G
cpus: 45.5 gc: 5% heap: 50G/187G direct: 54M postGC: 18G
read( 7% 7%) -> merge( 7%) -> (9.2k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/6132/3561 (z13 75%) https://www.openstreetmap.org/#map=13/22.87744/89.47266
1:36:37 INF [archive] - features: [ 1.4B 43% 398k/s ] 227G tiles: [ 56M 9.3k/s ] 32G
cpus: 44.8 gc: 9% heap: 69G/187G direct: 54M postGC: 19G
read( 3% 4%) -> merge( 4%) -> (9.2k/9.4k) -> 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% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 91% 90% 91% 91% 91%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/6150/3535 (z13 75%) https://www.openstreetmap.org/#map=13/23.92601/90.26367
1:36:47 INF [archive] - features: [ 1.4B 43% 367k/s ] 227G tiles: [ 56M 2.5k/s ] 32G
cpus: 46.5 gc: 4% heap: 19G/187G direct: 54M postGC: 19G
read( 1% 1%) -> merge( 2%) -> (8.8k/9.4k) -> encode(96% 90% 92% 95% 86% 83% 91% 96% 94% 80% 93% 91% 94% 93% 83% 93% 84% 88% 92% 94% 94% 81% 87% 79% 87% 94% 96% 93% 95% 83% 92% 93% 89% 91% 81% 83% 90% 95% 85% 96% 82% 93% 90% 87% 94% 87%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/6155/3543 (z13 75%) https://www.openstreetmap.org/#map=13/23.60426/90.48340
1:36:57 INF [archive] - features: [ 1.4B 43% 477k/s ] 227G tiles: [ 56M 18k/s ] 32G
cpus: 42.8 gc: 13% heap: 58G/187G direct: 54M postGC: 18G
read( 6% 6%) -> merge( 7%) -> (8.6k/9.4k) -> encode(86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86% 86%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/6192/3603 (z13 76%) https://www.openstreetmap.org/#map=13/21.16648/92.10938
1:37:07 INF [archive] - features: [ 1.4B 44% 494k/s ] 227G tiles: [ 57M 62k/s ] 32G
cpus: 44.1 gc: 16% heap: 27G/187G direct: 54M postGC: 20G
read(12% 13%) -> merge(12%) -> (9.1k/9.4k) -> encode(84% 84% 84% 83% 84% 84% 84% 84% 84% 84% 84% 84% 84% 83% 84% 84% 83% 84% 84% 83% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 83% 81% 83%) -> (9.3k/9.3k) -> write(16%)
last tile: 13/6320/3560 (z13 77%) https://www.openstreetmap.org/#map=13/22.91792/97.73438
1:37:17 INF [archive] - features: [ 1.4B 44% 839k/s ] 227G tiles: [ 57M 29k/s ] 32G
cpus: 45.6 gc: 4% heap: 84G/187G direct: 54M postGC: 21G
read( 6% 6%) -> merge( 6%) -> (8.6k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 9%)
last tile: 13/6380/4118 (z13 78%) https://www.openstreetmap.org/#map=13/-0.96675/100.37109
1:37:27 INF [archive] - features: [ 1.4B 44% 690k/s ] 227G tiles: [ 58M 35k/s ] 32G
cpus: 45.4 gc: 9% heap: 18G/187G direct: 54M postGC: 18G
read(11% 11%) -> merge(12%) -> (8.8k/9.4k) -> encode(89% 74% 90% 89% 88% 82% 83% 76% 89% 82% 76% 90% 78% 81% 77% 85% 83% 90% 87% 85% 87% 85% 71% 88% 89% 81% 85% 80% 79% 85% 89% 90% 82% 79% 72% 88% 72% 87% 85% 73% 88% 87% 90% 88% 85% 90%) -> (9.3k/9.3k) -> write(13%)
last tile: 13/6453/4133 (z13 79%) https://www.openstreetmap.org/#map=13/-1.62576/103.57910
1:37:37 INF [archive] - features: [ 1.4B 44% 678k/s ] 227G tiles: [ 58M 31k/s ] 32G
cpus: 46.7 gc: 3% heap: 52G/187G direct: 54M postGC: 18G
read(11% 12%) -> merge( 9%) -> (9.2k/9.4k) -> encode(96% 94% 86% 87% 83% 96% 86% 89% 96% 88% 95% 91% 83% 91% 91% 92% 87% 89% 93% 86% 96% 87% 91% 78% 94% 83% 86% 96% 94% 96% 89% 96% 93% 86% 94% 95% 94% 93% 96% 91% 87% 88% 94% 94% 89% 88%) -> (9.3k/9.3k) -> write(12%)
last tile: 13/6518/4239 (z13 80%) https://www.openstreetmap.org/#map=13/-6.27162/106.43555
1:37:47 INF [archive] - features: [ 1.4B 44% 315k/s ] 227G tiles: [ 58M 2.9k/s ] 32G
cpus: 43.7 gc: 16% heap: 23G/187G direct: 54M postGC: 21G
read( 1% 1%) -> merge( 1%) -> (9.2k/9.4k) -> encode(83% 84% 84% 82% 84% 84% 84% 84% 84% 82% 84% 82% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 84% 83% 84% 84% 84% 84% 84% 84% 84% 82% 84%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/6524/4237 (z13 80%) https://www.openstreetmap.org/#map=13/-6.18425/106.69922
1:37:57 INF [archive] - features: [ 1.4B 44% 200k/s ] 227G tiles: [ 58M 986/s ] 32G
cpus: 45.4 gc: 4% heap: 47G/187G direct: 54M postGC: 23G
read( 0% 1%) -> merge( 0%) -> (9.1k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/6526/4237 (z13 80%) https://www.openstreetmap.org/#map=13/-6.18425/106.78711
1:38:07 INF [archive] - features: [ 1.4B 44% 379k/s ] 227G tiles: [ 58M 2.9k/s ] 32G
cpus: 45.3 gc: 5% heap: 58G/187G direct: 54M postGC: 23G
read( 1% 1%) -> merge( 1%) -> (9k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/6532/4239 (z13 80%) https://www.openstreetmap.org/#map=13/-6.27162/107.05078
1:38:17 INF [archive] - features: [ 1.4B 45% 322k/s ] 227G tiles: [ 58M 5.9k/s ] 32G
cpus: 45.3 gc: 5% heap: 59G/187G direct: 54M postGC: 23G
read( 2% 2%) -> merge( 2%) -> (8.9k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/6544/4255 (z13 80%) https://www.openstreetmap.org/#map=13/-6.97005/107.57813
1:38:27 INF [archive] - features: [ 1.4B 45% 433k/s ] 227G tiles: [ 58M 10k/s ] 32G
cpus: 45.6 gc: 4% heap: 88G/187G direct: 54M postGC: 23G
read( 4% 4%) -> merge( 5%) -> (8.9k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/6566/4250 (z13 80%) https://www.openstreetmap.org/#map=13/-6.75190/108.54492
1:38:37 INF [archive] - features: [ 1.4B 45% 438k/s ] 227G tiles: [ 59M 17k/s ] 33G
cpus: 45.4 gc: 5% heap: 35G/187G direct: 54M postGC: 24G
read( 7% 7%) -> merge( 7%) -> (9.2k/9.4k) -> encode(95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 94% 95% 95% 95% 95% 93% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/6602/4255 (z13 81%) https://www.openstreetmap.org/#map=13/-6.97005/110.12695
1:38:47 INF [archive] - features: [ 1.4B 45% 433k/s ] 227G tiles: [ 59M 2.4k/s ] 33G
cpus: 45.3 gc: 5% heap: 98G/187G direct: 54M postGC: 25G
read( 1% 1%) -> merge( 1%) -> (9k/9.4k) -> encode(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% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/6607/4275 (z13 81%) https://www.openstreetmap.org/#map=13/-7.84162/110.34668
1:38:58 INF [archive] - features: [ 1.4B 45% 374k/s ] 227G tiles: [ 59M 17k/s ] 33G
cpus: 45.4 gc: 5% heap: 40G/187G direct: 54M postGC: 25G
read( 6% 6%) -> merge( 5%) -> (9.1k/9.4k) -> encode(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% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 6%)
last tile: 13/6642/4281 (z13 81%) https://www.openstreetmap.org/#map=13/-8.10274/111.88477
1:39:08 INF [archive] - features: [ 1.4B 45% 454k/s ] 227G tiles: [ 59M 8.5k/s ] 33G
cpus: 45.1 gc: 6% heap: 50G/187G direct: 54M postGC: 26G
read( 5% 5%) -> merge( 4%) -> (9.1k/9.4k) -> encode(93% 93% 93% 93% 93% 93% 93% 93% 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% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 93%) -> (9.3k/9.3k) -> write( 3%)
last tile: 13/6659/4278 (z13 81%) https://www.openstreetmap.org/#map=13/-7.97220/112.63184
1:39:18 INF [archive] - features: [ 1.4B 45% 567k/s ] 227G tiles: [ 59M 1k/s ] 33G
cpus: 45.5 gc: 3% heap: 82G/187G direct: 54M postGC: 26G
read( 1% 1%) -> merge( 0%) -> (8.5k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 0%)
last tile: 13/6661/4263 (z13 81%) https://www.openstreetmap.org/#map=13/-7.31888/112.71973
1:39:28 INF [archive] - features: [ 1.4B 46% 516k/s ] 227G tiles: [ 59M 21k/s ] 33G
cpus: 45.5 gc: 5% heap: 27G/187G direct: 54M postGC: 27G
read( 8% 8%) -> merge( 5%) -> (8.6k/9.4k) -> encode(93% 95% 95% 95% 95% 95% 95% 95% 94% 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% 94% 95% 95% 95% 95% 95%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/6703/4172 (z13 82%) https://www.openstreetmap.org/#map=13/-3.33795/114.56543
1:39:38 INF [archive] - features: [ 1.4B 46% 711k/s ] 227G tiles: [ 59M 26k/s ] 33G
cpus: 45.6 gc: 4% heap: 54G/187G direct: 54M postGC: 27G
read( 6% 7%) -> merge( 6%) -> (8.7k/9.4k) -> encode(96% 96% 96% 96% 96% 94% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/6754/4125 (z13 82%) https://www.openstreetmap.org/#map=13/-1.27431/116.80664
1:39:48 INF [archive] - features: [ 1.4B 46% 564k/s ] 227G tiles: [ 60M 31k/s ] 33G
cpus: 45.6 gc: 4% heap: 92G/187G direct: 54M postGC: 28G
read( 4% 3%) -> merge( 4%) -> (8.7k/9.4k) -> encode(95% 96% 96% 95% 96% 95% 96% 96% 95% 95% 96% 95% 96% 96% 95% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 95% 96% 96% 96% 95% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(12%)
last tile: 13/6818/4115 (z13 83%) https://www.openstreetmap.org/#map=13/-0.83493/119.61914
1:39:58 INF [archive] - features: [ 1.4B 46% 463k/s ] 227G tiles: [ 60M 12k/s ] 33G
cpus: 45.2 gc: 6% heap: 40G/187G direct: 54M postGC: 28G
read( 3% 2%) -> merge( 3%) -> (9k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 4%)
last tile: 13/6840/3747 (z13 83%) https://www.openstreetmap.org/#map=13/15.15697/120.58594
1:40:08 INF [archive] - features: [ 1.5B 46% 391k/s ] 227G tiles: [ 60M 4.1k/s ] 33G
cpus: 45.1 gc: 6% heap: 30G/187G direct: 54M postGC: 29G
read( 1% 0%) -> merge( 1%) -> (9k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 2%)
last tile: 13/6848/3767 (z13 84%) https://www.openstreetmap.org/#map=13/14.30697/120.93750
1:40:18 INF [archive] - features: [ 1.5B 46% 539k/s ] 227G tiles: [ 60M 24k/s ] 33G
cpus: 45.8 gc: 2% heap: 62G/187G direct: 54M postGC: 28G
read( 2% 1%) -> merge( 2%) -> (9.1k/9.4k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.3k/9.3k) -> write( 8%)
last tile: 13/6895/4084 (z13 84%) https://www.openstreetmap.org/#map=13/0.52734/123.00293
1:40:28 INF [archive] - features: [ 1.5B 47% 502k/s ] 227G tiles: [ 60M 19k/s ] 33G
cpus: 45.7 gc: 2% heap: 97G/187G direct: 54M postGC: 28G
read( 1% 0%) -> merge( 1%) -> (9k/9.4k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/6934/3946 (z13 85%) https://www.openstreetmap.org/#map=13/6.57730/124.71680
1:40:38 INF [archive] - features: [ 1.5B 47% 797k/s ] 227G tiles: [ 61M 35k/s ] 34G
cpus: 45.6 gc: 3% heap: 47G/187G direct: 54M postGC: 29G
read( 2% 1%) -> merge( 3%) -> (8.8k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(10%)
last tile: 13/7001/3478 (z13 85%) https://www.openstreetmap.org/#map=13/26.19488/127.66113
1:40:48 INF [archive] - features: [ 1.5B 47% 701k/s ] 227G tiles: [ 61M 68k/s ] 34G
cpus: 45.8 gc: 3% heap: 83G/187G direct: 54M postGC: 30G
read( 5% 3%) -> merge( 5%) -> (9k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (9.3k/9.3k) -> write(18%)
last tile: 13/7130/3233 (z13 87%) https://www.openstreetmap.org/#map=13/35.42487/133.33008
1:40:58 INF [archive] - features: [ 1.5B 47% 471k/s ] 227G tiles: [ 62M 26k/s ] 34G
cpus: 45.4 gc: 4% heap: 112G/187G direct: 54M postGC: 31G
read( 1% 0%) -> merge( 1%) -> (9.1k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 6%)
last tile: 13/7180/3254 (z13 88%) https://www.openstreetmap.org/#map=13/34.66936/135.52734
1:41:08 INF [archive] - features: [ 1.5B 47% 563k/s ] 227G tiles: [ 62M 2k/s ] 34G
cpus: 45.2 gc: 5% heap: 60G/187G direct: 54M postGC: 30G
read( 0% 0%) -> merge( 0%) -> (8.5k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/7184/3245 (z13 88%) https://www.openstreetmap.org/#map=13/34.99400/135.70313
1:41:18 INF [archive] - features: [ 1.5B 48% 520k/s ] 227G tiles: [ 62M 45k/s ] 34G
cpus: 45.6 gc: 4% heap: 91G/187G direct: 54M postGC: 31G
read( 1% 1%) -> merge( 2%) -> (9.2k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96%) -> (9.3k/9.3k) -> write(12%)
last tile: 13/7268/3230 (z13 89%) https://www.openstreetmap.org/#map=13/35.53223/139.39453
1:41:28 INF [archive] - features: [ 1.5B 48% 371k/s ] 227G tiles: [ 62M 2.7k/s ] 34G
cpus: 45.2 gc: 6% heap: 32G/187G direct: 54M postGC: 31G
read( 0% 0%) -> merge( 0%) -> (9k/9.4k) -> encode(94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94% 94%) -> (9.3k/9.3k) -> write( 1%)
last tile: 13/7273/3226 (z13 89%) https://www.openstreetmap.org/#map=13/35.67515/139.61426
1:41:38 INF [archive] - features: [ 1.5B 48% 572k/s ] 227G tiles: [ 62M 16k/s ] 34G
cpus: 45.7 gc: 2% heap: 72G/187G direct: 54M postGC: 31G
read( 1% 1%) -> merge( 1%) -> (9.1k/9.4k) -> encode(97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97% 97%) -> (9.3k/9.3k) -> write( 5%)
last tile: 13/7302/3153 (z13 89%) https://www.openstreetmap.org/#map=13/38.23818/140.88867
1:41:48 INF [archive] - features: [ 1.5B 48% 720k/s ] 227G tiles: [ 63M 60k/s ] 34G
cpus: 45.8 gc: 2% heap: 108G/187G direct: 54M postGC: 31G
read( 1% 1%) -> merge( 2%) -> (8.9k/9.4k) -> encode(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.3k/9.3k) -> write(16%)
last tile: 13/7412/4487 (z13 90%) https://www.openstreetmap.org/#map=13/-16.93071/145.72266
1:41:58 INF [archive] - features: [ 1.5B 48% 1.1M/s ] 227G tiles: [ 66M 313k/s ] 34G
cpus: 46.1 gc: 4% heap: 47G/187G direct: 54M postGC: 33G
read( 4% 4%) -> merge( 7%) -> (7.8k/9.4k) -> encode(96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 96% 95% 96% 96% 96%) -> (9.3k/9.3k) -> write(62%)
last tile: 13/7911/5824 (z13 97%) https://www.openstreetmap.org/#map=13/-60.23981/167.65137
1:42:02 INF [archive:write] - Finished z13 in 27m40s cpu:20h55m52s gc:1m39s avg:45.4, now starting z14
1:42:08 INF [archive] - features: [ 1.5B 49% 1.8M/s ] 227G tiles: [ 73M 741k/s ] 35G
cpus: 17 gc: 2% heap: 55G/187G direct: 54M postGC: 33G
read(10% 11%) -> merge(20%) -> (0/9.4k) -> encode(33% 33% 32% 31% 32% 31% 34% 31% 33% 32% 34% 32% 33% 32% 32% 30% 32% 31% 32% 33% 33% 34% 32% 32% 35% 31% 33% 33% 33% 33% 30% 31% 33% 38% 31% 32% 33% 32% 33% 35% 34% 33% 37% 32% 33% 30%) -> (9.3k/9.3k) -> write(96%)
last tile: 14/333/13996 (z14 2%) https://www.openstreetmap.org/#map=14/-77.67412/-172.68311
1:42:18 INF [archive] - features: [ 1.6B 49% 1M/s ] 227G tiles: [ 82M 856k/s ] 35G
cpus: 6 gc: 0% heap: 76G/187G direct: 54M postGC: 33G
read(12% 12%) -> merge(23%) -> (0/9.4k) -> encode(12% 11% 10% 9% 9% 9% 11% 8% 11% 9% 11% 9% 10% 7% 12% 10% 8% 10% 7% 7% 10% 12% 9% 9% 11% 8% 9% 12% 8% 9% 11% 9% 8% 10% 9% 9% 12% 10% 11% 10% 10% 8% 10% 8% 8% 12%) -> (9.3k/9.3k) -> write(100%)
last tile: 14/879/16273 (z14 5%) https://www.openstreetmap.org/#map=14/-84.83620/-160.68604
1:42:28 INF [archive] - features: [ 1.6B 50% 975k/s ] 227G tiles: [ 90M 838k/s ] 35G
cpus: 6.2 gc: 0% heap: 97G/187G direct: 54M postGC: 33G
read(12% 14%) -> merge(22%) -> (0/9.4k) -> encode(12% 12% 11% 9% 9% 12% 11% 11% 9% 10% 12% 11% 11% 10% 10% 10% 10% 9% 9% 12% 13% 9% 9% 9% 13% 12% 8% 9% 13% 8% 8% 8% 10% 10% 11% 11% 11% 9% 11% 11% 9% 9% 10% 11% 11% 11%) -> (9.3k/9.3k) -> write(100%)
last tile: 14/1468/7121 (z14 9%) https://www.openstreetmap.org/#map=14/22.89768/-147.74414
1:42:38 INF [archive] - features: [ 1.6B 50% 2.3M/s ] 227G tiles: [ 98M 715k/s ] 35G
cpus: 22.8 gc: 8% heap: 42G/187G direct: 54M postGC: 39G
read(29% 30%) -> merge(36%) -> (0/9.4k) -> encode(35% 44% 41% 39% 39% 38% 41% 37% 40% 39% 44% 38% 42% 40% 40% 39% 43% 43% 39% 46% 36% 38% 37% 40% 40% 39% 37% 39% 36% 36% 42% 36% 42% 36% 42% 42% 43% 38% 41% 44% 39% 41% 34% 41% 38% 42%) -> (9.3k/9.3k) -> write(92%)
last tile: 14/2011/5918 (z14 12%) https://www.openstreetmap.org/#map=14/44.62175/-135.81299
1:42:46 WAR [archive:encode] - {x=2864 y=6625 z=14} 1087kb uncompressed
1:42:47 WAR [archive:encode] - {x=2868 y=6628 z=14} 1059kb uncompressed
1:42:47 WAR [archive:encode] - {x=2868 y=6627 z=14} 1031kb uncompressed
1:42:47 WAR [archive:encode] - {x=2872 y=6626 z=14} 1113kb uncompressed
1:42:47 WAR [archive:encode] - {x=2873 y=6626 z=14} 1420kb uncompressed
1:42:48 INF [archive] - features: [ 1.6B 51% 3M/s ] 227G tiles: [ 104M 617k/s ] 36G
cpus: 30.3 gc: 7% heap: 45G/187G direct: 54M postGC: 45G
read(39% 43%) -> merge(44%) -> (0/9.4k) -> encode(61% 55% 59% 54% 54% 51% 55% 58% 58% 61% 60% 59% 56% 57% 57% 58% 56% 57% 54% 55% 57% 55% 58% 57% 53% 53% 57% 53% 55% 55% 59% 57% 54% 54% 59% 54% 56% 56% 58% 54% 60% 56% 56% 54% 56% 57%) -> (9.3k/9.3k) -> write(93%)
last tile: 14/2505/1420 (z14 15%) https://www.openstreetmap.org/#map=14/81.47929/-124.95850
1:42:59 INF [archive] - features: [ 1.6B 52% 2.8M/s ] 227G tiles: [ 108M 397k/s ] 37G
cpus: 33.5 gc: 8% heap: 56G/187G direct: 54M postGC: 52G
read(39% 41%) -> merge(44%) -> (40/9.4k) -> encode(62% 65% 61% 64% 62% 64% 59% 61% 64% 64% 59% 63% 62% 65% 60% 61% 65% 63% 63% 61% 60% 62% 63% 65% 67% 64% 67% 63% 67% 63% 63% 66% 64% 64% 63% 61% 64% 58% 62% 65% 64% 61% 62% 57% 61% 61%) -> (9.3k/9.3k) -> write(90%)
last tile: 14/2834/11495 (z14 17%) https://www.openstreetmap.org/#map=14/-58.52813/-117.72949
1:43:09 INF [archive] - features: [ 1.7B 53% 3.1M/s ] 227G tiles: [ 112M 445k/s ] 38G
cpus: 33.7 gc: 6% heap: 64G/187G direct: 54M postGC: 57G
read(39% 41%) -> merge(43%) -> (0/9.4k) -> encode(62% 65% 62% 62% 62% 66% 67% 64% 65% 66% 64% 64% 62% 64% 64% 63% 64% 66% 63% 68% 65% 66% 62% 67% 64% 63% 63% 63% 63% 69% 63% 66% 65% 63% 63% 62% 63% 68% 68% 64% 66% 62% 60% 64% 66% 64%) -> (9.3k/9.3k) -> write(93%)
last tile: 14/3216/8921 (z14 20%) https://www.openstreetmap.org/#map=14/-15.81340/-109.33594
1:43:19 INF [archive] - features: [ 1.7B 54% 3M/s ] 227G tiles: [ 117M 456k/s ] 39G
cpus: 31.9 gc: 7% heap: 65G/187G direct: 54M postGC: 64G
read(39% 44%) -> merge(40%) -> (0/9.4k) -> encode(61% 59% 64% 62% 58% 58% 58% 59% 58% 59% 60% 57% 61% 60% 63% 61% 62% 59% 58% 60% 59% 59% 56% 59% 58% 59% 59% 60% 55% 61% 61% 53% 62% 59% 60% 62% 58% 56% 60% 60% 60% 61% 61% 65% 59% 57%) -> (9.3k/9.3k) -> write(92%)
last tile: 14/3607/1510 (z14 22%) https://www.openstreetmap.org/#map=14/81.18123/-100.74463
1:43:29 INF [archive] - features: [ 1.7B 55% 3.8M/s ] 227G tiles: [ 120M 352k/s ] 40G
cpus: 38.5 gc: 7% heap: 73G/187G direct: 54M postGC: 70G
read(39% 40%) -> merge(50%) -> (0/9.4k) -> encode(74% 73% 72% 73% 72% 74% 73% 74% 73% 75% 71% 73% 74% 75% 73% 73% 74% 74% 73% 74% 74% 72% 74% 74% 73% 73% 71% 75% 76% 74% 75% 75% 75% 74% 73% 73% 75% 76% 71% 74% 73% 75% 74% 75% 73% 74%) -> (9.3k/9.3k) -> write(93%)
last tile: 14/3924/5803 (z14 24%) https://www.openstreetmap.org/#map=14/46.39241/-93.77930
1:43:39 INF [archive] - features: [ 1.8B 56% 3.2M/s ] 227G tiles: [ 124M 380k/s ] 42G
cpus: 32.6 gc: 6% heap: 100G/187G direct: 54M postGC: 75G
read(44% 46%) -> merge(46%) -> (0/9.4k) -> encode(63% 62% 65% 61% 60% 61% 62% 60% 60% 61% 62% 58% 62% 62% 61% 62% 60% 63% 61% 59% 64% 59% 61% 61% 61% 60% 59% 59% 64% 60% 61% 62% 62% 59% 61% 61% 63% 60% 63% 61% 62% 62% 62% 64% 62% 60%) -> (7.1k/9.3k) -> write(93%)
last tile: 14/4269/4745 (z14 26%) https://www.openstreetmap.org/#map=14/60.14150/-86.19873
1:43:49 INF [archive] - features: [ 1.8B 57% 3.3M/s ] 227G tiles: [ 127M 303k/s ] 43G
cpus: 34.1 gc: 7% heap: 82G/187G direct: 54M postGC: 82G
read(48% 52%) -> merge(50%) -> (1/9.4k) -> encode(63% 62% 66% 63% 62% 62% 66% 64% 64% 62% 64% 63% 63% 63% 66% 62% 66% 64% 63% 62% 61% 64% 63% 63% 64% 64% 63% 64% 64% 64% 63% 63% 64% 63% 66% 67% 62% 64% 66% 65% 65% 65% 64% 65% 64% 65%) -> (4.4k/9.3k) -> write(92%)
last tile: 14/4543/14318 (z14 28%) https://www.openstreetmap.org/#map=14/-79.09678/-80.17822
1:43:59 INF [archive] - features: [ 1.8B 58% 3.5M/s ] 227G tiles: [ 131M 334k/s ] 45G
cpus: 31.6 gc: 5% heap: 96G/187G direct: 54M postGC: 84G
read(46% 48%) -> merge(47%) -> (0/9.4k) -> encode(59% 60% 60% 62% 58% 61% 61% 57% 59% 59% 61% 59% 59% 59% 60% 61% 62% 60% 58% 60% 61% 61% 59% 59% 61% 64% 57% 59% 57% 62% 59% 58% 60% 61% 61% 59% 61% 59% 60% 61% 58% 62% 62% 58% 58% 60%) -> (1k/9.3k) -> write(95%)
last tile: 14/4822/1502 (z14 29%) https://www.openstreetmap.org/#map=14/81.20814/-74.04785
1:44:09 INF [archive] - features: [ 1.9B 60% 3.5M/s ] 227G tiles: [ 133M 272k/s ] 47G
cpus: 34.5 gc: 1% heap: 126G/187G direct: 54M postGC: 83G
read(46% 50%) -> merge(50%) -> (0/9.4k) -> encode(67% 71% 69% 69% 68% 69% 70% 70% 70% 70% 70% 69% 67% 71% 69% 69% 71% 69% 69% 68% 70% 67% 71% 71% 70% 69% 69% 69% 71% 70% 71% 67% 69% 70% 71% 71% 69% 72% 69% 68% 69% 70% 70% 71% 70% 71%) -> (580/9.3k) -> write(85%)
last tile: 14/5059/2717 (z14 31%) https://www.openstreetmap.org/#map=14/76.03201/-68.84033
1:44:19 INF [archive] - features: [ 1.9B 61% 3.3M/s ] 227G tiles: [ 137M 404k/s ] 47G
cpus: 35.8 gc: 4% heap: 101G/187G direct: 54M postGC: 86G
read(42% 46%) -> merge(50%) -> (0/9.4k) -> encode(70% 73% 69% 70% 72% 70% 70% 69% 72% 70% 70% 69% 70% 68% 72% 69% 68% 71% 70% 69% 72% 68% 68% 70% 72% 65% 69% 69% 69% 67% 70% 70% 70% 69% 69% 69% 70% 69% 69% 67% 67% 73% 71% 71% 69% 69%) -> (5k/9.3k) -> write(95%)
last tile: 14/5385/13223 (z14 33%) https://www.openstreetmap.org/#map=14/-73.47224/-61.67725
1:44:28 WAR [archive:encode] - {x=6070 y=9292 z=14} 1027kb uncompressed
1:44:28 WAR [archive:encode] - {x=6070 y=9294 z=14} 1036kb uncompressed
1:44:28 WAR [archive:encode] - {x=6071 y=9292 z=14} 1294kb uncompressed
1:44:28 WAR [archive:encode] - {x=6073 y=9297 z=14} 1073kb uncompressed
1:44:28 WAR [archive:encode] - {x=6074 y=9297 z=14} 1212kb uncompressed
1:44:28 WAR [archive:encode] - {x=6074 y=9296 z=14} 1075kb uncompressed
1:44:28 WAR [archive:encode] - {x=6074 y=9293 z=14} 1033kb uncompressed
1:44:28 WAR [archive:encode] - {x=6075 y=9297 z=14} 1101kb uncompressed
1:44:28 WAR [archive:encode] - {x=6075 y=9293 z=14} 1139kb uncompressed
1:44:29 WAR [archive:encode] - {x=6076 y=9293 z=14} 1116kb uncompressed
1:44:29 INF [archive] - features: [ 1.9B 61% 2.5M/s ] 227G tiles: [ 141M 353k/s ] 48G
cpus: 34.1 gc: 20% heap: 96G/187G direct: 54M postGC: 92G
read(43% 44%) -> merge(48%) -> (0/9.4k) -> encode(55% 52% 53% 58% 55% 58% 56% 58% 57% 57% 51% 52% 56% 52% 56% 57% 56% 57% 59% 56% 54% 55% 57% 58% 53% 60% 55% 54% 60% 57% 55% 56% 53% 55% 57% 53% 55% 61% 56% 57% 55% 57% 53% 58% 55% 55%) -> (8.2k/9.3k) -> write(80%)
last tile: 14/5625/9862 (z14 34%) https://www.openstreetmap.org/#map=14/-34.41597/-56.40381
1:44:36 WAR [archive:encode] - {x=6434 y=8364 z=14} 1374kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8366 z=14} 1110kb uncompressed
1:44:36 WAR [archive:encode] - {x=6435 y=8365 z=14} 1488kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8365 z=14} 1094kb uncompressed
1:44:36 WAR [archive:encode] - {x=6437 y=8365 z=14} 1038kb uncompressed
1:44:36 WAR [archive:encode] - {x=6435 y=8362 z=14} 1267kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8360 z=14} 1099kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8364 z=14} 1439kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8362 z=14} 1289kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8363 z=14} 1503kb uncompressed
1:44:36 WAR [archive:encode] - {x=6437 y=8364 z=14} 1180kb uncompressed
1:44:36 WAR [archive:encode] - {x=6435 y=8364 z=14} 1875kb uncompressed
1:44:36 WAR [archive:encode] - {x=6435 y=8363 z=14} 1824kb uncompressed
1:44:36 WAR [archive:encode] - {x=6435 y=8361 z=14} 2123kb uncompressed
1:44:36 WAR [archive:encode] - {x=6439 y=8364 z=14} 1084kb uncompressed
1:44:36 WAR [archive:encode] - {x=6437 y=8363 z=14} 1532kb uncompressed
1:44:36 WAR [archive:encode] - {x=6439 y=8363 z=14} 1109kb uncompressed
1:44:36 WAR [archive:encode] - {x=6440 y=8366 z=14} 1049kb uncompressed
1:44:36 WAR [archive:encode] - {x=6436 y=8361 z=14} 1845kb uncompressed
1:44:36 WAR [archive:encode] - {x=6438 y=8362 z=14} 1454kb uncompressed
1:44:36 WAR [archive:encode] - {x=6439 y=8362 z=14} 1230kb uncompressed
1:44:36 WAR [archive:encode] - {x=6437 y=8361 z=14} 1681kb uncompressed
1:44:36 WAR [archive:encode] - {x=6437 y=8362 z=14} 1805kb uncompressed
1:44:39 INF [archive] - features: [ 2B 62% 2.1M/s ] 227G tiles: [ 147M 573k/s ] 49G
cpus: 19.8 gc: 6% heap: 99G/187G direct: 54M postGC: 99G
read(27% 41%) -> merge(37%) -> (0/9.4k) -> encode(29% 35% 35% 38% 35% 38% 36% 34% 34% 36% 33% 38% 34% 39% 31% 37% 36% 28% 38% 31% 33% 36% 39% 34% 36% 35% 35% 29% 34% 30% 35% 31% 23% 32% 38% 30% 34% 35% 33% 32% 35% 37% 38% 30% 34% 33%) -> (9.3k/9.3k) -> write(93%)
last tile: 14/6025/5884 (z14 37%) https://www.openstreetmap.org/#map=14/45.15105/-47.61475
1:44:49 INF [archive] - features: [ 2B 62% 1M/s ] 227G tiles: [ 154M 695k/s ] 50G
cpus: 5.9 gc: 3% heap: 109G/187G direct: 54M postGC: 102G
read(13% 14%) -> merge(22%) -> (0/9.4k) -> encode( 9% 9% 8% 8% 8% 7% 9% 7% 7% 8% 7% 6% 8% 7% 9% 8% 7% 6% 9% 7% 9% 9% 10% 8% 6% 7% 8% 8% 5% 8% 8% 7% 8% 8% 8% 8% 8% 9% 8% 8% 9% 7% 10% 7% 8% 8%) -> (9.3k/9.3k) -> write(97%)
last tile: 14/6500/7711 (z14 40%) https://www.openstreetmap.org/#map=14/10.50942/-37.17773
1:44:59 INF [archive] - features: [ 2B 63% 1.7M/s ] 227G tiles: [ 162M 789k/s ] 50G
cpus: 12.9 gc: 6% heap: 112G/187G direct: 54M postGC: 108G
read(22% 22%) -> merge(30%) -> (0/9.4k) -> encode(19% 20% 24% 22% 21% 21% 21% 22% 17% 17% 20% 20% 21% 20% 21% 20% 18% 19% 21% 17% 17% 20% 19% 20% 20% 21% 21% 22% 17% 19% 20% 20% 25% 20% 20% 23% 19% 20% 20% 20% 22% 17% 20% 20% 21% 17%) -> (9.3k/9.3k) -> write(94%)
last tile: 14/7064/12936 (z14 43%) https://www.openstreetmap.org/#map=14/-71.58053/-24.78516
1:45:08 WAR [archive:encode] - {x=7990 y=6392 z=14} 1528kb uncompressed
1:45:09 INF [archive] - features: [ 2B 64% 3.6M/s ] 227G tiles: [ 168M 594k/s ] 50G
cpus: 34.4 gc: 8% heap: 116G/187G direct: 54M postGC: 115G
read(44% 45%) -> merge(50%) -> (0/9.4k) -> encode(64% 62% 62% 64% 64% 62% 64% 62% 62% 64% 64% 67% 61% 65% 66% 65% 62% 64% 65% 62% 61% 64% 62% 64% 62% 67% 65% 64% 65% 67% 61% 65% 64% 63% 63% 64% 65% 66% 63% 64% 66% 66% 65% 63% 64% 64%) -> (9.3k/9.3k) -> write(91%)
last tile: 14/7509/10452 (z14 46%) https://www.openstreetmap.org/#map=14/-44.40239/-15.00732
1:45:10 WAR [archive:encode] - {x=8023 y=6177 z=14} 1046kb uncompressed
1:45:19 INF [archive] - features: [ 2.1B 65% 4.5M/s ] 227G tiles: [ 172M 464k/s ] 51G
cpus: 39.5 gc: 7% heap: 122G/187G direct: 54M postGC: 122G
read(48% 49%) -> merge(60%) -> (0/9.4k) -> encode(75% 76% 75% 76% 75% 76% 75% 76% 78% 76% 75% 75% 75% 76% 75% 76% 76% 76% 75% 75% 75% 76% 76% 76% 74% 76% 75% 76% 75% 77% 76% 77% 75% 76% 75% 76% 75% 76% 76% 75% 76% 75% 75% 76% 75% 75%) -> (9.1k/9.3k) -> write(91%)
last tile: 14/7879/2571 (z14 48%) https://www.openstreetmap.org/#map=14/76.78568/-6.87744
1:45:23 WAR [archive:encode] - {x=8174 y=6234 z=14} 1296kb uncompressed
1:45:29 INF [archive] - features: [ 2.1B 66% 2.9M/s ] 227G tiles: [ 176M 346k/s ] 53G
cpus: 28.7 gc: 6% heap: 26G/187G direct: 54M postGC: 17G
read(59% 59%) -> merge(42%) -> (0/9.4k) -> encode(46% 42% 45% 44% 46% 43% 44% 46% 43% 45% 46% 43% 47% 43% 47% 42% 43% 48% 48% 43% 43% 45% 45% 44% 44% 44% 46% 45% 46% 46% 45% 43% 47% 48% 46% 46% 44% 44% 44% 44% 44% 46% 48% 46% 48% 45%) -> (2.6k/9.3k) -> write(93%)
last tile: 14/8161/5459 (z14 50%) https://www.openstreetmap.org/#map=14/51.35806/-0.68115
1:45:39 WAR [archive:encode] - {x=8270 y=6129 z=14} 1175kb uncompressed
1:45:39 INF [archive] - features: [ 2.1B 67% 2.2M/s ] 227G tiles: [ 177M 140k/s ] 54G
cpus: 18.4 gc: 2% heap: 5.6G/187G direct: 54M postGC: 3.1G
read(75% 75%) -> merge(34%) -> (0/9.4k) -> encode(33% 31% 28% 30% 26% 32% 29% 35% 33% 32% 28% 33% 31% 30% 31% 32% 33% 31% 33% 31% 31% 32% 29% 32% 31% 32% 28% 29% 32% 29% 35% 31% 35% 30% 29% 29% 32% 28% 36% 31% 26% 30% 29% 31% 32% 31%) -> (22/9.3k) -> write(42%)
last tile: 14/8276/5490 (z14 51%) https://www.openstreetmap.org/#map=14/50.93074/1.84570
1:45:42 WAR [archive:encode] - {x=8290 y=6119 z=14} 1419kb uncompressed
1:45:42 WAR [archive:encode] - {x=8290 y=6118 z=14} 1486kb uncompressed
1:45:42 WAR [archive:encode] - {x=8292 y=6115 z=14} 1310kb uncompressed
1:45:44 WAR [archive:encode] - {x=8298 y=5636 z=14} 1118kb uncompressed
1:45:44 WAR [archive:encode] - {x=8298 y=5635 z=14} 1072kb uncompressed
1:45:44 WAR [archive:encode] - {x=8299 y=5636 z=14} 1081kb uncompressed
1:45:44 WAR [archive:encode] - {x=8299 y=5635 z=14} 1033kb uncompressed
1:45:49 INF [archive] - features: [ 2.1B 68% 2M/s ] 227G tiles: [ 178M 57k/s ] 55G
cpus: 18.5 gc: 7% heap: 5.9G/187G direct: 54M postGC: 3G
read(68% 69%) -> merge(33%) -> (0/9.4k) -> encode(30% 30% 28% 26% 35% 30% 26% 29% 24% 29% 32% 27% 24% 29% 27% 30% 29% 31% 28% 31% 31% 25% 25% 27% 27% 28% 27% 28% 25% 32% 32% 29% 30% 27% 26% 31% 28% 29% 31% 27% 27% 27% 30% 28% 28% 28%) -> (9/9.3k) -> write(21%)
last tile: 14/8324/5981 (z14 51%) https://www.openstreetmap.org/#map=14/43.62812/2.90039
1:45:59 INF [archive] - features: [ 2.2B 69% 3.3M/s ] 227G tiles: [ 179M 88k/s ] 55G
cpus: 28.5 gc: 6% heap: 10G/187G direct: 54M postGC: 3.4G
read(56% 58%) -> merge(54%) -> (0/9.4k) -> encode(50% 50% 52% 50% 47% 49% 52% 50% 51% 47% 49% 45% 48% 50% 50% 50% 50% 51% 48% 47% 46% 49% 52% 48% 47% 46% 50% 51% 47% 52% 50% 47% 48% 51% 49% 50% 50% 50% 48% 51% 51% 49% 54% 52% 51% 47%) -> (53/9.3k) -> write(31%)
last tile: 14/8398/5423 (z14 51%) https://www.openstreetmap.org/#map=14/51.84935/4.52637
1:46:03 WAR [archive:encode] - {x=8413 y=5384 z=14} 1216kb uncompressed
1:46:03 WAR [archive:encode] - {x=8414 y=5385 z=14} 1137kb uncompressed
1:46:03 WAR [archive:encode] - {x=8414 y=5384 z=14} 1259kb uncompressed
1:46:09 INF [archive] - features: [ 2.2B 70% 4.2M/s ] 227G tiles: [ 179M 70k/s ] 56G
cpus: 33 gc: 5% heap: 10G/187G direct: 54M postGC: 3.9G
read(58% 62%) -> merge(65%) -> (0/9.4k) -> encode(62% 60% 61% 63% 60% 62% 60% 60% 61% 61% 60% 61% 62% 62% 61% 63% 60% 62% 62% 62% 61% 61% 63% 62% 60% 63% 63% 60% 62% 61% 62% 61% 60% 61% 60% 61% 60% 62% 61% 60% 61% 61% 63% 61% 59% 62%) -> (104/9.3k) -> write(31%)
last tile: 14/8456/5322 (z14 52%) https://www.openstreetmap.org/#map=14/53.19945/5.80078
1:46:19 INF [archive] - features: [ 2.3B 71% 4.6M/s ] 227G tiles: [ 180M 82k/s ] 58G
cpus: 32.8 gc: 2% heap: 7.4G/187G direct: 54M postGC: 4G
read(55% 56%) -> merge(68%) -> (0/9.4k) -> encode(67% 65% 67% 63% 65% 66% 66% 66% 65% 64% 65% 64% 65% 66% 67% 65% 64% 65% 65% 65% 64% 65% 66% 64% 66% 66% 66% 66% 67% 64% 65% 64% 65% 65% 65% 65% 65% 64% 66% 66% 65% 64% 65% 64% 64% 65%) -> (71/9.3k) -> write(37%)
last tile: 14/8523/4814 (z14 52%) https://www.openstreetmap.org/#map=14/59.37799/7.27295
1:46:29 INF [archive] - features: [ 2.3B 73% 3.9M/s ] 227G tiles: [ 181M 76k/s ] 59G
cpus: 28.5 gc: 2% heap: 16G/187G direct: 54M postGC: 4G
read(48% 47%) -> merge(60%) -> (0/9.4k) -> encode(57% 55% 56% 57% 57% 57% 59% 57% 57% 58% 57% 55% 59% 57% 55% 59% 57% 56% 55% 56% 56% 56% 56% 57% 56% 56% 56% 58% 57% 57% 56% 56% 57% 54% 55% 56% 58% 58% 58% 56% 58% 57% 57% 55% 55% 58%) -> (40/9.3k) -> write(34%)
last tile: 14/8585/5430 (z14 52%) https://www.openstreetmap.org/#map=14/51.75424/8.63525
1:46:40 INF [archive] - features: [ 2.4B 74% 4.2M/s ] 227G tiles: [ 182M 72k/s ] 60G
cpus: 31 gc: 2% heap: 10G/187G direct: 54M postGC: 4G
read(53% 50%) -> merge(64%) -> (0/9.4k) -> encode(63% 61% 63% 61% 61% 61% 61% 62% 62% 61% 63% 62% 60% 63% 61% 60% 61% 61% 62% 61% 61% 61% 62% 63% 62% 61% 63% 62% 63% 61% 60% 63% 65% 61% 58% 60% 62% 59% 61% 62% 63% 61% 63% 61% 60% 62%) -> (91/9.3k) -> write(36%)
last tile: 14/8644/8293 (z14 53%) https://www.openstreetmap.org/#map=14/-2.21868/9.93164
1:46:50 INF [archive] - features: [ 2.4B 75% 4.3M/s ] 227G tiles: [ 182M 88k/s ] 61G
cpus: 32 gc: 2% heap: 9.8G/187G direct: 54M postGC: 4G
read(53% 52%) -> merge(65%) -> (1/9.4k) -> encode(63% 65% 63% 65% 65% 64% 63% 64% 64% 62% 65% 61% 64% 64% 64% 65% 64% 63% 65% 65% 63% 63% 64% 63% 64% 64% 62% 64% 64% 64% 64% 63% 63% 63% 65% 64% 64% 64% 63% 65% 63% 64% 63% 64% 64% 61%) -> (43/9.3k) -> write(41%)
last tile: 14/8715/4929 (z14 53%) https://www.openstreetmap.org/#map=14/58.06626/11.49170
1:47:00 INF [archive] - features: [ 2.4B 77% 4.2M/s ] 227G tiles: [ 183M 98k/s ] 62G
cpus: 32.9 gc: 2% heap: 9.3G/187G direct: 54M postGC: 4G
read(53% 51%) -> merge(64%) -> (0/9.4k) -> encode(67% 66% 68% 66% 66% 64% 63% 64% 66% 65% 68% 65% 65% 68% 65% 66% 64% 67% 64% 65% 67% 67% 65% 64% 66% 64% 65% 68% 65% 65% 66% 64% 66% 66% 66% 65% 64% 65% 64% 66% 66% 63% 63% 65% 65% 66%) -> (83/9.3k) -> write(45%)
last tile: 14/8796/4418 (z14 54%) https://www.openstreetmap.org/#map=14/63.52897/13.27148
1:47:10 INF [archive] - features: [ 2.5B 78% 3.9M/s ] 227G tiles: [ 185M 106k/s ] 63G
cpus: 33.2 gc: 2% heap: 6.6G/187G direct: 54M postGC: 4G
read(50% 48%) -> merge(60%) -> (0/9.4k) -> encode(66% 66% 67% 68% 68% 65% 66% 67% 68% 65% 63% 68% 66% 66% 68% 66% 69% 68% 68% 67% 66% 64% 67% 67% 64% 67% 64% 67% 67% 70% 66% 68% 66% 67% 67% 66% 65% 69% 67% 68% 66% 64% 65% 67% 65% 66%) -> (103/9.3k) -> write(49%)
last tile: 14/8888/5829 (z14 54%) https://www.openstreetmap.org/#map=14/45.99696/15.29297
1:47:20 INF [archive] - features: [ 2.5B 79% 4M/s ] 227G tiles: [ 186M 133k/s ] 65G
cpus: 33 gc: 1% heap: 27G/187G direct: 54M postGC: 3.9G
read(51% 49%) -> merge(62%) -> (0/9.4k) -> encode(65% 64% 65% 67% 66% 66% 68% 68% 64% 67% 66% 68% 66% 64% 68% 67% 65% 65% 68% 66% 65% 67% 67% 66% 65% 66% 66% 65% 66% 67% 67% 66% 68% 67% 65% 65% 66% 67% 67% 67% 64% 67% 65% 63% 65% 65%) -> (49/9.3k) -> write(56%)
last tile: 14/9007/4507 (z14 55%) https://www.openstreetmap.org/#map=14/62.64387/17.90771
1:47:30 INF [archive] - features: [ 2.6B 80% 4.1M/s ] 227G tiles: [ 187M 145k/s ] 66G
cpus: 32.5 gc: 2% heap: 20G/187G direct: 54M postGC: 3.8G
read(52% 50%) -> merge(65%) -> (0/9.4k) -> encode(65% 64% 65% 65% 64% 64% 65% 64% 67% 66% 66% 63% 65% 64% 66% 63% 63% 63% 65% 63% 66% 66% 64% 65% 64% 67% 65% 64% 66% 66% 65% 65% 66% 65% 65% 64% 65% 65% 63% 64% 64% 67% 64% 64% 64% 65%) -> (66/9.3k) -> write(56%)
last tile: 14/9138/5912 (z14 56%) https://www.openstreetmap.org/#map=14/44.71551/20.78613
1:47:40 INF [archive] - features: [ 2.6B 81% 3.7M/s ] 227G tiles: [ 189M 158k/s ] 67G
cpus: 32.8 gc: 1% heap: 12G/187G direct: 54M postGC: 3.6G
read(49% 45%) -> merge(59%) -> (0/9.4k) -> encode(66% 67% 67% 68% 66% 65% 66% 65% 67% 64% 67% 69% 66% 65% 65% 66% 69% 66% 66% 64% 64% 65% 67% 67% 66% 65% 67% 65% 65% 65% 66% 68% 64% 66% 65% 65% 68% 66% 65% 68% 64% 66% 66% 65% 62% 63%) -> (69/9.3k) -> write(64%)
last tile: 14/9277/4461 (z14 57%) https://www.openstreetmap.org/#map=14/63.10470/23.84033
1:47:50 INF [archive] - features: [ 2.6B 83% 3.7M/s ] 227G tiles: [ 191M 206k/s ] 69G
cpus: 35.8 gc: 1% heap: 14G/187G direct: 54M postGC: 3.5G
read(51% 48%) -> merge(61%) -> (0/9.4k) -> encode(71% 71% 72% 72% 73% 75% 72% 74% 73% 74% 73% 72% 72% 75% 73% 70% 72% 72% 71% 72% 73% 72% 71% 71% 72% 72% 73% 75% 72% 72% 71% 70% 73% 70% 73% 73% 72% 72% 70% 71% 72% 73% 72% 72% 72% 70%) -> (68/9.3k) -> write(78%)
last tile: 14/9457/5985 (z14 58%) https://www.openstreetmap.org/#map=14/43.56447/27.79541
1:48:00 INF [archive] - features: [ 2.7B 84% 4M/s ] 227G tiles: [ 193M 158k/s ] 70G
cpus: 33.3 gc: 1% heap: 5.4G/187G direct: 54M postGC: 3.5G
read(51% 48%) -> merge(61%) -> (0/9.4k) -> encode(64% 68% 65% 67% 66% 67% 67% 67% 67% 66% 67% 65% 67% 67% 67% 69% 67% 68% 66% 68% 68% 65% 67% 68% 66% 68% 69% 66% 65% 67% 68% 68% 67% 66% 69% 64% 64% 70% 67% 66% 67% 65% 69% 67% 67% 69%) -> (51/9.3k) -> write(64%)
last tile: 14/9593/5790 (z14 59%) https://www.openstreetmap.org/#map=14/46.58907/30.78369
1:48:05 WAR [archive:encode] - {x=9673 y=8175 z=14} 1071kb uncompressed
1:48:05 WAR [archive:encode] - {x=9674 y=8175 z=14} 1031kb uncompressed
1:48:10 INF [archive] - features: [ 2.7B 85% 4.2M/s ] 227G tiles: [ 194M 178k/s ] 71G
cpus: 32.1 gc: 1% heap: 20G/187G direct: 54M postGC: 3.6G
read(50% 49%) -> merge(60%) -> (0/9.4k) -> encode(63% 64% 67% 65% 63% 65% 64% 62% 66% 67% 64% 64% 64% 65% 67% 67% 63% 62% 64% 64% 67% 65% 65% 65% 65% 65% 66% 66% 66% 65% 61% 62% 64% 64% 65% 65% 65% 62% 64% 65% 64% 64% 67% 64% 64% 68%) -> (91/9.3k) -> write(64%)
last tile: 14/9748/8247 (z14 59%) https://www.openstreetmap.org/#map=14/-1.20841/34.18945
1:48:20 INF [archive] - features: [ 2.8B 86% 3.7M/s ] 227G tiles: [ 196M 183k/s ] 73G
cpus: 29 gc: 1% heap: 21G/187G direct: 54M postGC: 3.8G
read(45% 44%) -> merge(55%) -> (0/9.4k) -> encode(57% 58% 60% 58% 59% 58% 59% 56% 58% 57% 59% 57% 54% 60% 56% 61% 59% 55% 61% 55% 59% 59% 55% 59% 59% 60% 59% 59% 59% 58% 59% 58% 60% 54% 56% 57% 57% 57% 58% 59% 58% 59% 55% 56% 59% 57%) -> (32/9.3k) -> write(62%)
last tile: 14/9904/8203 (z14 60%) https://www.openstreetmap.org/#map=14/-0.24170/37.61719
1:48:24 WAR [archive:encode] - {x=9977 y=8503 z=14} 1247kb uncompressed
1:48:24 WAR [archive:encode] - {x=9977 y=8501 z=14} 1287kb uncompressed
1:48:24 WAR [archive:encode] - {x=9978 y=8505 z=14} 1096kb uncompressed
1:48:24 WAR [archive:encode] - {x=9977 y=8502 z=14} 1605kb uncompressed
1:48:24 WAR [archive:encode] - {x=9978 y=8503 z=14} 1079kb uncompressed
1:48:24 WAR [archive:encode] - {x=9978 y=8501 z=14} 1335kb uncompressed
1:48:24 WAR [archive:encode] - {x=9978 y=8502 z=14} 1451kb uncompressed
1:48:29 WAR [archive:encode] - {x=10153 y=7662 z=14} 1026kb uncompressed
1:48:30 INF [archive] - features: [ 2.8B 87% 3.6M/s ] 227G tiles: [ 199M 291k/s ] 74G
cpus: 33.1 gc: 2% heap: 5.7G/187G direct: 54M postGC: 4.5G
read(46% 47%) -> merge(58%) -> (0/9.4k) -> encode(64% 64% 66% 69% 66% 64% 67% 65% 66% 68% 66% 66% 65% 65% 65% 67% 65% 67% 65% 65% 66% 63% 65% 66% 64% 63% 66% 64% 65% 65% 65% 67% 66% 68% 64% 66% 67% 66% 66% 68% 65% 66% 66% 67% 66% 65%) -> (598/9.3k) -> write(82%)
last tile: 14/10153/7661 (z14 62%) https://www.openstreetmap.org/#map=14/11.58767/43.08838
1:48:40 INF [archive] - features: [ 2.8B 89% 3.5M/s ] 227G tiles: [ 203M 380k/s ] 75G
cpus: 34.1 gc: 3% heap: 27G/187G direct: 54M postGC: 4.6G
read(48% 44%) -> merge(55%) -> (0/9.4k) -> encode(67% 67% 67% 66% 66% 67% 68% 67% 64% 70% 66% 70% 67% 66% 64% 65% 67% 68% 66% 68% 67% 68% 68% 65% 66% 66% 65% 67% 67% 67% 66% 68% 68% 67% 67% 69% 66% 67% 67% 66% 68% 68% 65% 64% 67% 67%) -> (796/9.3k) -> write(97%)
last tile: 14/10485/8728 (z14 64%) https://www.openstreetmap.org/#map=14/-11.69527/50.38330
1:48:50 INF [archive] - features: [ 2.9B 90% 3M/s ] 227G tiles: [ 208M 480k/s ] 76G
cpus: 30 gc: 6% heap: 27G/187G direct: 54M postGC: 6.9G
read(39% 41%) -> merge(54%) -> (0/9.4k) -> encode(56% 53% 51% 54% 58% 54% 54% 57% 52% 55% 57% 54% 59% 55% 56% 52% 57% 59% 59% 58% 60% 58% 56% 54% 51% 53% 56% 58% 56% 53% 55% 57% 56% 59% 56% 57% 53% 57% 57% 59% 56% 57% 61% 56% 54% 60%) -> (4.2k/9.3k) -> write(93%)
last tile: 14/10926/159 (z14 67%) https://www.openstreetmap.org/#map=14/84.74040/60.07324
1:49:00 INF [archive] - features: [ 2.9B 91% 3.2M/s ] 227G tiles: [ 213M 487k/s ] 77G
cpus: 34.5 gc: 9% heap: 25G/187G direct: 54M postGC: 14G
read(42% 43%) -> merge(55%) -> (0/9.4k) -> encode(63% 64% 67% 63% 66% 63% 63% 65% 63% 66% 64% 64% 64% 64% 62% 65% 65% 64% 64% 64% 67% 64% 63% 65% 66% 63% 66% 62% 63% 64% 63% 63% 64% 64% 65% 63% 64% 63% 63% 69% 64% 60% 62% 64% 66% 64%) -> (5.7k/9.3k) -> write(91%)
last tile: 14/11372/3820 (z14 69%) https://www.openstreetmap.org/#map=14/68.81593/69.87305
1:49:08 WAR [archive:encode] - {x=12074 y=6878 z=14} 1079kb uncompressed
1:49:10 INF [archive] - features: [ 2.9B 92% 3.8M/s ] 227G tiles: [ 216M 382k/s ] 78G
cpus: 37.7 gc: 9% heap: 36G/187G direct: 54M postGC: 22G
read(48% 51%) -> merge(62%) -> (0/9.4k) -> encode(72% 70% 72% 70% 70% 71% 70% 70% 67% 71% 71% 71% 69% 70% 71% 70% 71% 71% 69% 71% 71% 73% 71% 69% 74% 71% 69% 71% 70% 71% 70% 69% 72% 70% 71% 69% 71% 70% 68% 72% 69% 69% 70% 75% 70% 68%) -> (7.8k/9.3k) -> write(91%)
last tile: 14/11716/5330 (z14 72%) https://www.openstreetmap.org/#map=14/53.09402/77.43164
1:49:14 WAR [archive:encode] - {x=12385 y=7204 z=14} 1048kb uncompressed
1:49:14 WAR [archive:encode] - {x=12386 y=7204 z=14} 1437kb uncompressed
1:49:20 INF [archive] - features: [ 3B 93% 3.4M/s ] 227G tiles: [ 220M 378k/s ] 79G
cpus: 32.2 gc: 10% heap: 30G/187G direct: 54M postGC: 29G
read(42% 44%) -> merge(57%) -> (0/9.4k) -> encode(59% 58% 60% 57% 58% 57% 60% 59% 57% 58% 55% 57% 56% 58% 62% 61% 59% 60% 59% 58% 60% 60% 60% 58% 60% 58% 56% 57% 58% 57% 58% 59% 55% 59% 56% 57% 59% 57% 58% 59% 57% 57% 57% 57% 59% 57%) -> (9.3k/9.3k) -> write(90%)
last tile: 14/12079/494 (z14 74%) https://www.openstreetmap.org/#map=14/84.02060/85.40771
1:49:28 WAR [archive:encode] - {x=13052 y=8472 z=14} 1279kb uncompressed
1:49:28 WAR [archive:encode] - {x=13055 y=8473 z=14} 1126kb uncompressed
1:49:28 WAR [archive:encode] - {x=13055 y=8474 z=14} 1061kb uncompressed
1:49:28 WAR [archive:encode] - {x=13057 y=8471 z=14} 1027kb uncompressed
1:49:28 WAR [archive:encode] - {x=13058 y=8475 z=14} 1056kb uncompressed
1:49:29 WAR [archive:encode] - {x=13088 y=8508 z=14} 1171kb uncompressed
1:49:30 INF [archive] - features: [ 3B 94% 3.5M/s ] 227G tiles: [ 224M 386k/s ] 80G
cpus: 37.4 gc: 7% heap: 39G/187G direct: 54M postGC: 35G
read(46% 47%) -> merge(59%) -> (0/9.4k) -> encode(72% 73% 70% 72% 70% 69% 69% 69% 68% 68% 71% 73% 72% 75% 72% 70% 69% 71% 67% 68% 70% 75% 70% 70% 70% 69% 68% 69% 73% 71% 72% 71% 72% 69% 72% 71% 73% 67% 74% 71% 69% 71% 71% 72% 71% 74%) -> (9.2k/9.3k) -> write(92%)
last tile: 14/12468/9442 (z14 76%) https://www.openstreetmap.org/#map=14/-26.47057/93.95508
1:49:37 WAR [archive:encode] - {x=13322 y=8523 z=14} 1167kb uncompressed
1:49:37 WAR [archive:encode] - {x=13323 y=8522 z=14} 1065kb uncompressed
1:49:40 INF [archive] - features: [ 3B 95% 3.5M/s ] 227G tiles: [ 228M 410k/s ] 80G
cpus: 30.8 gc: 8% heap: 42G/187G direct: 54M postGC: 42G
read(47% 48%) -> merge(55%) -> (0/9.4k) -> encode(58% 56% 58% 55% 63% 55% 58% 56% 56% 54% 58% 58% 54% 55% 57% 55% 54% 58% 54% 58% 58% 55% 53% 56% 55% 59% 59% 55% 57% 54% 62% 55% 56% 56% 57% 54% 54% 56% 54% 56% 56% 59% 55% 57% 54% 58%) -> (9.3k/9.3k) -> write(92%)
last tile: 14/12916/12101 (z14 79%) https://www.openstreetmap.org/#map=14/-64.82091/103.79883
1:49:46 WAR [archive:encode] - {x=13662 y=7115 z=14} 1109kb uncompressed
1:49:46 WAR [archive:encode] - {x=13662 y=7116 z=14} 1565kb uncompressed
1:49:46 WAR [archive:encode] - {x=13663 y=7115 z=14} 1217kb uncompressed
1:49:46 WAR [archive:encode] - {x=13663 y=7116 z=14} 1321kb uncompressed
1:49:46 WAR [archive:encode] - {x=13666 y=7134 z=14} 1368kb uncompressed
1:49:46 WAR [archive:encode] - {x=13666 y=7133 z=14} 1171kb uncompressed
1:49:46 WAR [archive:encode] - {x=13666 y=7132 z=14} 1401kb uncompressed
1:49:46 WAR [archive:encode] - {x=13667 y=7131 z=14} 1057kb uncompressed
1:49:46 WAR [archive:encode] - {x=13667 y=7133 z=14} 1545kb uncompressed
1:49:46 WAR [archive:encode] - {x=13667 y=7134 z=14} 1805kb uncompressed
1:49:46 WAR [archive:encode] - {x=13667 y=7132 z=14} 1461kb uncompressed
1:49:46 WAR [archive:encode] - {x=13668 y=7134 z=14} 1070kb uncompressed
1:49:46 WAR [archive:encode] - {x=13668 y=7135 z=14} 1378kb uncompressed
1:49:46 WAR [archive:encode] - {x=13668 y=7133 z=14} 1490kb uncompressed
1:49:47 WAR [archive:encode] - {x=13682 y=7058 z=14} 1230kb uncompressed
1:49:47 WAR [archive:encode] - {x=13682 y=7057 z=14} 1295kb uncompressed
1:49:47 WAR [archive:encode] - {x=13683 y=7060 z=14} 1027kb uncompressed
1:49:47 WAR [archive:encode] - {x=13683 y=7057 z=14} 1114kb uncompressed
1:49:48 WAR [archive:encode] - {x=13683 y=7059 z=14} 1490kb uncompressed
1:49:48 WAR [archive:encode] - {x=13683 y=7058 z=14} 1767kb uncompressed
1:49:48 WAR [archive:encode] - {x=13684 y=7060 z=14} 1033kb uncompressed
1:49:48 WAR [archive:encode] - {x=13684 y=7059 z=14} 1396kb uncompressed
1:49:48 WAR [archive:encode] - {x=13684 y=7057 z=14} 1635kb uncompressed
1:49:48 WAR [archive:encode] - {x=13684 y=7058 z=14} 1771kb uncompressed
1:49:50 WAR [archive:encode] - {x=13702 y=7515 z=14} 1223kb uncompressed
1:49:50 WAR [archive:encode] - {x=13703 y=7515 z=14} 1037kb uncompressed
1:49:50 INF [archive] - features: [ 3.1B 96% 3.6M/s ] 227G tiles: [ 232M 357k/s ] 82G
cpus: 34.5 gc: 6% heap: 74G/187G direct: 54M postGC: 47G
read(47% 48%) -> merge(56%) -> (0/9.4k) -> encode(64% 66% 65% 67% 64% 62% 67% 65% 66% 64% 65% 61% 66% 63% 66% 66% 66% 66% 64% 62% 66% 64% 65% 66% 65% 64% 65% 67% 64% 64% 64% 65% 65% 63% 62% 63% 66% 64% 66% 67% 64% 65% 66% 62% 63% 62%) -> (7.7k/9.3k) -> write(92%)
last tile: 14/13297/8515 (z14 81%) https://www.openstreetmap.org/#map=14/-7.07909/112.17041
1:49:51 WAR [archive:encode] - {x=13722 y=7015 z=14} 1191kb uncompressed
1:49:51 WAR [archive:encode] - {x=13721 y=7014 z=14} 1765kb uncompressed
1:49:51 WAR [archive:encode] - {x=13722 y=7011 z=14} 1277kb uncompressed
1:49:51 WAR [archive:encode] - {x=13722 y=7012 z=14} 1483kb uncompressed
1:49:51 WAR [archive:encode] - {x=13724 y=7016 z=14} 1086kb uncompressed
1:49:51 WAR [archive:encode] - {x=13722 y=7010 z=14} 1530kb uncompressed
1:49:51 WAR [archive:encode] - {x=13723 y=7016 z=14} 1463kb uncompressed
1:49:51 WAR [archive:encode] - {x=13725 y=7014 z=14} 1189kb uncompressed
1:49:51 WAR [archive:encode] - {x=13725 y=7013 z=14} 1114kb uncompressed
1:49:51 WAR [archive:encode] - {x=13725 y=7012 z=14} 1294kb uncompressed
1:49:51 WAR [archive:encode] - {x=13723 y=7015 z=14} 1380kb uncompressed
1:49:51 WAR [archive:encode] - {x=13724 y=7013 z=14} 1857kb uncompressed
1:49:51 WAR [archive:encode] - {x=13722 y=7014 z=14} 2185kb uncompressed
1:49:51 WAR [archive:encode] - {x=13724 y=7014 z=14} 2218kb uncompressed
1:49:51 WAR [archive:encode] - {x=13723 y=7013 z=14} 2520kb uncompressed
1:49:51 WAR [archive:encode] - {x=13723 y=7014 z=14} 2631kb uncompressed
1:49:51 WAR [archive:encode] - {x=13722 y=7013 z=14} 3300kb uncompressed
1:50:00 INF [archive] - features: [ 3.1B 97% 3.2M/s ] 227G tiles: [ 236M 364k/s ] 83G
cpus: 32 gc: 8% heap: 79G/187G direct: 54M postGC: 54G
read(43% 44%) -> merge(53%) -> (0/9.4k) -> encode(59% 57% 65% 60% 59% 60% 61% 60% 57% 61% 60% 60% 60% 59% 56% 59% 61% 60% 60% 60% 60% 63% 58% 59% 57% 60% 58% 59% 58% 62% 59% 58% 60% 60% 62% 61% 61% 57% 62% 61% 60% 62% 60% 61% 58% 59%) -> (8.4k/9.3k) -> write(93%)
last tile: 14/13672/7060 (z14 83%) https://www.openstreetmap.org/#map=14/24.12670/120.41016
1:50:03 WAR [archive:encode] - {x=14369 y=6489 z=14} 1071kb uncompressed
1:50:04 WAR [archive:encode] - {x=14369 y=6488 z=14} 1262kb uncompressed
1:50:04 WAR [archive:encode] - {x=14370 y=6487 z=14} 1058kb uncompressed
1:50:04 WAR [archive:encode] - {x=14370 y=6489 z=14} 1272kb uncompressed
1:50:10 WAR [archive:encode] - {x=14552 y=6450 z=14} 1065kb uncompressed
1:50:10 WAR [archive:encode] - {x=14553 y=6450 z=14} 1497kb uncompressed
1:50:10 INF [archive] - features: [ 3.1B 98% 3.3M/s ] 227G tiles: [ 240M 394k/s ] 84G
cpus: 32.9 gc: 8% heap: 78G/187G direct: 54M postGC: 61G
read(45% 47%) -> merge(56%) -> (0/9.4k) -> encode(59% 61% 60% 60% 61% 59% 59% 60% 59% 61% 59% 61% 62% 61% 60% 64% 60% 60% 62% 62% 62% 60% 61% 62% 61% 60% 60% 60% 63% 61% 59% 63% 59% 61% 61% 61% 59% 57% 56% 62% 61% 62% 64% 62% 59% 60%) -> (8.2k/9.3k) -> write(92%)
last tile: 14/14068/6350 (z14 86%) https://www.openstreetmap.org/#map=14/37.47486/129.11133
1:50:20 INF [archive] - features: [ 3.2B 99% 3M/s ] 227G tiles: [ 244M 475k/s ] 85G
cpus: 31 gc: 8% heap: 86G/187G direct: 54M postGC: 68G
read(39% 46%) -> merge(54%) -> (0/9.4k) -> encode(55% 58% 53% 57% 57% 58% 63% 51% 54% 58% 54% 57% 54% 57% 59% 59% 55% 55% 60% 55% 54% 59% 59% 61% 56% 56% 58% 61% 56% 57% 56% 61% 54% 58% 54% 55% 58% 57% 57% 59% 53% 55% 58% 56% 61% 58%) -> (9.3k/9.3k) -> write(92%)
last tile: 14/14530/1253 (z14 89%) https://www.openstreetmap.org/#map=14/82.00611/139.26270
1:50:30 INF [archive] - features: [ 3.2B 99% 1M/s ] 227G tiles: [ 250M 557k/s ] 86G
cpus: 10.1 gc: 4% heap: 76G/187G direct: 54M postGC: 73G
read(21% 16%) -> merge(27%) -> (0/9.4k) -> encode(14% 18% 17% 15% 16% 14% 16% 17% 15% 15% 18% 16% 15% 15% 14% 13% 16% 12% 13% 17% 16% 14% 17% 17% 15% 14% 15% 16% 18% 17% 15% 14% 14% 16% 18% 15% 16% 16% 19% 17% 15% 15% 15% 18% 17% 15%) -> (9.3k/9.3k) -> write(96%)
last tile: 14/15037/4590 (z14 92%) https://www.openstreetmap.org/#map=14/61.79390/150.40283
1:50:40 INF [archive] - features: [ 3.2B 100% 1.4M/s ] 227G tiles: [ 257M 717k/s ] 87G
cpus: 11.5 gc: 5% heap: 80G/187G direct: 54M postGC: 77G
read( -% -%) -> merge(28%) -> (0/9.4k) -> encode(20% 19% 17% 17% 16% 18% 17% 21% 19% 19% 19% 16% 18% 20% 16% 15% 17% 18% 19% 19% 16% 14% 19% 19% 17% 15% 18% 16% 21% 15% 19% 16% 17% 17% 19% 19% 15% 20% 22% 19% 18% 22% 19% 16% 20% 20%) -> (9.3k/9.3k) -> write(95%)
last tile: 14/15626/8404 (z14 95%) https://www.openstreetmap.org/#map=14/-4.65308/163.34473
1:50:50 INF [archive] - features: [ 3.2B 100% 329k/s ] 227G tiles: [ 265M 823k/s ] 87G
cpus: 2.6 gc: 0% heap: 88G/187G direct: 54M postGC: 77G
read( -% -%) -> merge( -%) -> (0/9.4k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (3k/9.3k) -> write(100%)
last tile: 14/16189/13282 (z14 99%) https://www.openstreetmap.org/#map=14/-73.83706/175.71533
1:50:54 DEB [archive:write] - Shallow tiles written: 268,819,484
1:50:54 DEB [archive:write] - Tile data written: 39,256,534 (85% omitted)
1:50:54 DEB [archive:write] - Unique tile hashes: 503,123
1:50:54 INF [archive:write] - Finished z14 in 8m52s cpu:4h9m35s gc:26s avg:28.2
1:50:54 INF [archive] - features: [ 3.2B 100% 0/s ] 227G tiles: [ 268M 838k/s ] 87G
cpus: 1 gc: 0% heap: 88G/187G direct: 54M postGC: 77G
read( -% -%) -> merge( -%) -> (0/9.4k) -> encode( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/9.3k) -> write( -%)
last tile: 14/16383/0 (z14 100%) https://www.openstreetmap.org/#map=14/85.05113/179.97803
1:50:54 DEB [archive] - Tile stats:
1:50:54 DEB [archive] - z0 avg:73k max:73k
1:50:54 DEB [archive] - z1 avg:175k max:199k
1:50:54 DEB [archive] - z2 avg:687k max:1.2M
1:50:54 DEB [archive] - z3 avg:223k max:1M
1:50:54 DEB [archive] - z4 avg:80k max:748k
1:50:54 DEB [archive] - z5 avg:41k max:656k
1:50:54 DEB [archive] - z6 avg:19k max:440k
1:50:54 DEB [archive] - z7 avg:18k max:788k
1:50:54 DEB [archive] - z8 avg:11k max:668k
1:50:54 DEB [archive] - z9 avg:7.2k max:524k
1:50:54 DEB [archive] - z10 avg:3.2k max:324k
1:50:54 DEB [archive] - z11 avg:1.5k max:212k
1:50:54 DEB [archive] - z12 avg:842 max:389k
1:50:54 DEB [archive] - z13 avg:446 max:400k
1:50:54 DEB [archive] - z14 avg:396 max:3.3M
1:50:54 DEB [archive] - all avg:460 max:3.3M
1:50:54 DEB [archive] - # features: 3,249,704,305
1:50:54 DEB [archive] - # tiles: 268,819,484
1:50:54 INF [archive] - Finished in 42m34s cpu:29h37m43s gc:2m32s avg:41.8
1:50:54 INF [archive] - read 2x(18% 7m35s sys:1m59s wait:25m4s done:18s)
1:50:54 INF [archive] - merge 1x(18% 7m52s sys:20s wait:32m50s done:11s)
1:50:54 INF [archive] - encode 46x(84% 35m35s sys:40s wait:3m42s done:11s)
1:50:54 INF [archive] - write 1x(25% 10m39s sys:2m15s wait:30m34s)
1:50:54 INF - Finished in 1h50m54s cpu:65h31m9s gc:3m52s avg:35.4
1:50:54 INF - FINISHED!
1:50:54 INF -
1:50:54 INF - ----------------------------------------
1:50:54 INF - overall 1h50m54s cpu:65h31m9s gc:3m52s avg:35.4
1:50:54 INF - download 4m32s cpu:6m33s avg:1.4
1:50:54 INF - download-lake_centerlines_chunk-downloader 1x(0% 0.5s done:4m32s)
1:50:54 INF - download-natural_earth_chunk-downloader 1x(1% 2s done:4m31s)
1:50:54 INF - download-water_polygons_chunk-downloader 1x(1% 2s sys:1s done:4m30s)
1:50:54 INF - download-osm_chunk-downloader 10x(14% 38s sys:28s done:17s)
1:50:54 INF - wikidata 10m57s cpu:1h32m30s gc:3s avg:8.5
1:50:54 INF - pbf 1x(0% 3s sys:1s wait:5m50s done:5m4s)
1:50:54 INF - filter 47x(17% 1m54s sys:2s wait:4m done:4m57s)
1:50:54 INF - fetch 1x(8% 54s sys:2s wait:10m2s)
1:50:54 INF - lake_centerlines 4s cpu:18s avg:4.5
1:50:54 INF - read 2x(25% 1s done:3s)
1:50:54 INF - process 46x(2% 0.1s wait:3s done:1s)
1:50:54 INF - write 2x(0% 0s wait:3s done:1s)
1:50:54 INF - water_polygons 55s cpu:35m20s gc:3s avg:38.8
1:50:54 INF - read 2x(22% 12s sys:1s wait:12s done:29s)
1:50:54 INF - process 46x(77% 42s sys:3s wait:8s)
1:50:54 INF - write 2x(38% 21s sys:6s wait:32s)
1:50:54 INF - natural_earth 26s cpu:1m4s avg:2.5
1:50:54 INF - read 2x(31% 8s wait:2s done:16s)
1:50:54 INF - process 46x(2% 0.6s wait:19s done:6s)
1:50:54 INF - write 2x(0% 0s wait:20s done:6s)
1:50:54 INF - osm_pass1 3m27s cpu:2h16m57s gc:10s avg:39.8
1:50:54 INF - read 1x(1% 3s sys:2s wait:3m5s done:9s)
1:50:54 INF - process 47x(80% 2m45s sys:11s block:24s)
1:50:54 INF - osm_pass2 38m48s cpu:29h31m57s gc:33s avg:45.7
1:50:54 INF - read 1x(0% 5s sys:3s wait:37m37s done:49s)
1:50:54 INF - process 46x(96% 37m24s sys:7s block:12s wait:14s)
1:50:54 INF - write 2x(35% 13m31s sys:2m55s wait:22m56s)
1:50:54 INF - boundaries 20s cpu:28s avg:1.4
1:50:54 INF - sort 8m39s cpu:1h47m27s gc:31s avg:12.4
1:50:54 INF - worker 31x(8% 42s sys:14s wait:5m51s done:35s)
1:50:54 INF - archive 42m34s cpu:29h37m43s gc:2m32s avg:41.8
1:50:54 INF - read 2x(18% 7m35s sys:1m59s wait:25m4s done:18s)
1:50:54 INF - merge 1x(18% 7m52s sys:20s wait:32m50s done:11s)
1:50:54 INF - encode 46x(84% 35m35s sys:40s wait:3m42s done:11s)
1:50:54 INF - write 1x(25% 10m39s sys:2m15s wait:30m34s)
1:50:54 INF - ----------------------------------------
1:50:54 INF - archive 87GB
1:50:54 INF - features 227GB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment