-
Notifications
You must be signed in to change notification settings - Fork 0
/
2023-09-27-planet.log
3427 lines (3421 loc) · 327 KB
/
2023-09-27-planet.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
bvc@gisbox planetiler % java -Xmx70g \
-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=planet.mbtiles \
`# Store temporary node locations at fixed positions in a memory-mapped file` \
--nodemap-type=array --storage=mmap
zsh: command not found: #
zsh: command not found: #
zsh: command not found: #
zsh: command not found: #
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=mmap (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=12 (num threads)
0:00:00 DEB - argument: write_threads=1 (number of threads to use when writing temp features)
0:00:00 DEB - argument: process_threads=11 (number of threads to use when processing input features)
0:00:00 DEB - argument: bounds=Env[-180.0 : 180.0, -85.0511287798066 : 85.0511287798066] (bounds)
0:00:00 DEB - argument: polygon=null (a .poly file that limits output to tiles intersecting the shape)
0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level up to 15)
0:00:00 DEB - argument: render_maxzoom=14 (maximum rendering zoom level up to 15)
0:00:00 DEB - argument: feature_read_threads=1 (number of threads to use when reading features at tile write time)
0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
0:00:00 DEB - argument: force=false (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: gzip_temp=false (gzip temporary feature storage (uses more CPU, but less disk space))
0:00:00 DEB - argument: mmap_temp=true (use memory-mapped IO for temp feature files)
0:00:00 DEB - argument: sort_max_readers=6 (maximum number of concurrent read threads to use when sorting chunks)
0:00:00 DEB - argument: sort_max_writers=6 (maximum number of concurrent write threads to use when sorting chunks)
0:00:00 DEB - argument: nodemap_type=array (type of node location map, one of [noop, sortedtable, sparsearray, array])
0:00:00 DEB - argument: nodemap_storage=mmap (storage for node location map, one of [ram, mmap, direct])
0:00:00 DEB - argument: nodemap_madvise=true (use linux madvise(random) for node locations)
0:00:00 DEB - argument: multipolygon_geometry_storage=mmap (storage for multipolygon geometries, one of [ram, mmap, direct])
0:00:00 DEB - argument: multipolygon_geometry_madvise=true (use linux madvise(random) for temporary multipolygon geometry storage)
0:00:00 DEB - argument: http_user_agent=Planetiler downloader (https://github.com/onthegomap/planetiler) (User-Agent header to set when downloading files over HTTP)
0:00:00 DEB - argument: http_timeout=30 seconds (Timeout to use when downloading files over HTTP)
0:00:00 DEB - argument: http_retries=1 (Retries to use when downloading files over HTTP)
0:00:00 DEB - argument: download_chunk_size_mb=1000 (Size of file chunks to download in parallel in megabytes)
0:00:00 DEB - argument: download_threads=10 (Number of parallel threads to use when downloading each file)
0:00:00 DEB - argument: download_max_bandwidth= (Maximum bandwidth to consume when downloading files in units mb/s, mbps, kbps, etc.)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=true (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tile_warning_size_mb=1.0 (Maximum size in megabytes of a tile to emit a warning about)
0:00:00 DEB - argument: color=null (Color the terminal output)
0:00:00 DEB - argument: 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=planet.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:///Users/bvc/Downloads/planetiler/planet.mbtiles in these phases:
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:///Users/bvc/Downloads/planetiler/planet.mbtiles, options={}]
0:00:00 INF [wikidata] -
0:00:00 INF [wikidata] - Starting...
0:00:00 INF [wikidata] - Starting with 11 process threads
0:00:00 INF [wikidata] - loaded from 242866 mappings from /Users/bvc/Downloads/planetiler/data/sources/wikidata_names.json in 0.5s cpu:1s avg:2.9
0:00:00 INF [wikidata] - skipping 242866 mappings we already have
0:00:05 INF [wikidata:fetch] - Fetched batch 1 (5000 qids) 3s cpu:31s avg:9.2
0:00:09 INF [wikidata:fetch] - Fetched batch 2 (5000 qids) 4s cpu:38s avg:9.3
0:00:11 INF [wikidata] - blocks: [ 2.2k 221/s ] nodes: [ 507M 50M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 10k 996/s ] 55M
cpus: 9.3 gc: 3% heap: 664M/75G direct: 114k postGC: 574M
parse() -> pbf( 2%) -> (23/34) -> filter(77% 77% 77% 77% 77% 77% 77% 77% 77% 77% 76%) -> (365k/1M) -> fetch( 7%)
0:00:11 INF [wikidata:fetch] - Fetched batch 3 (5000 qids) 2s cpu:20s avg:9.1
0:00:16 INF [wikidata:fetch] - Fetched batch 4 (5000 qids) 5s cpu:47s avg:8.9
0:00:21 INF [wikidata] - blocks: [ 4.7k 253/s ] nodes: [ 1B 58M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 20k 996/s ] 59M
cpus: 9 gc: 1% heap: 6.4G/75G direct: 114k postGC: 543M
parse() -> pbf( 2%) -> (23/34) -> filter(80% 80% 81% 81% 81% 81% 81% 80% 80% 81% 80%) -> (511k/1M) -> fetch( 2%)
0:00:22 INF [wikidata:fetch] - Fetched batch 5 (5000 qids) 5s cpu:48s avg:9.1
0:00:22 INF [wikidata:fetch] - Fetched batch 6 (5000 qids) 1s cpu:9s avg:9.5
0:00:24 INF [wikidata:fetch] - Fetched batch 7 (5000 qids) 2s cpu:17s avg:9.4
0:00:27 INF [wikidata:fetch] - Fetched batch 8 (5000 qids) 2s cpu:21s avg:9.3
0:00:28 INF [wikidata:fetch] - Fetched batch 9 (5000 qids) 2s cpu:15s avg:9.4
0:00:31 INF [wikidata] - blocks: [ 7.3k 258/s ] nodes: [ 1.7B 67M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 45k 2.4k/s ] 68M
cpus: 9.4 gc: 2% heap: 1.5G/75G direct: 114k postGC: 825M
parse() -> pbf( 2%) -> (23/34) -> filter(82% 82% 82% 82% 81% 82% 82% 82% 82% 82% 82%) -> (590k/1M) -> fetch( 8%)
0:00:31 INF [wikidata:fetch] - Fetched batch 10 (5000 qids) 3s cpu:26s avg:9.3
0:00:34 INF [wikidata:fetch] - Fetched batch 11 (5000 qids) 3s cpu:25s avg:9.4
0:00:39 INF [wikidata:fetch] - Fetched batch 12 (5000 qids) 5s cpu:49s avg:9.4
0:00:41 INF [wikidata] - blocks: [ 9.9k 259/s ] nodes: [ 2.5B 77M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 60k 1.4k/s ] 79M
cpus: 9.4 gc: 2% heap: 745M/75G direct: 114k postGC: 509M
parse() -> pbf( 2%) -> (23/34) -> filter(83% 83% 83% 83% 83% 84% 82% 83% 83% 83% 83%) -> (627k/1M) -> fetch( 5%)
0:00:46 INF [wikidata:fetch] - Fetched batch 13 (5000 qids) 7s cpu:1m1s avg:9.4
0:00:48 INF [wikidata:fetch] - Fetched batch 14 (5000 qids) 3s cpu:24s avg:9.5
0:00:50 INF [wikidata:fetch] - Fetched batch 15 (5000 qids) 1s cpu:13s avg:9.5
0:00:51 INF [wikidata] - blocks: [ 12k 245/s ] nodes: [ 3.3B 83M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 75k 1.4k/s ] 89M
cpus: 9.5 gc: 3% heap: 2.2G/75G direct: 114k postGC: 793M
parse() -> pbf( 2%) -> (23/34) -> filter(82% 81% 82% 81% 81% 82% 82% 82% 82% 81% 82%) -> (698k/1M) -> fetch( 7%)
0:00:51 INF [wikidata:fetch] - Fetched batch 16 (5000 qids) 1s cpu:13s avg:9.5
0:00:52 INF [wikidata:fetch] - Fetched batch 17 (5000 qids) 1s cpu:10s avg:9.5
0:00:55 INF [wikidata:fetch] - Fetched batch 18 (5000 qids) 3s cpu:31s avg:9.5
0:00:58 INF [wikidata:fetch] - Fetched batch 19 (5000 qids) 2s cpu:21s avg:9.1
0:00:59 INF [wikidata:fetch] - Fetched batch 20 (5000 qids) 1s cpu:13s avg:9.4
0:01:00 INF [wikidata:fetch] - Fetched batch 21 (5000 qids) 1s cpu:8s avg:6.4
0:01:01 INF [wikidata] - blocks: [ 14k 235/s ] nodes: [ 4.2B 82M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 105k 2.9k/s ] 100M
cpus: 8.9 gc: 1% heap: 4G/75G direct: 114k postGC: 772M
parse() -> pbf( 1%) -> (23/34) -> filter(79% 80% 80% 79% 78% 79% 79% 79% 78% 80% 80%) -> (711k/1M) -> fetch( 7%)
0:01:02 INF [wikidata:fetch] - Fetched batch 22 (5000 qids) 1s cpu:10s avg:8.9
0:01:06 INF [wikidata:fetch] - Fetched batch 23 (5000 qids) 4s cpu:36s avg:9.1
0:01:09 INF [wikidata:fetch] - Fetched batch 24 (5000 qids) 3s cpu:26s avg:8.4
0:01:11 INF [wikidata] - blocks: [ 17k 247/s ] nodes: [ 5B 86M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 120k 1.4k/s ] 105M
cpus: 8.9 gc: 1% heap: 5.9G/75G direct: 114k postGC: 806M
parse() -> pbf( 2%) -> (23/34) -> filter(79% 79% 79% 79% 79% 79% 80% 80% 79% 80% 79%) -> (733k/1M) -> fetch( 4%)
0:01:12 INF [wikidata:fetch] - Fetched batch 25 (5000 qids) 3s cpu:29s avg:9.2
0:01:13 INF [wikidata:fetch] - Fetched batch 26 (5000 qids) 2s cpu:15s avg:9.3
0:01:16 INF [wikidata:fetch] - Fetched batch 27 (5000 qids) 2s cpu:22s avg:9.3
0:01:19 INF [wikidata:fetch] - Fetched batch 28 (5000 qids) 3s cpu:24s avg:9.1
0:01:21 INF [wikidata:fetch] - Fetched batch 29 (5000 qids) 2s cpu:19s avg:8.8
0:01:21 INF [wikidata] - blocks: [ 19k 247/s ] nodes: [ 5.9B 87M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 145k 2.4k/s ] 116M
cpus: 9.1 gc: 1% heap: 11G/75G direct: 114k postGC: 916M
parse() -> pbf( 2%) -> (23/34) -> filter(81% 81% 81% 80% 81% 81% 80% 81% 80% 80% 81%) -> (734k/1M) -> fetch( 7%)
0:01:25 INF [wikidata:fetch] - Fetched batch 30 (5000 qids) 4s cpu:36s avg:9.3
0:01:26 INF [wikidata:fetch] - Fetched batch 31 (5000 qids) 1s cpu:11s avg:9.2
0:01:27 INF [wikidata:fetch] - Fetched batch 32 (5000 qids) 1s cpu:10s avg:9.3
0:01:30 INF [wikidata:fetch] - Fetched batch 33 (5000 qids) 3s cpu:28s avg:9
0:01:31 INF [wikidata] - blocks: [ 22k 251/s ] nodes: [ 6.8B 89M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 165k 1.9k/s ] 122M
cpus: 9.2 gc: 1% heap: 13G/75G direct: 114k postGC: 829M
parse() -> pbf( 2%) -> (23/34) -> filter(82% 82% 82% 82% 82% 82% 81% 81% 82% 82% 81%) -> (739k/1M) -> fetch( 4%)
0:01:32 INF [wikidata:fetch] - Fetched batch 34 (5000 qids) 2s cpu:19s avg:8.4
0:01:34 INF [wikidata:fetch] - Fetched batch 35 (5000 qids) 1s cpu:11s avg:9
0:01:35 INF [wikidata:fetch] - Fetched batch 36 (5000 qids) 1s cpu:10s avg:9.4
0:01:36 INF [wikidata:fetch] - Fetched batch 37 (5000 qids) 1s cpu:13s avg:9.5
0:01:40 INF [wikidata:fetch] - Fetched batch 38 (5000 qids) 4s cpu:35s avg:9.2
0:01:41 INF [wikidata] - blocks: [ 24k 249/s ] nodes: [ 7.7B 90M/s ] ways: [ 0 0/s ] rels: [ 0 0/s ] wiki: [ 190k 2.4k/s ] 130M
cpus: 9 gc: 1% heap: 2.1G/75G direct: 114k postGC: 823M
parse() -> pbf( 1%) -> (23/34) -> filter(81% 81% 80% 80% 81% 80% 80% 80% 80% 81% 80%) -> (695k/1M) -> fetch( 6%)
0:01:42 INF [wikidata:fetch] - Fetched batch 39 (5000 qids) 2s cpu:16s avg:9.1
0:01:45 INF [wikidata:fetch] - Fetched batch 40 (5000 qids) 3s cpu:25s avg:9.1
0:01:47 INF [wikidata:fetch] - Fetched batch 41 (5000 qids) 2s cpu:18s avg:9.2
0:01:49 INF [wikidata:fetch] - Fetched batch 42 (5000 qids) 2s cpu:22s avg:9.3
0:01:51 INF [wikidata:fetch] - Fetched batch 43 (5000 qids) 2s cpu:16s avg:9.5
0:01:51 INF [wikidata] - blocks: [ 27k 249/s ] nodes: [ 8.5B 83M/s ] ways: [ 5.5M 551k/s ] rels: [ 0 0/s ] wiki: [ 215k 2.4k/s ] 141M
cpus: 9.3 gc: 1% heap: 12G/75G direct: 114k postGC: 1G
parse() -> pbf( 1%) -> (23/34) -> filter(81% 81% 82% 82% 82% 82% 81% 82% 82% 81% 82%) -> (693k/1M) -> fetch( 7%)
0:01:52 INF [wikidata:fetch] - Fetched batch 44 (5000 qids) 2s cpu:16s avg:9.3
0:01:54 INF [wikidata:fetch] - Fetched batch 45 (5000 qids) 1s cpu:11s avg:9.2
0:01:55 INF [wikidata:fetch] - Fetched batch 46 (5000 qids) 1s cpu:11s avg:9.4
0:02:00 INF [wikidata:fetch] - Fetched batch 47 (5000 qids) 5s cpu:48s avg:9.2
0:02:01 INF [wikidata] - blocks: [ 29k 202/s ] nodes: [ 8.5B 0/s ] ways: [ 112M 10M/s ] rels: [ 0 0/s ] wiki: [ 235k 1.9k/s ] 147M
cpus: 9.2 gc: 1% heap: 3.9G/75G direct: 114k postGC: 850M
parse() -> pbf( 1%) -> (23/34) -> filter(82% 82% 82% 82% 82% 82% 82% 82% 82% 82% 82%) -> (910k/1M) -> fetch( 4%)
0:02:02 INF [wikidata:fetch] - Fetched batch 48 (5000 qids) 2s cpu:17s avg:9.4
0:02:06 INF [wikidata:fetch] - Fetched batch 49 (5000 qids) 4s cpu:32s avg:8.3
0:02:09 INF [wikidata:fetch] - Fetched batch 50 (5000 qids) 3s cpu:2s avg:0.8
0:02:11 INF [wikidata] - blocks: [ 30k 100/s ] nodes: [ 8.5B 0/s ] ways: [ 176M 6.3M/s ] rels: [ 0 0/s ] wiki: [ 250k 1.4k/s ] 152M
cpus: 4.7 gc: 1% heap: 12G/75G direct: 114k postGC: 956M
parse() -> pbf( 1%) -> (23/34) -> filter(42% 40% 41% 42% 41% 41% 41% 41% 41% 41% 41%) -> (1M/1M) -> fetch( 5%)
0:02:12 INF [wikidata:fetch] - Fetched batch 51 (5000 qids) 3s cpu:2s avg:0.7
0:02:13 INF [wikidata:fetch] - Fetched batch 52 (5000 qids) 1s cpu:3s avg:2.1
0:02:14 INF [wikidata:fetch] - Fetched batch 53 (5000 qids) 0.9s cpu:3s avg:2.9
0:02:17 INF [wikidata:fetch] - Fetched batch 54 (5000 qids) 3s cpu:3s avg:1
0:02:19 INF [wikidata:fetch] - Fetched batch 55 (5000 qids) 1s cpu:2s avg:1.7
0:02:20 INF [wikidata:fetch] - Fetched batch 56 (5000 qids) 1s cpu:3s avg:2.8
0:02:21 INF [wikidata:fetch] - Fetched batch 57 (5000 qids) 1s cpu:3s avg:2.6
0:02:21 INF [wikidata] - blocks: [ 30k 34/s ] nodes: [ 8.5B 0/s ] ways: [ 198M 2.1M/s ] rels: [ 0 0/s ] wiki: [ 285k 3.4k/s ] 162M
cpus: 1.7 gc: 0% heap: 12G/75G direct: 114k postGC: 877M
parse() -> pbf( 0%) -> (23/34) -> filter(14% 14% 14% 14% 14% 14% 13% 14% 13% 14% 14%) -> (996k/1M) -> fetch(10%)
0:02:23 INF [wikidata:fetch] - Fetched batch 58 (5000 qids) 2s cpu:2s avg:1.2
0:02:25 INF [wikidata:fetch] - Fetched batch 59 (5000 qids) 2s cpu:4s avg:1.6
0:02:26 INF [wikidata:fetch] - Fetched batch 60 (5000 qids) 1s cpu:4s avg:3.1
0:02:27 INF [wikidata:fetch] - Fetched batch 61 (5000 qids) 1s cpu:4s avg:4.5
0:02:30 INF [wikidata:fetch] - Fetched batch 62 (5000 qids) 2s cpu:4s avg:1.6
0:02:31 INF [wikidata:fetch] - Fetched batch 63 (5000 qids) 1s cpu:3s avg:2.3
0:02:31 INF [wikidata] - blocks: [ 31k 46/s ] nodes: [ 8.5B 0/s ] ways: [ 226M 2.7M/s ] rels: [ 0 0/s ] wiki: [ 315k 2.9k/s ] 170M
cpus: 2.1 gc: 0% heap: 11G/75G direct: 114k postGC: 832M
parse() -> pbf( 0%) -> (23/34) -> filter(18% 18% 19% 18% 18% 17% 18% 18% 18% 19% 18%) -> (997k/1M) -> fetch( 6%)
0:02:35 INF [wikidata:fetch] - Fetched batch 64 (5000 qids) 4s cpu:3s avg:0.8
0:02:39 INF [wikidata:fetch] - Fetched batch 65 (5000 qids) 4s cpu:4s avg:1.2
0:02:41 INF [wikidata:fetch] - Fetched batch 66 (5000 qids) 2s cpu:3s avg:1.9
0:02:41 INF [wikidata] - blocks: [ 31k 27/s ] nodes: [ 8.5B 0/s ] ways: [ 243M 1.7M/s ] rels: [ 0 0/s ] wiki: [ 330k 1.4k/s ] 173M
cpus: 1.3 gc: 0% heap: 4.3G/75G direct: 114k postGC: 842M
parse() -> pbf( 0%) -> (23/34) -> filter(11% 11% 11% 12% 11% 12% 11% 12% 12% 11% 12%) -> (1M/1M) -> fetch( 3%)
0:02:46 INF [wikidata:fetch] - Fetched batch 67 (5000 qids) 5s cpu:3s avg:0.6
0:02:47 INF [wikidata:fetch] - Fetched batch 68 (5000 qids) 1s cpu:4s avg:3.2
0:02:48 INF [wikidata:fetch] - Fetched batch 69 (5000 qids) 1s cpu:4s avg:2.9
0:02:51 INF [wikidata] - blocks: [ 31k 23/s ] nodes: [ 8.5B 0/s ] ways: [ 258M 1.4M/s ] rels: [ 0 0/s ] wiki: [ 345k 1.4k/s ] 176M
cpus: 1.1 gc: 0% heap: 4.3G/75G direct: 114k postGC: 853M
parse() -> pbf( 0%) -> (23/34) -> filter(10% 9% 9% 10% 9% 8% 9% 10% 9% 9% 9%) -> (1M/1M) -> fetch( 4%)
0:02:52 INF [wikidata:fetch] - Fetched batch 70 (5000 qids) 4s cpu:4s avg:0.9
0:02:54 INF [wikidata:fetch] - Fetched batch 71 (5000 qids) 1s cpu:4s avg:2.8
0:02:57 INF [wikidata:fetch] - Fetched batch 72 (5000 qids) 3s cpu:4s avg:1.3
0:02:58 INF [wikidata:fetch] - Fetched batch 73 (5000 qids) 0.9s cpu:4s avg:4.6
0:02:59 INF [wikidata:fetch] - Fetched batch 74 (5000 qids) 1s cpu:4s avg:3.6
0:03:01 INF [wikidata] - blocks: [ 32k 43/s ] nodes: [ 8.5B 0/s ] ways: [ 288M 2.9M/s ] rels: [ 0 0/s ] wiki: [ 370k 2.4k/s ] 182M
cpus: 2 gc: 0% heap: 2.5G/75G direct: 114k postGC: 848M
parse() -> pbf( 0%) -> (23/34) -> filter(16% 17% 17% 17% 16% 17% 18% 16% 17% 18% 17%) -> (1M/1M) -> fetch( 6%)
0:03:02 INF [wikidata:fetch] - Fetched batch 75 (5000 qids) 3s cpu:4s avg:1.4
0:03:04 INF [wikidata:fetch] - Fetched batch 76 (5000 qids) 3s cpu:3s avg:1.3
0:03:06 INF [wikidata:fetch] - Fetched batch 77 (5000 qids) 2s cpu:4s avg:2
0:03:07 INF [wikidata:fetch] - Fetched batch 78 (5000 qids) 0.8s cpu:4s avg:4.8
0:03:11 INF [wikidata:fetch] - Fetched batch 79 (5000 qids) 4s cpu:4s avg:1
0:03:11 INF [wikidata] - blocks: [ 32k 38/s ] nodes: [ 8.5B 0/s ] ways: [ 313M 2.5M/s ] rels: [ 0 0/s ] wiki: [ 395k 2.4k/s ] 188M
cpus: 1.7 gc: 0% heap: 6.4G/75G direct: 114k postGC: 860M
parse() -> pbf( 0%) -> (23/34) -> filter(14% 14% 15% 15% 15% 15% 15% 14% 15% 14% 14%) -> (998k/1M) -> fetch( 6%)
0:03:12 INF [wikidata:fetch] - Fetched batch 80 (5000 qids) 0.7s cpu:3s avg:4.7
0:03:12 INF [wikidata:fetch] - Fetched batch 81 (5000 qids) 0.6s cpu:4s avg:7.1
0:03:15 INF [wikidata:fetch] - Fetched batch 82 (5000 qids) 2s cpu:5s avg:2.2
0:03:17 INF [wikidata:fetch] - Fetched batch 83 (5000 qids) 2s cpu:5s avg:2.4
0:03:18 INF [wikidata:fetch] - Fetched batch 84 (5000 qids) 1s cpu:4s avg:3.3
0:03:20 INF [wikidata:fetch] - Fetched batch 85 (5000 qids) 2s cpu:4s avg:1.8
0:03:21 INF [wikidata] - blocks: [ 33k 65/s ] nodes: [ 8.5B 0/s ] ways: [ 358M 4.4M/s ] rels: [ 0 0/s ] wiki: [ 425k 2.9k/s ] 196M
cpus: 2.9 gc: 0% heap: 3G/75G direct: 114k postGC: 822M
parse() -> pbf( 0%) -> (23/34) -> filter(24% 25% 25% 25% 25% 25% 25% 25% 25% 24% 23%) -> (1M/1M) -> fetch(10%)
0:03:21 INF [wikidata:fetch] - Fetched batch 86 (5000 qids) 0.9s cpu:4s avg:4.4
0:03:22 INF [wikidata:fetch] - Fetched batch 87 (5000 qids) 1s cpu:4s avg:4.1
0:03:24 INF [wikidata:fetch] - Fetched batch 88 (5000 qids) 1s cpu:5s avg:4
0:03:25 INF [wikidata:fetch] - Fetched batch 89 (5000 qids) 1s cpu:5s avg:4.7
0:03:26 INF [wikidata:fetch] - Fetched batch 90 (5000 qids) 1s cpu:5s avg:4.8
0:03:27 INF [wikidata:fetch] - Fetched batch 91 (5000 qids) 1s cpu:5s avg:4.3
0:03:28 INF [wikidata:fetch] - Fetched batch 92 (5000 qids) 1s cpu:6s avg:5.1
0:03:30 INF [wikidata:fetch] - Fetched batch 93 (5000 qids) 2s cpu:7s avg:3.5
0:03:31 INF [wikidata] - blocks: [ 34k 104/s ] nodes: [ 8.5B 0/s ] ways: [ 432M 7.4M/s ] rels: [ 0 0/s ] wiki: [ 465k 3.9k/s ] 209M
cpus: 4.3 gc: 0% heap: 6.5G/75G direct: 114k postGC: 846M
parse() -> pbf( 1%) -> (23/34) -> filter(39% 36% 38% 38% 35% 39% 36% 38% 34% 37% 36%) -> (1M/1M) -> fetch(12%)
0:03:33 INF [wikidata:fetch] - Fetched batch 94 (5000 qids) 3s cpu:6s avg:2.3
0:03:35 INF [wikidata:fetch] - Fetched batch 95 (5000 qids) 2s cpu:5s avg:2.5
0:03:36 INF [wikidata:fetch] - Fetched batch 96 (5000 qids) 1s cpu:4s avg:3.1
0:03:37 INF [wikidata:fetch] - Fetched batch 97 (5000 qids) 1s cpu:6s avg:6
0:03:39 INF [wikidata:fetch] - Fetched batch 98 (5000 qids) 2s cpu:7s avg:3.3
0:03:41 INF [wikidata:fetch] - Fetched batch 99 (5000 qids) 1s cpu:8s avg:7.7
0:03:41 INF [wikidata] - blocks: [ 35k 89/s ] nodes: [ 8.5B 0/s ] ways: [ 499M 6.6M/s ] rels: [ 0 0/s ] wiki: [ 495k 2.9k/s ] 217M
cpus: 3.6 gc: 0% heap: 5.4G/75G direct: 114k postGC: 868M
parse() -> pbf( 1%) -> (23/34) -> filter(30% 31% 32% 32% 31% 32% 33% 33% 31% 32% 31%) -> (999k/1M) -> fetch( 9%)
0:03:42 INF [wikidata:fetch] - Fetched batch 100 (5000 qids) 2s cpu:8s avg:5.2
0:03:43 INF [wikidata:fetch] - Fetched batch 101 (5000 qids) 0.9s cpu:8s avg:8.6
0:03:45 INF [wikidata:fetch] - Fetched batch 102 (5000 qids) 1s cpu:8s avg:5.4
0:03:46 INF [wikidata:fetch] - Fetched batch 103 (5000 qids) 1s cpu:6s avg:5.5
0:03:51 INF [wikidata] - blocks: [ 35k 76/s ] nodes: [ 8.5B 0/s ] ways: [ 554M 5.4M/s ] rels: [ 0 0/s ] wiki: [ 515k 1.9k/s ] 222M
cpus: 3.1 gc: 0% heap: 2.7G/75G direct: 114k postGC: 865M
parse() -> pbf( 1%) -> (23/34) -> filter(28% 26% 27% 28% 29% 26% 26% 27% 27% 28% 26%) -> (1M/1M) -> fetch( 8%)
0:03:51 INF [wikidata:fetch] - Fetched batch 104 (5000 qids) 6s cpu:7s avg:1.2
0:03:53 INF [wikidata:fetch] - Fetched batch 105 (5000 qids) 1s cpu:7s avg:5.3
0:03:54 INF [wikidata:fetch] - Fetched batch 106 (5000 qids) 1s cpu:9s avg:7.1
0:04:00 INF [wikidata:fetch] - Fetched batch 107 (5000 qids) 6s cpu:8s avg:1.4
0:04:01 INF [wikidata:fetch] - Fetched batch 108 (5000 qids) 1s cpu:7s avg:6.4
0:04:01 INF [wikidata] - blocks: [ 36k 81/s ] nodes: [ 8.5B 0/s ] ways: [ 611M 5.6M/s ] rels: [ 0 0/s ] wiki: [ 540k 2.4k/s ] 230M
cpus: 3.4 gc: 0% heap: 4.2G/75G direct: 114k postGC: 901M
parse() -> pbf( 1%) -> (23/34) -> filter(31% 29% 29% 30% 30% 31% 29% 28% 29% 29% 29%) -> (998k/1M) -> fetch( 7%)
0:04:02 INF [wikidata:fetch] - Fetched batch 109 (5000 qids) 0.8s cpu:6s avg:7.8
0:04:04 INF [wikidata:fetch] - Fetched batch 110 (5000 qids) 3s cpu:7s avg:2.8
0:04:05 INF [wikidata:fetch] - Fetched batch 111 (5000 qids) 0.9s cpu:6s avg:7.1
0:04:06 INF [wikidata:fetch] - Fetched batch 112 (5000 qids) 0.8s cpu:7s avg:8.5
0:04:07 INF [wikidata:fetch] - Fetched batch 113 (5000 qids) 1s cpu:7s avg:7.8
0:04:08 INF [wikidata:fetch] - Fetched batch 114 (5000 qids) 0.9s cpu:7s avg:7.7
0:04:10 INF [wikidata:fetch] - Fetched batch 115 (5000 qids) 2s cpu:9s avg:5.9
0:04:11 INF [wikidata] - blocks: [ 37k 138/s ] nodes: [ 8.5B 0/s ] ways: [ 709M 9.8M/s ] rels: [ 0 0/s ] wiki: [ 575k 3.4k/s ] 237M
cpus: 5.6 gc: 1% heap: 7.7G/75G direct: 114k postGC: 891M
parse() -> pbf( 1%) -> (23/34) -> filter(54% 50% 49% 50% 50% 49% 48% 49% 50% 50% 49%) -> (1M/1M) -> fetch( 6%)
0:04:11 INF [wikidata:fetch] - Fetched batch 116 (5000 qids) 2s cpu:9s avg:5.4
0:04:12 INF [wikidata:fetch] - Fetched batch 117 (5000 qids) 0.8s cpu:7s avg:9.5
0:04:13 INF [wikidata:fetch] - Fetched batch 118 (5000 qids) 1s cpu:12s avg:9.2
0:04:14 INF [wikidata:fetch] - Fetched batch 119 (5000 qids) 0.8s cpu:8s avg:9.4
0:04:15 INF [wikidata:fetch] - Fetched batch 120 (5000 qids) 0.7s cpu:7s avg:9.5
0:04:16 INF [wikidata:fetch] - Fetched batch 121 (5000 qids) 0.9s cpu:9s avg:9.8
0:04:17 INF [wikidata:fetch] - Fetched batch 122 (5000 qids) 0.9s cpu:8s avg:9.8
0:04:18 INF [wikidata:fetch] - Fetched batch 123 (5000 qids) 2s cpu:16s avg:9.7
0:04:19 INF [wikidata:fetch] - Fetched batch 124 (5000 qids) 0.8s cpu:7s avg:9.8
0:04:20 INF [wikidata:fetch] - Fetched batch 125 (5000 qids) 1s cpu:13s avg:9.7
0:04:21 INF [wikidata] - blocks: [ 40k 238/s ] nodes: [ 8.5B 0/s ] ways: [ 883M 17M/s ] rels: [ 0 0/s ] wiki: [ 625k 4.9k/s ] 247M
cpus: 9.6 gc: 1% heap: 7.3G/75G direct: 114k postGC: 899M
parse() -> pbf( 2%) -> (23/34) -> filter(85% 84% 86% 86% 86% 85% 85% 87% 86% 85% 85%) -> (997k/1M) -> fetch( 5%)
0:04:23 INF [wikidata:fetch] - Fetched batch 126 (5000 qids) 2s cpu:16s avg:6.8
0:04:23 INF [wikidata:fetch] - Fetched batch 127 (5000 qids) 0.8s cpu:8s avg:9.3
0:04:25 INF [wikidata:fetch] - Fetched batch 128 (5000 qids) 2s cpu:11s avg:7.1
0:04:28 INF [wikidata:fetch] - Fetched batch 129 (5000 qids) 3s cpu:13s avg:3.9
0:04:29 INF [wikidata:fetch] - Fetched batch 130 (5000 qids) 1s cpu:8s avg:7.9
0:04:30 INF [wikidata:fetch] - Fetched batch 131 (5000 qids) 0.9s cpu:1s avg:1.2
0:04:31 INF [wikidata:fetch] - Fetched batch 132 (5000 qids) 0.8s cpu:0.8s avg:1
0:04:31 INF [wikidata] - blocks: [ 41k 117/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 8M/s ] rels: [ 1M 99k/s ] wiki: [ 660k 3.4k/s ] 253M
cpus: 5 gc: 0% heap: 11G/75G direct: 114k postGC: 878M
parse() -> pbf( 1%) -> (23/34) -> filter(45% 44% 45% 40% 46% 41% 42% 42% 43% 45% 44%) -> (1M/1M) -> fetch( 6%)
0:04:32 INF [wikidata:fetch] - Fetched batch 133 (5000 qids) 0.8s cpu:0.8s avg:1.1
0:04:33 INF [wikidata:fetch] - Fetched batch 134 (5000 qids) 2s cpu:0.7s avg:0.4
0:04:34 INF [wikidata:fetch] - Fetched batch 135 (5000 qids) 0.9s cpu:0.9s avg:1
0:04:35 INF [wikidata:fetch] - Fetched batch 136 (5000 qids) 0.9s cpu:0.8s avg:0.9
0:04:36 INF [wikidata:fetch] - Fetched batch 137 (5000 qids) 0.9s cpu:0.8s avg:0.9
0:04:39 INF [wikidata:fetch] - Fetched batch 138 (5000 qids) 2s cpu:0.9s avg:0.4
0:04:40 INF [wikidata:fetch] - Fetched batch 139 (5000 qids) 1s cpu:1s avg:0.8
0:04:41 INF [wikidata] - blocks: [ 41k 10/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 4M 304k/s ] wiki: [ 695k 3.4k/s ] 257M
cpus: 0.6 gc: 0% heap: 9.7G/75G direct: 114k postGC: 880M
parse() -> pbf( 0%) -> (23/34) -> filter( 5% 5% 5% 5% 5% 5% 5% 5% 4% 5% 5%) -> (1M/1M) -> fetch( 6%)
0:04:44 INF [wikidata:fetch] - Fetched batch 140 (5000 qids) 4s cpu:1s avg:0.3
0:04:45 INF [wikidata:fetch] - Fetched batch 141 (5000 qids) 0.9s cpu:1s avg:1.5
0:04:46 INF [wikidata:fetch] - Fetched batch 142 (5000 qids) 1s cpu:1s avg:0.9
0:04:49 INF [wikidata:fetch] - Fetched batch 143 (5000 qids) 3s cpu:1s avg:0.4
0:04:50 INF [wikidata:fetch] - Fetched batch 144 (5000 qids) 0.9s cpu:1s avg:1.4
0:04:51 INF [wikidata] - blocks: [ 41k 11/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 8M 398k/s ] wiki: [ 720k 2.4k/s ] 262M
cpus: 0.6 gc: 0% heap: 9.6G/75G direct: 114k postGC: 865M
parse() -> pbf( 0%) -> (23/34) -> filter( 5% 5% 4% 5% 5% 5% 5% 5% 4% 5% 5%) -> (1M/1M) -> fetch( 7%)
0:04:51 INF [wikidata:fetch] - Fetched batch 145 (5000 qids) 2s cpu:1s avg:0.8
0:04:53 INF [wikidata:fetch] - Fetched batch 146 (5000 qids) 1s cpu:1s avg:1.1
0:04:54 INF [wikidata:fetch] - Fetched batch 147 (5000 qids) 1s cpu:1s avg:1.4
0:04:54 INF [wikidata:fetch] - Fetched batch 148 (5000 qids) 0.8s cpu:2s avg:2
0:04:56 INF [wikidata:fetch] - Fetched batch 149 (5000 qids) 1s cpu:0.2s avg:0.2
0:04:57 INF [wikidata:fetch] - Fetched batch 150 (5000 qids) 1s cpu:0.2s avg:0.1
0:04:58 INF [wikidata:fetch] - Fetched batch 151 (5000 qids) 0.7s cpu:0.2s avg:0.3
0:04:59 INF [wikidata:fetch] - Fetched batch 152 (5000 qids) 1s cpu:0.2s avg:0.2
0:05:01 INF [wikidata] - blocks: [ 41k 8/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 319k/s ] wiki: [ 760k 3.9k/s ] 270M
cpus: 0.5 gc: 0% heap: 6.3G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (973k/1M) -> fetch( 8%)
0:05:03 INF [wikidata:fetch] - Fetched batch 153 (5000 qids) 4s cpu:0.2s avg:0
0:05:08 INF [wikidata:fetch] - Fetched batch 154 (5000 qids) 5s cpu:0.2s avg:0
0:05:09 INF [wikidata:fetch] - Fetched batch 155 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:10 INF [wikidata:fetch] - Fetched batch 156 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:11 INF [wikidata:fetch] - Fetched batch 157 (5000 qids) 0.8s cpu:0.2s avg:0.2
0:05:11 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 785k 2.4k/s ] 274M
cpus: 0.1 gc: 0% heap: 6.7G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (946k/1M) -> fetch( 5%)
0:05:13 INF [wikidata:fetch] - Fetched batch 158 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:16 INF [wikidata:fetch] - Fetched batch 159 (5000 qids) 3s cpu:0.3s avg:0.1
0:05:17 INF [wikidata:fetch] - Fetched batch 160 (5000 qids) 1s cpu:0.2s avg:0.2
0:05:18 INF [wikidata:fetch] - Fetched batch 161 (5000 qids) 1s cpu:0.2s avg:0.2
0:05:19 INF [wikidata:fetch] - Fetched batch 162 (5000 qids) 0.9s cpu:0.2s avg:0.2
0:05:21 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 810k 2.4k/s ] 278M
cpus: 0.1 gc: 0% heap: 7.3G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (916k/1M) -> fetch( 6%)
0:05:21 INF [wikidata:fetch] - Fetched batch 163 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:23 INF [wikidata:fetch] - Fetched batch 164 (5000 qids) 1s cpu:0.2s avg:0.2
0:05:25 INF [wikidata:fetch] - Fetched batch 165 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:26 INF [wikidata:fetch] - Fetched batch 166 (5000 qids) 0.9s cpu:0.2s avg:0.2
0:05:27 INF [wikidata:fetch] - Fetched batch 167 (5000 qids) 0.9s cpu:0.2s avg:0.2
0:05:29 INF [wikidata:fetch] - Fetched batch 168 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:31 INF [wikidata:fetch] - Fetched batch 169 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:31 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 845k 3.4k/s ] 285M
cpus: 0.1 gc: 0% heap: 7.9G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (877k/1M) -> fetch( 8%)
0:05:34 INF [wikidata:fetch] - Fetched batch 170 (5000 qids) 3s cpu:0.2s avg:0
0:05:35 INF [wikidata:fetch] - Fetched batch 171 (5000 qids) 1s cpu:0.2s avg:0.1
0:05:39 INF [wikidata:fetch] - Fetched batch 172 (5000 qids) 3s cpu:0.1s avg:0
0:05:41 INF [wikidata:fetch] - Fetched batch 173 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:41 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 865k 1.9k/s ] 288M
cpus: 0.1 gc: 0% heap: 8.2G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (854k/1M) -> fetch( 4%)
0:05:43 INF [wikidata:fetch] - Fetched batch 174 (5000 qids) 2s cpu:0.2s avg:0.1
0:05:44 INF [wikidata:fetch] - Fetched batch 175 (5000 qids) 1s cpu:0.2s avg:0.1
0:05:47 INF [wikidata:fetch] - Fetched batch 176 (5000 qids) 3s cpu:0.1s avg:0.1
0:05:48 INF [wikidata:fetch] - Fetched batch 177 (5000 qids) 0.9s cpu:0.1s avg:0.2
0:05:49 INF [wikidata:fetch] - Fetched batch 178 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:51 INF [wikidata:fetch] - Fetched batch 179 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:51 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 895k 2.9k/s ] 293M
cpus: 0.1 gc: 0% heap: 8.8G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (818k/1M) -> fetch( 7%)
0:05:51 INF [wikidata:fetch] - Fetched batch 180 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:52 INF [wikidata:fetch] - Fetched batch 181 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:53 INF [wikidata:fetch] - Fetched batch 182 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:53 INF [wikidata:fetch] - Fetched batch 183 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:54 INF [wikidata:fetch] - Fetched batch 184 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:55 INF [wikidata:fetch] - Fetched batch 185 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:56 INF [wikidata:fetch] - Fetched batch 186 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:05:56 INF [wikidata:fetch] - Fetched batch 187 (5000 qids) 0.6s cpu:0.1s avg:0.1
0:05:57 INF [wikidata:fetch] - Fetched batch 188 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:05:58 INF [wikidata:fetch] - Fetched batch 189 (5000 qids) 1s cpu:0.1s avg:0.1
0:05:59 INF [wikidata:fetch] - Fetched batch 190 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:06:00 INF [wikidata:fetch] - Fetched batch 191 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:00 INF [wikidata:fetch] - Fetched batch 192 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:01 INF [wikidata:fetch] - Fetched batch 193 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:06:01 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 965k 6.9k/s ] 304M
cpus: 0.2 gc: 0% heap: 9.7G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (724k/1M) -> fetch(11%)
0:06:02 INF [wikidata:fetch] - Fetched batch 194 (5000 qids) 0.6s cpu:0.1s avg:0.2
0:06:03 INF [wikidata:fetch] - Fetched batch 195 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:04 INF [wikidata:fetch] - Fetched batch 196 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:05 INF [wikidata:fetch] - Fetched batch 197 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:06 INF [wikidata:fetch] - Fetched batch 198 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:07 INF [wikidata:fetch] - Fetched batch 199 (5000 qids) 1s cpu:0.2s avg:0.2
0:06:09 INF [wikidata:fetch] - Fetched batch 200 (5000 qids) 3s cpu:0.2s avg:0.1
0:06:10 INF [wikidata:fetch] - Fetched batch 201 (5000 qids) 1s cpu:0.1s avg:0.2
0:06:11 INF [wikidata:fetch] - Fetched batch 202 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:06:11 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 4.4k/s ] 310M
cpus: 0.1 gc: 0% heap: 10G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (669k/1M) -> fetch( 7%)
0:06:12 INF [wikidata:fetch] - Fetched batch 203 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:14 INF [wikidata:fetch] - Fetched batch 204 (5000 qids) 2s cpu:0.1s avg:0
0:06:15 INF [wikidata:fetch] - Fetched batch 205 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:06:18 INF [wikidata:fetch] - Fetched batch 206 (5000 qids) 2s cpu:0.1s avg:0
0:06:19 INF [wikidata:fetch] - Fetched batch 207 (5000 qids) 1s cpu:0.2s avg:0.1
0:06:20 INF [wikidata:fetch] - Fetched batch 208 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:21 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1M 2.9k/s ] 314M
cpus: 0.1 gc: 0% heap: 10G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (631k/1M) -> fetch( 5%)
0:06:21 INF [wikidata:fetch] - Fetched batch 209 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:06:22 INF [wikidata:fetch] - Fetched batch 210 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:06:23 INF [wikidata:fetch] - Fetched batch 211 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:06:23 INF [wikidata:fetch] - Fetched batch 212 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:24 INF [wikidata:fetch] - Fetched batch 213 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:25 INF [wikidata:fetch] - Fetched batch 214 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:26 INF [wikidata:fetch] - Fetched batch 215 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:26 INF [wikidata:fetch] - Fetched batch 216 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:27 INF [wikidata:fetch] - Fetched batch 217 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:28 INF [wikidata:fetch] - Fetched batch 218 (5000 qids) 0.6s cpu:0.1s avg:0.1
0:06:29 INF [wikidata:fetch] - Fetched batch 219 (5000 qids) 0.6s cpu:0.1s avg:0.1
0:06:29 INF [wikidata:fetch] - Fetched batch 220 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:30 INF [wikidata:fetch] - Fetched batch 221 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:31 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.1M 6.4k/s ] 322M
cpus: 0.1 gc: 0% heap: 11G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (551k/1M) -> fetch(10%)
0:06:31 INF [wikidata:fetch] - Fetched batch 222 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:32 INF [wikidata:fetch] - Fetched batch 223 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:33 INF [wikidata:fetch] - Fetched batch 224 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:06:34 INF [wikidata:fetch] - Fetched batch 225 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:35 INF [wikidata:fetch] - Fetched batch 226 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:36 INF [wikidata:fetch] - Fetched batch 227 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:38 INF [wikidata:fetch] - Fetched batch 228 (5000 qids) 2s cpu:0.1s avg:0
0:06:38 INF [wikidata:fetch] - Fetched batch 229 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:40 INF [wikidata:fetch] - Fetched batch 230 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:41 INF [wikidata:fetch] - Fetched batch 231 (5000 qids) 1s cpu:0.1s avg:0.1
0:06:41 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.1M 4.9k/s ] 328M
cpus: 0.1 gc: 0% heap: 11G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (486k/1M) -> fetch( 7%)
0:06:42 INF [wikidata:fetch] - Fetched batch 232 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:43 INF [wikidata:fetch] - Fetched batch 233 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:43 INF [wikidata:fetch] - Fetched batch 234 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:44 INF [wikidata:fetch] - Fetched batch 235 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:45 INF [wikidata:fetch] - Fetched batch 236 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:46 INF [wikidata:fetch] - Fetched batch 237 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:06:48 INF [wikidata:fetch] - Fetched batch 238 (5000 qids) 2s cpu:0.1s avg:0
0:06:48 INF [wikidata:fetch] - Fetched batch 239 (5000 qids) 0.6s cpu:0.1s avg:0.1
0:06:49 INF [wikidata:fetch] - Fetched batch 240 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:50 INF [wikidata:fetch] - Fetched batch 241 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:51 INF [wikidata:fetch] - Fetched batch 242 (5000 qids) 1s cpu:0.2s avg:0.1
0:06:51 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 5.4k/s ] 335M
cpus: 0.1 gc: 0% heap: 12G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (412k/1M) -> fetch( 8%)
0:06:52 INF [wikidata:fetch] - Fetched batch 243 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:06:53 INF [wikidata:fetch] - Fetched batch 244 (5000 qids) 2s cpu:0.1s avg:0
0:06:54 INF [wikidata:fetch] - Fetched batch 245 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:06:55 INF [wikidata:fetch] - Fetched batch 246 (5000 qids) 0.9s cpu:0s avg:0.1
0:06:56 INF [wikidata:fetch] - Fetched batch 247 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:06:57 INF [wikidata:fetch] - Fetched batch 248 (5000 qids) 2s cpu:0.1s avg:0
0:07:00 INF [wikidata:fetch] - Fetched batch 249 (5000 qids) 2s cpu:0.2s avg:0.1
0:07:01 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 3.4k/s ] 340M
cpus: 0.1 gc: 0% heap: 12G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (365k/1M) -> fetch( 5%)
0:07:01 INF [wikidata:fetch] - Fetched batch 250 (5000 qids) 2s cpu:0.1s avg:0.1
0:07:02 INF [wikidata:fetch] - Fetched batch 251 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:07:03 INF [wikidata:fetch] - Fetched batch 252 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:07:04 INF [wikidata:fetch] - Fetched batch 253 (5000 qids) 1s cpu:0.1s avg:0
0:07:07 INF [wikidata:fetch] - Fetched batch 254 (5000 qids) 3s cpu:0.1s avg:0
0:07:09 INF [wikidata:fetch] - Fetched batch 255 (5000 qids) 2s cpu:0.1s avg:0
0:07:11 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.2M 2.9k/s ] 343M
cpus: 0.1 gc: 0% heap: 13G/75G direct: 114k postGC: 871M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (323k/1M) -> fetch( 3%)
0:07:11 INF [wikidata:fetch] - Fetched batch 256 (5000 qids) 2s cpu:0.1s avg:0
0:07:14 INF [wikidata:fetch] - Fetched batch 257 (5000 qids) 3s cpu:0.1s avg:0.1
0:07:15 INF [wikidata:fetch] - Fetched batch 258 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:18 INF [wikidata:fetch] - Fetched batch 259 (5000 qids) 3s cpu:0.1s avg:0
0:07:19 INF [wikidata:fetch] - Fetched batch 260 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:07:19 INF [wikidata:fetch] - Fetched batch 261 (5000 qids) 0.8s cpu:0.1s avg:0.2
0:07:21 INF [wikidata:fetch] - Fetched batch 262 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:21 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 3.4k/s ] 348M
cpus: 0.1 gc: 0% heap: 757M/75G direct: 114k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (270k/1M) -> fetch( 4%)
0:07:22 INF [wikidata:fetch] - Fetched batch 263 (5000 qids) 0.9s cpu:0.1s avg:0.2
0:07:22 INF [wikidata:fetch] - Fetched batch 264 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:07:23 INF [wikidata:fetch] - Fetched batch 265 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:07:24 INF [wikidata:fetch] - Fetched batch 266 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:07:25 INF [wikidata:fetch] - Fetched batch 267 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:07:29 INF [wikidata:fetch] - Fetched batch 268 (5000 qids) 4s cpu:0.1s avg:0
0:07:31 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 2.9k/s ] 351M
cpus: 0.1 gc: 0% heap: 1.1G/75G direct: 114k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (225k/1M) -> fetch( 4%)
0:07:32 INF [wikidata:fetch] - Fetched batch 269 (5000 qids) 3s cpu:0.2s avg:0.1
0:07:34 INF [wikidata:fetch] - Fetched batch 270 (5000 qids) 1s cpu:0.2s avg:0.1
0:07:35 INF [wikidata:fetch] - Fetched batch 271 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:36 INF [wikidata:fetch] - Fetched batch 272 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:07:38 INF [wikidata:fetch] - Fetched batch 273 (5000 qids) 2s cpu:0.1s avg:0.1
0:07:38 INF [wikidata:fetch] - Fetched batch 274 (5000 qids) 0.7s cpu:0.1s avg:0.1
0:07:39 INF [wikidata:fetch] - Fetched batch 275 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:40 INF [wikidata:fetch] - Fetched batch 276 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:07:41 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.3M 3.9k/s ] 356M
cpus: 0.1 gc: 0% heap: 1.5G/75G direct: 114k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (155k/1M) -> fetch( 5%)
0:07:42 INF [wikidata:fetch] - Fetched batch 277 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:43 INF [wikidata:fetch] - Fetched batch 278 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:07:43 INF [wikidata:fetch] - Fetched batch 279 (5000 qids) 0.9s cpu:0.1s avg:0.1
0:07:45 INF [wikidata:fetch] - Fetched batch 280 (5000 qids) 2s cpu:0.1s avg:0.1
0:07:46 INF [wikidata:fetch] - Fetched batch 281 (5000 qids) 0.8s cpu:0.1s avg:0.1
0:07:47 INF [wikidata:fetch] - Fetched batch 282 (5000 qids) 1s cpu:0.1s avg:0.1
0:07:48 INF [wikidata:fetch] - Fetched batch 283 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:07:49 INF [wikidata:fetch] - Fetched batch 284 (5000 qids) 1s cpu:0.3s avg:0.2
0:07:50 INF [wikidata:fetch] - Fetched batch 285 (5000 qids) 0.9s cpu:0.2s avg:0.2
0:07:51 INF [wikidata:fetch] - Fetched batch 286 (5000 qids) 0.8s cpu:0.2s avg:0.2
0:07:51 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 4.9k/s ] 364M
cpus: 0.1 gc: 0% heap: 2.3G/75G direct: 114k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (67k/1M) -> fetch(10%)
0:07:52 INF [wikidata:fetch] - Fetched batch 287 (5000 qids) 1s cpu:0.2s avg:0.2
0:07:53 INF [wikidata:fetch] - Fetched batch 288 (5000 qids) 1s cpu:0.2s avg:0.2
0:07:54 INF [wikidata:fetch] - Fetched batch 289 (5000 qids) 1s cpu:0.2s avg:0.2
0:07:56 INF [wikidata:fetch] - Fetched batch 290 (5000 qids) 2s cpu:0.2s avg:0.1
0:07:57 INF [wikidata:fetch] - Fetched batch 291 (5000 qids) 1s cpu:0.2s avg:0.2
0:07:58 INF [wikidata:fetch] - Fetched batch 292 (5000 qids) 0.8s cpu:0.2s avg:0.2
0:07:59 INF [wikidata:fetch] - Fetched batch 293 (5000 qids) 0.7s cpu:0.1s avg:0.2
0:08:00 INF [wikidata:fetch] - Fetched batch 294 (5000 qids) 0.8s cpu:0.2s avg:0.2
0:08:01 INF [wikidata:fetch] - Fetched batch 295 (5000 qids) 0.8s cpu:0.2s avg:0.2
0:08:01 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 4.4k/s ] 375M
cpus: 0.2 gc: 0% heap: 3.3G/75G direct: 114k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (0/1M) -> fetch(12%)
0:08:01 INF [wikidata:fetch] - Fetched batch 296 (4338 qids) 0.8s cpu:0.1s avg:0.1
0:08:01 INF [wikidata] - blocks: [ 41k 0/s ] nodes: [ 8.5B 0/s ] ways: [ 963M 0/s ] rels: [ 11M 0/s ] wiki: [ 1.4M 65k/s ] 376M
cpus: 0.6 gc: 0% heap: 3.3G/75G direct: 98k postGC: 801M
parse() -> pbf( -%) -> (0/34) -> filter( -% -% -% -% -% -% -% -% -% -% -%) -> (0/1M) -> fetch( -%)
0:08:01 INF [wikidata] - DONE fetched:1479338
0:08:01 INF [wikidata] - Finished in 8m2s cpu:27m48s gc:2s avg:3.5
0:08:01 INF [wikidata] - pbf 1x(1% 3s sys:2s wait:4m44s done:3m9s)
0:08:01 INF [wikidata] - filter 11x(30% 2m24s sys:4s wait:1m58s done:3m8s)
0:08:01 INF [wikidata] - fetch 1x(7% 31s sys:2s wait:7m28s)
0:08:04 INF - loaded from 1720648 mappings from /Users/bvc/Downloads/planetiler/data/sources/wikidata_names.json in 3s cpu:3s avg:1.1
0:08:04 DEB - ✓ 350G storage on /System/Volumes/Data (/dev/disk3s5) requested for read phase disk, 1.3T available
0:08:04 DEB - - 86G used for temporary node location cache
0:08:04 DEB - - 11G used for temporary multipolygon geometry cache
0:08:04 DEB - - 252G used for temporary feature storage
0:08:04 DEB - ✓ 378G storage on /System/Volumes/Data (/dev/disk3s5) requested for write phase disk, 1.3T available
0:08:04 DEB - - 252G used for temporary feature storage
0:08:04 DEB - - 126G used for archive output
0:08:04 DEB - ✓ 22G JVM heap requested for read phase, 75G available
0:08:04 DEB - - 22G used for temporary profile storage
0:08:04 DEB - ✓ 97G storage on /System/Volumes/Data (/dev/disk3s5) requested for read phase, 1.3T available
0:08:04 DEB - - 86G used for array node location cache (switch to sparsearray to reduce size)
0:08:04 DEB - - 11G used for multipolygon way geometries
0:08:04 WAR - Planetiler will use ~97G memory-mapped files for node locations and multipolygon geometries but the OS only
has 27G available to cache pages, this may slow the import down. To speed up, run on a machine with more
memory or reduce the -Xmx setting.
0:08:04 DEB - argument: archive_name=OpenMapTiles ('name' attribute for tileset metadata)
0:08:04 DEB - argument: archive_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for tileset metadata)
0:08:04 DEB - argument: archive_attribution=<a href="https://www.openmaptiles.org/" target="_blank">© OpenMapTiles</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a> ('attribution' attribute for tileset metadata)
0:08:04 DEB - argument: archive_version=3.14.0 ('version' attribute for tileset metadata)
0:08:04 DEB - argument: archive_type=baselayer ('type' attribute for tileset metadata)
0:08:04 DEB - argument: archive_format=pbf ('format' attribute for tileset metadata)
0:08:05 DEB - argument: compact=true (mbtiles: reduce the DB size by separating and deduping the tile data)
0:08:05 DEB - argument: no_index=false (mbtiles: skip adding index to sqlite DB)
0:08:05 DEB - argument: vacuum_analyze=false (mbtiles: vacuum analyze sqlite DB after writing)
0:08:05 INF - Using merge sort feature map, chunk size=2000mb max workers=12
0:08:05 INF [lake_centerlines] -
0:08:05 INF [lake_centerlines] - Starting...
0:08:06 INF [lake_centerlines] - read: [ 59k 100% 40k/s ] write: [ 0 0/s ] 0
cpus: 1.9 gc: 0% heap: 12G/75G direct: 327k postGC: 801M
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
0:08:06 INF [lake_centerlines] - Finished in 2s cpu:4s avg:2.3
0:08:06 INF [lake_centerlines] - read 1x(66% 1s)
0:08:06 INF [lake_centerlines] - process 11x(4% 0.1s wait:1s)
0:08:06 INF [lake_centerlines] - write 1x(0% 0s wait:1s)
0:08:06 INF [water_polygons] -
0:08:06 INF [water_polygons] - Starting...
0:08:17 INF [water_polygons] - read: [ 1.2k 9% 128/s ] write: [ 7.4M 741k/s ] 2G
cpus: 11 gc: 9% heap: 5.3G/75G direct: 54M postGC: 4.4G
-> (0/3) -> read(49%) -> (981/1k) -> process(83% 79% 82% 82% 84% 84% 83% 80% 79% 81% 82%) -> (6.2k/62k) -> write( 7%)
0:08:27 INF [water_polygons] - read: [ 2.5k 18% 126/s ] write: [ 15M 760k/s ] 2G
cpus: 10.7 gc: 4% heap: 12G/75G direct: 54M postGC: 4.8G
-> (0/3) -> read(24%) -> (1k/1k) -> process(91% 87% 87% 94% 94% 94% 93% 89% 88% 94% 89%) -> (4.4k/62k) -> write( 7%)
0:08:37 INF [water_polygons] - read: [ 4k 28% 148/s ] write: [ 23M 862k/s ] 3G
cpus: 10.7 gc: 4% heap: 6.9G/75G direct: 54M postGC: 5.1G
-> (0/3) -> read(29%) -> (978/1k) -> process(93% 92% 89% 90% 91% 93% 87% 89% 85% 92% 89%) -> (4k/62k) -> write( 9%)
0:08:47 INF [water_polygons] - read: [ 5.2k 36% 116/s ] write: [ 30M 720k/s ] 3G
cpus: 10.8 gc: 4% heap: 13G/75G direct: 54M postGC: 5.6G
-> (0/3) -> read(26%) -> (1k/1k) -> process(94% 90% 89% 94% 94% 91% 94% 91% 92% 92% 94%) -> (4.5k/62k) -> write( 7%)
0:08:57 INF [water_polygons] - read: [ 7k 49% 184/s ] write: [ 52M 2.1M/s ] 4.1G
cpus: 10.6 gc: 3% heap: 11G/75G direct: 54M postGC: 5G
-> (0/3) -> read( 2%) -> (1k/1k) -> process(92% 88% 94% 94% 92% 89% 91% 91% 93% 94% 94%) -> (53k/62k) -> write(14%)
0:09:05 INF [water_polygons] - read: [ 14k 100% 847/s ] write: [ 222M 19M/s ] 10G
cpus: 9.4 gc: 1% heap: 15G/75G direct: 54M postGC: 5G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
0:09:05 INF [water_polygons] - Finished in 59s cpu:10m22s gc:2s avg:10.6
0:09:05 INF [water_polygons] - read 1x(22% 13s wait:42s done:1s)
0:09:05 INF [water_polygons] - process 11x(87% 52s wait:2s)
0:09:05 INF [water_polygons] - write 1x(21% 12s sys:3s wait:46s)
0:09:05 INF [natural_earth] -
0:09:05 INF [natural_earth] - Starting...
0:09:05 INF [natural_earth] - unzipping /Users/bvc/Downloads/planetiler/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:09:09 INF [natural_earth] - unzipping /Users/bvc/Downloads/planetiler/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:09:16 INF [natural_earth] - read: [ 349k 100% 47k/s ] write: [ 33k 4.5k/s ] 10G
cpus: 2.4 gc: 0% heap: 9.1G/75G direct: 54M postGC: 3.9G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -%) -> (0/62k) -> write( -%)
0:09:16 INF [natural_earth] - Finished in 10s cpu:21s avg:2
0:09:16 INF [natural_earth] - read 1x(67% 7s done:3s)
0:09:16 INF [natural_earth] - process 11x(4% 0.5s wait:7s done:3s)
0:09:16 INF [natural_earth] - write 1x(0% 0s wait:7s done:3s)
0:09:16 INF [osm_pass1] -
0:09:16 INF [osm_pass1] - Starting...
0:09:26 INF [osm_pass1] - nodes: [ 291M 29M/s ] 3.6G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.3k 133/s ]
cpus: 9.4 gc: 0% heap: 7.2G/75G direct: 1.3G postGC: 3.3G hppc: 1k
read( 1%) -> (23/34) -> process(86% 86% 85% 82% 84% 86% 83% 84% 85% 85% 85%)
0:09:36 INF [osm_pass1] - nodes: [ 592M 29M/s ] 7.3G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.5k 124/s ]
cpus: 9.2 gc: 0% heap: 3.1G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (22/34) -> process(86% 84% 84% 82% 85% 83% 80% 83% 85% 83% 81%)
0:09:46 INF [osm_pass1] - nodes: [ 882M 28M/s ] 10G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.9k 131/s ]
cpus: 9.1 gc: 0% heap: 5G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(83% 83% 83% 82% 82% 83% 81% 84% 83% 83% 81%)
0:09:56 INF [osm_pass1] - nodes: [ 1.1B 30M/s ] 13G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.1k 125/s ]
cpus: 9.3 gc: 0% heap: 9.5G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 1%) -> (23/34) -> process(87% 85% 85% 84% 84% 84% 83% 85% 85% 84% 83%)
0:10:06 INF [osm_pass1] - nodes: [ 1.5B 31M/s ] 16G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.3k 120/s ]
cpus: 9 gc: 0% heap: 6.3G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(83% 81% 81% 80% 81% 81% 80% 82% 83% 81% 79%)
0:10:16 INF [osm_pass1] - nodes: [ 1.8B 32M/s ] 20G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.5k 121/s ]
cpus: 9.5 gc: 0% heap: 9.7G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 1%) -> (23/34) -> process(88% 87% 86% 86% 86% 86% 85% 85% 88% 87% 84%)
0:10:26 INF [osm_pass1] - nodes: [ 2.1B 33M/s ] 23G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.7k 119/s ]
cpus: 9.5 gc: 0% heap: 4.1G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(88% 86% 87% 85% 87% 86% 84% 86% 88% 87% 83%)
0:10:36 INF [osm_pass1] - nodes: [ 2.5B 34M/s ] 27G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.8k 106/s ]
cpus: 9.5 gc: 0% heap: 5.1G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(89% 87% 85% 86% 86% 88% 83% 86% 87% 87% 83%)
0:10:46 INF [osm_pass1] - nodes: [ 2.8B 35M/s ] 30G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 105/s ]
cpus: 9.5 gc: 0% heap: 5.9G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(88% 87% 85% 86% 84% 86% 83% 86% 88% 86% 83%)
0:10:56 INF [osm_pass1] - nodes: [ 3.2B 35M/s ] 34G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 102/s ]
cpus: 9.2 gc: 0% heap: 4.7G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(86% 83% 84% 82% 83% 83% 80% 84% 83% 83% 81%)
0:11:06 INF [osm_pass1] - nodes: [ 3.5B 35M/s ] 38G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 105/s ]
cpus: 9.5 gc: 0% heap: 7.6G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(89% 86% 87% 84% 87% 87% 84% 87% 87% 87% 85%)
0:11:16 INF [osm_pass1] - nodes: [ 3.9B 34M/s ] 41G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 13k 98/s ]
cpus: 9.1 gc: 0% heap: 5.3G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(84% 84% 84% 81% 84% 82% 80% 82% 83% 82% 78%)
0:11:26 INF [osm_pass1] - nodes: [ 4.3B 36M/s ] 45G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 105/s ]
cpus: 9.8 gc: 0% heap: 3.6G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(92% 90% 90% 88% 90% 89% 87% 89% 90% 89% 86%)
0:11:36 INF [osm_pass1] - nodes: [ 4.6B 36M/s ] 48G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 16k 104/s ]
cpus: 9.7 gc: 0% heap: 7.7G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(90% 88% 88% 87% 88% 87% 87% 89% 87% 86% 84%)
0:11:46 INF [osm_pass1] - nodes: [ 5B 36M/s ] 52G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 17k 104/s ]
cpus: 9.7 gc: 0% heap: 5.2G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(91% 87% 89% 88% 88% 88% 87% 88% 89% 90% 87%)
0:11:56 INF [osm_pass1] - nodes: [ 5.4B 36M/s ] 56G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 105/s ]
cpus: 9.7 gc: 0% heap: 4.5G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(90% 87% 89% 87% 89% 88% 86% 88% 89% 88% 85%)
0:12:06 INF [osm_pass1] - nodes: [ 5.7B 36M/s ] 59G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 102/s ]
cpus: 9.4 gc: 0% heap: 7G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 1%) -> (23/34) -> process(88% 85% 85% 84% 86% 86% 83% 87% 85% 86% 81%)
0:12:16 INF [osm_pass1] - nodes: [ 6.1B 36M/s ] 63G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 20k 100/s ]
cpus: 9.5 gc: 0% heap: 8.6G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(88% 87% 86% 85% 86% 85% 84% 86% 87% 86% 82%)
0:12:26 INF [osm_pass1] - nodes: [ 6.5B 36M/s ] 66G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 21k 100/s ]
cpus: 9.5 gc: 0% heap: 3.3G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 0%) -> (23/34) -> process(90% 87% 86% 85% 87% 85% 83% 87% 87% 86% 84%)
0:12:36 INF [osm_pass1] - nodes: [ 6.8B 36M/s ] 70G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 105/s ]
cpus: 9.6 gc: 0% heap: 4.1G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 0%) -> (23/34) -> process(91% 88% 88% 86% 88% 86% 84% 88% 88% 86% 84%)
0:12:46 INF [osm_pass1] - nodes: [ 7.2B 39M/s ] 74G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 23k 109/s ]
cpus: 10.5 gc: 0% heap: 3.8G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 0%) -> (23/34) -> process(95% 95% 95% 94% 95% 95% 94% 95% 95% 95% 95%)
0:12:56 INF [osm_pass1] - nodes: [ 7.6B 38M/s ] 78G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 105/s ]
cpus: 9.9 gc: 0% heap: 6.4G/75G direct: 1.5G postGC: 3.3G hppc: 1k
read( 0%) -> (22/34) -> process(90% 90% 89% 91% 89% 91% 91% 90% 89% 91% 90%)
0:13:06 INF [osm_pass1] - nodes: [ 8B 39M/s ] 81G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 108/s ]
cpus: 10.2 gc: 0% heap: 5.2G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 0%) -> (23/34) -> process(94% 93% 93% 93% 93% 91% 93% 92% 93% 93% 93%)
0:13:16 INF [osm_pass1] - nodes: [ 8.4B 38M/s ] 87G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 26k 108/s ]
cpus: 10.2 gc: 0% heap: 4.8G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 0%) -> (23/34) -> process(93% 92% 91% 92% 93% 92% 92% 92% 92% 91% 92%)
0:13:21 INF [osm_pass1:process] - Finished nodes: 8,592,504,792 (35M/s) in 4m5s cpu:39m avg:9.6
0:13:26 INF [osm_pass1] - nodes: [ 8.5B 15M/s ] 89G ways: [ 52M 5.1M/s ] rels: [ 0 0/s ] blocks: [ 28k 156/s ]
cpus: 10.1 gc: 1% heap: 5.6G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(90% 92% 92% 91% 91% 92% 91% 92% 91% 91% 91%)
0:13:36 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 170M 11M/s ] rels: [ 0 0/s ] blocks: [ 30k 197/s ]
cpus: 10.5 gc: 1% heap: 9.5G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(94% 95% 94% 95% 95% 95% 94% 94% 95% 94% 95%)
0:13:46 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 304M 13M/s ] rels: [ 0 0/s ] blocks: [ 32k 208/s ]
cpus: 10.4 gc: 1% heap: 6.1G/75G direct: 1.5G postGC: 3.1G hppc: 1k
read( 1%) -> (23/34) -> process(94% 94% 93% 94% 94% 94% 94% 93% 94% 94% 94%)
0:13:56 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 459M 15M/s ] rels: [ 0 0/s ] blocks: [ 34k 220/s ]
cpus: 10.3 gc: 1% heap: 8.3G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(92% 92% 92% 92% 91% 92% 93% 92% 93% 92% 92%)
0:14:06 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 619M 15M/s ] rels: [ 0 0/s ] blocks: [ 36k 222/s ]
cpus: 10.1 gc: 1% heap: 7.3G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(90% 91% 91% 91% 91% 91% 90% 91% 91% 91% 91%)
0:14:16 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 786M 16M/s ] rels: [ 0 0/s ] blocks: [ 39k 232/s ]
cpus: 10.3 gc: 1% heap: 9G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(93% 93% 93% 93% 93% 93% 93% 93% 93% 93% 92%)
0:14:26 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 961M 17M/s ] rels: [ 0 0/s ] blocks: [ 41k 242/s ]
cpus: 10.4 gc: 1% heap: 7.5G/75G direct: 1.5G postGC: 3.2G hppc: 1k
read( 1%) -> (23/34) -> process(93% 94% 93% 93% 93% 93% 93% 93% 93% 93% 93%)
0:14:26 INF [osm_pass1:process] - Finished ways: 963,905,895 (14M/s) in 1m6s cpu:11m21s avg:10.3
0:14:36 INF [osm_pass1:process] - Finished relations: 11,234,140 (1.2M/s) in 9s cpu:45s avg:5
0:14:36 INF [osm_pass1] - nodes: [ 8.5B 0/s ] 89G ways: [ 963M 214k/s ] rels: [ 11M 1.2M/s ] blocks: [ 41k 42/s ]
cpus: 5.1 gc: 1% heap: 9.9G/75G direct: 188M postGC: 3.9G hppc: 696M
read( -%) -> (0/34) -> process( -% -% -% -% -% -% -% -% -% -% -%)
0:14:36 DEB [osm_pass1] - Processed 41,844 blocks:
0:14:36 DEB [osm_pass1] - nodes: 8,592,504,792 (35M/s) in 4m5s cpu:39m avg:9.6
0:14:36 DEB [osm_pass1] - ways: 963,905,895 (14M/s) in 1m6s cpu:11m21s avg:10.3
0:14:36 DEB [osm_pass1] - relations: 11,234,140 (1.2M/s) in 9s cpu:45s avg:5
0:14:36 INF [osm_pass1] - Finished in 5m20s cpu:51m6s gc:2s avg:9.6
0:14:36 INF [osm_pass1] - read 1x(1% 2s sys:2s wait:5m9s)
0:14:36 INF [osm_pass1] - process 11x(86% 4m36s sys:6s block:6s)
0:14:36 INF [osm_pass2] -
0:14:36 INF [osm_pass2] - Starting...
0:14:46 INF [osm_pass2] - nodes: [ 168M 2% 16M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 236M 1.3M/s ] 13G blocks: [ 785 2% 78/s ]
cpus: 10.4 gc: 4% heap: 6.1G/75G direct: 54M postGC: 3.9G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(80% 79% 81% 80% 80% 79% 80% 79% 79% 79% 80%) -> (4.6k/62k) -> write(34%)
0:14:56 INF [osm_pass2] - nodes: [ 320M 4% 15M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 259M 2.2M/s ] 18G blocks: [ 1.4k 3% 65/s ]
cpus: 10.3 gc: 2% heap: 14G/75G direct: 54M postGC: 3.9G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(79% 81% 80% 79% 82% 79% 83% 83% 82% 81% 81%) -> (10k/62k) -> write(59%)
0:15:06 INF [osm_pass2] - nodes: [ 531M 6% 21M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 270M 1M/s ] 20G blocks: [ 2.3k 6% 86/s ]
cpus: 10 gc: 2% heap: 16G/75G direct: 54M postGC: 3.9G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(82% 84% 80% 79% 81% 80% 83% 83% 84% 79% 83%) -> (4.6k/62k) -> write(30%)
0:15:16 INF [osm_pass2] - nodes: [ 770M 9% 23M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 279M 946k/s ] 21G blocks: [ 3.4k 8% 109/s ]
cpus: 9.9 gc: 1% heap: 14G/75G direct: 54M postGC: 3.7G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(84% 94% 84% 83% 84% 84% 84% 84% 94% 83% 93%) -> (6.4k/62k) -> write(25%)
0:15:26 INF [osm_pass2] - nodes: [ 979M 11% 20M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 292M 1.2M/s ] 22G blocks: [ 4.2k 10% 88/s ]
cpus: 10.2 gc: 1% heap: 19G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(85% 91% 87% 86% 86% 86% 87% 87% 89% 87% 94%) -> (5.2k/62k) -> write(33%)
0:15:36 INF [osm_pass2] - nodes: [ 1.2B 14% 24M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 301M 855k/s ] 24G blocks: [ 5.2k 13% 100/s ]
cpus: 10.6 gc: 1% heap: 4.4G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(93% 91% 92% 94% 93% 93% 93% 91% 92% 92% 91%) -> (6.8k/62k) -> write(24%)
0:15:46 INF [osm_pass2] - nodes: [ 1.4B 17% 25M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 310M 986k/s ] 24G blocks: [ 6.2k 15% 100/s ]
cpus: 10.7 gc: 1% heap: 16G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(93% 93% 95% 94% 94% 94% 94% 96% 95% 95% 94%) -> (6.7k/62k) -> write(25%)
0:15:56 INF [osm_pass2] - nodes: [ 1.7B 20% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 320M 960k/s ] 25G blocks: [ 7.2k 17% 95/s ]
cpus: 10.5 gc: 1% heap: 11G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (10/22) -> process(93% 93% 90% 93% 93% 92% 93% 91% 94% 93% 92%) -> (5.8k/62k) -> write(26%)
0:16:06 INF [osm_pass2] - nodes: [ 2B 23% 25M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 332M 1.1M/s ] 27G blocks: [ 8.2k 20% 95/s ]
cpus: 10.6 gc: 1% heap: 11G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(92% 92% 93% 94% 92% 94% 91% 92% 93% 92% 92%) -> (15k/62k) -> write(30%)
0:16:16 INF [osm_pass2] - nodes: [ 2.2B 26% 25M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 350M 1.8M/s ] 28G blocks: [ 9k 22% 83/s ]
cpus: 10.7 gc: 1% heap: 12G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(92% 93% 93% 92% 92% 93% 92% 93% 94% 92% 93%) -> (4.4k/62k) -> write(39%)
0:16:26 INF [osm_pass2] - nodes: [ 2.5B 29% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 361M 1M/s ] 29G blocks: [ 9.8k 24% 82/s ]
cpus: 10.4 gc: 1% heap: 14G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(92% 91% 91% 92% 91% 92% 91% 92% 92% 90% 90%) -> (5.1k/62k) -> write(25%)
0:16:36 INF [osm_pass2] - nodes: [ 2.8B 33% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 369M 868k/s ] 30G blocks: [ 10k 26% 83/s ]
cpus: 10.7 gc: 1% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(94% 94% 95% 94% 94% 93% 94% 95% 94% 94% 94%) -> (6.8k/62k) -> write(24%)
0:16:46 INF [osm_pass2] - nodes: [ 3B 36% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 377M 824k/s ] 30G blocks: [ 11k 28% 84/s ]
cpus: 10.7 gc: 1% heap: 7.1G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(94% 96% 94% 94% 93% 94% 95% 94% 95% 94% 95%) -> (6.8k/62k) -> write(22%)
0:16:56 INF [osm_pass2] - nodes: [ 3.3B 39% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 387M 931k/s ] 32G blocks: [ 12k 30% 80/s ]
cpus: 10.8 gc: 1% heap: 11G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(94% 93% 93% 94% 95% 96% 96% 93% 93% 95% 95%) -> (5.6k/62k) -> write(25%)
0:17:06 INF [osm_pass2] - nodes: [ 3.6B 42% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 397M 994k/s ] 33G blocks: [ 13k 31% 79/s ]
cpus: 10.7 gc: 1% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(94% 94% 95% 93% 94% 94% 93% 94% 94% 94% 95%) -> (5k/62k) -> write(28%)
0:17:16 INF [osm_pass2] - nodes: [ 3.9B 46% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 404M 687k/s ] 33G blocks: [ 13k 33% 81/s ]
cpus: 10.8 gc: 1% heap: 5.6G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(96% 96% 97% 95% 95% 96% 97% 97% 96% 95% 96%) -> (4.5k/62k) -> write(19%)
0:17:26 INF [osm_pass2] - nodes: [ 4.2B 49% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 412M 878k/s ] 34G blocks: [ 14k 35% 79/s ]
cpus: 10.6 gc: 0% heap: 9.2G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(94% 94% 94% 93% 92% 94% 94% 95% 94% 93% 94%) -> (5.2k/62k) -> write(23%)
0:17:36 INF [osm_pass2] - nodes: [ 4.4B 52% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 421M 851k/s ] 36G blocks: [ 15k 37% 81/s ]
cpus: 10.6 gc: 0% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (10/22) -> process(94% 95% 94% 94% 94% 94% 94% 94% 95% 94% 93%) -> (6.3k/62k) -> write(22%)
0:17:46 INF [osm_pass2] - nodes: [ 4.7B 56% 29M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 429M 805k/s ] 36G blocks: [ 16k 39% 84/s ]
cpus: 10.8 gc: 0% heap: 14G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(96% 96% 95% 95% 96% 97% 96% 97% 96% 96% 96%) -> (6.6k/62k) -> write(21%)
0:17:56 INF [osm_pass2] - nodes: [ 5B 59% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 436M 686k/s ] 37G blocks: [ 17k 41% 81/s ]
cpus: 10.7 gc: 1% heap: 3.8G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(96% 95% 96% 96% 95% 96% 95% 96% 95% 95% 95%) -> (5.7k/62k) -> write(19%)
0:18:06 INF [osm_pass2] - nodes: [ 5.3B 63% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 445M 870k/s ] 36G blocks: [ 18k 43% 83/s ]
cpus: 10.8 gc: 0% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(96% 95% 94% 95% 94% 95% 94% 96% 95% 94% 96%) -> (58k/62k) -> write(23%)
0:18:16 INF [osm_pass2] - nodes: [ 5.6B 66% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 453M 839k/s ] 38G blocks: [ 18k 45% 74/s ]
cpus: 9.4 gc: 0% heap: 9.5G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(86% 83% 84% 84% 83% 86% 83% 83% 82% 85% 83%) -> (6k/62k) -> write(23%)
0:18:26 INF [osm_pass2] - nodes: [ 5.9B 69% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 461M 826k/s ] 40G blocks: [ 19k 47% 80/s ]
cpus: 10 gc: 0% heap: 15G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(87% 89% 88% 88% 87% 89% 88% 89% 88% 87% 87%) -> (5k/62k) -> write(22%)
0:18:36 INF [osm_pass2] - nodes: [ 6.2B 72% 29M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 468M 704k/s ] 40G blocks: [ 20k 49% 81/s ]
cpus: 10 gc: 0% heap: 5.2G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(89% 89% 89% 90% 88% 89% 89% 89% 90% 89% 88%) -> (5.6k/62k) -> write(20%)
0:18:46 INF [osm_pass2] - nodes: [ 6.5B 76% 28M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 476M 754k/s ] 41G blocks: [ 21k 51% 79/s ]
cpus: 10.1 gc: 0% heap: 9.3G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(90% 88% 88% 88% 89% 90% 94% 89% 88% 89% 89%) -> (6.4k/62k) -> write(22%)
0:18:56 INF [osm_pass2] - nodes: [ 6.7B 79% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 487M 1.1M/s ] 42G blocks: [ 22k 53% 77/s ]
cpus: 10 gc: 0% heap: 16G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(91% 87% 89% 88% 88% 89% 88% 87% 88% 88% 87%) -> (3.6k/62k) -> write(28%)
0:19:06 INF [osm_pass2] - nodes: [ 7B 82% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 497M 976k/s ] 42G blocks: [ 22k 54% 75/s ]
cpus: 9.8 gc: 0% heap: 18G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(96% 86% 86% 86% 85% 86% 86% 85% 86% 85% 87%) -> (6.7k/62k) -> write(24%)
0:19:16 INF [osm_pass2] - nodes: [ 7.3B 85% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 580k/s ] 43G blocks: [ 23k 56% 75/s ]
cpus: 9.4 gc: 0% heap: 10G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(84% 85% 84% 84% 87% 85% 83% 84% 83% 82% 83%) -> (6.2k/62k) -> write(17%)
0:19:26 INF [osm_pass2] - nodes: [ 7.5B 88% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 511M 805k/s ] 43G blocks: [ 24k 58% 75/s ]
cpus: 9.7 gc: 0% heap: 7.1G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(87% 87% 87% 85% 86% 86% 86% 85% 87% 85% 85%) -> (5k/62k) -> write(20%)
0:19:36 INF [osm_pass2] - nodes: [ 7.8B 91% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 519M 845k/s ] 45G blocks: [ 25k 60% 73/s ]
cpus: 9.7 gc: 0% heap: 18G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(86% 87% 86% 86% 84% 87% 86% 85% 86% 85% 84%) -> (5k/62k) -> write(22%)
0:19:46 INF [osm_pass2] - nodes: [ 8.1B 95% 26M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 527M 736k/s ] 46G blocks: [ 25k 62% 74/s ]
cpus: 9.5 gc: 0% heap: 10G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(86% 85% 85% 84% 83% 86% 84% 85% 85% 84% 83%) -> (5.2k/62k) -> write(20%)
0:19:56 INF [osm_pass2] - nodes: [ 8.4B 98% 27M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 535M 814k/s ] 46G blocks: [ 26k 63% 78/s ]
cpus: 9.7 gc: 0% heap: 11G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 1%) -> (11/22) -> process(86% 86% 87% 85% 85% 86% 85% 86% 86% 84% 86%) -> (4k/62k) -> write(19%)
0:20:04 DEB [osm_pass2:process] - Sorting long long multimap...
0:20:04 INF [osm_pass2:process] - Finished nodes: 8,592,504,792 (26M/s) in 5m28s cpu:56m11s gc:2s avg:10.3
0:20:06 INF [osm_pass2] - nodes: [ 8.5B 100% 19M/s ] 89G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 543M 808k/s ] 47G blocks: [ 27k 65% 57/s ]
cpus: 7.7 gc: 0% heap: 18G/75G direct: 54M postGC: 3.8G relInfo: 696M mpGeoms: 297
read( 0%) -> (11/22) -> process(64% 88% 64% 64% 63% 64% 64% 63% 64% 63% 63%) -> (7.4k/62k) -> write(19%)
0:20:07 DEB [osm_pass2:process] - Sorted long long multimap 3s cpu:6s avg:1.9
0:20:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 400k 0% 40k/s ] rels: [ 0 0% 0/s ] features: [ 546M 277k/s ] 47G blocks: [ 27k 65% <1/s ]
cpus: 2.4 gc: 1% heap: 7.6G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 22M
read( 0%) -> (11/22) -> process(18% 26% 18% 19% 18% 18% 18% 18% 18% 18% 18%) -> (4.6k/62k) -> write( 4%)
0:20:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 1.2M 0% 89k/s ] rels: [ 0 0% 0/s ] features: [ 552M 587k/s ] 47G blocks: [ 27k 65% 2/s ]
cpus: 3.2 gc: 0% heap: 4G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 30M
read( 0%) -> (11/22) -> process(29% 30% 30% 28% 26% 26% 26% 28% 31% 26% 25%) -> (6k/62k) -> write( 9%)
0:20:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 2.7M 0% 145k/s ] rels: [ 0 0% 0/s ] features: [ 561M 969k/s ] 49G blocks: [ 27k 65% 2/s ]
cpus: 3.9 gc: 0% heap: 9.7G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 37M
read( 0%) -> (11/22) -> process(31% 41% 32% 33% 36% 34% 34% 35% 34% 31% 33%) -> (4.7k/62k) -> write(14%)
0:20:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 4.6M 0% 190k/s ] rels: [ 0 0% 0/s ] features: [ 574M 1.2M/s ] 50G blocks: [ 27k 65% 4/s ]
cpus: 4.8 gc: 1% heap: 4.6G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 51M
read( 0%) -> (11/22) -> process(41% 44% 41% 45% 44% 42% 37% 41% 40% 40% 40%) -> (6.8k/62k) -> write(18%)
0:20:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 7.5M 1% 293k/s ] rels: [ 0 0% 0/s ] features: [ 591M 1.7M/s ] 51G blocks: [ 27k 65% 6/s ]
cpus: 6.4 gc: 1% heap: 4G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 83M
read( 0%) -> (11/22) -> process(58% 57% 54% 55% 54% 54% 54% 57% 51% 55% 56%) -> (6.8k/62k) -> write(25%)
0:21:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 10M 1% 303k/s ] rels: [ 0 0% 0/s ] features: [ 610M 1.8M/s ] 54G blocks: [ 27k 65% 6/s ]
cpus: 6.7 gc: 1% heap: 8.3G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 92M
read( 0%) -> (11/22) -> process(59% 55% 58% 58% 54% 59% 56% 61% 56% 57% 57%) -> (6.4k/62k) -> write(29%)
0:21:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 13M 1% 286k/s ] rels: [ 0 0% 0/s ] features: [ 626M 1.6M/s ] 55G blocks: [ 27k 66% 6/s ]
cpus: 6.8 gc: 1% heap: 13G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 148M
read( 0%) -> (11/22) -> process(60% 59% 57% 58% 58% 58% 56% 61% 57% 59% 60%) -> (6k/62k) -> write(26%)
0:21:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 15M 2% 177k/s ] rels: [ 0 0% 0/s ] features: [ 638M 1.1M/s ] 56G blocks: [ 27k 66% 4/s ]
cpus: 6.1 gc: 1% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 196M
read( 0%) -> (11/22) -> process(53% 54% 52% 52% 60% 52% 53% 51% 53% 55% 55%) -> (5.9k/62k) -> write(18%)
0:21:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 17M 2% 202k/s ] rels: [ 0 0% 0/s ] features: [ 650M 1.1M/s ] 56G blocks: [ 27k 66% 4/s ]
cpus: 6.7 gc: 1% heap: 14G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 245M
read( 0%) -> (11/22) -> process(56% 58% 59% 58% 56% 60% 57% 61% 59% 59% 60%) -> (7.4k/62k) -> write(19%)
0:21:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 19M 2% 221k/s ] rels: [ 0 0% 0/s ] features: [ 661M 1.1M/s ] 58G blocks: [ 27k 66% 4/s ]
cpus: 7 gc: 1% heap: 7.3G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 284M
read( 0%) -> (11/22) -> process(59% 61% 62% 60% 58% 64% 59% 61% 63% 62% 57%) -> (5.2k/62k) -> write(22%)
0:21:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 21M 2% 223k/s ] rels: [ 0 0% 0/s ] features: [ 673M 1.1M/s ] 59G blocks: [ 27k 66% 5/s ]
cpus: 6.5 gc: 1% heap: 11G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 361M
read( 0%) -> (11/22) -> process(56% 58% 62% 54% 57% 57% 58% 55% 58% 59% 55%) -> (7.4k/62k) -> write(19%)
0:22:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 24M 3% 280k/s ] rels: [ 0 0% 0/s ] features: [ 685M 1.2M/s ] 60G blocks: [ 27k 66% 5/s ]
cpus: 7.4 gc: 2% heap: 4.8G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 417M
read( 0%) -> (11/22) -> process(62% 66% 65% 66% 66% 64% 64% 61% 64% 60% 63%) -> (6.3k/62k) -> write(24%)
0:22:16 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 26M 3% 143k/s ] rels: [ 0 0% 0/s ] features: [ 692M 667k/s ] 61G blocks: [ 27k 66% 3/s ]
cpus: 8.7 gc: 1% heap: 17G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 477M
read( 0%) -> (11/22) -> process(75% 78% 77% 76% 79% 77% 77% 77% 77% 77% 77%) -> (4.5k/62k) -> write(16%)
0:22:26 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 27M 3% 176k/s ] rels: [ 0 0% 0/s ] features: [ 700M 839k/s ] 61G blocks: [ 27k 66% 4/s ]
cpus: 8.6 gc: 1% heap: 4.2G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 548M
read( 0%) -> (11/22) -> process(74% 70% 78% 70% 75% 75% 81% 73% 72% 80% 81%) -> (5.3k/62k) -> write(18%)
0:22:36 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 30M 3% 266k/s ] rels: [ 0 0% 0/s ] features: [ 712M 1.1M/s ] 63G blocks: [ 27k 66% 5/s ]
cpus: 8.1 gc: 1% heap: 14G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 619M
read( 0%) -> (11/22) -> process(69% 66% 73% 75% 74% 67% 77% 69% 67% 65% 71%) -> (4.7k/62k) -> write(25%)
0:22:46 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 33M 3% 302k/s ] rels: [ 0 0% 0/s ] features: [ 724M 1.1M/s ] 64G blocks: [ 27k 67% 6/s ]
cpus: 8.1 gc: 1% heap: 15G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 671M
read( 0%) -> (11/22) -> process(71% 70% 75% 68% 70% 69% 70% 70% 72% 68% 71%) -> (6.1k/62k) -> write(24%)
0:22:56 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 36M 4% 279k/s ] rels: [ 0 0% 0/s ] features: [ 735M 1M/s ] 65G blocks: [ 27k 67% 6/s ]
cpus: 8.5 gc: 1% heap: 10G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 726M
read( 0%) -> (11/22) -> process(70% 72% 79% 75% 76% 72% 73% 72% 78% 73% 75%) -> (6.5k/62k) -> write(23%)
0:23:06 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 40M 4% 435k/s ] rels: [ 0 0% 0/s ] features: [ 747M 1.2M/s ] 65G blocks: [ 27k 67% 7/s ]
cpus: 9.3 gc: 1% heap: 12G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 763M
read( 0%) -> (11/22) -> process(80% 81% 79% 83% 82% 83% 80% 82% 83% 81% 83%) -> (6.2k/62k) -> write(23%)
0:23:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 44M 5% 418k/s ] rels: [ 0 0% 0/s ] features: [ 759M 1.1M/s ] 66G blocks: [ 28k 67% 7/s ]
cpus: 9 gc: 1% heap: 19G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 802M
read( 0%) -> (11/22) -> process(80% 78% 79% 79% 81% 79% 80% 79% 77% 80% 78%) -> (6.3k/62k) -> write(23%)
0:23:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 48M 5% 402k/s ] rels: [ 0 0% 0/s ] features: [ 770M 1.1M/s ] 67G blocks: [ 28k 67% 7/s ]
cpus: 8.9 gc: 1% heap: 16G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 848M
read( 0%) -> (11/22) -> process(79% 81% 79% 79% 80% 77% 78% 78% 77% 77% 76%) -> (6.6k/62k) -> write(22%)
0:23:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 52M 5% 385k/s ] rels: [ 0 0% 0/s ] features: [ 781M 1.1M/s ] 67G blocks: [ 28k 67% 7/s ]
cpus: 8.9 gc: 1% heap: 12G/75G direct: 54M postGC: 3.8G relInfo: 547M mpGeoms: 895M
read( 0%) -> (11/22) -> process(79% 75% 78% 78% 76% 80% 77% 79% 77% 78% 79%) -> (5.7k/62k) -> write(20%)
0:23:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 55M 6% 311k/s ] rels: [ 0 0% 0/s ] features: [ 791M 963k/s ] 69G blocks: [ 28k 68% 5/s ]
cpus: 9 gc: 1% heap: 15G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 963M
read( 0%) -> (11/22) -> process(78% 79% 80% 80% 79% 78% 82% 81% 81% 77% 77%) -> (6.2k/62k) -> write(20%)
0:23:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 58M 6% 225k/s ] rels: [ 0 0% 0/s ] features: [ 799M 753k/s ] 69G blocks: [ 28k 68% 4/s ]
cpus: 9.3 gc: 1% heap: 9.4G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 995M
read( 0%) -> (11/22) -> process(82% 80% 82% 89% 80% 82% 83% 83% 81% 87% 78%) -> (6.6k/62k) -> write(16%)
0:24:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 61M 6% 333k/s ] rels: [ 0 0% 0/s ] features: [ 809M 1M/s ] 70G blocks: [ 28k 68% 6/s ]
cpus: 9.1 gc: 1% heap: 9.6G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1G
read( 0%) -> (11/22) -> process(80% 80% 78% 80% 80% 82% 79% 77% 80% 80% 80%) -> (5.2k/62k) -> write(20%)
0:24:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 64M 7% 311k/s ] rels: [ 0 0% 0/s ] features: [ 819M 1M/s ] 71G blocks: [ 28k 68% 5/s ]
cpus: 8.9 gc: 1% heap: 6.4G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1G
read( 0%) -> (11/22) -> process(77% 78% 78% 76% 80% 79% 78% 81% 78% 76% 79%) -> (5.9k/62k) -> write(20%)
0:24:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 68M 7% 351k/s ] rels: [ 0 0% 0/s ] features: [ 830M 1M/s ] 71G blocks: [ 28k 68% 6/s ]
cpus: 9.1 gc: 1% heap: 12G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.1G
read( 0%) -> (11/22) -> process(79% 80% 81% 80% 80% 82% 79% 80% 80% 79% 79%) -> (6.3k/62k) -> write(20%)
0:24:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 71M 7% 324k/s ] rels: [ 0 0% 0/s ] features: [ 841M 1M/s ] 72G blocks: [ 28k 68% 5/s ]
cpus: 8.9 gc: 1% heap: 16G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(78% 80% 76% 78% 80% 79% 81% 79% 80% 79% 79%) -> (4.4k/62k) -> write(21%)
0:24:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 75M 8% 387k/s ] rels: [ 0 0% 0/s ] features: [ 853M 1.2M/s ] 73G blocks: [ 28k 68% 6/s ]
cpus: 8.7 gc: 1% heap: 19G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(76% 76% 78% 78% 76% 75% 75% 77% 77% 75% 76%) -> (5.1k/62k) -> write(23%)
0:24:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 79M 8% 406k/s ] rels: [ 0 0% 0/s ] features: [ 866M 1.3M/s ] 74G blocks: [ 28k 69% 6/s ]
cpus: 8.8 gc: 1% heap: 7.4G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.2G
read( 0%) -> (11/22) -> process(78% 76% 78% 77% 78% 77% 76% 77% 75% 76% 76%) -> (6.2k/62k) -> write(24%)
0:25:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 83M 9% 392k/s ] rels: [ 0 0% 0/s ] features: [ 879M 1.3M/s ] 74G blocks: [ 28k 69% 6/s ]
cpus: 8.9 gc: 1% heap: 13G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(79% 78% 78% 78% 79% 76% 79% 78% 79% 78% 78%) -> (5.4k/62k) -> write(22%)
0:25:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 87M 9% 401k/s ] rels: [ 0 0% 0/s ] features: [ 892M 1.2M/s ] 76G blocks: [ 28k 69% 6/s ]
cpus: 8.8 gc: 1% heap: 4.9G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(75% 77% 77% 77% 79% 79% 76% 77% 76% 78% 77%) -> (4.9k/62k) -> write(23%)
0:25:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 91M 9% 393k/s ] rels: [ 0 0% 0/s ] features: [ 905M 1.2M/s ] 77G blocks: [ 28k 69% 6/s ]
cpus: 8.7 gc: 1% heap: 10G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.3G
read( 0%) -> (11/22) -> process(76% 76% 77% 75% 76% 78% 77% 78% 77% 78% 75%) -> (4.8k/62k) -> write(21%)
0:25:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 94M 10% 346k/s ] rels: [ 0 0% 0/s ] features: [ 916M 1.1M/s ] 78G blocks: [ 28k 69% 5/s ]
cpus: 8.8 gc: 1% heap: 16G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.4G
read( 0%) -> (11/22) -> process(77% 79% 77% 80% 76% 77% 78% 79% 78% 76% 76%) -> (7.8k/62k) -> write(20%)
0:25:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 98M 10% 386k/s ] rels: [ 0 0% 0/s ] features: [ 928M 1.1M/s ] 78G blocks: [ 29k 69% 6/s ]
cpus: 9.4 gc: 1% heap: 10G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.5G
read( 0%) -> (11/22) -> process(81% 82% 84% 81% 82% 83% 81% 84% 83% 85% 83%) -> (6.4k/62k) -> write(21%)
0:25:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 102M 11% 356k/s ] rels: [ 0 0% 0/s ] features: [ 939M 1.1M/s ] 79G blocks: [ 29k 70% 5/s ]
cpus: 8.3 gc: 1% heap: 7.6G/75G direct: 54M postGC: 3.9G relInfo: 547M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(74% 75% 72% 74% 73% 72% 70% 73% 72% 72% 74%) -> (7.2k/62k) -> write(19%)
0:26:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 105M 11% 387k/s ] rels: [ 0 0% 0/s ] features: [ 951M 1.2M/s ] 80G blocks: [ 29k 70% 6/s ]
cpus: 8.8 gc: 1% heap: 4G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(77% 78% 76% 79% 77% 79% 76% 77% 78% 78% 78%) -> (6.4k/62k) -> write(22%)
0:26:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 110M 11% 409k/s ] rels: [ 0 0% 0/s ] features: [ 964M 1.3M/s ] 81G blocks: [ 29k 70% 6/s ]
cpus: 8.8 gc: 1% heap: 15G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.6G
read( 0%) -> (11/22) -> process(78% 78% 77% 79% 76% 76% 79% 76% 76% 78% 78%) -> (5.6k/62k) -> write(23%)
0:26:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 113M 12% 371k/s ] rels: [ 0 0% 0/s ] features: [ 977M 1.2M/s ] 81G blocks: [ 29k 70% 6/s ]
cpus: 8.6 gc: 1% heap: 16G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(78% 75% 75% 75% 76% 76% 76% 74% 75% 75% 74%) -> (5.3k/62k) -> write(20%)
0:26:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 117M 12% 415k/s ] rels: [ 0 0% 0/s ] features: [ 990M 1.3M/s ] 82G blocks: [ 29k 70% 6/s ]
cpus: 8.9 gc: 1% heap: 15G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.7G
read( 0%) -> (11/22) -> process(78% 78% 77% 77% 80% 79% 77% 77% 78% 77% 77%) -> (5.2k/62k) -> write(23%)
0:26:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 121M 13% 403k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.3M/s ] 84G blocks: [ 29k 70% 6/s ]
cpus: 8.7 gc: 1% heap: 7.9G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(76% 76% 77% 77% 78% 78% 77% 77% 78% 76% 76%) -> (4.6k/62k) -> write(22%)
0:26:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 125M 13% 377k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 85G blocks: [ 29k 70% 6/s ]
cpus: 8.5 gc: 1% heap: 7.7G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(75% 74% 75% 74% 74% 74% 75% 74% 76% 73% 73%) -> (4k/62k) -> write(21%)
0:27:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 129M 13% 394k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 86G blocks: [ 29k 71% 6/s ]
cpus: 8.9 gc: 1% heap: 4.5G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.8G
read( 0%) -> (11/22) -> process(80% 79% 79% 79% 80% 77% 79% 78% 79% 78% 79%) -> (6.3k/62k) -> write(22%)
0:27:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 133M 14% 358k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.1M/s ] 86G blocks: [ 29k 71% 5/s ]
cpus: 9.2 gc: 1% heap: 19G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 1.9G
read( 0%) -> (11/22) -> process(83% 81% 82% 82% 81% 81% 81% 80% 80% 82% 79%) -> (4.1k/62k) -> write(20%)
0:27:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 136M 14% 365k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.1M/s ] 87G blocks: [ 29k 71% 5/s ]
cpus: 9.1 gc: 1% heap: 17G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2G
read( 0%) -> (11/22) -> process(80% 77% 80% 81% 81% 80% 78% 78% 81% 83% 81%) -> (6.9k/62k) -> write(20%)
0:27:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 140M 15% 402k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 88G blocks: [ 29k 71% 6/s ]
cpus: 9.2 gc: 1% heap: 7.5G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2G
read( 0%) -> (11/22) -> process(80% 82% 82% 82% 79% 80% 81% 81% 81% 82% 81%) -> (5.4k/62k) -> write(23%)
0:27:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 145M 15% 404k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 89G blocks: [ 29k 71% 6/s ]
cpus: 9 gc: 1% heap: 7.7G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2G
read( 0%) -> (11/22) -> process(77% 79% 80% 78% 78% 81% 81% 80% 78% 79% 79%) -> (5.6k/62k) -> write(22%)
0:27:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 148M 15% 388k/s ] rels: [ 0 0% 0/s ] features: [ 1B 1.2M/s ] 89G blocks: [ 29k 71% 5/s ]
cpus: 9.1 gc: 1% heap: 8G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(80% 81% 79% 80% 82% 80% 80% 79% 79% 80% 79%) -> (4.9k/62k) -> write(21%)
0:28:07 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 152M 16% 396k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 91G blocks: [ 29k 71% 6/s ]
cpus: 9.1 gc: 1% heap: 9.3G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.1G
read( 0%) -> (11/22) -> process(80% 79% 81% 79% 80% 81% 80% 81% 79% 79% 79%) -> (4k/62k) -> write(22%)
0:28:17 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 157M 16% 441k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.3M/s ] 92G blocks: [ 29k 72% 6/s ]
cpus: 9.4 gc: 1% heap: 15G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(83% 82% 83% 85% 83% 82% 79% 84% 81% 83% 81%) -> (5.1k/62k) -> write(24%)
0:28:27 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 161M 17% 407k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 92G blocks: [ 30k 72% 6/s ]
cpus: 9.2 gc: 1% heap: 19G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.2G
read( 0%) -> (11/22) -> process(80% 80% 83% 81% 80% 80% 80% 82% 81% 80% 82%) -> (5.3k/62k) -> write(21%)
0:28:37 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 165M 17% 390k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 93G blocks: [ 30k 72% 6/s ]
cpus: 9 gc: 1% heap: 17G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(78% 79% 79% 79% 76% 79% 80% 79% 79% 79% 79%) -> (5.2k/62k) -> write(21%)
0:28:47 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 169M 18% 366k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.1M/s ] 94G blocks: [ 30k 72% 5/s ]
cpus: 9.1 gc: 1% heap: 15G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(80% 89% 80% 82% 79% 79% 81% 77% 78% 81% 80%) -> (5k/62k) -> write(21%)
0:28:57 INF [osm_pass2] - nodes: [ 8.5B 100% 0/s ] 89G ways: [ 172M 18% 380k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 1.2M/s ] 95G blocks: [ 30k 72% 6/s ]
cpus: 8.9 gc: 1% heap: 9.8G/75G direct: 54M postGC: 4G relInfo: 547M mpGeoms: 2.3G
read( 0%) -> (11/22) -> process(79% 79% 77% 78% 77% 78% 78% 77% 79% 78% 78%) -> (5.5k/62k) -> write(21%)