-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
v0.5.0-planet-c6gd-32gb.txt
3577 lines (3570 loc) · 378 KB
/
v0.5.0-planet-c6gd-32gb.txt
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
0:00:00 DEB - argument: config=null (path to config file)
0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
0:00:00 INF - Using in-memory stats
0:00:00 INF [overall] -
0:00:00 INF [overall] - Starting...
0:00:00 DEB - argument: madvise=true (default value for whether to use linux madvise(random) to improve memory-mapped read performance for temporary storage)
0:00:00 DEB - argument: storage=mmap (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=16 (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=15 (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: 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: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level (limit 14))
0:00:00 DEB - argument: skip_mbtiles_index_creation=false (skip adding index to mbtiles file)
0:00:00 DEB - argument: optimize_db=false (optimize mbtiles after writing)
0:00:00 DEB - argument: emit_tiles_in_order=true (emit tiles in index order)
0:00:00 DEB - argument: force=false (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: gzip_temp=false (gzip temporary feature storage (uses more CPU, but less disk space))
0:00:00 DEB - argument: 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=100 (Size of file chunks to download in parallel in megabytes)
0:00:00 DEB - argument: download_threads=1 (Number of parallel threads to use when downloading each file)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=false (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: compact_db=true (Reduce the DB size by separating and deduping the tile data)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
0:00:00 DEB - argument: only_download=false (download source data then exit)
0:00:00 DEB - argument: download=false (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=false (fetch wikidata translations then continue)
0:00:00 DEB - argument: use_wikidata=true (use wikidata translations)
0:00:00 DEB - argument: wikidata_cache=data/sources/wikidata_names.json (wikidata cache file)
0:00:00 DEB - argument: lake_centerlines_path=data/sources/lake_centerline.shp.zip (lake_centerlines shapefile path)
0:00:00 DEB - argument: free_lake_centerlines_after_read=false (delete lake_centerlines input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: water_polygons_path=data/sources/water-polygons-split-3857.zip (water_polygons shapefile path)
0:00:00 DEB - argument: free_water_polygons_after_read=false (delete water_polygons input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: natural_earth_path=data/sources/natural_earth_vector.sqlite.zip (natural_earth sqlite db path)
0:00:00 DEB - argument: free_natural_earth_after_read=false (delete natural_earth input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: osm_path=data/sources/planet.osm.pbf (osm OSM input file path)
0:00:00 DEB - argument: free_osm_after_read=false (delete osm input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: mbtiles=data/output.mbtiles (mbtiles output file)
0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
0:00:00 DEB - argument: languages=am,ar,az,be,bg,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fi,fr,fy,ga,gd,he,hi,hr,hu,hy,id,is,it,ja,ja_kana,ja_rm,ja-Latn,ja-Hira,ka,kk,kn,ko,ko-Latn,ku,la,lb,lt,lv,mk,mt,ml,nl,no,oc,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,zh (languages to use)
0:00:00 DEB - argument: only_layers= (Include only certain layers)
0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
0:00:00 DEB - argument: building_merge_z13=true (building layer: merge nearby buildings at z13)
0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
0:00:00 DEB - argument: mbtiles_name=OpenMapTiles ('name' attribute for mbtiles metadata)
0:00:00 DEB - argument: mbtiles_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for mbtiles metadata)
0:00:00 DEB - argument: mbtiles_attribution=<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 mbtiles metadata)
0:00:00 DEB - argument: mbtiles_version=3.13.1 ('version' attribute for mbtiles metadata)
0:00:00 DEB - argument: mbtiles_type=baselayer ('type' attribute for mbtiles metadata)
0:00:00 DEB - argument: help=false (show arguments then exit)
0:00:00 INF - Building BasemapProfile profile into data/output.mbtiles in these phases:
0:00:00 INF - lake_centerlines: Process features in data/sources/lake_centerline.shp.zip
0:00:00 INF - water_polygons: Process features in data/sources/water-polygons-split-3857.zip
0:00:00 INF - natural_earth: Process features in data/sources/natural_earth_vector.sqlite.zip
0:00:00 INF - osm_pass1: Pre-process OpenStreetMap input (store node locations then relation members)
0:00:00 INF - osm_pass2: Process OpenStreetMap nodes, ways, then relations
0:00:00 INF - sort: Sort rendered features by tile ID
0:00:00 INF - mbtiles: Encode each tile and write to data/output.mbtiles
0:00:00 INF - no wikidata translations found, run with --fetch-wikidata to download
0:00:00 DEB - ✓ 316G storage on /data (/dev/nvme1n1) requested for read phase disk, 878G available
0:00:00 DEB - - 78G used for temporary node location cache
0:00:00 DEB - - 10G used for temporary multipolygon geometry cache
0:00:00 DEB - - 228G used for temporary feature storage
0:00:00 DEB - ✓ 342G storage on /data (/dev/nvme1n1) requested for write phase disk, 878G available
0:00:00 DEB - - 228G used for temporary feature storage
0:00:00 DEB - - 114G used for mbtiles output
0:00:00 DEB - ✓ 88G storage on /data (/dev/nvme1n1) requested for read phase, 878G available
0:00:00 DEB - - 78G used for array node location cache (switch to sparsearray to reduce size)
0:00:00 DEB - - 10G used for multipolygon way geometries
0:00:00 INF - ⚠️️ 20G JVM heap requested for read phase, 21G available (increase JVM -Xmx setting)
0:00:00 INF - - 20G used for temporary profile storage
0:00:00 WAR - Planetiler will use ~88G memory-mapped files for node locations and multipolygon geometries but the OS only
has 11G available to cache pages, this may slow the import down. To speed up, run on a machine with more
memory or reduce the -Xmx setting.
0:00:00 INF - Using merge sort feature map, chunk size=2000mb max workers=16
0:00:01 INF - dataFileCache open start
0:00:01 INF [lake_centerlines] -
0:00:01 INF [lake_centerlines] - Starting...
0:00:03 INF [lake_centerlines] - read: [ 59k 100% 28k/s ] write: [ 0 0/s ] 0
cpus: 2.6 gc: 2% heap: 197M/21G direct: 237k postGC: 202M
read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/66k) -> write( -%)
0:00:03 INF [lake_centerlines] - Finished in 2s cpu:6s avg:2.6
0:00:03 INF [lake_centerlines] - read 1x(88% 2s)
0:00:03 INF [lake_centerlines] - process 15x(4% 0.1s wait:2s)
0:00:03 INF [lake_centerlines] - write 1x(0% 0s wait:2s)
0:00:03 INF [water_polygons] -
0:00:03 INF [water_polygons] - Starting...
0:00:13 INF [water_polygons] - read: [ 550 4% 54/s ] write: [ 2.5M 259k/s ] 2G
cpus: 15.7 gc: 3% heap: 2.6G/21G direct: 52M postGC: 1.6G
read(48%) -> (1k/1k) -> process(93% 90% 94% 92% 90% 94% 91% 90% 91% 90% 94% 94% 94% 89% 92%) -> (6.9k/66k) -> write( 6%)
0:00:24 INF [water_polygons] - read: [ 1.8k 13% 126/s ] write: [ 10M 742k/s ] 2G
cpus: 15.3 gc: 4% heap: 2.8G/21G direct: 52M postGC: 2.8G
read(26%) -> (959/1k) -> process(95% 95% 95% 95% 95% 95% 95% 96% 95% 96% 95% 96% 95% 96% 95%) -> (6.8k/66k) -> write(11%)
0:00:34 INF [water_polygons] - read: [ 2.9k 21% 116/s ] write: [ 17M 752k/s ] 2G
cpus: 15.2 gc: 4% heap: 4.5G/21G direct: 52M postGC: 3.9G
read(26%) -> (1k/1k) -> process(95% 95% 95% 96% 95% 95% 96% 95% 96% 96% 96% 96% 95% 96% 95%) -> (9.9k/66k) -> write(10%)
0:00:44 INF [water_polygons] - read: [ 4.2k 30% 130/s ] write: [ 25M 761k/s ] 3G
cpus: 15.2 gc: 5% heap: 5.6G/21G direct: 52M postGC: 5.2G
read(24%) -> (1k/1k) -> process(95% 95% 95% 95% 94% 95% 95% 95% 95% 94% 95% 95% 95% 95% 95%) -> (10k/66k) -> write(11%)
0:00:54 INF [water_polygons] - read: [ 5.7k 40% 148/s ] write: [ 34M 920k/s ] 3G
cpus: 15.2 gc: 5% heap: 6.5G/21G direct: 52M postGC: 6.5G
read(24%) -> (1k/1k) -> process(95% 94% 94% 95% 95% 94% 95% 95% 94% 95% 95% 94% 94% 95% 95%) -> (6.6k/66k) -> write(13%)
0:01:04 INF [water_polygons] - read: [ 8k 56% 231/s ] write: [ 76M 4.1M/s ] 5G
cpus: 13.1 gc: 2% heap: 7.3G/21G direct: 52M postGC: 6.7G
read( 1%) -> (1k/1k) -> process(80% 81% 80% 80% 81% 80% 80% 81% 97% 85% 81% 80% 80% 80% 84%) -> (61k/66k) -> write(50%)
0:01:14 INF [water_polygons] - read: [ 11k 81% 366/s ] write: [ 160M 8.3M/s ] 8.7G
cpus: 8.3 gc: 1% heap: 8G/21G direct: 52M postGC: 6.7G
read( 1%) -> (1k/1k) -> process(47% 48% 48% 48% 48% 47% 48% 47% 53% 47% 47% 48% 48% 48% 47%) -> (62k/66k) -> write(99%)
0:01:21 INF [water_polygons] - read: [ 14k 100% 364/s ] write: [ 222M 8.3M/s ] 10G
cpus: 8.1 gc: 1% heap: 7.5G/21G direct: 52M postGC: 6.7G
read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/66k) -> write( -%)
0:01:21 INF [water_polygons] - Finished in 1m18s cpu:17m22s gc:2s avg:13.4
0:01:21 INF [water_polygons] - read 1x(19% 15s wait:57s done:3s)
0:01:21 INF [water_polygons] - process 15x(82% 1m4s wait:11s)
0:01:21 INF [water_polygons] - write 1x(35% 27s sys:7s wait:50s)
0:01:21 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/natearth.sqlite
0:01:25 INF [natural_earth] -
0:01:25 INF [natural_earth] - Starting...
0:01:36 INF [natural_earth] - read: [ 331k 95% 33k/s ] write: [ 19k 1.8k/s ] 12G
cpus: 2.5 gc: 0% heap: 6.8G/21G direct: 52M postGC: 6.7G
read(99%) -> (0/1k) -> process( 6% 5% 5% 14% 6% 5% 5% 5% 6% 5% 5% 5% 5% 5% 5%) -> (9k/66k) -> write( 0%)
0:01:37 INF [natural_earth] - read: [ 349k 100% 22k/s ] write: [ 33k 18k/s ] 10G
cpus: 2.8 gc: 0% heap: 7.3G/21G direct: 52M postGC: 6.7G
read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%) -> (0/66k) -> write( -%)
0:01:37 INF [natural_earth] - Finished in 11s cpu:28s avg:2.5
0:01:37 INF [natural_earth] - read 1x(93% 10s sys:2s)
0:01:37 INF [natural_earth] - process 15x(6% 0.7s wait:10s)
0:01:37 INF [natural_earth] - write 1x(0% 0s wait:11s)
0:01:37 INF [osm_pass1] -
0:01:37 INF [osm_pass1] - Starting...
0:01:47 INF [osm_pass1] - nodes: [ 360M 36M/s ] 4.4G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.5k 159/s ]
cpus: 14.8 gc: 2% heap: 8G/21G direct: 2G postGC: 2.5G hppc: 972
read(18%) -> (30/46) -> process(94% 95% 95% 94% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%)
0:01:57 INF [osm_pass1] - nodes: [ 770M 41M/s ] 9.2G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.3k 177/s ]
cpus: 15 gc: 1% heap: 4.8G/21G direct: 2G postGC: 2.5G hppc: 972
read(18%) -> (29/46) -> process(98% 98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 99% 98% 98% 98%)
0:02:07 INF [osm_pass1] - nodes: [ 1.1B 42M/s ] 13G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.1k 174/s ]
cpus: 15 gc: 1% heap: 9.1G/21G direct: 2G postGC: 2.3G hppc: 972
read(16%) -> (31/46) -> process(98% 99% 98% 98% 98% 98% 98% 98% 98% 98% 99% 99% 98% 98% 98%)
0:02:17 INF [osm_pass1] - nodes: [ 1.6B 44M/s ] 17G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.7k 165/s ]
cpus: 15 gc: 1% heap: 2.6G/21G direct: 2G postGC: 2.5G hppc: 972
read(14%) -> (30/46) -> process(98% 98% 99% 98% 98% 98% 98% 98% 98% 99% 99% 98% 98% 98% 98%)
0:02:27 INF [osm_pass1] - nodes: [ 2B 44M/s ] 22G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.4k 163/s ]
cpus: 15 gc: 1% heap: 5.7G/21G direct: 2G postGC: 2.5G hppc: 972
read(13%) -> (31/46) -> process(99% 99% 98% 98% 99% 98% 98% 99% 98% 98% 98% 98% 99% 99% 99%)
0:02:37 INF [osm_pass1] - nodes: [ 2.5B 47M/s ] 27G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.8k 144/s ]
cpus: 15 gc: 1% heap: 2.7G/21G direct: 2G postGC: 2.5G hppc: 972
read(11%) -> (30/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:02:47 INF [osm_pass1] - nodes: [ 3B 48M/s ] 32G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 142/s ]
cpus: 15 gc: 1% heap: 6.7G/21G direct: 2G postGC: 2.3G hppc: 972
read(11%) -> (30/46) -> process(98% 98% 99% 98% 98% 98% 98% 99% 98% 99% 99% 98% 98% 98% 98%)
0:02:57 INF [osm_pass1] - nodes: [ 3.5B 48M/s ] 37G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 141/s ]
cpus: 15 gc: 1% heap: 5G/21G direct: 2G postGC: 2.5G hppc: 972
read(11%) -> (31/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:03:07 INF [osm_pass1] - nodes: [ 4B 49M/s ] 41G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 14k 139/s ]
cpus: 15 gc: 1% heap: 9.3G/21G direct: 2G postGC: 2.6G hppc: 972
read(10%) -> (31/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 99%)
0:03:17 INF [osm_pass1] - nodes: [ 4.5B 48M/s ] 46G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 139/s ]
cpus: 15 gc: 1% heap: 7G/21G direct: 2G postGC: 2.4G hppc: 972
read(11%) -> (30/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:03:27 INF [osm_pass1] - nodes: [ 4.9B 49M/s ] 51G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 16k 140/s ]
cpus: 15 gc: 1% heap: 6G/21G direct: 2G postGC: 2.4G hppc: 972
read(11%) -> (31/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:03:37 INF [osm_pass1] - nodes: [ 5.4B 49M/s ] 56G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 140/s ]
cpus: 15 gc: 1% heap: 5.5G/21G direct: 2G postGC: 2.4G hppc: 972
read(10%) -> (30/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98% 98%)
0:03:47 INF [osm_pass1] - nodes: [ 5.9B 50M/s ] 61G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 139/s ]
cpus: 15 gc: 1% heap: 7G/21G direct: 2G postGC: 2.5G hppc: 972
read(10%) -> (31/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:03:57 INF [osm_pass1] - nodes: [ 6.4B 49M/s ] 66G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 21k 137/s ]
cpus: 15 gc: 1% heap: 7G/21G direct: 2G postGC: 2.5G hppc: 972
read(10%) -> (30/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:04:07 INF [osm_pass1] - nodes: [ 6.9B 49M/s ] 71G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 138/s ]
cpus: 15 gc: 1% heap: 7.5G/21G direct: 2G postGC: 2.4G hppc: 972
read(10%) -> (31/46) -> process(98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:04:17 INF [osm_pass1] - nodes: [ 7.4B 50M/s ] 75G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 23k 137/s ]
cpus: 15 gc: 1% heap: 8.3G/21G direct: 2G postGC: 2.5G hppc: 972
read(10%) -> (31/46) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%)
0:04:22 INF [osm_pass1:process] - Finished nodes: 7,715,618,978 (46M/s) in 2m44s cpu:41m4s gc:2s avg:15
0:04:27 INF [osm_pass1] - nodes: [ 7.7B 23M/s ] 78G ways: [ 38M 3.8M/s ] rels: [ 0 0/s ] blocks: [ 25k 146/s ]
cpus: 14.9 gc: 2% heap: 6.6G/21G direct: 2G postGC: 2.4G hppc: 972
read(13%) -> (29/46) -> process(95% 96% 97% 97% 97% 97% 96% 97% 97% 96% 96% 97% 97% 96% 96%)
0:04:37 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 140M 10M/s ] rels: [ 0 0/s ] blocks: [ 27k 172/s ]
cpus: 15 gc: 4% heap: 6.1G/21G direct: 2G postGC: 2.5G hppc: 972
read(16%) -> (31/46) -> process(96% 96% 96% 95% 96% 95% 96% 95% 95% 96% 96% 95% 96% 96% 96%)
0:04:47 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 250M 10M/s ] rels: [ 0 0/s ] blocks: [ 28k 173/s ]
cpus: 15 gc: 4% heap: 2.9G/21G direct: 2G postGC: 2.5G hppc: 972
read(14%) -> (31/46) -> process(95% 95% 96% 95% 95% 95% 95% 95% 95% 95% 95% 95% 96% 95% 95%)
0:04:57 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 370M 12M/s ] rels: [ 0 0/s ] blocks: [ 30k 176/s ]
cpus: 15 gc: 4% heap: 4.8G/21G direct: 2G postGC: 2.5G hppc: 972
read(12%) -> (30/46) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%)
0:05:07 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 505M 13M/s ] rels: [ 0 0/s ] blocks: [ 32k 183/s ]
cpus: 14.9 gc: 5% heap: 4.6G/21G direct: 2G postGC: 2.5G hppc: 972
read(10%) -> (31/46) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%)
0:05:17 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 635M 13M/s ] rels: [ 0 0/s ] blocks: [ 34k 181/s ]
cpus: 15 gc: 5% heap: 5G/21G direct: 2G postGC: 2.5G hppc: 972
read(10%) -> (31/46) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%)
0:05:27 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 769M 13M/s ] rels: [ 0 0/s ] blocks: [ 36k 184/s ]
cpus: 15 gc: 5% heap: 6.7G/21G direct: 2G postGC: 2.4G hppc: 972
read(10%) -> (31/46) -> process(95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95% 95%)
0:05:34 INF [osm_pass1:process] - Finished ways: 862,758,280 (11M/s) in 1m13s cpu:18m9s gc:3s avg:15
0:05:37 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 862M 9.3M/s ] rels: [ 1.1M 115k/s ] blocks: [ 37k 132/s ]
cpus: 13.9 gc: 3% heap: 7.4G/21G direct: 2G postGC: 2.4G hppc: 240M
read( 7%) -> (31/46) -> process(85% 86% 85% 86% 87% 86% 86% 86% 87% 88% 86% 86% 86% 87% 84%)
0:05:47 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 862M 0/s ] rels: [ 9.5M 837k/s ] blocks: [ 37k 24/s ]
cpus: 6.9 gc: 5% heap: 7.3G/21G direct: 2G postGC: 5G hppc: 731M
read( -%) -> (3/46) -> process(35% 33% 34% 34% 34% 32% 33% 32% 33% 36% 36% 34% 35% 34% 35%)
0:05:48 INF [osm_pass1:process] - Finished relations: 9,948,180 (752k/s) in 13s cpu:1m39s avg:7.5
0:05:48 INF [osm_pass1] - nodes: [ 7.7B 0/s ] 78G ways: [ 862M 0/s ] rels: [ 9.9M 600k/s ] blocks: [ 37k 26/s ]
cpus: 4.3 gc: 7% heap: 5.5G/21G direct: 454M postGC: 5.5G hppc: 1G
read( -%) -> (0/46) -> process( -% -% -% -% -% -% -% -% -% -% -% -% -% -% -%)
0:05:48 DEB [osm_pass1] - Processed 37,622 blocks:
0:05:48 DEB [osm_pass1] - nodes: 7,715,618,978 (46M/s) in 2m44s cpu:41m4s gc:2s avg:15
0:05:48 DEB [osm_pass1] - ways: 862,758,280 (11M/s) in 1m13s cpu:18m9s gc:3s avg:15
0:05:48 DEB [osm_pass1] - relations: 9,948,180 (752k/s) in 13s cpu:1m39s avg:7.5
0:05:48 INF [osm_pass1] - Finished in 4m11s cpu:1h57s gc:6s avg:14.6
0:05:48 INF [osm_pass1] - read 1x(12% 29s sys:23s wait:2m58s done:2s)
0:05:48 INF [osm_pass1] - process 15x(94% 3m56s sys:2s block:8s)
0:05:48 INF [osm_pass2] -
0:05:48 INF [osm_pass2] - Starting...
0:05:58 INF [osm_pass2] - nodes: [ 175M 2% 17M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 236M 1.4M/s ] 13G blocks: [ 813 2% 81/s ]
cpus: 14.7 gc: 3% heap: 8G/21G direct: 55M postGC: 7.4G relInfo: 1G mpGeoms: 277
read( 9%) -> (11/26) -> process(77% 76% 80% 76% 79% 78% 81% 79% 79% 80% 80% 82% 80% 82% 77%) -> (8.4k/66k) -> write(34%)
0:06:08 INF [osm_pass2] - nodes: [ 313M 4% 13M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 258M 2.1M/s ] 16G blocks: [ 1.4k 4% 59/s ]
cpus: 14.6 gc: 3% heap: 4.6G/21G direct: 55M postGC: 3.3G relInfo: 1G mpGeoms: 277
read( 8%) -> (10/26) -> process(82% 83% 84% 83% 82% 83% 83% 83% 81% 83% 82% 81% 84% 82% 83%) -> (10k/66k) -> write(57%)
0:06:18 INF [osm_pass2] - nodes: [ 558M 7% 24M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 273M 1.4M/s ] 17G blocks: [ 2.4k 6% 100/s ]
cpus: 15.6 gc: 1% heap: 6.6G/21G direct: 55M postGC: 3.3G relInfo: 1G mpGeoms: 277
read(11%) -> (11/26) -> process(93% 97% 97% 96% 96% 96% 96% 94% 96% 96% 96% 95% 95% 94% 97%) -> (8.2k/66k) -> write(38%)
0:06:28 INF [osm_pass2] - nodes: [ 819M 11% 26M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 283M 1M/s ] 17G blocks: [ 3.5k 10% 118/s ]
cpus: 15.5 gc: 1% heap: 12G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read(13%) -> (11/26) -> process(98% 97% 98% 97% 98% 98% 98% 98% 97% 97% 97% 98% 98% 97% 97%) -> (8.4k/66k) -> write(27%)
0:06:38 INF [osm_pass2] - nodes: [ 1B 13% 21M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 296M 1.2M/s ] 19G blocks: [ 4.4k 12% 87/s ]
cpus: 15.4 gc: 1% heap: 4.8G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 9%) -> (11/26) -> process(98% 98% 97% 97% 97% 98% 95% 98% 98% 97% 97% 98% 98% 98% 97%) -> (15k/66k) -> write(33%)
0:06:48 INF [osm_pass2] - nodes: [ 1.2B 17% 26M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 305M 917k/s ] 20G blocks: [ 5.5k 15% 104/s ]
cpus: 15.3 gc: 1% heap: 5.2G/21G direct: 55M postGC: 3.3G relInfo: 1G mpGeoms: 277
read(10%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 99% 98% 98% 98% 98% 98% 98% 98% 98%) -> (8.1k/66k) -> write(25%)
0:06:58 INF [osm_pass2] - nodes: [ 1.5B 20% 27M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 316M 1M/s ] 21G blocks: [ 6.5k 17% 104/s ]
cpus: 15.4 gc: 1% heap: 4.2G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 9%) -> (11/26) -> process(98% 97% 98% 98% 98% 98% 97% 98% 98% 98% 98% 98% 97% 98% 98%) -> (7.9k/66k) -> write(27%)
0:07:08 INF [osm_pass2] - nodes: [ 1.8B 24% 27M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 327M 1.1M/s ] 23G blocks: [ 7.5k 20% 98/s ]
cpus: 15.4 gc: 1% heap: 6G/21G direct: 55M postGC: 3.3G relInfo: 1G mpGeoms: 277
read( 9%) -> (11/26) -> process(97% 98% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (11k/66k) -> write(30%)
0:07:18 INF [osm_pass2] - nodes: [ 2.1B 27% 26M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 342M 1.4M/s ] 24G blocks: [ 8.5k 23% 97/s ]
cpus: 15.4 gc: 1% heap: 3.8G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 8%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 97% 99% 98% 98% 98%) -> (7.3k/66k) -> write(34%)
0:07:28 INF [osm_pass2] - nodes: [ 2.3B 31% 26M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 358M 1.6M/s ] 25G blocks: [ 9.3k 25% 82/s ]
cpus: 15.4 gc: 1% heap: 4.8G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (10/26) -> process(97% 97% 97% 98% 98% 96% 98% 98% 98% 97% 98% 98% 98% 98% 98%) -> (7.8k/66k) -> write(37%)
0:07:38 INF [osm_pass2] - nodes: [ 2.6B 35% 30M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 368M 945k/s ] 25G blocks: [ 10k 27% 89/s ]
cpus: 15.3 gc: 1% heap: 10G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98% 98% 97% 98% 98%) -> (9.6k/66k) -> write(24%)
0:07:48 INF [osm_pass2] - nodes: [ 2.9B 39% 29M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 377M 949k/s ] 26G blocks: [ 11k 30% 87/s ]
cpus: 15.3 gc: 1% heap: 11G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 97% 98% 99% 98% 98% 98% 98% 98% 98%) -> (7.8k/66k) -> write(25%)
0:07:58 INF [osm_pass2] - nodes: [ 3.2B 42% 30M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 385M 803k/s ] 28G blocks: [ 12k 32% 87/s ]
cpus: 15.3 gc: 1% heap: 6.3G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98% 98%) -> (6.5k/66k) -> write(22%)
0:08:08 INF [osm_pass2] - nodes: [ 3.5B 46% 28M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 396M 1M/s ] 29G blocks: [ 12k 34% 80/s ]
cpus: 15.4 gc: 1% heap: 11G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 97% 97% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 97% 98%) -> (12k/66k) -> write(28%)
0:08:18 INF [osm_pass2] - nodes: [ 3.8B 50% 29M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 405M 879k/s ] 29G blocks: [ 13k 36% 84/s ]
cpus: 15.3 gc: 1% heap: 5.7G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (6.7k/66k) -> write(23%)
0:08:28 INF [osm_pass2] - nodes: [ 4.1B 54% 29M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 413M 843k/s ] 30G blocks: [ 14k 39% 83/s ]
cpus: 15.3 gc: 1% heap: 5.5G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (24k/66k) -> write(23%)
0:08:38 INF [osm_pass2] - nodes: [ 4.4B 58% 29M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 423M 990k/s ] 31G blocks: [ 15k 41% 84/s ]
cpus: 15.3 gc: 1% heap: 9.6G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (7.9k/66k) -> write(25%)
0:08:48 INF [osm_pass2] - nodes: [ 4.7B 62% 31M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 431M 804k/s ] 31G blocks: [ 16k 43% 87/s ]
cpus: 15.2 gc: 1% heap: 7.2G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (10/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.3k/66k) -> write(20%)
0:08:58 INF [osm_pass2] - nodes: [ 5B 66% 30M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 439M 781k/s ] 33G blocks: [ 17k 45% 86/s ]
cpus: 15.2 gc: 1% heap: 4.8G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (5.9k/66k) -> write(21%)
0:09:08 INF [osm_pass2] - nodes: [ 5.3B 70% 31M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 446M 751k/s ] 33G blocks: [ 17k 48% 88/s ]
cpus: 15.2 gc: 1% heap: 4.5G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.4k/66k) -> write(19%)
0:09:18 INF [osm_pass2] - nodes: [ 5.6B 74% 29M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 456M 1M/s ] 34G blocks: [ 18k 50% 83/s ]
cpus: 15.3 gc: 1% heap: 8.4G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (7.9k/66k) -> write(26%)
0:09:28 INF [osm_pass2] - nodes: [ 5.9B 78% 31M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 466M 946k/s ] 35G blocks: [ 19k 52% 86/s ]
cpus: 15.2 gc: 1% heap: 9.4G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (9.5k/66k) -> write(25%)
0:09:38 INF [osm_pass2] - nodes: [ 6.3B 82% 31M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 474M 782k/s ] 35G blocks: [ 20k 55% 87/s ]
cpus: 15.2 gc: 1% heap: 9.4G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (11k/66k) -> write(20%)
0:09:48 INF [osm_pass2] - nodes: [ 6.6B 86% 30M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 483M 919k/s ] 37G blocks: [ 21k 57% 85/s ]
cpus: 15.2 gc: 1% heap: 8.3G/21G direct: 55M postGC: 3.4G relInfo: 1G mpGeoms: 277
read( 7%) -> (10/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (10k/66k) -> write(24%)
0:09:58 INF [osm_pass2] - nodes: [ 6.8B 89% 27M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 494M 1M/s ] 38G blocks: [ 22k 59% 77/s ]
cpus: 15.2 gc: 1% heap: 6.2G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 6%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (13k/66k) -> write(26%)
0:10:08 INF [osm_pass2] - nodes: [ 7.1B 93% 28M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 939k/s ] 38G blocks: [ 22k 61% 79/s ]
cpus: 15.2 gc: 1% heap: 5.8G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 6%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (5.9k/66k) -> write(23%)
0:10:18 INF [osm_pass2] - nodes: [ 7.4B 97% 31M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 511M 742k/s ] 39G blocks: [ 23k 63% 85/s ]
cpus: 15.2 gc: 1% heap: 6.3G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 6%) -> (11/26) -> process(98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98% 98%) -> (10k/66k) -> write(20%)
0:10:25 DEB [osm_pass2:process] - Sorting long long multimap...
0:10:25 INF [osm_pass2:process] - Finished nodes: 7,715,618,978 (27M/s) in 4m38s cpu:1h10m39s gc:4s avg:15.3
0:10:28 INF [osm_pass2] - nodes: [ 7.7B 100% 22M/s ] 78G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 518M 677k/s ] 39G blocks: [ 24k 65% 62/s ]
cpus: 12.2 gc: 1% heap: 6.9G/21G direct: 55M postGC: 3.5G relInfo: 1G mpGeoms: 277
read( 5%) -> (11/26) -> process(74% 74% 74% 75% 74% 74% 73% 73% 74% 73% 74% 74% 74% 98% 74%) -> (5.9k/66k) -> write(17%)
0:10:31 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:12s avg:2.2
0:10:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 401k 0% 40k/s ] rels: [ 0 0% 0/s ] features: [ 520M 275k/s ] 40G blocks: [ 24k 65% <1/s ]
cpus: 4.8 gc: 1% heap: 6.3G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 20M
read( 0%) -> (11/26) -> process(26% 25% 29% 25% 26% 27% 25% 28% 26% 26% 25% 27% 25% 56% 25%) -> (8.3k/66k) -> write( 8%)
0:10:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 1.4M 0% 109k/s ] rels: [ 0 0% 0/s ] features: [ 528M 722k/s ] 40G blocks: [ 24k 65% 2/s ]
cpus: 7.4 gc: 1% heap: 7.8G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 30M
read( 0%) -> (11/26) -> process(46% 50% 45% 45% 52% 46% 41% 45% 44% 46% 44% 44% 43% 48% 49%) -> (7k/66k) -> write(20%)
0:10:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 2.8M 0% 138k/s ] rels: [ 0 0% 0/s ] features: [ 537M 924k/s ] 42G blocks: [ 24k 65% 2/s ]
cpus: 8.3 gc: 2% heap: 8.9G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 36M
read( 0%) -> (11/26) -> process(50% 57% 47% 55% 49% 57% 43% 49% 58% 48% 53% 47% 51% 54% 49%) -> (7.6k/66k) -> write(25%)
0:11:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 4.2M 0% 140k/s ] rels: [ 0 0% 0/s ] features: [ 546M 897k/s ] 42G blocks: [ 24k 65% 3/s ]
cpus: 8.6 gc: 2% heap: 4.3G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 46M
read( 0%) -> (11/26) -> process(55% 57% 52% 55% 55% 53% 53% 50% 64% 56% 48% 55% 47% 53% 53%) -> (9.2k/66k) -> write(25%)
0:11:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 5.9M 1% 162k/s ] rels: [ 0 0% 0/s ] features: [ 556M 1M/s ] 43G blocks: [ 24k 65% 3/s ]
cpus: 9.5 gc: 2% heap: 6.9G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 65M
read( 0%) -> (11/26) -> process(61% 55% 57% 63% 61% 61% 59% 62% 65% 58% 56% 58% 56% 58% 59%) -> (8.7k/66k) -> write(30%)
0:11:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 7.9M 1% 205k/s ] rels: [ 0 0% 0/s ] features: [ 568M 1.1M/s ] 44G blocks: [ 24k 65% 4/s ]
cpus: 10.5 gc: 3% heap: 9.3G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 84M
read( 0%) -> (11/26) -> process(61% 67% 69% 69% 70% 69% 61% 68% 62% 58% 68% 64% 65% 62% 67%) -> (9.3k/66k) -> write(33%)
0:11:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 9.6M 1% 169k/s ] rels: [ 0 0% 0/s ] features: [ 579M 1M/s ] 46G blocks: [ 24k 66% 4/s ]
cpus: 9.7 gc: 2% heap: 5G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 89M
read( 0%) -> (11/26) -> process(64% 61% 63% 55% 61% 59% 64% 63% 59% 60% 60% 57% 58% 64% 63%) -> (9.2k/66k) -> write(30%)
0:11:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 11M 1% 182k/s ] rels: [ 0 0% 0/s ] features: [ 589M 1M/s ] 47G blocks: [ 24k 66% 3/s ]
cpus: 9.6 gc: 2% heap: 9G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 93M
read( 0%) -> (11/26) -> process(61% 60% 58% 61% 65% 64% 59% 62% 62% 55% 59% 60% 60% 55% 60%) -> (7k/66k) -> write(30%)
0:11:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 13M 2% 186k/s ] rels: [ 0 0% 0/s ] features: [ 600M 1M/s ] 47G blocks: [ 24k 66% 4/s ]
cpus: 10 gc: 2% heap: 6.8G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 124M
read( 1%) -> (11/26) -> process(60% 66% 63% 65% 65% 64% 64% 65% 60% 62% 60% 57% 60% 61% 63%) -> (9.6k/66k) -> write(30%)
0:12:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 14M 2% 80k/s ] rels: [ 0 0% 0/s ] features: [ 605M 517k/s ] 48G blocks: [ 24k 66% 1/s ]
cpus: 6.9 gc: 1% heap: 11G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 157M
read( 0%) -> (11/26) -> process(42% 47% 42% 46% 44% 43% 44% 43% 44% 45% 42% 44% 44% 42% 43%) -> (6.2k/66k) -> write(15%)
0:12:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 15M 2% 90k/s ] rels: [ 0 0% 0/s ] features: [ 611M 563k/s ] 48G blocks: [ 24k 66% 1/s ]
cpus: 7.5 gc: 1% heap: 11G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 178M
read( 0%) -> (11/26) -> process(48% 49% 45% 46% 50% 50% 49% 46% 46% 46% 47% 45% 48% 49% 56%) -> (7.6k/66k) -> write(16%)
0:12:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 15M 2% 89k/s ] rels: [ 0 0% 0/s ] features: [ 616M 523k/s ] 49G blocks: [ 24k 66% 1/s ]
cpus: 7.6 gc: 2% heap: 3.7G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 200M
read( 0%) -> (11/26) -> process(44% 45% 45% 44% 50% 51% 46% 45% 46% 47% 48% 46% 46% 46% 68%) -> (5.7k/66k) -> write(16%)
0:12:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 16M 2% 101k/s ] rels: [ 0 0% 0/s ] features: [ 622M 597k/s ] 49G blocks: [ 24k 66% 2/s ]
cpus: 8 gc: 1% heap: 7.2G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 225M
read( 0%) -> (11/26) -> process(54% 49% 49% 51% 51% 54% 50% 50% 49% 50% 50% 52% 51% 50% 53%) -> (6.8k/66k) -> write(17%)
0:12:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 18M 2% 117k/s ] rels: [ 0 0% 0/s ] features: [ 628M 595k/s ] 49G blocks: [ 24k 66% 2/s ]
cpus: 8.8 gc: 2% heap: 9.9G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 246M
read( 0%) -> (11/26) -> process(67% 57% 51% 57% 50% 50% 54% 59% 58% 61% 53% 50% 60% 52% 60%) -> (9.7k/66k) -> write(17%)
0:12:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 19M 2% 109k/s ] rels: [ 0 0% 0/s ] features: [ 634M 610k/s ] 51G blocks: [ 24k 66% 2/s ]
cpus: 8.7 gc: 2% heap: 10G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 267M
read( 0%) -> (11/26) -> process(52% 50% 54% 56% 53% 55% 54% 57% 58% 54% 56% 55% 57% 54% 59%) -> (4.6k/66k) -> write(18%)
0:13:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 20M 2% 110k/s ] rels: [ 0 0% 0/s ] features: [ 640M 610k/s ] 51G blocks: [ 24k 66% 2/s ]
cpus: 8.4 gc: 2% heap: 8.4G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 298M
read( 0%) -> (11/26) -> process(51% 51% 53% 50% 54% 51% 57% 60% 55% 50% 51% 61% 52% 50% 51%) -> (8.4k/66k) -> write(18%)
0:13:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 21M 2% 118k/s ] rels: [ 0 0% 0/s ] features: [ 646M 597k/s ] 52G blocks: [ 24k 66% 2/s ]
cpus: 9.1 gc: 2% heap: 4.4G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 345M
read( 0%) -> (11/26) -> process(52% 56% 55% 53% 61% 54% 55% 54% 52% 69% 65% 59% 53% 57% 67%) -> (5.8k/66k) -> write(18%)
0:13:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 23M 3% 149k/s ] rels: [ 0 0% 0/s ] features: [ 652M 591k/s ] 52G blocks: [ 24k 66% 2/s ]
cpus: 9.6 gc: 2% heap: 4G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 360M
read( 0%) -> (11/26) -> process(54% 66% 67% 67% 49% 52% 50% 70% 60% 63% 67% 50% 67% 68% 64%) -> (8.1k/66k) -> write(17%)
0:13:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 24M 3% 121k/s ] rels: [ 0 0% 0/s ] features: [ 658M 611k/s ] 53G blocks: [ 24k 66% 2/s ]
cpus: 8.7 gc: 2% heap: 5.3G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 394M
read( 0%) -> (11/26) -> process(57% 55% 54% 57% 52% 55% 55% 55% 51% 56% 54% 57% 53% 54% 58%) -> (7.3k/66k) -> write(18%)
0:13:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 25M 3% 126k/s ] rels: [ 0 0% 0/s ] features: [ 664M 561k/s ] 53G blocks: [ 25k 67% 2/s ]
cpus: 9.3 gc: 2% heap: 11G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 426M
read( 0%) -> (11/26) -> process(59% 63% 59% 57% 63% 59% 62% 60% 55% 60% 56% 58% 61% 60% 60%) -> (8.3k/66k) -> write(17%)
0:13:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 26M 3% 79k/s ] rels: [ 0 0% 0/s ] features: [ 668M 373k/s ] 53G blocks: [ 25k 67% 1/s ]
cpus: 10.9 gc: 2% heap: 8.1G/21G direct: 56M postGC: 3.6G relInfo: 970M mpGeoms: 464M
read( 0%) -> (11/26) -> process(69% 70% 77% 68% 65% 75% 66% 69% 69% 68% 73% 70% 73% 68% 72%) -> (6.8k/66k) -> write(12%)
0:14:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 26M 3% 63k/s ] rels: [ 0 0% 0/s ] features: [ 671M 318k/s ] 55G blocks: [ 25k 67% 1/s ]
cpus: 11.7 gc: 2% heap: 9.9G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 494M
read( 0%) -> (11/26) -> process(70% 71% 80% 80% 61% 80% 74% 83% 85% 62% 87% 79% 80% 78% 69%) -> (6k/66k) -> write(11%)
0:14:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 28M 3% 123k/s ] rels: [ 0 0% 0/s ] features: [ 677M 566k/s ] 55G blocks: [ 25k 67% 2/s ]
cpus: 9.2 gc: 2% heap: 7.5G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 538M
read( 0%) -> (11/26) -> process(58% 57% 59% 57% 59% 53% 58% 58% 60% 61% 63% 58% 56% 64% 58%) -> (8k/66k) -> write(17%)
0:14:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 29M 3% 141k/s ] rels: [ 0 0% 0/s ] features: [ 683M 596k/s ] 55G blocks: [ 25k 67% 2/s ]
cpus: 10.3 gc: 3% heap: 5.9G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 580M
read( 0%) -> (11/26) -> process(61% 61% 89% 56% 65% 63% 58% 60% 66% 83% 63% 70% 60% 62% 66%) -> (6.8k/66k) -> write(18%)
0:14:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 30M 4% 131k/s ] rels: [ 0 0% 0/s ] features: [ 688M 569k/s ] 56G blocks: [ 25k 67% 2/s ]
cpus: 9.4 gc: 2% heap: 5.8G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 607M
read( 0%) -> (11/26) -> process(56% 58% 62% 58% 56% 59% 57% 62% 63% 64% 58% 60% 57% 64% 59%) -> (7.3k/66k) -> write(17%)
0:14:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 32M 4% 148k/s ] rels: [ 0 0% 0/s ] features: [ 694M 597k/s ] 56G blocks: [ 25k 67% 2/s ]
cpus: 10 gc: 2% heap: 11G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 636M
read( 0%) -> (11/26) -> process(58% 63% 65% 68% 67% 60% 63% 62% 68% 60% 61% 60% 66% 67% 63%) -> (7.1k/66k) -> write(17%)
0:14:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 33M 4% 151k/s ] rels: [ 0 0% 0/s ] features: [ 700M 573k/s ] 57G blocks: [ 25k 67% 2/s ]
cpus: 9.9 gc: 3% heap: 8.4G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 657M
read( 0%) -> (11/26) -> process(57% 62% 70% 63% 62% 61% 69% 70% 59% 60% 65% 59% 61% 58% 62%) -> (7.7k/66k) -> write(17%)
0:15:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 35M 4% 152k/s ] rels: [ 0 0% 0/s ] features: [ 706M 570k/s ] 57G blocks: [ 25k 67% 2/s ]
cpus: 10.6 gc: 2% heap: 8.4G/21G direct: 56M postGC: 3.7G relInfo: 970M mpGeoms: 692M
read( 0%) -> (11/26) -> process(68% 63% 65% 69% 71% 67% 69% 72% 72% 60% 65% 70% 65% 66% 70%) -> (6.5k/66k) -> write(17%)
0:15:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 36M 4% 148k/s ] rels: [ 0 0% 0/s ] features: [ 711M 559k/s ] 57G blocks: [ 25k 67% 3/s ]
cpus: 11.2 gc: 2% heap: 9G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 714M
read( 1%) -> (11/26) -> process(69% 75% 69% 74% 63% 73% 77% 71% 69% 70% 76% 72% 68% 69% 75%) -> (9.1k/66k) -> write(17%)
0:15:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 39M 5% 225k/s ] rels: [ 0 0% 0/s ] features: [ 717M 612k/s ] 58G blocks: [ 25k 67% 3/s ]
cpus: 11.7 gc: 3% heap: 8.4G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 738M
read( 0%) -> (11/26) -> process(70% 77% 64% 80% 77% 74% 79% 69% 77% 75% 77% 73% 71% 73% 78%) -> (7.9k/66k) -> write(18%)
0:15:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 41M 5% 247k/s ] rels: [ 0 0% 0/s ] features: [ 724M 642k/s ] 58G blocks: [ 25k 67% 3/s ]
cpus: 12.4 gc: 4% heap: 5.5G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 753M
read( 1%) -> (11/26) -> process(77% 77% 79% 80% 79% 80% 77% 78% 81% 80% 77% 78% 78% 79% 78%) -> (5.9k/66k) -> write(18%)
0:15:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 43M 5% 224k/s ] rels: [ 0 0% 0/s ] features: [ 730M 628k/s ] 58G blocks: [ 25k 67% 3/s ]
cpus: 11.8 gc: 3% heap: 4.4G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 772M
read( 0%) -> (11/26) -> process(70% 74% 75% 69% 74% 78% 76% 77% 75% 78% 75% 78% 76% 77% 73%) -> (6k/66k) -> write(18%)
0:15:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 46M 5% 210k/s ] rels: [ 0 0% 0/s ] features: [ 736M 603k/s ] 59G blocks: [ 25k 68% 3/s ]
cpus: 11.6 gc: 3% heap: 8.8G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 795M
read( 1%) -> (11/26) -> process(69% 74% 74% 72% 75% 73% 78% 75% 76% 80% 74% 69% 73% 74% 73%) -> (8.6k/66k) -> write(18%)
0:16:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 48M 6% 218k/s ] rels: [ 0 0% 0/s ] features: [ 742M 599k/s ] 59G blocks: [ 25k 68% 3/s ]
cpus: 12.1 gc: 3% heap: 8.4G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 819M
read( 1%) -> (11/26) -> process(80% 76% 75% 75% 74% 76% 73% 79% 77% 81% 74% 81% 76% 78% 79%) -> (8k/66k) -> write(17%)
0:16:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 50M 6% 211k/s ] rels: [ 0 0% 0/s ] features: [ 748M 592k/s ] 59G blocks: [ 25k 68% 3/s ]
cpus: 11.7 gc: 3% heap: 12G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 847M
read( 1%) -> (11/26) -> process(77% 73% 77% 76% 73% 74% 78% 76% 75% 73% 74% 74% 73% 72% 75%) -> (8.6k/66k) -> write(17%)
0:16:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 52M 6% 193k/s ] rels: [ 0 0% 0/s ] features: [ 754M 565k/s ] 60G blocks: [ 25k 68% 3/s ]
cpus: 11.3 gc: 3% heap: 4G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 872M
read( 0%) -> (11/26) -> process(73% 70% 69% 69% 74% 72% 70% 74% 75% 69% 69% 73% 69% 70% 70%) -> (8.2k/66k) -> write(17%)
0:16:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 54M 6% 198k/s ] rels: [ 0 0% 0/s ] features: [ 760M 596k/s ] 60G blocks: [ 25k 68% 3/s ]
cpus: 11.5 gc: 3% heap: 5.1G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 893M
read( 1%) -> (11/26) -> process(73% 69% 71% 74% 74% 74% 73% 70% 74% 76% 70% 73% 77% 73% 77%) -> (9.2k/66k) -> write(17%)
0:16:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 56M 6% 177k/s ] rels: [ 0 0% 0/s ] features: [ 765M 535k/s ] 62G blocks: [ 25k 68% 2/s ]
cpus: 12 gc: 3% heap: 9.8G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 942M
read( 0%) -> (11/26) -> process(76% 74% 80% 77% 78% 79% 75% 78% 74% 76% 76% 75% 80% 78% 74%) -> (7.5k/66k) -> write(16%)
0:16:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 57M 7% 122k/s ] rels: [ 0 0% 0/s ] features: [ 769M 407k/s ] 62G blocks: [ 25k 68% 2/s ]
cpus: 12.5 gc: 3% heap: 4.5G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 967M
read( 0%) -> (11/26) -> process(78% 83% 84% 79% 82% 76% 81% 76% 83% 83% 79% 74% 78% 81% 82%) -> (8.4k/66k) -> write(13%)
0:17:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 58M 7% 167k/s ] rels: [ 0 0% 0/s ] features: [ 775M 529k/s ] 62G blocks: [ 25k 68% 3/s ]
cpus: 11.7 gc: 3% heap: 4.8G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 984M
read( 0%) -> (11/26) -> process(74% 75% 74% 72% 83% 76% 69% 75% 77% 74% 71% 72% 72% 84% 75%) -> (7.3k/66k) -> write(15%)
0:17:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 60M 7% 197k/s ] rels: [ 0 0% 0/s ] features: [ 780M 581k/s ] 63G blocks: [ 25k 68% 3/s ]
cpus: 11.6 gc: 3% heap: 6G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1G
read( 1%) -> (11/26) -> process(73% 74% 75% 78% 71% 72% 76% 73% 74% 73% 73% 73% 78% 73% 75%) -> (6.8k/66k) -> write(17%)
0:17:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 62M 7% 151k/s ] rels: [ 0 0% 0/s ] features: [ 785M 487k/s ] 63G blocks: [ 25k 68% 3/s ]
cpus: 11.5 gc: 3% heap: 4.1G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1G
read( 0%) -> (11/26) -> process(73% 75% 75% 73% 75% 75% 73% 76% 75% 76% 72% 73% 71% 71% 72%) -> (7.3k/66k) -> write(14%)
0:17:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 64M 7% 172k/s ] rels: [ 0 0% 0/s ] features: [ 791M 556k/s ] 63G blocks: [ 25k 68% 3/s ]
cpus: 11.5 gc: 3% heap: 3.7G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1G
read( 1%) -> (11/26) -> process(68% 72% 73% 71% 73% 74% 75% 77% 72% 72% 73% 72% 78% 78% 69%) -> (7.5k/66k) -> write(16%)
0:17:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 65M 8% 180k/s ] rels: [ 0 0% 0/s ] features: [ 797M 577k/s ] 64G blocks: [ 25k 69% 3/s ]
cpus: 11.1 gc: 2% heap: 8.7G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1G
read( 0%) -> (11/26) -> process(69% 72% 71% 71% 70% 73% 70% 73% 71% 70% 72% 73% 70% 70% 70%) -> (7.1k/66k) -> write(17%)
0:17:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 67M 8% 187k/s ] rels: [ 0 0% 0/s ] features: [ 802M 562k/s ] 64G blocks: [ 25k 69% 3/s ]
cpus: 11.2 gc: 3% heap: 7.3G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.1G
read( 1%) -> (11/26) -> process(72% 71% 69% 71% 72% 72% 70% 67% 69% 73% 69% 76% 75% 71% 73%) -> (9.5k/66k) -> write(16%)
0:18:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 69M 8% 181k/s ] rels: [ 0 0% 0/s ] features: [ 808M 577k/s ] 64G blocks: [ 25k 69% 3/s ]
cpus: 11.6 gc: 3% heap: 8.1G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.1G
read( 1%) -> (11/26) -> process(73% 71% 72% 75% 76% 74% 73% 76% 72% 71% 74% 79% 74% 75% 74%) -> (6k/66k) -> write(17%)
0:18:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 71M 8% 174k/s ] rels: [ 0 0% 0/s ] features: [ 814M 556k/s ] 65G blocks: [ 25k 69% 3/s ]
cpus: 11.6 gc: 3% heap: 8.3G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.1G
read( 0%) -> (11/26) -> process(75% 69% 73% 74% 77% 72% 75% 74% 75% 73% 73% 79% 75% 75% 68%) -> (8.5k/66k) -> write(17%)
0:18:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 73M 8% 171k/s ] rels: [ 0 0% 0/s ] features: [ 819M 573k/s ] 65G blocks: [ 25k 69% 3/s ]
cpus: 11.1 gc: 3% heap: 4.7G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.2G
read( 0%) -> (11/26) -> process(71% 69% 72% 68% 68% 69% 67% 71% 68% 69% 72% 74% 73% 72% 74%) -> (8.3k/66k) -> write(17%)
0:18:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 75M 9% 213k/s ] rels: [ 0 0% 0/s ] features: [ 826M 645k/s ] 65G blocks: [ 25k 69% 3/s ]
cpus: 11.3 gc: 3% heap: 4.4G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.2G
read( 0%) -> (11/26) -> process(75% 72% 72% 72% 69% 74% 70% 71% 72% 76% 69% 75% 71% 70% 68%) -> (8.5k/66k) -> write(18%)
0:18:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 77M 9% 201k/s ] rels: [ 0 0% 0/s ] features: [ 832M 629k/s ] 66G blocks: [ 26k 69% 3/s ]
cpus: 10.9 gc: 2% heap: 10G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 1.2G
read( 1%) -> (11/26) -> process(72% 66% 68% 70% 73% 71% 73% 69% 66% 69% 65% 74% 70% 65% 67%) -> (9.6k/66k) -> write(18%)
0:18:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 79M 9% 211k/s ] rels: [ 0 0% 0/s ] features: [ 839M 683k/s ] 66G blocks: [ 26k 69% 3/s ]
cpus: 11.1 gc: 3% heap: 8.3G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.2G
read( 0%) -> (11/26) -> process(74% 66% 68% 67% 74% 72% 70% 73% 71% 71% 66% 72% 68% 68% 74%) -> (7.3k/66k) -> write(19%)
0:19:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 81M 9% 194k/s ] rels: [ 0 0% 0/s ] features: [ 845M 648k/s ] 67G blocks: [ 26k 69% 3/s ]
cpus: 11 gc: 3% heap: 5.6G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.2G
read( 0%) -> (11/26) -> process(67% 67% 69% 70% 70% 69% 73% 69% 71% 72% 69% 70% 69% 70% 72%) -> (8.3k/66k) -> write(19%)
0:19:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 83M 10% 196k/s ] rels: [ 0 0% 0/s ] features: [ 852M 644k/s ] 67G blocks: [ 26k 69% 3/s ]
cpus: 10.7 gc: 3% heap: 10G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.2G
read( 0%) -> (11/26) -> process(71% 67% 67% 70% 68% 66% 67% 69% 66% 69% 73% 68% 68% 66% 66%) -> (9.4k/66k) -> write(18%)
0:19:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 85M 10% 201k/s ] rels: [ 0 0% 0/s ] features: [ 858M 642k/s ] 67G blocks: [ 26k 69% 3/s ]
cpus: 11.1 gc: 3% heap: 9.7G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.3G
read( 0%) -> (11/26) -> process(70% 68% 69% 74% 70% 70% 70% 68% 71% 68% 67% 73% 72% 70% 69%) -> (4.3k/66k) -> write(18%)
0:19:38 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 87M 10% 213k/s ] rels: [ 0 0% 0/s ] features: [ 865M 672k/s ] 69G blocks: [ 26k 70% 3/s ]
cpus: 11.3 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.3G
read( 0%) -> (11/26) -> process(69% 68% 72% 70% 71% 72% 74% 73% 70% 71% 69% 72% 75% 72% 72%) -> (8k/66k) -> write(19%)
0:19:48 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 89M 10% 188k/s ] rels: [ 0 0% 0/s ] features: [ 871M 626k/s ] 69G blocks: [ 26k 70% 3/s ]
cpus: 10.4 gc: 3% heap: 5G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.3G
read( 0%) -> (11/26) -> process(66% 64% 63% 64% 68% 70% 62% 64% 68% 69% 68% 64% 66% 66% 65%) -> (4.5k/66k) -> write(18%)
0:19:58 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 91M 11% 203k/s ] rels: [ 0 0% 0/s ] features: [ 877M 617k/s ] 69G blocks: [ 26k 70% 3/s ]
cpus: 10.9 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.3G
read( 0%) -> (11/26) -> process(70% 70% 70% 69% 66% 71% 68% 71% 71% 71% 74% 67% 70% 66% 68%) -> (9.6k/66k) -> write(17%)
0:20:08 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 93M 11% 180k/s ] rels: [ 0 0% 0/s ] features: [ 883M 582k/s ] 70G blocks: [ 26k 70% 3/s ]
cpus: 11.1 gc: 3% heap: 9.2G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.4G
read( 0%) -> (11/26) -> process(69% 67% 75% 70% 74% 69% 71% 70% 75% 68% 68% 72% 70% 69% 70%) -> (8.2k/66k) -> write(17%)
0:20:18 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 95M 11% 191k/s ] rels: [ 0 0% 0/s ] features: [ 889M 605k/s ] 70G blocks: [ 26k 70% 2/s ]
cpus: 11.3 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.4G
read( 0%) -> (11/26) -> process(72% 70% 74% 73% 69% 71% 75% 74% 72% 70% 74% 69% 69% 73% 73%) -> (6.2k/66k) -> write(17%)
0:20:28 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 96M 11% 180k/s ] rels: [ 0 0% 0/s ] features: [ 895M 577k/s ] 71G blocks: [ 26k 70% 2/s ]
cpus: 11.3 gc: 3% heap: 3.8G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 1.4G
read( 0%) -> (11/26) -> process(75% 69% 72% 71% 70% 70% 74% 76% 72% 69% 70% 70% 72% 67% 78%) -> (6.8k/66k) -> write(17%)
0:20:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 98M 11% 206k/s ] rels: [ 0 0% 0/s ] features: [ 901M 618k/s ] 71G blocks: [ 26k 70% 3/s ]
cpus: 11.9 gc: 3% heap: 3.8G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 1.4G
read( 0%) -> (11/26) -> process(77% 77% 76% 75% 72% 76% 76% 78% 76% 76% 72% 77% 76% 76% 74%) -> (5.3k/66k) -> write(18%)
0:20:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 100M 12% 197k/s ] rels: [ 0 0% 0/s ] features: [ 907M 605k/s ] 71G blocks: [ 26k 70% 3/s ]
cpus: 11.7 gc: 3% heap: 8.9G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 1.5G
read( 0%) -> (11/26) -> process(74% 76% 73% 74% 71% 75% 74% 77% 76% 75% 74% 71% 76% 73% 77%) -> (6.6k/66k) -> write(17%)
0:20:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 103M 12% 204k/s ] rels: [ 0 0% 0/s ] features: [ 914M 627k/s ] 72G blocks: [ 26k 70% 3/s ]
cpus: 11.2 gc: 3% heap: 9.2G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 1.5G
read( 0%) -> (11/26) -> process(70% 72% 69% 70% 66% 68% 76% 72% 74% 72% 70% 66% 73% 68% 72%) -> (9.2k/66k) -> write(18%)
0:21:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 104M 12% 194k/s ] rels: [ 0 0% 0/s ] features: [ 920M 604k/s ] 72G blocks: [ 26k 70% 3/s ]
cpus: 11.1 gc: 3% heap: 9.5G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 1.6G
read( 0%) -> (11/26) -> process(69% 72% 68% 70% 68% 75% 69% 74% 69% 70% 73% 70% 69% 72% 66%) -> (6.2k/66k) -> write(17%)
0:21:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 106M 12% 199k/s ] rels: [ 0 0% 0/s ] features: [ 926M 618k/s ] 72G blocks: [ 26k 70% 3/s ]
cpus: 11.2 gc: 3% heap: 9.6G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 1.6G
read( 0%) -> (11/26) -> process(69% 75% 69% 69% 72% 69% 69% 72% 73% 71% 68% 72% 69% 71% 73%) -> (6.3k/66k) -> write(17%)
0:21:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 108M 13% 203k/s ] rels: [ 0 0% 0/s ] features: [ 932M 636k/s ] 73G blocks: [ 26k 70% 3/s ]
cpus: 11.2 gc: 3% heap: 9.4G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 1.6G
read( 0%) -> (11/26) -> process(71% 72% 67% 72% 72% 71% 72% 69% 72% 72% 67% 71% 71% 70% 72%) -> (5.9k/66k) -> write(18%)
0:21:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 110M 13% 200k/s ] rels: [ 0 0% 0/s ] features: [ 939M 642k/s ] 73G blocks: [ 26k 71% 3/s ]
cpus: 10.8 gc: 3% heap: 5.9G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 1.6G
read( 0%) -> (11/26) -> process(67% 71% 66% 68% 69% 67% 70% 69% 68% 68% 69% 66% 68% 70% 66%) -> (8.1k/66k) -> write(18%)
0:21:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 112M 13% 194k/s ] rels: [ 0 0% 0/s ] features: [ 945M 632k/s ] 74G blocks: [ 26k 71% 2/s ]
cpus: 10.9 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 1.6G
read( 0%) -> (11/26) -> process(67% 69% 72% 70% 68% 68% 69% 71% 71% 70% 67% 68% 70% 67% 72%) -> (8.8k/66k) -> write(18%)
0:21:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 114M 13% 190k/s ] rels: [ 0 0% 0/s ] features: [ 951M 621k/s ] 74G blocks: [ 26k 71% 2/s ]
cpus: 11 gc: 3% heap: 8.6G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 1.7G
read( 0%) -> (11/26) -> process(69% 68% 68% 71% 70% 69% 71% 70% 67% 71% 68% 67% 66% 74% 70%) -> (7k/66k) -> write(18%)
0:22:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 116M 14% 201k/s ] rels: [ 0 0% 0/s ] features: [ 958M 628k/s ] 74G blocks: [ 26k 71% 3/s ]
cpus: 11 gc: 3% heap: 8.1G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 1.7G
read( 0%) -> (11/26) -> process(70% 69% 67% 69% 65% 70% 71% 70% 69% 65% 73% 68% 68% 74% 70%) -> (9.1k/66k) -> write(18%)
0:22:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 118M 14% 204k/s ] rels: [ 0 0% 0/s ] features: [ 964M 658k/s ] 75G blocks: [ 26k 71% 3/s ]
cpus: 11 gc: 3% heap: 6.9G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 1.7G
read( 0%) -> (11/26) -> process(68% 70% 71% 72% 68% 67% 65% 69% 71% 73% 69% 67% 69% 73% 70%) -> (9.4k/66k) -> write(19%)
0:22:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 120M 14% 203k/s ] rels: [ 0 0% 0/s ] features: [ 970M 627k/s ] 75G blocks: [ 26k 71% 3/s ]
cpus: 11 gc: 3% heap: 6.5G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 1.7G
read( 0%) -> (11/26) -> process(69% 71% 69% 72% 71% 69% 69% 72% 69% 70% 67% 69% 68% 69% 72%) -> (5.6k/66k) -> write(18%)
0:22:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 122M 14% 189k/s ] rels: [ 0 0% 0/s ] features: [ 977M 616k/s ] 77G blocks: [ 26k 71% 2/s ]
cpus: 10.4 gc: 3% heap: 8.3G/21G direct: 57M postGC: 4.4G relInfo: 970M mpGeoms: 1.7G
read( 0%) -> (11/26) -> process(65% 66% 67% 69% 64% 67% 66% 66% 65% 64% 65% 68% 66% 63% 66%) -> (8.2k/66k) -> write(18%)
0:22:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 124M 14% 180k/s ] rels: [ 0 0% 0/s ] features: [ 983M 644k/s ] 77G blocks: [ 26k 71% 2/s ]
cpus: 10.2 gc: 3% heap: 7.8G/21G direct: 57M postGC: 4.4G relInfo: 970M mpGeoms: 1.8G
read( 0%) -> (11/26) -> process(64% 64% 66% 63% 63% 63% 65% 65% 64% 64% 62% 63% 66% 66% 68%) -> (8.3k/66k) -> write(18%)
0:22:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 126M 15% 195k/s ] rels: [ 0 0% 0/s ] features: [ 989M 627k/s ] 77G blocks: [ 26k 71% 3/s ]
cpus: 10.9 gc: 3% heap: 5.6G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 1.8G
read( 0%) -> (11/26) -> process(69% 68% 69% 68% 73% 71% 71% 70% 72% 66% 66% 69% 67% 66% 67%) -> (8.3k/66k) -> write(18%)
0:23:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 128M 15% 195k/s ] rels: [ 0 0% 0/s ] features: [ 996M 619k/s ] 78G blocks: [ 26k 71% 3/s ]
cpus: 10.9 gc: 3% heap: 4.5G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 1.8G
read( 0%) -> (11/26) -> process(72% 68% 69% 71% 68% 66% 70% 67% 71% 69% 70% 65% 69% 70% 68%) -> (6.1k/66k) -> write(18%)
0:23:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 130M 15% 196k/s ] rels: [ 0 0% 0/s ] features: [ 1B 620k/s ] 78G blocks: [ 26k 71% 2/s ]
cpus: 11 gc: 3% heap: 11G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 1.8G
read( 0%) -> (11/26) -> process(72% 72% 68% 71% 72% 66% 71% 70% 71% 68% 71% 67% 70% 70% 71%) -> (8.4k/66k) -> write(18%)
0:23:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 132M 15% 194k/s ] rels: [ 0 0% 0/s ] features: [ 1B 618k/s ] 78G blocks: [ 26k 71% 3/s ]
cpus: 11.3 gc: 3% heap: 12G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 1.9G
read( 0%) -> (11/26) -> process(73% 71% 73% 72% 74% 74% 70% 69% 73% 70% 69% 72% 71% 70% 71%) -> (9.4k/66k) -> write(18%)
0:23:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 134M 16% 176k/s ] rels: [ 0 0% 0/s ] features: [ 1B 561k/s ] 79G blocks: [ 26k 72% 2/s ]
cpus: 11.2 gc: 3% heap: 12G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 1.9G
read( 0%) -> (11/26) -> process(69% 74% 71% 70% 72% 73% 70% 67% 73% 75% 68% 70% 69% 73% 71%) -> (5.8k/66k) -> write(17%)
0:23:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 136M 16% 183k/s ] rels: [ 0 0% 0/s ] features: [ 1B 574k/s ] 79G blocks: [ 26k 72% 2/s ]
cpus: 11.7 gc: 3% heap: 7.7G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 1.9G
read( 0%) -> (11/26) -> process(75% 74% 71% 73% 72% 74% 76% 73% 78% 73% 73% 73% 75% 76% 74%) -> (7k/66k) -> write(16%)
0:23:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 138M 16% 203k/s ] rels: [ 0 0% 0/s ] features: [ 1B 626k/s ] 80G blocks: [ 26k 72% 2/s ]
cpus: 11.4 gc: 3% heap: 12G/21G direct: 57M postGC: 4.9G relInfo: 970M mpGeoms: 1.9G
read( 0%) -> (11/26) -> process(75% 69% 71% 76% 71% 72% 70% 72% 73% 75% 71% 75% 69% 70% 72%) -> (7.9k/66k) -> write(18%)
0:24:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 140M 16% 200k/s ] rels: [ 0 0% 0/s ] features: [ 1B 613k/s ] 80G blocks: [ 27k 72% 3/s ]
cpus: 11.3 gc: 3% heap: 10G/21G direct: 57M postGC: 5.2G relInfo: 970M mpGeoms: 2G
read( 0%) -> (11/26) -> process(71% 69% 72% 70% 70% 72% 73% 76% 71% 72% 70% 70% 71% 74% 71%) -> (7.1k/66k) -> write(17%)
0:24:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 142M 16% 208k/s ] rels: [ 0 0% 0/s ] features: [ 1B 635k/s ] 80G blocks: [ 27k 72% 2/s ]
cpus: 11.8 gc: 4% heap: 7.2G/21G direct: 57M postGC: 5.4G relInfo: 970M mpGeoms: 2G
read( 0%) -> (11/26) -> process(70% 75% 73% 74% 74% 74% 76% 72% 72% 74% 71% 76% 79% 75% 75%) -> (7.9k/66k) -> write(18%)
0:24:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 144M 17% 209k/s ] rels: [ 0 0% 0/s ] features: [ 1B 642k/s ] 81G blocks: [ 27k 72% 3/s ]
cpus: 11.6 gc: 4% heap: 6.1G/21G direct: 57M postGC: 5.7G relInfo: 970M mpGeoms: 2G
read( 0%) -> (11/26) -> process(72% 72% 72% 76% 74% 72% 78% 70% 74% 71% 74% 73% 73% 71% 76%) -> (6.7k/66k) -> write(18%)
0:24:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 146M 17% 199k/s ] rels: [ 0 0% 0/s ] features: [ 1B 623k/s ] 81G blocks: [ 27k 72% 3/s ]
cpus: 10.8 gc: 3% heap: 7.3G/21G direct: 57M postGC: 6.2G relInfo: 970M mpGeoms: 2G
read( 0%) -> (11/26) -> process(69% 68% 65% 66% 67% 66% 69% 67% 71% 68% 69% 68% 66% 67% 68%) -> (8.2k/66k) -> write(17%)
0:24:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 148M 17% 199k/s ] rels: [ 0 0% 0/s ] features: [ 1B 621k/s ] 81G blocks: [ 27k 72% 2/s ]
cpus: 11.5 gc: 4% heap: 8.6G/21G direct: 57M postGC: 7.1G relInfo: 970M mpGeoms: 2.1G
read( 0%) -> (11/26) -> process(70% 70% 72% 72% 71% 73% 76% 71% 71% 73% 72% 68% 74% 71% 76%) -> (7.2k/66k) -> write(17%)
0:24:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 150M 17% 188k/s ] rels: [ 0 0% 0/s ] features: [ 1B 579k/s ] 82G blocks: [ 27k 72% 3/s ]
cpus: 11 gc: 4% heap: 10G/21G direct: 57M postGC: 8.1G relInfo: 970M mpGeoms: 2.1G
read( 0%) -> (11/26) -> process(69% 72% 70% 67% 69% 69% 71% 67% 69% 66% 69% 69% 69% 70% 70%) -> (8k/66k) -> write(17%)
0:25:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 152M 18% 198k/s ] rels: [ 0 0% 0/s ] features: [ 1B 622k/s ] 82G blocks: [ 27k 72% 2/s ]
cpus: 11.4 gc: 4% heap: 11G/21G direct: 57M postGC: 9.3G relInfo: 970M mpGeoms: 2.1G
read( 0%) -> (11/26) -> process(72% 73% 72% 71% 71% 71% 70% 70% 70% 73% 71% 71% 73% 72% 73%) -> (6.1k/66k) -> write(17%)
0:25:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 154M 18% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1B 642k/s ] 84G blocks: [ 27k 72% 3/s ]
cpus: 11.6 gc: 4% heap: 10G/21G direct: 57M postGC: 10G relInfo: 970M mpGeoms: 2.1G
read( 0%) -> (11/26) -> process(74% 71% 70% 72% 72% 73% 73% 72% 71% 71% 73% 71% 76% 74% 72%) -> (8.6k/66k) -> write(18%)
0:25:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 156M 18% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1B 656k/s ] 84G blocks: [ 27k 72% 3/s ]
cpus: 11.8 gc: 5% heap: 12G/21G direct: 57M postGC: 12G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(72% 74% 72% 74% 71% 74% 74% 74% 73% 76% 73% 75% 75% 73% 74%) -> (8.1k/66k) -> write(18%)
0:25:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 158M 18% 236k/s ] rels: [ 0 0% 0/s ] features: [ 1B 707k/s ] 84G blocks: [ 27k 73% 3/s ]
cpus: 12.8 gc: 5% heap: 13G/21G direct: 57M postGC: 13G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(74% 80% 81% 75% 76% 79% 75% 82% 83% 81% 81% 78% 86% 83% 84%) -> (8.3k/66k) -> write(18%)
0:25:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 160M 19% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1B 629k/s ] 85G blocks: [ 27k 73% 3/s ]
cpus: 11.7 gc: 4% heap: 5.4G/21G direct: 57M postGC: 3.4G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(76% 81% 75% 72% 69% 67% 74% 76% 67% 75% 68% 74% 77% 68% 71%) -> (7.5k/66k) -> write(17%)
0:25:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 162M 19% 201k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 610k/s ] 85G blocks: [ 27k 73% 3/s ]
cpus: 11.1 gc: 3% heap: 10G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(68% 74% 72% 73% 70% 70% 70% 71% 70% 70% 68% 71% 71% 68% 73%) -> (6.4k/66k) -> write(17%)
0:26:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 164M 19% 197k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 594k/s ] 85G blocks: [ 27k 73% 2/s ]
cpus: 11.1 gc: 3% heap: 6.3G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(70% 74% 71% 68% 69% 71% 71% 70% 68% 68% 69% 71% 71% 72% 70%) -> (6.9k/66k) -> write(17%)
0:26:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 166M 19% 190k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 598k/s ] 86G blocks: [ 27k 73% 2/s ]
cpus: 10.9 gc: 3% heap: 9.3G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.2G
read( 0%) -> (11/26) -> process(70% 68% 66% 66% 72% 68% 68% 68% 67% 71% 69% 66% 72% 73% 70%) -> (6k/66k) -> write(17%)
0:26:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 168M 20% 193k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 607k/s ] 86G blocks: [ 27k 73% 3/s ]
cpus: 11.4 gc: 3% heap: 7.2G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.3G
read( 0%) -> (11/26) -> process(70% 69% 71% 71% 79% 74% 72% 69% 71% 70% 76% 72% 72% 76% 74%) -> (7.4k/66k) -> write(17%)
0:26:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 170M 20% 190k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 593k/s ] 86G blocks: [ 27k 73% 3/s ]
cpus: 11.5 gc: 3% heap: 4.9G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.3G
read( 0%) -> (11/26) -> process(70% 69% 70% 73% 71% 74% 73% 78% 72% 71% 71% 76% 73% 75% 73%) -> (9.8k/66k) -> write(17%)
0:26:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 172M 20% 194k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 601k/s ] 87G blocks: [ 27k 73% 2/s ]
cpus: 10.8 gc: 3% heap: 7.1G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.3G
read( 0%) -> (11/26) -> process(69% 67% 66% 69% 68% 70% 71% 70% 68% 66% 67% 69% 68% 68% 70%) -> (7.7k/66k) -> write(17%)
0:26:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 174M 20% 188k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 607k/s ] 87G blocks: [ 27k 73% 2/s ]
cpus: 11.1 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.3G
read( 0%) -> (11/26) -> process(70% 71% 69% 74% 73% 70% 71% 70% 69% 69% 71% 69% 76% 69% 69%) -> (8.4k/66k) -> write(17%)
0:27:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 176M 20% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 598k/s ] 88G blocks: [ 27k 73% 3/s ]
cpus: 11.3 gc: 3% heap: 9.3G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.4G
read( 0%) -> (11/26) -> process(70% 74% 70% 72% 71% 72% 69% 70% 68% 74% 71% 73% 79% 71% 71%) -> (7.5k/66k) -> write(17%)
0:27:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 178M 21% 197k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 587k/s ] 88G blocks: [ 27k 73% 3/s ]
cpus: 11.1 gc: 3% heap: 5.3G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.4G
read( 0%) -> (11/26) -> process(73% 72% 67% 73% 68% 72% 72% 70% 67% 70% 71% 69% 69% 74% 68%) -> (7.7k/66k) -> write(17%)
0:27:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 180M 21% 205k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 613k/s ] 88G blocks: [ 27k 73% 3/s ]
cpus: 11.1 gc: 3% heap: 10G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.4G
read( 0%) -> (11/26) -> process(70% 71% 72% 71% 72% 70% 72% 70% 72% 70% 71% 69% 70% 70% 74%) -> (6.5k/66k) -> write(17%)
0:27:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 182M 21% 203k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 602k/s ] 89G blocks: [ 27k 74% 3/s ]
cpus: 11 gc: 3% heap: 5.8G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 2.4G
read( 0%) -> (11/26) -> process(71% 69% 72% 68% 71% 69% 69% 68% 69% 70% 70% 68% 70% 70% 70%) -> (8.3k/66k) -> write(17%)
0:27:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 184M 21% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 613k/s ] 89G blocks: [ 27k 74% 3/s ]
cpus: 11.4 gc: 3% heap: 4.5G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.4G
read( 0%) -> (11/26) -> process(73% 72% 73% 73% 71% 71% 71% 72% 72% 72% 72% 73% 70% 71% 73%) -> (5.5k/66k) -> write(17%)
0:27:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 187M 22% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 653k/s ] 89G blocks: [ 27k 74% 3/s ]
cpus: 12.1 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.5G
read( 0%) -> (11/26) -> process(75% 80% 77% 78% 78% 76% 75% 78% 74% 77% 76% 77% 77% 75% 75%) -> (7.2k/66k) -> write(18%)
0:28:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 189M 22% 229k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 664k/s ] 90G blocks: [ 27k 74% 3/s ]
cpus: 12.1 gc: 4% heap: 9.6G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.5G
read( 0%) -> (11/26) -> process(76% 76% 76% 76% 77% 77% 75% 77% 78% 77% 76% 76% 76% 77% 75%) -> (7.9k/66k) -> write(19%)
0:28:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 191M 22% 215k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 630k/s ] 90G blocks: [ 27k 74% 3/s ]
cpus: 11.6 gc: 3% heap: 11G/21G direct: 57M postGC: 3.7G relInfo: 970M mpGeoms: 2.5G
read( 0%) -> (11/26) -> process(76% 72% 74% 73% 72% 75% 74% 74% 76% 71% 74% 72% 75% 72% 73%) -> (7.6k/66k) -> write(17%)
0:28:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 193M 22% 213k/s ] rels: [ 0 0% 0/s ] features: [ 1.1B 646k/s ] 90G blocks: [ 27k 74% 3/s ]
cpus: 11.5 gc: 3% heap: 11G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.5G
read( 0%) -> (11/26) -> process(74% 71% 73% 72% 72% 76% 72% 71% 73% 74% 73% 71% 72% 73% 72%) -> (5.9k/66k) -> write(18%)
0:28:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 195M 23% 209k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 611k/s ] 91G blocks: [ 27k 74% 3/s ]
cpus: 11.3 gc: 3% heap: 9.5G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.5G
read( 0%) -> (11/26) -> process(72% 69% 72% 72% 72% 72% 73% 72% 68% 70% 73% 71% 70% 73% 72%) -> (8.4k/66k) -> write(18%)
0:28:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 197M 23% 197k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 582k/s ] 91G blocks: [ 27k 74% 2/s ]
cpus: 12 gc: 3% heap: 3.8G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.6G
read( 0%) -> (11/26) -> process(78% 76% 75% 74% 76% 73% 78% 75% 75% 77% 75% 78% 75% 76% 75%) -> (9.6k/66k) -> write(17%)
0:28:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 199M 23% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 603k/s ] 92G blocks: [ 27k 74% 3/s ]
cpus: 11.7 gc: 3% heap: 5.2G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.6G
read( 0%) -> (11/26) -> process(74% 73% 73% 72% 76% 73% 73% 76% 77% 76% 77% 72% 73% 73% 73%) -> (8.8k/66k) -> write(17%)
0:29:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 201M 23% 210k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 596k/s ] 92G blocks: [ 27k 74% 3/s ]
cpus: 11.6 gc: 3% heap: 6.9G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(74% 72% 72% 75% 76% 71% 75% 72% 75% 74% 76% 73% 76% 74% 71%) -> (6.7k/66k) -> write(17%)
0:29:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 204M 24% 243k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 635k/s ] 92G blocks: [ 28k 74% 3/s ]
cpus: 12.5 gc: 3% heap: 9.7G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(78% 80% 78% 80% 82% 77% 83% 80% 82% 78% 79% 79% 76% 79% 80%) -> (9.4k/66k) -> write(18%)
0:29:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 206M 24% 250k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 634k/s ] 93G blocks: [ 28k 75% 4/s ]
cpus: 12.5 gc: 4% heap: 3.8G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(80% 80% 78% 79% 77% 76% 78% 78% 76% 79% 80% 81% 79% 80% 77%) -> (9k/66k) -> write(18%)
0:29:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 209M 24% 237k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 613k/s ] 93G blocks: [ 28k 75% 4/s ]
cpus: 12.5 gc: 3% heap: 5.5G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(81% 77% 80% 79% 82% 80% 78% 77% 80% 80% 79% 80% 79% 79% 80%) -> (7.3k/66k) -> write(17%)
0:29:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 211M 25% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 637k/s ] 93G blocks: [ 28k 75% 3/s ]
cpus: 12.3 gc: 3% heap: 5.6G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(79% 78% 77% 79% 77% 77% 76% 79% 75% 79% 78% 78% 80% 78% 76%) -> (6.3k/66k) -> write(18%)
0:29:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 214M 25% 245k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 649k/s ] 95G blocks: [ 28k 75% 4/s ]
cpus: 12.3 gc: 3% heap: 6.2G/21G direct: 57M postGC: 3.8G relInfo: 970M mpGeoms: 2.8G
read( 0%) -> (11/26) -> process(81% 79% 79% 79% 75% 79% 76% 77% 77% 77% 80% 80% 77% 77% 75%) -> (7k/66k) -> write(18%)
0:30:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 216M 25% 244k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 642k/s ] 95G blocks: [ 28k 75% 3/s ]
cpus: 12.2 gc: 3% heap: 6.5G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.9G
read( 0%) -> (11/26) -> process(76% 78% 76% 77% 77% 77% 79% 75% 77% 77% 76% 78% 78% 78% 80%) -> (6.6k/66k) -> write(18%)
0:30:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 218M 25% 229k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 623k/s ] 95G blocks: [ 28k 75% 3/s ]
cpus: 12.1 gc: 3% heap: 5.2G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.9G
read( 0%) -> (11/26) -> process(76% 77% 77% 79% 76% 81% 76% 78% 75% 76% 75% 78% 75% 76% 78%) -> (6.4k/66k) -> write(17%)
0:30:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 221M 26% 222k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 603k/s ] 96G blocks: [ 28k 75% 3/s ]
cpus: 11.9 gc: 3% heap: 10G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.9G
read( 0%) -> (11/26) -> process(74% 74% 77% 77% 75% 75% 75% 80% 78% 78% 73% 74% 75% 76% 74%) -> (8.8k/66k) -> write(17%)
0:30:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 223M 26% 217k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 612k/s ] 96G blocks: [ 28k 75% 3/s ]
cpus: 11.7 gc: 3% heap: 12G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.9G
read( 0%) -> (11/26) -> process(75% 74% 74% 74% 73% 72% 75% 73% 74% 71% 77% 73% 76% 73% 73%) -> (8.4k/66k) -> write(17%)
0:30:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 225M 26% 208k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 593k/s ] 96G blocks: [ 28k 75% 3/s ]
cpus: 11.5 gc: 3% heap: 12G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 2.9G
read( 0%) -> (11/26) -> process(73% 71% 74% 71% 70% 71% 76% 74% 72% 72% 72% 74% 74% 76% 73%) -> (5.7k/66k) -> write(17%)
0:30:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 227M 26% 212k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 592k/s ] 97G blocks: [ 28k 75% 3/s ]
cpus: 11.3 gc: 3% heap: 11G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3G
read( 0%) -> (11/26) -> process(73% 72% 72% 72% 71% 73% 74% 71% 72% 70% 72% 70% 72% 74% 70%) -> (7.4k/66k) -> write(17%)
0:31:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 229M 27% 216k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 596k/s ] 97G blocks: [ 28k 76% 3/s ]
cpus: 11.8 gc: 3% heap: 4.6G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3G
read( 0%) -> (11/26) -> process(76% 74% 75% 73% 73% 76% 75% 76% 75% 74% 75% 74% 75% 75% 71%) -> (8.7k/66k) -> write(17%)
0:31:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 231M 27% 227k/s ] rels: [ 0 0% 0/s ] features: [ 1.2B 626k/s ] 97G blocks: [ 28k 76% 3/s ]
cpus: 12 gc: 3% heap: 9.4G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3G
read( 0%) -> (11/26) -> process(75% 74% 75% 74% 76% 79% 77% 76% 78% 78% 75% 80% 76% 72% 76%) -> (7.8k/66k) -> write(17%)
0:31:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 234M 27% 219k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 586k/s ] 98G blocks: [ 28k 76% 3/s ]
cpus: 11.3 gc: 3% heap: 7.5G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3G
read( 0%) -> (11/26) -> process(73% 70% 72% 73% 75% 72% 73% 68% 70% 68% 69% 74% 72% 70% 69%) -> (9.7k/66k) -> write(17%)
0:31:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 236M 27% 204k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 589k/s ] 98G blocks: [ 28k 76% 3/s ]
cpus: 11.4 gc: 3% heap: 6.1G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3G
read( 0%) -> (11/26) -> process(72% 72% 71% 72% 71% 72% 74% 73% 73% 73% 74% 72% 72% 74% 72%) -> (8.4k/66k) -> write(17%)
0:31:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 238M 28% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 596k/s ] 98G blocks: [ 28k 76% 3/s ]
cpus: 11.4 gc: 3% heap: 4.3G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.1G
read( 0%) -> (11/26) -> process(72% 74% 71% 74% 70% 71% 72% 71% 72% 73% 71% 74% 71% 73% 72%) -> (6.3k/66k) -> write(17%)
0:31:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 240M 28% 211k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 596k/s ] 99G blocks: [ 28k 76% 3/s ]
cpus: 11.5 gc: 3% heap: 4.7G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.1G
read( 0%) -> (11/26) -> process(74% 74% 72% 71% 74% 74% 73% 71% 71% 74% 71% 72% 72% 72% 74%) -> (6.7k/66k) -> write(17%)
0:32:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 242M 28% 213k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 612k/s ] 99G blocks: [ 28k 76% 3/s ]
cpus: 11.7 gc: 3% heap: 6.1G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.1G
read( 0%) -> (11/26) -> process(76% 73% 73% 75% 73% 77% 75% 76% 78% 74% 73% 76% 73% 73% 73%) -> (9.8k/66k) -> write(17%)
0:32:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 244M 28% 212k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 612k/s ] 100G blocks: [ 28k 76% 3/s ]
cpus: 11.6 gc: 3% heap: 6.8G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.2G
read( 0%) -> (11/26) -> process(74% 74% 74% 73% 74% 75% 73% 74% 76% 74% 73% 73% 74% 74% 74%) -> (7k/66k) -> write(18%)
0:32:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 246M 29% 206k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 606k/s ] 100G blocks: [ 28k 76% 3/s ]
cpus: 11.3 gc: 3% heap: 5G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.2G
read( 0%) -> (11/26) -> process(72% 71% 71% 71% 73% 71% 71% 72% 73% 71% 71% 71% 72% 73% 71%) -> (8.7k/66k) -> write(17%)
0:32:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 248M 29% 205k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 600k/s ] 100G blocks: [ 28k 76% 3/s ]
cpus: 11.5 gc: 3% heap: 4.2G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.2G
read( 0%) -> (11/26) -> process(75% 71% 72% 72% 74% 71% 72% 72% 74% 73% 72% 74% 74% 74% 73%) -> (5.7k/66k) -> write(17%)
0:32:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 250M 29% 205k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 610k/s ] 101G blocks: [ 28k 76% 3/s ]
cpus: 11.6 gc: 3% heap: 4.6G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.2G
read( 0%) -> (11/26) -> process(72% 74% 73% 75% 72% 71% 78% 76% 73% 76% 74% 74% 73% 75% 73%) -> (10k/66k) -> write(18%)
0:32:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 253M 29% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 615k/s ] 101G blocks: [ 28k 77% 3/s ]
cpus: 11.5 gc: 3% heap: 5.3G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.3G
read( 0%) -> (11/26) -> process(74% 72% 73% 74% 71% 73% 72% 73% 74% 72% 73% 74% 72% 71% 72%) -> (8.3k/66k) -> write(17%)
0:33:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 255M 30% 217k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 602k/s ] 101G blocks: [ 28k 77% 3/s ]
cpus: 11.9 gc: 3% heap: 8.4G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.3G
read( 0%) -> (11/26) -> process(74% 76% 78% 73% 75% 76% 74% 77% 77% 76% 77% 76% 73% 73% 76%) -> (7.5k/66k) -> write(17%)
0:33:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 257M 30% 217k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 615k/s ] 102G blocks: [ 28k 77% 3/s ]
cpus: 11.8 gc: 3% heap: 11G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.3G
read( 0%) -> (11/26) -> process(77% 75% 77% 74% 74% 75% 76% 74% 75% 74% 74% 76% 75% 74% 76%) -> (9k/66k) -> write(18%)
0:33:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 259M 30% 209k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 596k/s ] 102G blocks: [ 28k 77% 3/s ]
cpus: 11.6 gc: 3% heap: 11G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.4G
read( 0%) -> (11/26) -> process(73% 73% 75% 72% 74% 73% 73% 72% 75% 74% 72% 73% 72% 74% 73%) -> (7.2k/66k) -> write(17%)
0:33:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 261M 30% 215k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 608k/s ] 102G blocks: [ 28k 77% 3/s ]
cpus: 11.8 gc: 3% heap: 4.1G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.4G
read( 0%) -> (11/26) -> process(76% 72% 74% 74% 74% 77% 72% 75% 76% 73% 75% 73% 77% 73% 75%) -> (6.3k/66k) -> write(17%)
0:33:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 263M 31% 226k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 640k/s ] 103G blocks: [ 28k 77% 3/s ]
cpus: 11.9 gc: 3% heap: 8.8G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.4G
read( 0%) -> (11/26) -> process(78% 73% 77% 73% 79% 77% 78% 75% 74% 74% 75% 77% 77% 75% 74%) -> (8.9k/66k) -> write(18%)
0:33:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 266M 31% 226k/s ] rels: [ 0 0% 0/s ] features: [ 1.3B 603k/s ] 103G blocks: [ 28k 77% 3/s ]
cpus: 11.7 gc: 3% heap: 11G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.5G
read( 0%) -> (11/26) -> process(73% 76% 74% 76% 74% 76% 72% 74% 72% 70% 75% 74% 72% 76% 77%) -> (8.1k/66k) -> write(17%)
0:34:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 268M 31% 254k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 638k/s ] 103G blocks: [ 29k 77% 3/s ]
cpus: 12.2 gc: 4% heap: 11G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.5G
read( 0%) -> (11/26) -> process(77% 78% 77% 76% 76% 78% 76% 77% 79% 79% 76% 77% 76% 77% 76%) -> (8.2k/66k) -> write(17%)
0:34:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 271M 31% 245k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 617k/s ] 104G blocks: [ 29k 77% 3/s ]
cpus: 11.9 gc: 3% heap: 9.4G/21G direct: 57M postGC: 3.9G relInfo: 970M mpGeoms: 3.5G
read( 0%) -> (11/26) -> process(77% 76% 74% 76% 76% 76% 76% 72% 73% 78% 78% 75% 73% 73% 78%) -> (7.5k/66k) -> write(18%)
0:34:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 273M 32% 254k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 624k/s ] 104G blocks: [ 29k 77% 3/s ]
cpus: 12.2 gc: 3% heap: 10G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 3.6G
read( 0%) -> (11/26) -> process(76% 75% 75% 78% 78% 82% 79% 79% 76% 76% 80% 76% 75% 76% 78%) -> (7k/66k) -> write(17%)
0:34:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 276M 32% 239k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 603k/s ] 104G blocks: [ 29k 77% 3/s ]
cpus: 12.2 gc: 3% heap: 8.8G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 3.6G
read( 0%) -> (11/26) -> process(76% 75% 78% 77% 80% 77% 80% 76% 80% 75% 80% 76% 79% 76% 76%) -> (8.2k/66k) -> write(17%)
0:34:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 278M 32% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 650k/s ] 105G blocks: [ 29k 78% 3/s ]
cpus: 12.1 gc: 4% heap: 10G/21G direct: 57M postGC: 4G relInfo: 970M mpGeoms: 3.6G
read( 0%) -> (11/26) -> process(74% 81% 77% 72% 75% 76% 75% 71% 77% 76% 83% 78% 78% 77% 78%) -> (9.2k/66k) -> write(18%)
0:34:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 281M 33% 263k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 666k/s ] 105G blocks: [ 29k 78% 3/s ]
cpus: 12.3 gc: 4% heap: 4.6G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.7G
read( 0%) -> (11/26) -> process(74% 76% 78% 75% 78% 80% 80% 80% 81% 81% 77% 73% 79% 74% 77%) -> (8.6k/66k) -> write(18%)
0:35:09 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 283M 33% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 630k/s ] 107G blocks: [ 29k 78% 3/s ]
cpus: 11.6 gc: 3% heap: 7.2G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.7G
read( 0%) -> (11/26) -> process(72% 75% 76% 74% 74% 72% 77% 73% 73% 71% 74% 71% 71% 74% 76%) -> (8.3k/66k) -> write(18%)
0:35:19 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 285M 33% 222k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 602k/s ] 107G blocks: [ 29k 78% 3/s ]
cpus: 11.5 gc: 3% heap: 8.4G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.7G
read( 0%) -> (11/26) -> process(76% 71% 71% 74% 71% 72% 73% 71% 73% 77% 72% 71% 73% 74% 71%) -> (6.8k/66k) -> write(17%)
0:35:29 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 288M 33% 228k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 618k/s ] 107G blocks: [ 29k 78% 3/s ]
cpus: 11.7 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.7G
read( 0%) -> (11/26) -> process(78% 76% 74% 72% 74% 79% 75% 73% 75% 74% 74% 71% 75% 72% 73%) -> (6.5k/66k) -> write(17%)
0:35:39 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 290M 34% 222k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 626k/s ] 108G blocks: [ 29k 78% 3/s ]
cpus: 11.6 gc: 3% heap: 12G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.7G
read( 0%) -> (11/26) -> process(72% 72% 75% 76% 75% 72% 75% 73% 75% 74% 73% 73% 75% 74% 72%) -> (8.2k/66k) -> write(18%)
0:35:49 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 292M 34% 218k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 609k/s ] 108G blocks: [ 29k 78% 3/s ]
cpus: 11.3 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.8G
read( 0%) -> (11/26) -> process(71% 70% 69% 73% 70% 69% 73% 72% 71% 74% 71% 74% 72% 70% 73%) -> (8.3k/66k) -> write(17%)
0:35:59 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 294M 34% 215k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 598k/s ] 108G blocks: [ 29k 78% 3/s ]
cpus: 11.3 gc: 3% heap: 8.8G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.8G
read( 0%) -> (11/26) -> process(71% 71% 71% 71% 72% 71% 70% 74% 72% 73% 73% 71% 73% 70% 74%) -> (8k/66k) -> write(17%)
0:36:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 296M 34% 207k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 597k/s ] 109G blocks: [ 29k 78% 3/s ]
cpus: 11.3 gc: 3% heap: 6.3G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.8G
read( 0%) -> (11/26) -> process(70% 70% 70% 70% 71% 71% 71% 71% 73% 71% 74% 72% 70% 74% 68%) -> (8k/66k) -> write(17%)
0:36:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 299M 35% 229k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 621k/s ] 109G blocks: [ 29k 78% 3/s ]
cpus: 11.7 gc: 3% heap: 9.2G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.8G
read( 0%) -> (11/26) -> process(73% 75% 77% 73% 76% 76% 71% 76% 77% 73% 72% 73% 71% 76% 75%) -> (6.6k/66k) -> write(17%)
0:36:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 301M 35% 238k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 635k/s ] 109G blocks: [ 29k 78% 3/s ]
cpus: 12.4 gc: 3% heap: 9.2G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.9G
read( 0%) -> (11/26) -> process(80% 78% 79% 77% 80% 78% 79% 76% 77% 76% 79% 77% 83% 77% 77%) -> (7.1k/66k) -> write(17%)
0:36:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 303M 35% 226k/s ] rels: [ 0 0% 0/s ] features: [ 1.4B 614k/s ] 110G blocks: [ 29k 79% 3/s ]
cpus: 11.9 gc: 3% heap: 4.1G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 3.9G
read( 0%) -> (11/26) -> process(76% 76% 77% 74% 75% 75% 78% 77% 73% 76% 76% 75% 77% 74% 73%) -> (6.2k/66k) -> write(18%)
0:36:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 306M 35% 235k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 610k/s ] 110G blocks: [ 29k 79% 3/s ]
cpus: 11.9 gc: 3% heap: 9.4G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 3.9G
read( 0%) -> (11/26) -> process(78% 77% 73% 74% 77% 76% 75% 74% 75% 76% 74% 74% 75% 77% 77%) -> (8k/66k) -> write(17%)
0:37:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 308M 36% 227k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 601k/s ] 110G blocks: [ 29k 79% 2/s ]
cpus: 11.9 gc: 3% heap: 4.3G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 4G
read( 0%) -> (11/26) -> process(74% 76% 75% 73% 75% 79% 75% 75% 76% 77% 73% 75% 77% 76% 74%) -> (7.7k/66k) -> write(17%)
0:37:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 310M 36% 236k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 615k/s ] 111G blocks: [ 29k 79% 3/s ]
cpus: 11.7 gc: 3% heap: 8.2G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 4G
read( 0%) -> (11/26) -> process(74% 73% 72% 72% 76% 75% 76% 75% 74% 74% 74% 77% 74% 74% 76%) -> (7.9k/66k) -> write(18%)
0:37:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 313M 36% 236k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 628k/s ] 111G blocks: [ 29k 79% 3/s ]
cpus: 12 gc: 3% heap: 4.7G/21G direct: 57M postGC: 4.2G relInfo: 970M mpGeoms: 4G
read( 0%) -> (11/26) -> process(76% 77% 74% 75% 74% 76% 75% 75% 77% 78% 75% 76% 75% 75% 78%) -> (6.4k/66k) -> write(17%)
0:37:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 315M 37% 249k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 662k/s ] 111G blocks: [ 29k 79% 3/s ]
cpus: 12.1 gc: 3% heap: 12G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 4.1G
read( 0%) -> (11/26) -> process(75% 76% 75% 79% 77% 77% 80% 76% 77% 77% 76% 77% 78% 77% 76%) -> (7.9k/66k) -> write(18%)
0:37:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 318M 37% 237k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 633k/s ] 112G blocks: [ 29k 79% 3/s ]
cpus: 12.1 gc: 4% heap: 9.9G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 4.1G
read( 0%) -> (11/26) -> process(76% 76% 78% 77% 76% 78% 78% 74% 80% 75% 75% 74% 76% 78% 79%) -> (8.1k/66k) -> write(18%)
0:37:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 320M 37% 243k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 656k/s ] 112G blocks: [ 29k 79% 3/s ]
cpus: 12.1 gc: 4% heap: 8.2G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 4.1G
read( 0%) -> (11/26) -> process(78% 76% 76% 78% 78% 79% 77% 74% 73% 75% 77% 77% 76% 77% 77%) -> (8.9k/66k) -> write(18%)
0:38:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 322M 37% 248k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 642k/s ] 113G blocks: [ 29k 79% 3/s ]
cpus: 12.6 gc: 3% heap: 12G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 4.1G
read( 0%) -> (11/26) -> process(81% 79% 78% 79% 76% 78% 82% 76% 83% 83% 83% 79% 85% 82% 76%) -> (7k/66k) -> write(18%)
0:38:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 325M 38% 259k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 641k/s ] 113G blocks: [ 29k 79% 3/s ]
cpus: 12.6 gc: 4% heap: 8.2G/21G direct: 57M postGC: 4.3G relInfo: 970M mpGeoms: 4.1G
read( 0%) -> (11/26) -> process(78% 79% 78% 79% 74% 81% 79% 77% 82% 79% 83% 79% 80% 81% 78%) -> (8.2k/66k) -> write(18%)
0:38:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 328M 38% 255k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 647k/s ] 113G blocks: [ 29k 79% 3/s ]
cpus: 12.5 gc: 4% heap: 11G/21G direct: 57M postGC: 4.4G relInfo: 970M mpGeoms: 4.2G
read( 0%) -> (11/26) -> process(77% 77% 78% 80% 77% 80% 77% 79% 78% 83% 79% 80% 80% 80% 76%) -> (7.7k/66k) -> write(18%)
0:38:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 330M 38% 267k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 686k/s ] 114G blocks: [ 29k 80% 3/s ]
cpus: 12.3 gc: 4% heap: 12G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.2G
read( 0%) -> (11/26) -> process(78% 75% 77% 78% 79% 79% 78% 80% 77% 78% 73% 75% 80% 74% 81%) -> (7.5k/66k) -> write(19%)
0:38:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 333M 39% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 660k/s ] 114G blocks: [ 29k 80% 3/s ]
cpus: 12 gc: 4% heap: 10G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.2G
read( 0%) -> (11/26) -> process(76% 75% 75% 75% 77% 76% 73% 73% 77% 76% 72% 78% 78% 75% 74%) -> (8.1k/66k) -> write(18%)
0:38:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 335M 39% 258k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 663k/s ] 114G blocks: [ 30k 80% 3/s ]
cpus: 12.2 gc: 4% heap: 11G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.2G
read( 0%) -> (11/26) -> process(75% 76% 80% 75% 77% 75% 78% 80% 77% 76% 77% 76% 80% 76% 81%) -> (9.6k/66k) -> write(18%)
0:39:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 338M 39% 246k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 629k/s ] 115G blocks: [ 30k 80% 3/s ]
cpus: 11.9 gc: 3% heap: 8.4G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.3G
read( 0%) -> (11/26) -> process(77% 74% 77% 77% 73% 75% 75% 76% 76% 73% 76% 73% 74% 77% 75%) -> (6.1k/66k) -> write(18%)
0:39:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 340M 40% 244k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 619k/s ] 115G blocks: [ 30k 80% 3/s ]
cpus: 12.3 gc: 3% heap: 8.1G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.3G
read( 0%) -> (11/26) -> process(80% 78% 76% 79% 76% 79% 76% 79% 78% 77% 78% 83% 80% 76% 75%) -> (7k/66k) -> write(17%)
0:39:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 343M 40% 247k/s ] rels: [ 0 0% 0/s ] features: [ 1.5B 644k/s ] 115G blocks: [ 30k 80% 3/s ]
cpus: 12 gc: 4% heap: 4.6G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.3G
read( 0%) -> (11/26) -> process(74% 76% 78% 76% 76% 72% 73% 75% 79% 76% 79% 76% 78% 75% 75%) -> (7.9k/66k) -> write(18%)
0:39:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 345M 40% 233k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 651k/s ] 116G blocks: [ 30k 80% 3/s ]
cpus: 11.8 gc: 3% heap: 8.1G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.3G
read( 0%) -> (11/26) -> process(76% 76% 75% 73% 76% 76% 71% 74% 74% 73% 74% 74% 75% 75% 77%) -> (6.5k/66k) -> write(18%)
0:39:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 347M 40% 228k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 598k/s ] 116G blocks: [ 30k 80% 3/s ]
cpus: 11.7 gc: 3% heap: 10G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.4G
read( 0%) -> (11/26) -> process(73% 75% 72% 74% 76% 75% 72% 75% 74% 72% 75% 74% 74% 76% 73%) -> (7.5k/66k) -> write(17%)
0:39:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 350M 41% 233k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 624k/s ] 116G blocks: [ 30k 80% 4/s ]
cpus: 12.1 gc: 3% heap: 6.7G/21G direct: 57M postGC: 4.5G relInfo: 970M mpGeoms: 4.4G
read( 0%) -> (11/26) -> process(81% 78% 76% 78% 77% 75% 73% 75% 77% 75% 73% 78% 76% 78% 79%) -> (6.3k/66k) -> write(17%)
0:40:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 352M 41% 242k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 619k/s ] 117G blocks: [ 30k 80% 2/s ]
cpus: 11.8 gc: 3% heap: 11G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 4.4G
read( 0%) -> (11/26) -> process(75% 75% 74% 75% 74% 71% 79% 71% 74% 75% 75% 73% 73% 75% 76%) -> (8.1k/66k) -> write(18%)
0:40:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 355M 41% 249k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 632k/s ] 117G blocks: [ 30k 81% 3/s ]
cpus: 12.1 gc: 4% heap: 9.4G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 4.4G
read( 0%) -> (11/26) -> process(75% 74% 76% 77% 76% 79% 77% 75% 75% 75% 75% 76% 77% 77% 77%) -> (8.3k/66k) -> write(17%)
0:40:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 357M 41% 246k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 617k/s ] 117G blocks: [ 30k 81% 4/s ]
cpus: 12.2 gc: 4% heap: 8.3G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(75% 75% 75% 80% 76% 80% 77% 76% 77% 78% 76% 77% 81% 78% 76%) -> (6.1k/66k) -> write(17%)
0:40:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 360M 42% 256k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 635k/s ] 118G blocks: [ 30k 81% 3/s ]
cpus: 12.1 gc: 4% heap: 8.3G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(76% 78% 75% 79% 76% 76% 76% 75% 75% 78% 74% 74% 76% 77% 78%) -> (6.9k/66k) -> write(18%)
0:40:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 362M 42% 252k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 639k/s ] 118G blocks: [ 30k 81% 3/s ]
cpus: 12.3 gc: 4% heap: 9.5G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(80% 80% 78% 79% 76% 78% 80% 76% 78% 80% 76% 79% 77% 76% 77%) -> (7.6k/66k) -> write(18%)
0:40:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 365M 42% 255k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 650k/s ] 119G blocks: [ 30k 81% 3/s ]
cpus: 12.3 gc: 4% heap: 10G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(76% 76% 76% 77% 78% 82% 77% 78% 79% 78% 79% 79% 77% 75% 79%) -> (6.9k/66k) -> write(18%)
0:41:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 367M 43% 234k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 607k/s ] 119G blocks: [ 30k 81% 3/s ]
cpus: 11.6 gc: 4% heap: 4.8G/21G direct: 57M postGC: 4.6G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(72% 73% 72% 73% 75% 72% 74% 73% 74% 77% 72% 72% 73% 76% 74%) -> (6k/66k) -> write(17%)
0:41:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 370M 43% 232k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 614k/s ] 119G blocks: [ 30k 81% 3/s ]
cpus: 11.7 gc: 3% heap: 8.7G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 4.5G
read( 0%) -> (11/26) -> process(73% 73% 72% 73% 76% 73% 75% 74% 73% 76% 72% 75% 77% 73% 74%) -> (7.5k/66k) -> write(17%)
0:41:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 372M 43% 247k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 643k/s ] 120G blocks: [ 30k 81% 3/s ]
cpus: 12.3 gc: 4% heap: 9.6G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 4.6G
read( 0%) -> (11/26) -> process(78% 80% 77% 77% 77% 78% 77% 79% 79% 77% 78% 77% 78% 79% 74%) -> (8.4k/66k) -> write(18%)
0:41:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 375M 43% 251k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 640k/s ] 120G blocks: [ 30k 81% 4/s ]
cpus: 12.7 gc: 4% heap: 4.7G/21G direct: 57M postGC: 4.7G relInfo: 970M mpGeoms: 4.6G
read( 0%) -> (11/26) -> process(84% 81% 87% 81% 79% 81% 78% 81% 78% 78% 80% 81% 80% 77% 82%) -> (6.5k/66k) -> write(18%)
0:41:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 377M 44% 253k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 645k/s ] 120G blocks: [ 30k 81% 3/s ]
cpus: 12.5 gc: 4% heap: 7.5G/21G direct: 57M postGC: 4.9G relInfo: 970M mpGeoms: 4.8G
read( 0%) -> (11/26) -> process(79% 81% 78% 80% 81% 83% 80% 76% 81% 77% 78% 75% 81% 76% 80%) -> (8.3k/66k) -> write(18%)
0:41:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 380M 44% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 664k/s ] 121G blocks: [ 30k 81% 3/s ]
cpus: 12.2 gc: 4% heap: 9.4G/21G direct: 57M postGC: 5G relInfo: 970M mpGeoms: 4.8G
read( 0%) -> (11/26) -> process(82% 76% 77% 77% 77% 75% 79% 79% 80% 75% 77% 75% 76% 76% 78%) -> (7.3k/66k) -> write(19%)
0:42:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 382M 44% 241k/s ] rels: [ 0 0% 0/s ] features: [ 1.6B 633k/s ] 121G blocks: [ 30k 82% 3/s ]
cpus: 11.9 gc: 4% heap: 8.7G/21G direct: 57M postGC: 5.1G relInfo: 970M mpGeoms: 4.8G
read( 0%) -> (11/26) -> process(76% 75% 75% 76% 76% 74% 76% 77% 75% 76% 75% 74% 73% 74% 76%) -> (11k/66k) -> write(17%)
0:42:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 385M 45% 247k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 629k/s ] 121G blocks: [ 30k 82% 3/s ]
cpus: 12.1 gc: 4% heap: 11G/21G direct: 57M postGC: 5.4G relInfo: 970M mpGeoms: 4.9G
read( 0%) -> (11/26) -> process(79% 76% 78% 75% 74% 78% 76% 78% 76% 78% 77% 76% 78% 77% 76%) -> (6.7k/66k) -> write(17%)
0:42:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 387M 45% 247k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 619k/s ] 123G blocks: [ 30k 82% 3/s ]
cpus: 12 gc: 4% heap: 7.8G/21G direct: 57M postGC: 5.7G relInfo: 970M mpGeoms: 4.9G
read( 0%) -> (11/26) -> process(74% 73% 77% 73% 76% 77% 77% 73% 74% 74% 74% 76% 75% 75% 76%) -> (6.2k/66k) -> write(18%)
0:42:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 390M 45% 263k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 642k/s ] 123G blocks: [ 30k 82% 3/s ]
cpus: 12.4 gc: 4% heap: 11G/21G direct: 57M postGC: 6.1G relInfo: 970M mpGeoms: 4.9G
read( 0%) -> (11/26) -> process(81% 75% 77% 79% 79% 79% 77% 78% 79% 78% 78% 77% 76% 78% 77%) -> (8.4k/66k) -> write(18%)
0:42:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 392M 46% 260k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 631k/s ] 123G blocks: [ 30k 82% 3/s ]
cpus: 12.4 gc: 5% heap: 6.6G/21G direct: 57M postGC: 6.6G relInfo: 970M mpGeoms: 4.9G
read( 0%) -> (11/26) -> process(78% 76% 75% 77% 80% 77% 75% 80% 78% 77% 78% 78% 76% 79% 77%) -> (5.8k/66k) -> write(17%)
0:42:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 395M 46% 260k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 629k/s ] 124G blocks: [ 30k 82% 3/s ]
cpus: 12.4 gc: 4% heap: 8.7G/21G direct: 57M postGC: 7.6G relInfo: 970M mpGeoms: 5G
read( 0%) -> (11/26) -> process(77% 78% 74% 77% 80% 77% 76% 78% 77% 80% 76% 76% 79% 77% 79%) -> (8.2k/66k) -> write(18%)
0:43:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 397M 46% 254k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 624k/s ] 124G blocks: [ 30k 82% 3/s ]
cpus: 12 gc: 5% heap: 10G/21G direct: 57M postGC: 8.9G relInfo: 970M mpGeoms: 5G
read( 0%) -> (11/26) -> process(76% 73% 75% 74% 76% 75% 74% 79% 74% 78% 74% 74% 74% 75% 73%) -> (5.9k/66k) -> write(17%)
0:43:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 400M 46% 264k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 648k/s ] 124G blocks: [ 30k 82% 3/s ]
cpus: 12.4 gc: 5% heap: 13G/21G direct: 57M postGC: 10G relInfo: 970M mpGeoms: 5G
read( 0%) -> (11/26) -> process(77% 81% 79% 76% 79% 77% 76% 77% 79% 78% 78% 76% 77% 78% 76%) -> (8.5k/66k) -> write(18%)
0:43:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 403M 47% 260k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 640k/s ] 125G blocks: [ 30k 82% 3/s ]
cpus: 12.1 gc: 5% heap: 13G/21G direct: 57M postGC: 11G relInfo: 970M mpGeoms: 5G
read( 0%) -> (11/26) -> process(76% 73% 76% 74% 75% 76% 75% 76% 76% 76% 78% 77% 77% 76% 75%) -> (8.3k/66k) -> write(18%)
0:43:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 405M 47% 259k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 647k/s ] 125G blocks: [ 31k 82% 3/s ]
cpus: 12.3 gc: 5% heap: 13G/21G direct: 57M postGC: 13G relInfo: 970M mpGeoms: 5G
read( 0%) -> (11/26) -> process(77% 79% 76% 76% 79% 76% 77% 76% 75% 78% 79% 77% 76% 75% 75%) -> (6.5k/66k) -> write(17%)
0:43:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 408M 47% 253k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 632k/s ] 125G blocks: [ 31k 83% 3/s ]
cpus: 12.4 gc: 5% heap: 14G/21G direct: 57M postGC: 14G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(77% 78% 76% 76% 77% 78% 78% 77% 80% 77% 76% 77% 77% 78% 78%) -> (6.7k/66k) -> write(16%)
0:43:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 410M 48% 264k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 648k/s ] 126G blocks: [ 31k 83% 3/s ]
cpus: 12.4 gc: 4% heap: 4.8G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(74% 76% 79% 74% 75% 80% 76% 78% 78% 78% 77% 78% 77% 80% 75%) -> (8.6k/66k) -> write(18%)
0:44:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 413M 48% 273k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 672k/s ] 126G blocks: [ 31k 83% 3/s ]
cpus: 12.5 gc: 4% heap: 4.1G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(81% 81% 79% 80% 78% 80% 76% 79% 79% 80% 78% 79% 76% 81% 77%) -> (6.6k/66k) -> write(18%)
0:44:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 416M 48% 276k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 670k/s ] 126G blocks: [ 31k 83% 3/s ]
cpus: 12.5 gc: 3% heap: 13G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(79% 80% 78% 78% 79% 80% 79% 79% 81% 80% 80% 79% 81% 79% 82%) -> (6.5k/66k) -> write(18%)
0:44:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 419M 49% 273k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 652k/s ] 127G blocks: [ 31k 83% 3/s ]
cpus: 12.6 gc: 4% heap: 4.1G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(78% 79% 79% 77% 80% 77% 83% 78% 79% 78% 80% 81% 79% 79% 79%) -> (7.9k/66k) -> write(18%)
0:44:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 421M 49% 275k/s ] rels: [ 0 0% 0/s ] features: [ 1.7B 665k/s ] 127G blocks: [ 31k 83% 3/s ]
cpus: 12.7 gc: 4% heap: 5.2G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(80% 81% 80% 77% 81% 79% 81% 80% 81% 80% 82% 82% 81% 81% 80%) -> (5.5k/66k) -> write(18%)
0:44:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 424M 49% 275k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 688k/s ] 128G blocks: [ 31k 83% 4/s ]
cpus: 12.6 gc: 4% heap: 5.9G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.1G
read( 0%) -> (11/26) -> process(79% 80% 78% 77% 78% 79% 79% 83% 81% 78% 84% 80% 80% 80% 79%) -> (9.4k/66k) -> write(19%)
0:44:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 427M 50% 267k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 671k/s ] 128G blocks: [ 31k 83% 3/s ]
cpus: 12.3 gc: 3% heap: 13G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.2G
read( 0%) -> (11/26) -> process(77% 78% 78% 80% 77% 79% 78% 77% 78% 79% 79% 78% 78% 77% 80%) -> (8.2k/66k) -> write(18%)
0:45:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 430M 50% 276k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 684k/s ] 128G blocks: [ 31k 83% 3/s ]
cpus: 12.7 gc: 4% heap: 4.3G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.2G
read( 0%) -> (11/26) -> process(79% 78% 79% 78% 79% 79% 79% 81% 82% 81% 78% 81% 81% 81% 82%) -> (9k/66k) -> write(19%)
0:45:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 433M 50% 283k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 704k/s ] 129G blocks: [ 31k 83% 3/s ]
cpus: 12.7 gc: 4% heap: 6G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.2G
read( 0%) -> (11/26) -> process(82% 79% 78% 83% 79% 82% 80% 77% 82% 78% 82% 78% 78% 81% 80%) -> (7.8k/66k) -> write(19%)
0:45:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 435M 51% 265k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 669k/s ] 129G blocks: [ 31k 84% 3/s ]
cpus: 12.2 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.2G
read( 0%) -> (11/26) -> process(77% 78% 75% 78% 77% 77% 80% 79% 75% 77% 77% 73% 78% 79% 76%) -> (8.3k/66k) -> write(18%)
0:45:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 438M 51% 248k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 641k/s ] 129G blocks: [ 31k 84% 3/s ]
cpus: 12 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.2G
read( 0%) -> (11/26) -> process(75% 76% 76% 74% 77% 76% 77% 77% 78% 76% 75% 76% 76% 75% 77%) -> (8k/66k) -> write(18%)
0:45:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 440M 51% 249k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 633k/s ] 130G blocks: [ 31k 84% 3/s ]
cpus: 11.9 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.3G
read( 0%) -> (11/26) -> process(74% 75% 75% 75% 76% 75% 76% 74% 78% 74% 76% 74% 73% 75% 75%) -> (8.4k/66k) -> write(18%)
0:45:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 443M 51% 250k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 643k/s ] 130G blocks: [ 31k 84% 3/s ]
cpus: 12 gc: 3% heap: 12G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.3G
read( 0%) -> (11/26) -> process(78% 78% 76% 76% 76% 75% 76% 75% 75% 76% 76% 75% 75% 75% 80%) -> (8.1k/66k) -> write(18%)
0:46:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 445M 52% 256k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 651k/s ] 130G blocks: [ 31k 84% 3/s ]
cpus: 12.1 gc: 4% heap: 4.1G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.3G
read( 0%) -> (11/26) -> process(78% 78% 76% 73% 74% 76% 77% 79% 75% 77% 75% 75% 77% 76% 77%) -> (6.6k/66k) -> write(18%)
0:46:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 448M 52% 257k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 647k/s ] 131G blocks: [ 31k 84% 3/s ]
cpus: 12.1 gc: 3% heap: 6.8G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.3G
read( 0%) -> (11/26) -> process(77% 75% 74% 80% 75% 80% 75% 78% 76% 76% 75% 78% 75% 76% 75%) -> (6.8k/66k) -> write(18%)
0:46:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 450M 52% 264k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 660k/s ] 131G blocks: [ 31k 84% 3/s ]
cpus: 12.3 gc: 3% heap: 11G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.3G
read( 0%) -> (11/26) -> process(77% 79% 79% 77% 79% 79% 79% 77% 78% 78% 79% 78% 78% 81% 77%) -> (10k/66k) -> write(18%)
0:46:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 453M 53% 262k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 674k/s ] 131G blocks: [ 31k 84% 3/s ]
cpus: 12.2 gc: 4% heap: 5.4G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.4G
read( 0%) -> (11/26) -> process(75% 77% 81% 76% 77% 79% 76% 78% 76% 75% 76% 78% 77% 76% 77%) -> (6.5k/66k) -> write(18%)
0:46:40 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 456M 53% 268k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 672k/s ] 132G blocks: [ 31k 84% 3/s ]
cpus: 12.1 gc: 3% heap: 9.4G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.4G
read( 0%) -> (11/26) -> process(76% 79% 74% 75% 77% 77% 77% 78% 76% 79% 76% 78% 79% 77% 74%) -> (8.9k/66k) -> write(19%)
0:46:50 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 459M 53% 279k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 687k/s ] 132G blocks: [ 31k 84% 3/s ]
cpus: 12.4 gc: 4% heap: 7.1G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.4G
read( 0%) -> (11/26) -> process(76% 78% 77% 78% 80% 83% 80% 77% 76% 79% 78% 75% 81% 79% 78%) -> (9.2k/66k) -> write(19%)
0:47:00 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 461M 54% 274k/s ] rels: [ 0 0% 0/s ] features: [ 1.8B 681k/s ] 133G blocks: [ 31k 84% 3/s ]
cpus: 12.4 gc: 3% heap: 12G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.4G
read( 0%) -> (11/26) -> process(77% 78% 80% 79% 83% 77% 79% 81% 76% 76% 77% 79% 75% 76% 81%) -> (6.5k/66k) -> write(19%)
0:47:10 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 464M 54% 285k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 695k/s ] 133G blocks: [ 31k 85% 3/s ]
cpus: 12.6 gc: 4% heap: 12G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.5G
read( 0%) -> (11/26) -> process(83% 81% 76% 80% 81% 79% 80% 81% 77% 79% 81% 78% 77% 77% 79%) -> (7.1k/66k) -> write(19%)
0:47:20 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 467M 54% 299k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 709k/s ] 133G blocks: [ 31k 85% 3/s ]
cpus: 12.8 gc: 4% heap: 6.5G/21G direct: 57M postGC: 4.1G relInfo: 970M mpGeoms: 5.5G
read( 0%) -> (11/26) -> process(81% 84% 80% 80% 80% 84% 80% 78% 78% 81% 80% 82% 79% 78% 83%) -> (7.8k/66k) -> write(19%)
0:47:30 INF [osm_pass2] - nodes: [ 7.7B 100% 0/s ] 78G ways: [ 470M 55% 294k/s ] rels: [ 0 0% 0/s ] features: [ 1.9B 705k/s ] 134G blocks: [ 31k 85% 3/s ]