-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
v0.7.0-planet-c7gd-16gb-no-z13-building-merge.txt
4410 lines (4409 loc) · 462 KB
/
v0.7.0-planet-c7gd-16gb-no-z13-building-merge.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
serving at https://seashells.io/v/M8GXzMbw
0:00:00 DEB - argument: config=null (path to config file)
0:00:00 DEB - argument: download_dir=data/sources (download directory)
0:00:00 DEB - argument: area=planet (name of the extract to download if osm_url/osm_path not specified (i.e. 'monaco' 'rhode island' 'australia' or 'planet'))
0:00:00 INF - argument: stats=use in-memory stats
0:00:00 DEB - argument: madvise=true (default value for whether to use linux madvise(random) to improve memory-mapped read performance for temporary storage)
0:00:00 DEB - argument: storage=mmap (default storage type for temporary data, one of [ram, mmap, direct])
0:00:00 DEB - argument: threads=8 (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=7 (number of threads to use when processing input features)
0:00:00 DEB - argument: bounds=null (bounds)
0:00:00 DEB - argument: polygon=null (a .poly file that limits output to tiles intersecting the shape)
0:00:00 DEB - argument: minzoom=0 (minimum zoom level)
0:00:00 DEB - argument: maxzoom=14 (maximum zoom level up to 15)
0:00:00 DEB - argument: render_maxzoom=14 (maximum rendering zoom level up to 15)
0:00:00 DEB - argument: tmpdir=data/tmp (temp directory)
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: tile_write_threads=1 (number of threads used to write tiles - only supported by [files, csv, tsv, proto, pbf, json])
0:00:00 DEB - argument: loginterval=10 seconds (time between logs)
0:00:00 DEB - argument: force=true (overwriting output file and ignore disk/RAM warnings)
0:00:00 DEB - argument: append=false (append to the output file - only supported by [files, csv, tsv, proto, pbf, json])
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: download_max_bandwidth= (Maximum bandwidth to consume when downloading files in units mb/s, mbps, kbps, etc.)
0:00:00 DEB - argument: min_feature_size_at_max_zoom=0.0625 (Default value for the minimum size in tile pixels of features to emit at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: min_feature_size=1.0 (Default value for the minimum size in tile pixels of features to emit below the maximum zoom level)
0:00:00 DEB - argument: simplify_tolerance_at_max_zoom=0.0625 (Default value for the tile pixel tolerance to use when simplifying features at the maximum zoom level to allow for overzooming)
0:00:00 DEB - argument: simplify_tolerance=0.1 (Default value for the tile pixel tolerance to use when simplifying features below the maximum zoom level)
0:00:00 DEB - argument: osm_lazy_reads=true (Read OSM blocks from disk in worker threads)
0:00:00 DEB - argument: skip_filled_tiles=false (Skip writing tiles containing only polygon fills to the output)
0:00:00 DEB - argument: tile_warning_size_mb=1.0 (Maximum size in megabytes of a tile to emit a warning about)
0:00:00 DEB - argument: color=null (Color the terminal output)
0:00:00 DEB - argument: keep_unzipped=false (keep unzipped sources by default after reading)
0:00:00 DEB - argument: tile_compression=gzip (the tile compression, one of [none, gzip])
0:00:00 DEB - argument: output_layerstats=false (output a tsv.gz file for each tile/layer size)
0:00:00 DEB - argument: debug_url=https://onthegomap.github.io/planetiler-demo/#{z}/{lat}/{lon} (debug url to use for displaying tiles with {z} {lat} {lon} placeholders)
0:00:00 DEB - argument: tile_weights=data/tile_weights.tsv.gz (tsv.gz file with columns z,x,y,loads to generate weighted average tile size stat)
0:00:00 DEB - argument: max_point_buffer=Infinity (Max tile pixels to include points outside tile bounds. Set to a lower value to reduce tile size for clients that handle label collisions across tiles (most web and native clients). NOTE: Do not reduce if you need to support raster tile rendering)
0:00:00 DEB - argument: log_jts_exceptions=false (Emit verbose details to debug JTS geometry errors)
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: download_osm_tile_weights=false (download OSM tile weights file)
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: natural_earth_keep_unzipped=false (keep unzipped natural_earth after reading)
0:00:00 DEB - argument: osm_path=data/sources/planet.osm.pbf (osm OSM input file path)
0:00:00 DEB - argument: free_osm_after_read=false (delete osm input file after reading to make space for output (reduces peak disk usage))
0:00:00 DEB - argument: output=planet.pmtiles (output tile archive path)
0:00:00 DEB - argument: version=false (show version then exit)
0:00:00 INF - Planetiler build git hash: 31ae80d0477da182486763d2a02eb48741c43cbd
0:00:00 INF - Planetiler build version: 0.7-SNAPSHOT
0:00:00 INF - Planetiler build timestamp: 2024-01-18T12:20:39.563Z
0:00:00 DEB - argument: transliterate=true (attempt to transliterate latin names)
0:00:00 DEB - argument: languages=am,ar,az,be,bg,bn,br,bs,ca,co,cs,cy,da,de,el,en,eo,es,et,eu,fa,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,pa,pnb,pl,pt,rm,ro,ru,sk,sl,sq,sr,sr-Latn,sv,ta,te,th,tr,uk,ur,vi,zh,zh-Hant,zh-Hans (languages to use)
0:00:00 DEB - argument: only_layers= (Include only certain layers)
0:00:00 DEB - argument: exclude_layers= (Exclude certain layers)
0:00:00 DEB - argument: boundary_country_names=true (boundary layer: add left/right codes of neighboring countries)
0:00:00 DEB - argument: boundary_osm_only=false (boundary layer: only use OSM, even at low zoom levels)
0:00:00 DEB - argument: transportation_z13_paths=false (transportation(_name) layer: show all paths on z13)
0:00:00 DEB - argument: building_merge_z13=false (building layer: merge nearby buildings at z13)
0:00:00 DEB - argument: transportation_name_brunnel=false (transportation_name layer: set to false to omit brunnel and help merge long highways)
0:00:00 DEB - argument: transportation_name_size_for_shield=false (transportation_name layer: allow road names on shorter segments (ie. they will have a shield))
0:00:00 DEB - argument: transportation_name_limit_merge=false (transportation_name layer: limit merge so we don't combine different relations to help merge long highways)
0:00:00 DEB - argument: transportation_name_minor_refs=false (transportation_name layer: include name and refs from minor road networks if not present on a way)
0:00:00 DEB - argument: help=false (show arguments then exit)
0:00:00 DEB - argument: layer_stats=/data/planet.pmtiles.layerstats.tsv.gz (layer stats output path)
0:00:00 INF - Building OpenMapTilesProfile profile into file:///data/planet.pmtiles 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 - archive: Encode each tile and write to TileArchiveConfig[format=PMTILES, scheme=FILE, uri=file:///data/planet.pmtiles, options={}]
0:00:00 INF - no wikidata translations found, run with --fetch-wikidata to download
0:00:00 INF - ⚠️️ 360G storage on /data (/dev/nvme1n1) requested for read phase disk, 391G available
0:00:00 INF - - 88G used for temporary node location cache
0:00:00 INF - - 11G used for temporary multipolygon geometry cache
0:00:00 INF - - 259G used for temporary feature storage
0:00:00 INF - ⚠️️ 389G storage on /data (/dev/nvme1n1) requested for write phase disk, 391G available
0:00:00 INF - - 259G used for temporary feature storage
0:00:00 INF - - 129G used for archive output
0:00:00 DEB - ✓ 100G storage on /data (/dev/nvme1n1) requested for read phase, 391G available
0:00:00 DEB - - 88G used for array node location cache (switch to sparsearray to reduce size)
0:00:00 DEB - - 11G used for multipolygon way geometries
0:00:00 WAR - ❌️ 23G JVM heap requested for read phase, 12G available (increase JVM -Xmx setting)
0:00:00 WAR - - 23G used for temporary profile storage
0:00:00 WAR - Planetiler will use ~100G memory-mapped files for node locations and multipolygon geometries but the OS only
has 3.5G 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 - Setting map bounds from input: Env[-180.0 : 180.0, -90.0 : 90.0]
0:00:00 DEB - argument: archive_name=OpenMapTiles ('name' attribute for tileset metadata)
0:00:00 DEB - argument: archive_description=A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org ('description' attribute for tileset metadata)
0:00:00 DEB - argument: archive_attribution=<a href="https://www.openmaptiles.org/" target="_blank">© OpenMapTiles</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a> ('attribution' attribute for tileset metadata)
0:00:00 DEB - argument: archive_version=3.14.0 ('version' attribute for tileset metadata)
0:00:00 DEB - argument: archive_type=baselayer ('type' attribute for tileset metadata)
0:00:00 DEB - argument: archive_format=pbf ('format' attribute for tileset metadata)
0:00:00 INF - Using merge sort feature map, chunk size=2000mb max workers=8
0:00:00 INF [lake_centerlines] -
0:00:00 INF [lake_centerlines] - Starting...
0:00:02 INF [lake_centerlines] - read: [ 59k 100% 42k/s ] write: [ 0 0/s ] 0
cpus: 2.2 gc: 2% heap: 189M/12G direct: 262k postGC: 193M
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -%) -> (0/58k) -> write( -%)
0:00:02 INF [lake_centerlines] - Finished in 2s cpu:6s avg:2.6
0:00:02 INF [lake_centerlines] - read 1x(55% 1s)
0:00:02 INF [lake_centerlines] - process 7x(4% 0.1s wait:1s)
0:00:02 INF [lake_centerlines] - write 1x(0% 0s wait:1s)
0:00:02 INF [water_polygons] -
0:00:02 INF [water_polygons] - Starting...
0:00:12 INF [water_polygons] - read: [ 486 3% 48/s ] write: [ 2.7M 278k/s ] 2G
cpus: 7.4 gc: 5% heap: 2.3G/12G direct: 62M postGC: 1.5G
-> (0/3) -> read(29%) -> (1k/1k) -> process(83% 83% 82% 82% 82% 81% 84%) -> (3.6k/58k) -> write( 4%)
0:00:22 INF [water_polygons] - read: [ 1.1k 8% 63/s ] write: [ 6.7M 392k/s ] 2G
cpus: 7.1 gc: 3% heap: 2.6G/12G direct: 62M postGC: 1.2G
-> (0/3) -> read(10%) -> (991/1k) -> process(95% 96% 95% 93% 95% 94% 96%) -> (2.5k/58k) -> write( 4%)
0:00:32 INF [water_polygons] - read: [ 1.5k 11% 40/s ] write: [ 8.9M 224k/s ] 2G
cpus: 7.1 gc: 4% heap: 1.9G/12G direct: 62M postGC: 1.3G
-> (0/3) -> read( 9%) -> (1k/1k) -> process(94% 96% 95% 96% 96% 95% 95%) -> (3.7k/58k) -> write( 2%)
0:00:42 INF [water_polygons] - read: [ 2.1k 15% 62/s ] write: [ 12M 394k/s ] 2G
cpus: 7.2 gc: 3% heap: 2.8G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read(12%) -> (1k/1k) -> process(96% 95% 95% 96% 96% 96% 96%) -> (2.3k/58k) -> write( 4%)
0:00:52 INF [water_polygons] - read: [ 2.5k 18% 43/s ] write: [ 15M 238k/s ] 2G
cpus: 7.1 gc: 3% heap: 1.7G/12G direct: 62M postGC: 1.3G
-> (0/3) -> read( 6%) -> (1k/1k) -> process(97% 96% 96% 97% 96% 96% 97%) -> (3.5k/58k) -> write( 2%)
0:01:02 INF [water_polygons] - read: [ 3.1k 22% 54/s ] write: [ 18M 308k/s ] 3G
cpus: 7.1 gc: 3% heap: 3.5G/12G direct: 62M postGC: 1.2G
-> (0/3) -> read( 9%) -> (1k/1k) -> process(96% 94% 96% 96% 95% 96% 96%) -> (3.9k/58k) -> write( 3%)
0:01:12 INF [water_polygons] - read: [ 3.7k 26% 60/s ] write: [ 22M 365k/s ] 3G
cpus: 7.1 gc: 3% heap: 3.2G/12G direct: 62M postGC: 1.5G
-> (0/3) -> read(10%) -> (1k/1k) -> process(96% 96% 96% 96% 96% 96% 96%) -> (2.2k/58k) -> write( 4%)
0:01:22 INF [water_polygons] - read: [ 4.2k 29% 50/s ] write: [ 25M 318k/s ] 3G
cpus: 7.1 gc: 3% heap: 1.4G/12G direct: 62M postGC: 1.3G
-> (0/3) -> read(10%) -> (998/1k) -> process(94% 95% 95% 96% 96% 96% 96%) -> (3.3k/58k) -> write( 3%)
0:01:32 INF [water_polygons] - read: [ 4.8k 33% 59/s ] write: [ 28M 370k/s ] 3G
cpus: 7.1 gc: 3% heap: 4G/12G direct: 62M postGC: 1.5G
-> (0/3) -> read( 8%) -> (1k/1k) -> process(97% 96% 96% 97% 96% 97% 97%) -> (4.6k/58k) -> write( 4%)
0:01:42 INF [water_polygons] - read: [ 5.2k 36% 42/s ] write: [ 31M 223k/s ] 3G
cpus: 7.1 gc: 4% heap: 3.8G/12G direct: 62M postGC: 1.4G
-> (0/3) -> read(12%) -> (1k/1k) -> process(95% 95% 95% 95% 95% 95% 96%) -> (2.5k/58k) -> write( 2%)
0:01:52 INF [water_polygons] - read: [ 5.8k 41% 64/s ] write: [ 34M 374k/s ] 3G
cpus: 7 gc: 3% heap: 3G/12G direct: 62M postGC: 1.5G
-> (0/3) -> read( 2%) -> (1k/1k) -> process(96% 97% 97% 96% 96% 96% 97%) -> (3.6k/58k) -> write( 4%)
0:02:02 INF [water_polygons] - read: [ 6.2k 43% 36/s ] write: [ 36M 192k/s ] 4.1G
cpus: 7 gc: 2% heap: 2G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read( 0%) -> (1k/1k) -> process(98% 98% 97% 97% 98% 98% 98%) -> (3.5k/58k) -> write( 2%)
0:02:12 INF [water_polygons] - read: [ 8.9k 62% 271/s ] write: [ 95M 5.9M/s ] 5.9G
cpus: 7.3 gc: 1% heap: 3.6G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read( 1%) -> (1k/1k) -> process(98% 98% 98% 98% 97% 98% 98%) -> (9k/58k) -> write(38%)
0:02:22 INF [water_polygons] - read: [ 12k 86% 347/s ] write: [ 175M 7.9M/s ] 9.6G
cpus: 5.6 gc: 0% heap: 4G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read( 1%) -> (1k/1k) -> process(72% 73% 72% 72% 71% 72% 72%) -> (24k/58k) -> write(57%)
0:02:29 INF [water_polygons] - read: [ 14k 100% 305/s ] write: [ 222M 7M/s ] 10G
cpus: 5 gc: 0% heap: 3.6G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -%) -> (0/58k) -> write( -%)
0:02:29 INF [water_polygons] - Finished in 2m27s cpu:16m59s gc:4s avg:6.9
0:02:29 INF [water_polygons] - read 1x(8% 12s wait:2m10s done:3s)
0:02:29 INF [water_polygons] - process 7x(92% 2m15s wait:5s)
0:02:29 INF [water_polygons] - write 1x(11% 17s wait:2m4s)
0:02:29 INF [natural_earth] -
0:02:29 INF [natural_earth] - Starting...
0:02:29 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:02:33 INF [natural_earth] - unzipping /data/data/sources/natural_earth_vector.sqlite.zip to data/tmp/%2Fnatural_earth_vector.sqlite%2Fpackages%2Fnatural_earth_vector.sqlite
0:02:43 INF [natural_earth] - read: [ 297k 85% 29k/s ] write: [ 24k 2.3k/s ] 12G
cpus: 1.8 gc: 0% heap: 1.9G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read(98%) -> (1/1k) -> process( 5% 5% 6% 6% 6% 17% 6%) -> (3.7k/58k) -> write( 0%)
0:02:44 INF [natural_earth] - read: [ 349k 100% 38k/s ] write: [ 33k 7.1k/s ] 10G
cpus: 1.7 gc: 0% heap: 2.9G/12G direct: 62M postGC: 1.7G
-> (0/3) -> read( -%) -> (0/1k) -> process( -% -% -% -% -% -% -%) -> (0/58k) -> write( -%)
0:02:44 INF [natural_earth] - Finished in 15s cpu:24s avg:1.6
0:02:44 INF [natural_earth] - read 1x(71% 11s done:4s)
0:02:44 INF [natural_earth] - process 7x(6% 0.9s wait:10s done:4s)
0:02:44 INF [natural_earth] - write 1x(0% 0s wait:11s done:4s)
0:02:44 INF [osm_pass1] -
0:02:44 INF [osm_pass1] - Starting...
0:02:54 INF [osm_pass1] - nodes: [ 210M 21M/s ] 2.5G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 978 97/s ]
cpus: 6.8 gc: 2% heap: 1.7G/12G direct: 1G postGC: 432M hppc: 848
read( 1%) -> (15/22) -> process(92% 91% 92% 91% 91% 92% 92%)
0:03:04 INF [osm_pass1] - nodes: [ 420M 20M/s ] 5.3G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 1.8k 85/s ]
cpus: 6.9 gc: 3% heap: 517M/12G direct: 1G postGC: 428M hppc: 848
read( 1%) -> (15/22) -> process(89% 89% 90% 89% 89% 88% 88%)
0:03:14 INF [osm_pass1] - nodes: [ 623M 20M/s ] 7.7G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 2.7k 90/s ]
cpus: 6.9 gc: 3% heap: 1.1G/12G direct: 1G postGC: 415M hppc: 848
read( 1%) -> (15/22) -> process(86% 87% 88% 87% 87% 87% 87%)
0:03:24 INF [osm_pass1] - nodes: [ 821M 19M/s ] 9.9G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 3.6k 90/s ]
cpus: 6.9 gc: 3% heap: 526M/12G direct: 1G postGC: 419M hppc: 848
read( 1%) -> (15/22) -> process(87% 88% 87% 87% 87% 87% 86%)
0:03:34 INF [osm_pass1] - nodes: [ 1B 21M/s ] 12G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 4.5k 87/s ]
cpus: 6.9 gc: 3% heap: 1.1G/12G direct: 1G postGC: 786M hppc: 848
read( 1%) -> (15/22) -> process(89% 90% 90% 88% 90% 90% 89%)
0:03:44 INF [osm_pass1] - nodes: [ 1.2B 20M/s ] 14G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 5.3k 84/s ]
cpus: 6.9 gc: 3% heap: 618M/12G direct: 1G postGC: 630M hppc: 848
read( 1%) -> (15/22) -> process(86% 87% 87% 86% 87% 86% 84%)
0:03:54 INF [osm_pass1] - nodes: [ 1.4B 22M/s ] 16G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 6.2k 86/s ]
cpus: 6.9 gc: 2% heap: 1.4G/12G direct: 1G postGC: 806M hppc: 848
read( 1%) -> (15/22) -> process(90% 90% 89% 89% 90% 90% 89%)
0:04:04 INF [osm_pass1] - nodes: [ 1.7B 24M/s ] 19G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.1k 88/s ]
cpus: 6.9 gc: 2% heap: 749M/12G direct: 1G postGC: 412M hppc: 848
read( 1%) -> (15/22) -> process(93% 94% 94% 94% 94% 93% 94%)
0:04:14 INF [osm_pass1] - nodes: [ 1.9B 22M/s ] 21G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 7.9k 84/s ]
cpus: 6.9 gc: 3% heap: 879M/12G direct: 1G postGC: 557M hppc: 848
read( 1%) -> (15/22) -> process(89% 89% 90% 89% 90% 89% 89%)
0:04:24 INF [osm_pass1] - nodes: [ 2.1B 23M/s ] 23G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 8.7k 82/s ]
cpus: 7 gc: 3% heap: 1.1G/12G direct: 1G postGC: 1G hppc: 848
read( 1%) -> (15/22) -> process(89% 91% 90% 91% 91% 90% 89%)
0:04:34 INF [osm_pass1] - nodes: [ 2.4B 24M/s ] 26G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 9.5k 74/s ]
cpus: 7.1 gc: 3% heap: 915M/12G direct: 1G postGC: 856M hppc: 848
read( 1%) -> (15/22) -> process(90% 90% 90% 89% 89% 88% 89%)
0:04:44 INF [osm_pass1] - nodes: [ 2.6B 26M/s ] 28G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 10k 78/s ]
cpus: 6.9 gc: 2% heap: 890M/12G direct: 1G postGC: 562M hppc: 848
read( 1%) -> (15/22) -> process(94% 95% 93% 94% 95% 94% 95%)
0:04:55 INF [osm_pass1] - nodes: [ 2.9B 26M/s ] 31G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 80/s ]
cpus: 6.8 gc: 1% heap: 958M/12G direct: 1G postGC: 418M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 96% 96% 97% 96% 97%)
0:05:05 INF [osm_pass1] - nodes: [ 3.2B 27M/s ] 34G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 11k 79/s ]
cpus: 6.8 gc: 1% heap: 798M/12G direct: 1G postGC: 563M hppc: 848
read( 1%) -> (15/22) -> process(96% 97% 97% 96% 97% 96% 97%)
0:05:15 INF [osm_pass1] - nodes: [ 3.4B 27M/s ] 37G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 12k 79/s ]
cpus: 6.8 gc: 1% heap: 1.8G/12G direct: 1G postGC: 417M hppc: 848
read( 1%) -> (15/22) -> process(97% 96% 96% 97% 96% 97% 97%)
0:05:25 INF [osm_pass1] - nodes: [ 3.7B 27M/s ] 39G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 13k 78/s ]
cpus: 6.8 gc: 1% heap: 1.8G/12G direct: 1G postGC: 421M hppc: 848
read( 1%) -> (15/22) -> process(96% 96% 97% 96% 97% 97% 96%)
0:05:35 INF [osm_pass1] - nodes: [ 4B 27M/s ] 42G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 14k 78/s ]
cpus: 6.8 gc: 1% heap: 1G/12G direct: 1G postGC: 422M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 96% 97% 97% 97%)
0:05:45 INF [osm_pass1] - nodes: [ 4.3B 27M/s ] 45G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 79/s ]
cpus: 6.8 gc: 1% heap: 858M/12G direct: 1G postGC: 430M hppc: 848
read( 1%) -> (15/22) -> process(96% 96% 96% 96% 97% 96% 96%)
0:05:55 INF [osm_pass1] - nodes: [ 4.5B 27M/s ] 47G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 15k 78/s ]
cpus: 6.8 gc: 1% heap: 1.2G/12G direct: 1G postGC: 415M hppc: 848
read( 1%) -> (15/22) -> process(96% 97% 97% 96% 97% 97% 96%)
0:06:05 INF [osm_pass1] - nodes: [ 4.8B 27M/s ] 50G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 16k 79/s ]
cpus: 6.9 gc: 1% heap: 1.7G/12G direct: 1G postGC: 428M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 98% 97% 97%)
0:06:15 INF [osm_pass1] - nodes: [ 5.1B 27M/s ] 53G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 17k 79/s ]
cpus: 6.8 gc: 1% heap: 2G/12G direct: 1G postGC: 424M hppc: 848
read( 1%) -> (15/22) -> process(96% 97% 97% 97% 95% 97% 97%)
0:06:25 INF [osm_pass1] - nodes: [ 5.4B 27M/s ] 56G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 18k 78/s ]
cpus: 6.8 gc: 1% heap: 1.7G/12G direct: 1G postGC: 433M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 96% 96% 96% 97% 96%)
0:06:35 INF [osm_pass1] - nodes: [ 5.6B 27M/s ] 59G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 78/s ]
cpus: 6.9 gc: 1% heap: 1.7G/12G direct: 1G postGC: 431M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:06:45 INF [osm_pass1] - nodes: [ 5.9B 27M/s ] 61G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 19k 78/s ]
cpus: 6.8 gc: 1% heap: 1.5G/12G direct: 1G postGC: 424M hppc: 848
read( 0%) -> (15/22) -> process(97% 97% 97% 97% 96% 97% 97%)
0:06:55 INF [osm_pass1] - nodes: [ 6.2B 28M/s ] 64G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 20k 78/s ]
cpus: 6.8 gc: 1% heap: 2G/12G direct: 1G postGC: 564M hppc: 848
read( 0%) -> (15/22) -> process(96% 97% 97% 97% 97% 97% 97%)
0:07:05 INF [osm_pass1] - nodes: [ 6.5B 27M/s ] 67G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 21k 77/s ]
cpus: 6.9 gc: 1% heap: 1.1G/12G direct: 1G postGC: 434M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:07:15 INF [osm_pass1] - nodes: [ 6.8B 27M/s ] 70G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 77/s ]
cpus: 6.8 gc: 1% heap: 1.9G/12G direct: 1G postGC: 467M hppc: 848
read( 1%) -> (14/22) -> process(97% 96% 97% 96% 97% 97% 96%)
0:07:25 INF [osm_pass1] - nodes: [ 7B 27M/s ] 73G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 22k 76/s ]
cpus: 6.8 gc: 1% heap: 1.7G/12G direct: 1G postGC: 425M hppc: 848
read( 0%) -> (15/22) -> process(97% 96% 96% 95% 97% 96% 97%)
0:07:35 INF [osm_pass1] - nodes: [ 7.3B 27M/s ] 75G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 23k 76/s ]
cpus: 6.8 gc: 1% heap: 770M/12G direct: 1G postGC: 430M hppc: 848
read( 1%) -> (15/22) -> process(96% 97% 96% 97% 97% 96% 96%)
0:07:45 INF [osm_pass1] - nodes: [ 7.6B 28M/s ] 78G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 24k 76/s ]
cpus: 6.9 gc: 1% heap: 1.3G/12G direct: 1G postGC: 429M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:07:55 INF [osm_pass1] - nodes: [ 7.9B 28M/s ] 80G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 77/s ]
cpus: 6.9 gc: 1% heap: 1.5G/12G direct: 1G postGC: 428M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:08:05 INF [osm_pass1] - nodes: [ 8.1B 26M/s ] 85G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 25k 72/s ]
cpus: 6.5 gc: 1% heap: 2.9G/12G direct: 1G postGC: 858M hppc: 848
read( 0%) -> (15/22) -> process(97% 96% 94% 96% 88% 96% 77%)
0:08:15 INF [osm_pass1] - nodes: [ 8.4B 26M/s ] 87G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 26k 76/s ]
cpus: 6.4 gc: 1% heap: 560M/12G direct: 1G postGC: 580M hppc: 848
read( 0%) -> (15/22) -> process(98% 95% 84% 98% 80% 92% 93%)
0:08:25 INF [osm_pass1] - nodes: [ 8.7B 27M/s ] 90G ways: [ 0 0/s ] rels: [ 0 0/s ] blocks: [ 27k 81/s ]
cpus: 6.9 gc: 1% heap: 1.8G/12G direct: 1G postGC: 421M hppc: 848
read( 1%) -> (15/22) -> process(98% 97% 98% 97% 97% 98% 97%)
0:08:30 INF [osm_pass1:process] - Finished nodes: 8,860,666,091 (25M/s) in 5m45s cpu:39m22s gc:5s avg:6.8
0:08:35 INF [osm_pass1] - nodes: [ 8.8B 13M/s ] 92G ways: [ 18M 1.8M/s ] rels: [ 0 0/s ] blocks: [ 28k 81/s ]
cpus: 6.8 gc: 1% heap: 1.9G/12G direct: 1G postGC: 449M hppc: 848
read( 1%) -> (15/22) -> process(96% 96% 96% 95% 96% 95% 96%)
0:08:45 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 66M 4.7M/s ] rels: [ 0 0/s ] blocks: [ 29k 93/s ]
cpus: 6.9 gc: 2% heap: 1.2G/12G direct: 1G postGC: 464M hppc: 848
read( 1%) -> (15/22) -> process(96% 97% 96% 96% 96% 96% 96%)
0:08:55 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 120M 5.4M/s ] rels: [ 0 0/s ] blocks: [ 30k 92/s ]
cpus: 6.9 gc: 2% heap: 2.3G/12G direct: 1G postGC: 472M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 96% 97% 96% 96%)
0:09:05 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 178M 5.7M/s ] rels: [ 0 0/s ] blocks: [ 31k 91/s ]
cpus: 6.9 gc: 2% heap: 1.1G/12G direct: 1G postGC: 465M hppc: 848
read( 1%) -> (15/22) -> process(97% 96% 97% 97% 97% 97% 97%)
0:09:15 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 237M 5.9M/s ] rels: [ 0 0/s ] blocks: [ 32k 96/s ]
cpus: 6.9 gc: 2% heap: 2.6G/12G direct: 1G postGC: 461M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:09:25 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 301M 6.3M/s ] rels: [ 0 0/s ] blocks: [ 33k 96/s ]
cpus: 6.9 gc: 2% heap: 1.2G/12G direct: 1G postGC: 474M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:09:35 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 367M 6.6M/s ] rels: [ 0 0/s ] blocks: [ 34k 98/s ]
cpus: 6.9 gc: 2% heap: 1.6G/12G direct: 1G postGC: 468M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:09:45 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 440M 7.2M/s ] rels: [ 0 0/s ] blocks: [ 35k 100/s ]
cpus: 6.9 gc: 2% heap: 2.9G/12G direct: 1G postGC: 463M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 98% 97% 97%)
0:09:55 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 515M 7.5M/s ] rels: [ 0 0/s ] blocks: [ 36k 102/s ]
cpus: 7 gc: 2% heap: 1G/12G direct: 1G postGC: 462M hppc: 848
read( 1%) -> (15/22) -> process(98% 97% 97% 98% 97% 97% 97%)
0:10:05 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 586M 7M/s ] rels: [ 0 0/s ] blocks: [ 37k 100/s ]
cpus: 6.9 gc: 2% heap: 2.4G/12G direct: 1G postGC: 456M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:10:15 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 656M 7M/s ] rels: [ 0 0/s ] blocks: [ 38k 99/s ]
cpus: 6.9 gc: 2% heap: 1.5G/12G direct: 1G postGC: 463M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:10:25 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 729M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 39k 101/s ]
cpus: 6.9 gc: 2% heap: 1.5G/12G direct: 1G postGC: 457M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 97% 97% 97% 97%)
0:10:35 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 804M 7.4M/s ] rels: [ 0 0/s ] blocks: [ 40k 103/s ]
cpus: 6.9 gc: 1% heap: 2.8G/12G direct: 1G postGC: 457M hppc: 848
read( 0%) -> (15/22) -> process(98% 98% 97% 98% 97% 97% 98%)
0:10:45 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 879M 7.5M/s ] rels: [ 0 0/s ] blocks: [ 41k 103/s ]
cpus: 6.9 gc: 1% heap: 2.1G/12G direct: 1G postGC: 465M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 97% 98% 98% 98% 98%)
0:10:55 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 953M 7.3M/s ] rels: [ 0 0/s ] blocks: [ 42k 103/s ]
cpus: 6.9 gc: 1% heap: 1.6G/12G direct: 1G postGC: 469M hppc: 848
read( 1%) -> (15/22) -> process(97% 97% 98% 98% 97% 97% 97%)
0:11:00 INF [osm_pass1:process] - Finished ways: 992,064,323 (6.6M/s) in 2m30s cpu:17m19s gc:2s avg:6.9
0:11:05 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 992M 3.8M/s ] rels: [ 2.3M 235k/s ] blocks: [ 42k 63/s ]
cpus: 6.2 gc: 1% heap: 3.2G/12G direct: 1G postGC: 723M hppc: 278M
read( 0%) -> (15/22) -> process(82% 81% 80% 80% 81% 81% 82%)
0:11:15 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 992M 0/s ] rels: [ 9.8M 747k/s ] blocks: [ 43k 21/s ]
cpus: 4.5 gc: 2% heap: 3.1G/12G direct: 1G postGC: 1G hppc: 519M
read( 0%) -> (15/22) -> process(57% 57% 57% 57% 57% 59% 56%)
0:11:17 INF [osm_pass1:process] - Finished relations: 11,728,203 (680k/s) in 17s cpu:1m22s avg:4.8
0:11:17 INF [osm_pass1] - nodes: [ 8.8B 0/s ] 92G ways: [ 992M 0/s ] rels: [ 11M 793k/s ] blocks: [ 43k 23/s ]
cpus: 4.7 gc: 3% heap: 1.3G/12G direct: 196M postGC: 1.2G hppc: 700M
read( -%) -> (0/22) -> process( -% -% -% -% -% -% -%)
0:11:17 DEB [osm_pass1] - Processed 43,112 blocks:
0:11:17 DEB [osm_pass1] - nodes: 8,860,666,091 (25M/s) in 5m45s cpu:39m22s gc:5s avg:6.8
0:11:17 DEB [osm_pass1] - ways: 992,064,323 (6.6M/s) in 2m30s cpu:17m19s gc:2s avg:6.9
0:11:17 DEB [osm_pass1] - relations: 11,728,203 (680k/s) in 17s cpu:1m22s avg:4.8
0:11:17 INF [osm_pass1] - Finished in 8m33s cpu:58m3s gc:8s avg:6.8
0:11:17 INF [osm_pass1] - read 1x(1% 3s wait:8m18s)
0:11:17 INF [osm_pass1] - process 7x(94% 8m block:8s)
0:11:17 INF [osm_pass2] -
0:11:17 INF [osm_pass2] - Starting...
0:11:27 INF [osm_pass2] - nodes: [ 100M 1% 10M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 233M 1M/s ] 12G blocks: [ 472 1% 47/s ]
cpus: 7.2 gc: 3% heap: 2.9G/12G direct: 62M postGC: 1.3G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(87% 88% 86% 85% 88% 87% 87%) -> (4.1k/58k) -> write(18%)
0:11:37 INF [osm_pass2] - nodes: [ 211M 2% 11M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 243M 993k/s ] 13G blocks: [ 984 2% 51/s ]
cpus: 7.1 gc: 2% heap: 2.1G/12G direct: 62M postGC: 1.3G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(92% 93% 92% 91% 92% 92% 92%) -> (3.1k/58k) -> write(23%)
0:11:47 INF [osm_pass2] - nodes: [ 301M 3% 8.9M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 258M 1.4M/s ] 16G blocks: [ 1.3k 3% 38/s ]
cpus: 7.1 gc: 2% heap: 1.6G/12G direct: 62M postGC: 1.3G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(92% 92% 92% 92% 92% 92% 93%) -> (24k/58k) -> write(35%)
0:11:57 INF [osm_pass2] - nodes: [ 426M 5% 12M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 265M 769k/s ] 16G blocks: [ 1.8k 4% 49/s ]
cpus: 6.9 gc: 1% heap: 3.5G/12G direct: 62M postGC: 1.3G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(93% 94% 94% 94% 93% 93% 92%) -> (3.3k/58k) -> write(20%)
0:12:07 INF [osm_pass2] - nodes: [ 561M 6% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 271M 565k/s ] 17G blocks: [ 2.4k 6% 58/s ]
cpus: 6.9 gc: 1% heap: 3.3G/12G direct: 62M postGC: 1.3G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(95% 94% 94% 93% 94% 94% 95%) -> (3.3k/58k) -> write(16%)
0:12:17 INF [osm_pass2] - nodes: [ 694M 8% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 276M 533k/s ] 17G blocks: [ 3k 7% 60/s ]
cpus: 6.9 gc: 1% heap: 2.8G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 1%) -> (11/18) -> process(95% 95% 94% 95% 95% 95% 95%) -> (3k/58k) -> write(14%)
0:12:27 INF [osm_pass2] - nodes: [ 825M 9% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 282M 554k/s ] 19G blocks: [ 3.6k 8% 60/s ]
cpus: 6.9 gc: 1% heap: 1.4G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(95% 94% 96% 96% 95% 95% 95%) -> (1.4k/58k) -> write(15%)
0:12:37 INF [osm_pass2] - nodes: [ 950M 11% 12M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 291M 888k/s ] 19G blocks: [ 4.1k 10% 52/s ]
cpus: 7 gc: 1% heap: 3.2G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 96% 95% 96% 95% 96% 96%) -> (3.4k/58k) -> write(19%)
0:12:47 INF [osm_pass2] - nodes: [ 1B 12% 9.1M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 294M 335k/s ] 19G blocks: [ 4.5k 11% 36/s ]
cpus: 7 gc: 1% heap: 1.5G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 96% 97% 97% 96% 97%) -> (5.9k/58k) -> write( 9%)
0:12:57 INF [osm_pass2] - nodes: [ 1.1B 13% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 299M 488k/s ] 20G blocks: [ 5.1k 12% 58/s ]
cpus: 6.9 gc: 1% heap: 2.6G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 95% 96% 96% 95% 96% 96%) -> (2.7k/58k) -> write(12%)
0:13:07 INF [osm_pass2] - nodes: [ 1.3B 15% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 304M 542k/s ] 20G blocks: [ 5.6k 13% 54/s ]
cpus: 7 gc: 1% heap: 1.8G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 96% 97% 96%) -> (1.5k/58k) -> write(13%)
0:13:17 INF [osm_pass2] - nodes: [ 1.4B 17% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 309M 511k/s ] 21G blocks: [ 6.2k 14% 55/s ]
cpus: 6.9 gc: 1% heap: 2.1G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 96% 96% 97% 96% 96% 96%) -> (6k/58k) -> write(12%)
0:13:27 INF [osm_pass2] - nodes: [ 1.6B 18% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 315M 508k/s ] 21G blocks: [ 6.7k 16% 53/s ]
cpus: 6.9 gc: 1% heap: 1.3G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 96% 96% 96% 96% 96% 96%) -> (5.2k/58k) -> write(12%)
0:13:37 INF [osm_pass2] - nodes: [ 1.7B 20% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 320M 589k/s ] 23G blocks: [ 7.2k 17% 51/s ]
cpus: 6.9 gc: 1% heap: 2.7G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 96% 96% 96% 96% 96% 96%) -> (4.1k/58k) -> write(14%)
0:13:47 INF [osm_pass2] - nodes: [ 1.8B 21% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 327M 639k/s ] 23G blocks: [ 7.7k 18% 51/s ]
cpus: 6.9 gc: 1% heap: 2.6G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 96% 96% 96% 95% 96% 96%) -> (10k/58k) -> write(15%)
0:13:57 INF [osm_pass2] - nodes: [ 2B 23% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 334M 737k/s ] 24G blocks: [ 8.3k 19% 52/s ]
cpus: 7 gc: 1% heap: 2.2G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 96% 97% 96% 95% 96% 96%) -> (3.3k/58k) -> write(16%)
0:14:07 INF [osm_pass2] - nodes: [ 2.1B 24% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 344M 973k/s ] 24G blocks: [ 8.7k 20% 43/s ]
cpus: 7 gc: 1% heap: 3.1G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 97% 96% 96% 96% 96% 96%) -> (2.6k/58k) -> write(19%)
0:14:17 INF [osm_pass2] - nodes: [ 2.2B 26% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 353M 890k/s ] 25G blocks: [ 9.1k 21% 42/s ]
cpus: 7 gc: 1% heap: 3.7G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(95% 95% 95% 95% 95% 96% 96%) -> (6.9k/58k) -> write(19%)
0:14:27 INF [osm_pass2] - nodes: [ 2.4B 28% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 358M 556k/s ] 25G blocks: [ 9.6k 22% 45/s ]
cpus: 6.9 gc: 1% heap: 3.3G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 96% 96% 96% 96% 96% 96%) -> (2.3k/58k) -> write(14%)
0:14:37 INF [osm_pass2] - nodes: [ 2.6B 29% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 363M 488k/s ] 27G blocks: [ 10k 23% 46/s ]
cpus: 6.9 gc: 1% heap: 3.2G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 96% 97% 97% 97% 96%) -> (2.7k/58k) -> write(11%)
0:14:47 INF [osm_pass2] - nodes: [ 2.7B 31% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 368M 472k/s ] 27G blocks: [ 10k 25% 46/s ]
cpus: 6.9 gc: 1% heap: 1.8G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 97% 96% 96% 96% 97% 96%) -> (4.2k/58k) -> write(11%)
0:14:57 INF [osm_pass2] - nodes: [ 2.9B 33% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 373M 491k/s ] 27G blocks: [ 11k 26% 45/s ]
cpus: 7 gc: 1% heap: 3.7G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (4.1k/58k) -> write(11%)
0:15:07 INF [osm_pass2] - nodes: [ 3B 35% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 377M 429k/s ] 28G blocks: [ 11k 27% 46/s ]
cpus: 6.9 gc: 1% heap: 1.9G/12G direct: 62M postGC: 1.4G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (5.6k/58k) -> write(10%)
0:15:17 INF [osm_pass2] - nodes: [ 3.2B 36% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 381M 408k/s ] 28G blocks: [ 11k 28% 45/s ]
cpus: 7 gc: 1% heap: 2.8G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 96% 96% 96% 97% 97% 96%) -> (3.9k/58k) -> write( 9%)
0:15:27 INF [osm_pass2] - nodes: [ 3.3B 38% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 387M 607k/s ] 28G blocks: [ 12k 29% 42/s ]
cpus: 7 gc: 1% heap: 1.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (4.6k/58k) -> write(13%)
0:15:37 INF [osm_pass2] - nodes: [ 3.5B 40% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 393M 502k/s ] 29G blocks: [ 12k 30% 43/s ]
cpus: 7 gc: 1% heap: 2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 98% 98% 98% 98% 98% 97%) -> (3.9k/58k) -> write(11%)
0:15:47 INF [osm_pass2] - nodes: [ 3.6B 41% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 398M 541k/s ] 29G blocks: [ 13k 31% 43/s ]
cpus: 7 gc: 1% heap: 4.1G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 98% 97% 98% 97% 97% 98%) -> (3.4k/58k) -> write(12%)
0:15:57 INF [osm_pass2] - nodes: [ 3.8B 43% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 402M 372k/s ] 31G blocks: [ 13k 32% 44/s ]
cpus: 7 gc: 1% heap: 1.8G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 98% 97% 98% 97% 97% 97%) -> (4k/58k) -> write( 9%)
0:16:07 INF [osm_pass2] - nodes: [ 3.9B 45% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 406M 428k/s ] 31G blocks: [ 14k 33% 43/s ]
cpus: 7 gc: 1% heap: 3.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 98% 97% 97% 96%) -> (7.6k/58k) -> write(11%)
0:16:17 INF [osm_pass2] - nodes: [ 4.1B 47% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 411M 474k/s ] 31G blocks: [ 14k 34% 43/s ]
cpus: 7 gc: 1% heap: 2.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 97% 97% 97% 97% 97%) -> (3.8k/58k) -> write(11%)
0:16:27 INF [osm_pass2] - nodes: [ 4.2B 48% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 416M 554k/s ] 32G blocks: [ 14k 35% 42/s ]
cpus: 7 gc: 1% heap: 2.7G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(96% 97% 97% 97% 97% 97% 97%) -> (6.8k/58k) -> write(13%)
0:16:37 INF [osm_pass2] - nodes: [ 4.4B 50% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 421M 438k/s ] 32G blocks: [ 15k 36% 45/s ]
cpus: 7 gc: 1% heap: 2.9G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (10/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (3.6k/58k) -> write(10%)
0:16:47 INF [osm_pass2] - nodes: [ 4.5B 52% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 425M 443k/s ] 32G blocks: [ 15k 37% 44/s ]
cpus: 7 gc: 1% heap: 2.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (3.7k/58k) -> write(10%)
0:16:57 INF [osm_pass2] - nodes: [ 4.7B 54% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 429M 416k/s ] 33G blocks: [ 16k 38% 45/s ]
cpus: 7 gc: 1% heap: 2.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 98% 97% 97% 97% 97%) -> (3.9k/58k) -> write(10%)
0:17:07 INF [osm_pass2] - nodes: [ 4.9B 55% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 434M 429k/s ] 33G blocks: [ 16k 39% 44/s ]
cpus: 7 gc: 1% heap: 2.9G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 96%) -> (3.5k/58k) -> write(11%)
0:17:17 INF [osm_pass2] - nodes: [ 5B 57% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 437M 344k/s ] 33G blocks: [ 17k 40% 46/s ]
cpus: 7 gc: 1% heap: 3.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 98% 97% 97% 98% 98%) -> (3.6k/58k) -> write( 9%)
0:17:27 INF [osm_pass2] - nodes: [ 5.2B 59% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 441M 425k/s ] 35G blocks: [ 17k 41% 45/s ]
cpus: 7 gc: 1% heap: 3.9G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 98% 97% 97% 98% 97% 98%) -> (3.7k/58k) -> write(10%)
0:17:37 INF [osm_pass2] - nodes: [ 5.3B 61% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 447M 536k/s ] 35G blocks: [ 18k 42% 43/s ]
cpus: 7 gc: 1% heap: 2.3G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (9.8k/58k) -> write(13%)
0:17:47 INF [osm_pass2] - nodes: [ 5.5B 63% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 451M 471k/s ] 36G blocks: [ 18k 43% 44/s ]
cpus: 7 gc: 1% heap: 1.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (5k/58k) -> write(10%)
0:17:57 INF [osm_pass2] - nodes: [ 5.7B 64% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 457M 530k/s ] 36G blocks: [ 19k 44% 44/s ]
cpus: 7 gc: 1% heap: 2.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 97% 98% 98% 97% 98%) -> (3.4k/58k) -> write(10%)
0:18:07 INF [osm_pass2] - nodes: [ 5.8B 66% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 462M 496k/s ] 36G blocks: [ 19k 45% 45/s ]
cpus: 7 gc: 1% heap: 1.7G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 98% 98% 98% 98% 98% 98%) -> (4k/58k) -> write(10%)
0:18:17 INF [osm_pass2] - nodes: [ 6B 68% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 466M 403k/s ] 37G blocks: [ 19k 46% 45/s ]
cpus: 7 gc: 1% heap: 3.1G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 97% 97% 98% 97% 98%) -> (4.3k/58k) -> write( 9%)
0:18:27 INF [osm_pass2] - nodes: [ 6.1B 70% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 470M 392k/s ] 37G blocks: [ 20k 47% 45/s ]
cpus: 6.9 gc: 1% heap: 2.7G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (2.9k/58k) -> write( 9%)
0:18:37 INF [osm_pass2] - nodes: [ 6.3B 72% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 474M 418k/s ] 37G blocks: [ 20k 48% 45/s ]
cpus: 7 gc: 1% heap: 1.1G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 98% 97%) -> (3.7k/58k) -> write( 9%)
0:18:47 INF [osm_pass2] - nodes: [ 6.5B 74% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 479M 495k/s ] 39G blocks: [ 21k 49% 44/s ]
cpus: 6.9 gc: 1% heap: 1.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 96% 97% 97% 97% 96%) -> (4.1k/58k) -> write(11%)
0:18:57 INF [osm_pass2] - nodes: [ 6.6B 75% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 485M 608k/s ] 39G blocks: [ 21k 50% 43/s ]
cpus: 7 gc: 1% heap: 2.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 97% 97% 97% 97% 97%) -> (5k/58k) -> write(13%)
0:19:07 INF [osm_pass2] - nodes: [ 6.8B 77% 13M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 490M 517k/s ] 39G blocks: [ 22k 51% 38/s ]
cpus: 7 gc: 1% heap: 4.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 98% 97% 97% 98%) -> (4.5k/58k) -> write(11%)
0:19:17 INF [osm_pass2] - nodes: [ 6.9B 78% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 496M 568k/s ] 40G blocks: [ 22k 52% 41/s ]
cpus: 7 gc: 1% heap: 3.3G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (5.5k/58k) -> write(15%)
0:19:27 INF [osm_pass2] - nodes: [ 7B 80% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 500M 423k/s ] 40G blocks: [ 22k 53% 41/s ]
cpus: 7 gc: 1% heap: 2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 98% 97% 98% 97% 98%) -> (4.5k/58k) -> write(11%)
0:19:37 INF [osm_pass2] - nodes: [ 7.2B 82% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 503M 337k/s ] 40G blocks: [ 23k 54% 45/s ]
cpus: 6.9 gc: 1% heap: 2.9G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (5.8k/58k) -> write( 9%)
0:19:47 INF [osm_pass2] - nodes: [ 7.4B 84% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 508M 451k/s ] 41G blocks: [ 23k 55% 43/s ]
cpus: 7 gc: 1% heap: 2.3G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 96% 97% 98% 97% 97% 97%) -> (2.9k/58k) -> write(12%)
0:19:57 INF [osm_pass2] - nodes: [ 7.5B 85% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 512M 468k/s ] 41G blocks: [ 24k 56% 42/s ]
cpus: 7 gc: 1% heap: 3.2G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 98% 98% 97% 97% 97%) -> (5.3k/58k) -> write(11%)
0:20:07 INF [osm_pass2] - nodes: [ 7.7B 87% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 517M 481k/s ] 43G blocks: [ 24k 57% 43/s ]
cpus: 7 gc: 1% heap: 3G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 98% 98% 98% 98% 98% 98%) -> (4.1k/58k) -> write(11%)
0:20:17 INF [osm_pass2] - nodes: [ 7.8B 89% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 522M 509k/s ] 43G blocks: [ 25k 58% 42/s ]
cpus: 7 gc: 1% heap: 1.8G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 98% 98% 97% 97% 98%) -> (1.6k/58k) -> write(11%)
0:20:27 INF [osm_pass2] - nodes: [ 8B 91% 16M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 526M 397k/s ] 43G blocks: [ 25k 59% 44/s ]
cpus: 7 gc: 1% heap: 1.4G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 98% 98% 97% 97% 98% 97%) -> (4.2k/58k) -> write( 9%)
0:20:38 INF [osm_pass2] - nodes: [ 8.2B 93% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 531M 441k/s ] 44G blocks: [ 26k 60% 43/s ]
cpus: 7 gc: 1% heap: 1.5G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 98% 97% 97% 98% 98%) -> (2.7k/58k) -> write(10%)
0:20:48 INF [osm_pass2] - nodes: [ 8.3B 94% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 536M 495k/s ] 44G blocks: [ 26k 61% 45/s ]
cpus: 7 gc: 1% heap: 2.4G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(98% 97% 98% 97% 98% 97% 97%) -> (3.8k/58k) -> write(11%)
0:20:58 INF [osm_pass2] - nodes: [ 8.5B 96% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 542M 587k/s ] 44G blocks: [ 26k 62% 43/s ]
cpus: 7 gc: 1% heap: 3.9G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 98% 97% 97%) -> (3.4k/58k) -> write(12%)
0:21:08 INF [osm_pass2] - nodes: [ 8.6B 98% 14M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 548M 630k/s ] 45G blocks: [ 27k 63% 43/s ]
cpus: 7 gc: 1% heap: 2.7G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (3k/58k) -> write(14%)
0:21:18 INF [osm_pass2] - nodes: [ 8.7B 99% 15M/s ] 92G ways: [ 0 0% 0/s ] rels: [ 0 0% 0/s ] features: [ 553M 521k/s ] 45G blocks: [ 27k 64% 42/s ]
cpus: 7 gc: 1% heap: 3.4G/12G direct: 62M postGC: 1.2G relInfo: 700M mpGeoms: 277
read( 0%) -> (11/18) -> process(97% 97% 97% 97% 97% 97% 97%) -> (3.9k/58k) -> write(12%)
0:21:21 DEB [osm_pass2:process] - Sorting long long multimap...
0:21:21 INF [osm_pass2:process] - Finished nodes: 8,860,666,091 (14M/s) in 10m4s cpu:1h10m13s gc:6s avg:7
0:21:27 DEB [osm_pass2:process] - Sorted long long multimap 6s cpu:8s avg:1.4
0:21:28 INF [osm_pass2] - nodes: [ 8.8B 100% 6.3M/s ] 92G ways: [ 3.9k 0% 396/s ] rels: [ 0 0% 0/s ] features: [ 554M 129k/s ] 45G blocks: [ 27k 65% 18/s ]
cpus: 3.7 gc: 0% heap: 4.1G/12G direct: 62M postGC: 1.2G relInfo: 564M mpGeoms: 256k
read( 0%) -> (11/18) -> process(40% 95% 42% 41% 40% 40% 40%) -> (2.6k/58k) -> write( 3%)
0:21:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 347k 0% 34k/s ] rels: [ 0 0% 0/s ] features: [ 557M 231k/s ] 45G blocks: [ 27k 65% <1/s ]
cpus: 3.2 gc: 1% heap: 1.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 20M
read( 0%) -> (11/18) -> process(35% 32% 36% 34% 35% 34% 33%) -> (4.1k/58k) -> write( 5%)
0:21:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 806k 0% 45k/s ] rels: [ 0 0% 0/s ] features: [ 560M 304k/s ] 46G blocks: [ 27k 65% <1/s ]
cpus: 2.8 gc: 1% heap: 2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 29M
read( 0%) -> (11/18) -> process(38% 36% 39% 35% 36% 38% 37%) -> (3.9k/58k) -> write( 7%)
0:21:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 1.5M 0% 70k/s ] rels: [ 0 0% 0/s ] features: [ 564M 464k/s ] 46G blocks: [ 27k 65% 1/s ]
cpus: 3.3 gc: 1% heap: 1.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 31M
read( 0%) -> (11/18) -> process(40% 47% 46% 47% 46% 39% 45%) -> (4k/58k) -> write(11%)
0:22:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 2.3M 0% 81k/s ] rels: [ 0 0% 0/s ] features: [ 570M 553k/s ] 46G blocks: [ 27k 65% 1/s ]
cpus: 3.5 gc: 1% heap: 2.9G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 32M
read( 0%) -> (11/18) -> process(45% 46% 46% 45% 52% 47% 47%) -> (3.5k/58k) -> write(12%)
0:22:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 2.9M 0% 60k/s ] rels: [ 0 0% 0/s ] features: [ 574M 398k/s ] 48G blocks: [ 28k 65% 1/s ]
cpus: 2.9 gc: 1% heap: 4G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 38M
read( 0%) -> (11/18) -> process(37% 46% 37% 42% 37% 39% 42%) -> (3.2k/58k) -> write( 9%)
0:22:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 3.7M 0% 84k/s ] rels: [ 0 0% 0/s ] features: [ 579M 530k/s ] 48G blocks: [ 28k 65% 1/s ]
cpus: 3.6 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 44M
read( 0%) -> (11/18) -> process(50% 47% 49% 49% 50% 47% 47%) -> (4.2k/58k) -> write(12%)
0:22:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 4.5M 0% 75k/s ] rels: [ 0 0% 0/s ] features: [ 584M 497k/s ] 48G blocks: [ 28k 65% 1/s ]
cpus: 3.5 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 51M
read( 0%) -> (11/18) -> process(51% 48% 44% 48% 46% 47% 46%) -> (2.8k/58k) -> write(12%)
0:22:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 5.4M 1% 86k/s ] rels: [ 0 0% 0/s ] features: [ 590M 574k/s ] 49G blocks: [ 28k 65% 1/s ]
cpus: 3.8 gc: 1% heap: 1.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 57M
read( 0%) -> (11/18) -> process(55% 54% 47% 47% 51% 52% 49%) -> (3.5k/58k) -> write(14%)
0:22:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 6.4M 1% 108k/s ] rels: [ 0 0% 0/s ] features: [ 597M 664k/s ] 49G blocks: [ 28k 65% 2/s ]
cpus: 4.1 gc: 1% heap: 2.1G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 75M
read( 0%) -> (11/18) -> process(55% 59% 56% 51% 59% 53% 56%) -> (2.6k/58k) -> write(16%)
0:23:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 7.6M 1% 111k/s ] rels: [ 0 0% 0/s ] features: [ 603M 613k/s ] 50G blocks: [ 28k 65% 2/s ]
cpus: 4.1 gc: 1% heap: 1.5G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 85M
read( 0%) -> (11/18) -> process(57% 55% 55% 53% 53% 53% 57%) -> (3.5k/58k) -> write(14%)
0:23:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 8.5M 1% 94k/s ] rels: [ 0 0% 0/s ] features: [ 609M 573k/s ] 50G blocks: [ 28k 65% 2/s ]
cpus: 4 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 90M
read( 0%) -> (11/18) -> process(54% 56% 53% 53% 50% 54% 54%) -> (2.2k/58k) -> write(14%)
0:23:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 9.4M 1% 87k/s ] rels: [ 0 0% 0/s ] features: [ 614M 542k/s ] 52G blocks: [ 28k 65% 2/s ]
cpus: 3.6 gc: 1% heap: 2.1G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 91M
read( 0%) -> (11/18) -> process(47% 49% 51% 49% 46% 50% 49%) -> (3.9k/58k) -> write(13%)
0:23:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 10M 1% 109k/s ] rels: [ 0 0% 0/s ] features: [ 620M 625k/s ] 52G blocks: [ 28k 65% 2/s ]
cpus: 4 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 92M
read( 0%) -> (11/18) -> process(51% 52% 55% 59% 53% 53% 52%) -> (4.2k/58k) -> write(15%)
0:23:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 11M 1% 89k/s ] rels: [ 0 0% 0/s ] features: [ 625M 514k/s ] 52G blocks: [ 28k 65% 2/s ]
cpus: 3.7 gc: 1% heap: 1.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 97M
read( 0%) -> (11/18) -> process(51% 51% 49% 51% 53% 49% 51%) -> (3k/58k) -> write(12%)
0:23:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 12M 1% 110k/s ] rels: [ 0 0% 0/s ] features: [ 632M 630k/s ] 53G blocks: [ 28k 65% 2/s ]
cpus: 4.1 gc: 1% heap: 1.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 106M
read( 0%) -> (11/18) -> process(54% 57% 55% 56% 53% 57% 56%) -> (3.7k/58k) -> write(15%)
0:24:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 13M 1% 65k/s ] rels: [ 0 0% 0/s ] features: [ 636M 405k/s ] 53G blocks: [ 28k 65% 1/s ]
cpus: 3.3 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 138M
read( 0%) -> (11/18) -> process(43% 45% 42% 46% 46% 47% 44%) -> (2.6k/58k) -> write(10%)
0:24:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 13M 1% 39k/s ] rels: [ 0 0% 0/s ] features: [ 638M 254k/s ] 53G blocks: [ 28k 66% <1/s ]
cpus: 3 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 154M
read( 0%) -> (11/18) -> process(41% 40% 40% 44% 39% 42% 41%) -> (3.9k/58k) -> write( 6%)
0:24:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 14M 1% 45k/s ] rels: [ 0 0% 0/s ] features: [ 641M 288k/s ] 54G blocks: [ 28k 66% 1/s ]
cpus: 3.1 gc: 1% heap: 3.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 168M
read( 0%) -> (11/18) -> process(43% 39% 43% 43% 43% 42% 41%) -> (4.1k/58k) -> write( 7%)
0:24:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 14M 1% 43k/s ] rels: [ 0 0% 0/s ] features: [ 644M 267k/s ] 54G blocks: [ 28k 66% <1/s ]
cpus: 3 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 176M
read( 0%) -> (11/18) -> process(45% 41% 40% 41% 40% 39% 39%) -> (4.4k/58k) -> write( 7%)
0:24:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 14M 1% 40k/s ] rels: [ 0 0% 0/s ] features: [ 646M 260k/s ] 54G blocks: [ 28k 66% 1/s ]
cpus: 3.4 gc: 1% heap: 1.6G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 189M
read( 0%) -> (11/18) -> process(42% 46% 56% 44% 57% 43% 41%) -> (3.6k/58k) -> write( 7%)
0:24:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 15M 2% 42k/s ] rels: [ 0 0% 0/s ] features: [ 649M 253k/s ] 54G blocks: [ 28k 66% <1/s ]
cpus: 3.1 gc: 1% heap: 2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 203M
read( 0%) -> (11/18) -> process(41% 45% 47% 41% 41% 38% 40%) -> (2.3k/58k) -> write( 6%)
0:25:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 15M 2% 48k/s ] rels: [ 0 0% 0/s ] features: [ 652M 261k/s ] 54G blocks: [ 28k 66% 1/s ]
cpus: 3.2 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 212M
read( 0%) -> (11/18) -> process(47% 41% 48% 41% 42% 41% 41%) -> (3.2k/58k) -> write( 7%)
0:25:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 16M 2% 45k/s ] rels: [ 0 0% 0/s ] features: [ 654M 270k/s ] 55G blocks: [ 28k 66% <1/s ]
cpus: 3.1 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 223M
read( 0%) -> (11/18) -> process(42% 44% 42% 42% 41% 42% 44%) -> (4.1k/58k) -> write( 7%)
0:25:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 16M 2% 47k/s ] rels: [ 0 0% 0/s ] features: [ 657M 278k/s ] 55G blocks: [ 28k 66% 1/s ]
cpus: 3.2 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 237M
read( 0%) -> (11/18) -> process(44% 45% 45% 44% 45% 43% 44%) -> (3.9k/58k) -> write( 7%)
0:25:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 17M 2% 47k/s ] rels: [ 0 0% 0/s ] features: [ 660M 270k/s ] 55G blocks: [ 28k 66% <1/s ]
cpus: 3.4 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 250M
read( 0%) -> (11/18) -> process(44% 45% 49% 46% 48% 46% 46%) -> (3k/58k) -> write( 7%)
0:25:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 17M 2% 68k/s ] rels: [ 0 0% 0/s ] features: [ 663M 280k/s ] 55G blocks: [ 28k 66% 1/s ]
cpus: 3.8 gc: 1% heap: 3.6G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 260M
read( 0%) -> (11/18) -> process(46% 49% 52% 58% 44% 60% 52%) -> (2.7k/58k) -> write( 7%)
0:25:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 18M 2% 51k/s ] rels: [ 0 0% 0/s ] features: [ 665M 270k/s ] 55G blocks: [ 28k 66% 1/s ]
cpus: 3.3 gc: 1% heap: 3.5G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 270M
read( 0%) -> (11/18) -> process(45% 44% 48% 46% 44% 45% 44%) -> (2.6k/58k) -> write( 7%)
0:26:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 18M 2% 52k/s ] rels: [ 0 0% 0/s ] features: [ 668M 297k/s ] 57G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 1.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 282M
read( 0%) -> (11/18) -> process(45% 50% 52% 49% 48% 47% 53%) -> (3.2k/58k) -> write( 8%)
0:26:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 19M 2% 56k/s ] rels: [ 0 0% 0/s ] features: [ 672M 326k/s ] 57G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 2.1G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 290M
read( 0%) -> (11/18) -> process(48% 51% 51% 51% 52% 44% 47%) -> (2.1k/58k) -> write( 8%)
0:26:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 20M 2% 53k/s ] rels: [ 0 0% 0/s ] features: [ 674M 269k/s ] 57G blocks: [ 28k 66% <1/s ]
cpus: 3.3 gc: 1% heap: 2.3G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 312M
read( 0%) -> (11/18) -> process(44% 43% 43% 51% 51% 44% 45%) -> (1.8k/58k) -> write( 7%)
0:26:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 20M 2% 54k/s ] rels: [ 0 0% 0/s ] features: [ 677M 287k/s ] 57G blocks: [ 28k 66% 1/s ]
cpus: 3.4 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 337M
read( 0%) -> (11/18) -> process(47% 48% 47% 48% 49% 41% 42%) -> (3.4k/58k) -> write( 7%)
0:26:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 21M 2% 57k/s ] rels: [ 0 0% 0/s ] features: [ 680M 269k/s ] 57G blocks: [ 28k 66% 1/s ]
cpus: 3.9 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 359M
read( 0%) -> (11/18) -> process(65% 55% 56% 49% 53% 47% 51%) -> (4.1k/58k) -> write( 7%)
0:26:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 21M 2% 72k/s ] rels: [ 0 0% 0/s ] features: [ 683M 284k/s ] 58G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 1.6G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 367M
read( 0%) -> (11/18) -> process(48% 43% 57% 55% 46% 44% 51%) -> (3.5k/58k) -> write( 7%)
0:27:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 22M 2% 85k/s ] rels: [ 0 0% 0/s ] features: [ 686M 286k/s ] 58G blocks: [ 28k 66% 1/s ]
cpus: 3.8 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 375M
read( 0%) -> (11/18) -> process(47% 54% 50% 57% 55% 53% 54%) -> (4.2k/58k) -> write( 7%)
0:27:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 23M 2% 54k/s ] rels: [ 0 0% 0/s ] features: [ 688M 279k/s ] 58G blocks: [ 28k 66% 1/s ]
cpus: 3.3 gc: 1% heap: 1.4G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 388M
read( 0%) -> (11/18) -> process(47% 47% 46% 43% 44% 44% 46%) -> (3.8k/58k) -> write( 7%)
0:27:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 23M 2% 60k/s ] rels: [ 0 0% 0/s ] features: [ 691M 286k/s ] 58G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 409M
read( 0%) -> (11/18) -> process(52% 51% 45% 47% 44% 47% 55%) -> (4.7k/58k) -> write( 7%)
0:27:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 24M 2% 64k/s ] rels: [ 0 0% 0/s ] features: [ 694M 289k/s ] 59G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 1.9G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 423M
read( 0%) -> (11/18) -> process(48% 53% 50% 50% 47% 51% 48%) -> (4.6k/58k) -> write( 7%)
0:27:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 25M 3% 62k/s ] rels: [ 0 0% 0/s ] features: [ 697M 258k/s ] 59G blocks: [ 28k 66% 1/s ]
cpus: 4.1 gc: 1% heap: 3.1G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 440M
read( 0%) -> (11/18) -> process(55% 57% 58% 59% 55% 54% 52%) -> (4.6k/58k) -> write( 7%)
0:27:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 25M 3% 57k/s ] rels: [ 0 0% 0/s ] features: [ 699M 244k/s ] 59G blocks: [ 28k 66% 1/s ]
cpus: 4.1 gc: 1% heap: 1.8G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 462M
read( 0%) -> (11/18) -> process(55% 59% 48% 53% 61% 58% 61%) -> (3.1k/58k) -> write( 6%)
0:28:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 25M 3% 14k/s ] rels: [ 0 0% 0/s ] features: [ 700M 95k/s ] 59G blocks: [ 28k 66% <1/s ]
cpus: 5.3 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.2G relInfo: 564M mpGeoms: 472M
read( 0%) -> (11/18) -> process(73% 71% 73% 76% 72% 72% 78%) -> (4.1k/58k) -> write( 3%)
0:28:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 26M 3% 14k/s ] rels: [ 0 0% 0/s ] features: [ 701M 91k/s ] 59G blocks: [ 28k 66% <1/s ]
cpus: 5.6 gc: 1% heap: 3.9G/12G direct: 63M postGC: 1.3G relInfo: 564M mpGeoms: 490M
read( 0%) -> (11/18) -> process(78% 79% 74% 75% 75% 82% 82%) -> (3.6k/58k) -> write( 3%)
0:28:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 26M 3% 36k/s ] rels: [ 0 0% 0/s ] features: [ 703M 158k/s ] 59G blocks: [ 28k 66% <1/s ]
cpus: 5.1 gc: 1% heap: 1.7G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 506M
read( 0%) -> (11/18) -> process(59% 67% 74% 62% 73% 81% 81%) -> (3.4k/58k) -> write( 5%)
0:28:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 26M 3% 59k/s ] rels: [ 0 0% 0/s ] features: [ 705M 270k/s ] 59G blocks: [ 28k 66% 1/s ]
cpus: 4 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 534M
read( 0%) -> (11/18) -> process(59% 58% 54% 50% 58% 52% 51%) -> (5k/58k) -> write( 7%)
0:28:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 27M 3% 64k/s ] rels: [ 0 0% 0/s ] features: [ 708M 274k/s ] 61G blocks: [ 28k 66% 1/s ]
cpus: 3.6 gc: 1% heap: 1.5G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 552M
read( 0%) -> (11/18) -> process(50% 49% 52% 53% 47% 48% 49%) -> (4.2k/58k) -> write( 7%)
0:28:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 28M 3% 55k/s ] rels: [ 0 0% 0/s ] features: [ 711M 261k/s ] 61G blocks: [ 28k 66% <1/s ]
cpus: 4.3 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 588M
read( 0%) -> (11/18) -> process(55% 70% 69% 52% 50% 67% 48%) -> (2.6k/58k) -> write( 7%)
0:29:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 28M 3% 77k/s ] rels: [ 0 0% 0/s ] features: [ 714M 289k/s ] 61G blocks: [ 28k 66% 1/s ]
cpus: 4.2 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 598M
read( 0%) -> (11/18) -> process(58% 77% 55% 53% 58% 57% 51%) -> (3.6k/58k) -> write( 7%)
0:29:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 29M 3% 75k/s ] rels: [ 0 0% 0/s ] features: [ 716M 276k/s ] 61G blocks: [ 28k 66% 1/s ]
cpus: 3.8 gc: 1% heap: 3.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 608M
read( 0%) -> (11/18) -> process(54% 56% 56% 52% 53% 49% 51%) -> (4k/58k) -> write( 7%)
0:29:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 30M 3% 65k/s ] rels: [ 0 0% 0/s ] features: [ 719M 276k/s ] 61G blocks: [ 28k 66% 1/s ]
cpus: 3.8 gc: 1% heap: 1.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 624M
read( 0%) -> (11/18) -> process(52% 52% 53% 51% 53% 53% 52%) -> (3k/58k) -> write( 7%)
0:29:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 31M 3% 74k/s ] rels: [ 0 0% 0/s ] features: [ 722M 280k/s ] 62G blocks: [ 28k 66% 1/s ]
cpus: 4.2 gc: 1% heap: 3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 642M
read( 0%) -> (11/18) -> process(65% 64% 52% 55% 58% 54% 54%) -> (2.6k/58k) -> write( 7%)
0:29:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 31M 3% 77k/s ] rels: [ 0 0% 0/s ] features: [ 725M 273k/s ] 62G blocks: [ 28k 66% 1/s ]
cpus: 3.8 gc: 1% heap: 2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 655M
read( 0%) -> (11/18) -> process(55% 55% 52% 54% 50% 49% 54%) -> (3.6k/58k) -> write( 7%)
0:29:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 32M 3% 83k/s ] rels: [ 0 0% 0/s ] features: [ 727M 268k/s ] 62G blocks: [ 28k 67% 1/s ]
cpus: 3.9 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 665M
read( 0%) -> (11/18) -> process(52% 51% 59% 51% 60% 52% 55%) -> (5.2k/58k) -> write( 7%)
0:30:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 33M 3% 76k/s ] rels: [ 0 0% 0/s ] features: [ 730M 269k/s ] 62G blocks: [ 28k 67% 1/s ]
cpus: 4.1 gc: 1% heap: 2.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 678M
read( 0%) -> (11/18) -> process(60% 59% 57% 56% 53% 61% 55%) -> (4.3k/58k) -> write( 7%)
0:30:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 34M 3% 72k/s ] rels: [ 0 0% 0/s ] features: [ 733M 255k/s ] 62G blocks: [ 28k 67% 1/s ]
cpus: 4.1 gc: 1% heap: 1.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 697M
read( 0%) -> (11/18) -> process(57% 60% 61% 55% 53% 57% 55%) -> (3.8k/58k) -> write( 7%)
0:30:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 35M 4% 84k/s ] rels: [ 0 0% 0/s ] features: [ 735M 275k/s ] 63G blocks: [ 28k 67% 1/s ]
cpus: 4.5 gc: 1% heap: 3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 715M
read( 0%) -> (11/18) -> process(65% 63% 66% 63% 61% 56% 64%) -> (2.4k/58k) -> write( 8%)
0:30:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 35M 4% 76k/s ] rels: [ 0 0% 0/s ] features: [ 738M 255k/s ] 63G blocks: [ 28k 67% 1/s ]
cpus: 4.4 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 726M
read( 0%) -> (11/18) -> process(62% 59% 56% 65% 63% 58% 66%) -> (3.3k/58k) -> write( 7%)
0:30:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 36M 4% 75k/s ] rels: [ 0 0% 0/s ] features: [ 741M 283k/s ] 63G blocks: [ 28k 67% 1/s ]
cpus: 4.6 gc: 1% heap: 3.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 737M
read( 0%) -> (11/18) -> process(58% 67% 59% 68% 66% 60% 63%) -> (3k/58k) -> write( 9%)
0:30:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 37M 4% 97k/s ] rels: [ 0 0% 0/s ] features: [ 744M 279k/s ] 63G blocks: [ 28k 67% 1/s ]
cpus: 4.4 gc: 1% heap: 3.6G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 754M
read( 0%) -> (11/18) -> process(59% 60% 62% 61% 58% 57% 64%) -> (5k/58k) -> write( 7%)
0:31:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 39M 4% 181k/s ] rels: [ 0 0% 0/s ] features: [ 746M 270k/s ] 63G blocks: [ 28k 67% 2/s ]
cpus: 5.1 gc: 1% heap: 3.5G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 761M
read( 0%) -> (11/18) -> process(72% 69% 70% 74% 69% 67% 72%) -> (4.1k/58k) -> write( 8%)
0:31:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 40M 4% 149k/s ] rels: [ 0 0% 0/s ] features: [ 749M 274k/s ] 63G blocks: [ 28k 67% 2/s ]
cpus: 4.8 gc: 1% heap: 2.9G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 771M
read( 0%) -> (11/18) -> process(65% 64% 64% 66% 64% 72% 67%) -> (3.1k/58k) -> write( 7%)
0:31:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 42M 4% 134k/s ] rels: [ 0 0% 0/s ] features: [ 752M 272k/s ] 64G blocks: [ 28k 67% 2/s ]
cpus: 4.6 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 782M
read( 0%) -> (11/18) -> process(61% 66% 62% 67% 62% 67% 65%) -> (4.2k/58k) -> write( 7%)
0:31:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 43M 4% 128k/s ] rels: [ 0 0% 0/s ] features: [ 754M 272k/s ] 64G blocks: [ 28k 67% 2/s ]
cpus: 4.6 gc: 1% heap: 1.6G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 795M
read( 0%) -> (11/18) -> process(62% 64% 62% 64% 64% 66% 59%) -> (2.7k/58k) -> write( 7%)
0:31:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 44M 5% 122k/s ] rels: [ 0 0% 0/s ] features: [ 757M 272k/s ] 64G blocks: [ 28k 67% 1/s ]
cpus: 4.6 gc: 1% heap: 3.9G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 809M
read( 0%) -> (11/18) -> process(63% 64% 61% 66% 63% 67% 66%) -> (4.4k/58k) -> write( 7%)
0:31:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 46M 5% 131k/s ] rels: [ 0 0% 0/s ] features: [ 760M 276k/s ] 64G blocks: [ 28k 67% 2/s ]
cpus: 4.7 gc: 1% heap: 4.1G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 821M
read( 0%) -> (11/18) -> process(64% 63% 66% 65% 69% 67% 61%) -> (4k/58k) -> write( 7%)
0:32:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 47M 5% 120k/s ] rels: [ 0 0% 0/s ] features: [ 763M 255k/s ] 64G blocks: [ 28k 67% 2/s ]
cpus: 4.7 gc: 1% heap: 1.6G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 834M
read( 0%) -> (11/18) -> process(65% 68% 62% 66% 66% 63% 69%) -> (3.9k/58k) -> write( 7%)
0:32:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 48M 5% 119k/s ] rels: [ 0 0% 0/s ] features: [ 765M 271k/s ] 64G blocks: [ 28k 67% 2/s ]
cpus: 4.7 gc: 1% heap: 1.8G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 849M
read( 0%) -> (11/18) -> process(67% 68% 65% 65% 60% 67% 68%) -> (3.7k/58k) -> write( 7%)
0:32:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 49M 5% 110k/s ] rels: [ 0 0% 0/s ] features: [ 768M 255k/s ] 66G blocks: [ 28k 67% 1/s ]
cpus: 4.6 gc: 1% heap: 3.4G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 865M
read( 0%) -> (11/18) -> process(64% 67% 68% 64% 62% 61% 65%) -> (3.5k/58k) -> write( 7%)
0:32:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 50M 5% 116k/s ] rels: [ 0 0% 0/s ] features: [ 770M 259k/s ] 66G blocks: [ 29k 67% 2/s ]
cpus: 4.6 gc: 1% heap: 2.3G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 879M
read( 0%) -> (11/18) -> process(61% 64% 64% 64% 63% 64% 66%) -> (4.2k/58k) -> write( 7%)
0:32:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 51M 5% 107k/s ] rels: [ 0 0% 0/s ] features: [ 773M 256k/s ] 66G blocks: [ 29k 67% 1/s ]
cpus: 4.4 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 893M
read( 0%) -> (11/18) -> process(60% 60% 64% 56% 61% 63% 64%) -> (3.9k/58k) -> write( 7%)
0:32:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 52M 5% 113k/s ] rels: [ 0 0% 0/s ] features: [ 776M 270k/s ] 66G blocks: [ 29k 67% 2/s ]
cpus: 4.5 gc: 1% heap: 3.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 905M
read( 0%) -> (11/18) -> process(65% 64% 63% 61% 62% 61% 57%) -> (4.5k/58k) -> write( 7%)
0:33:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 53M 5% 104k/s ] rels: [ 0 0% 0/s ] features: [ 778M 253k/s ] 66G blocks: [ 29k 67% 1/s ]
cpus: 4.7 gc: 1% heap: 2G/12G direct: 63M postGC: 1.4G relInfo: 564M mpGeoms: 915M
read( 0%) -> (11/18) -> process(67% 62% 69% 65% 64% 67% 66%) -> (3k/58k) -> write( 7%)
0:33:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 54M 6% 91k/s ] rels: [ 0 0% 0/s ] features: [ 780M 225k/s ] 67G blocks: [ 29k 67% 1/s ]
cpus: 4.9 gc: 1% heap: 3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 952M
read( 0%) -> (11/18) -> process(69% 70% 67% 69% 69% 67% 67%) -> (4.2k/58k) -> write( 6%)
0:33:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 55M 6% 89k/s ] rels: [ 0 0% 0/s ] features: [ 783M 224k/s ] 67G blocks: [ 29k 67% 1/s ]
cpus: 5.1 gc: 1% heap: 3.1G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 970M
read( 0%) -> (11/18) -> process(72% 71% 70% 71% 68% 73% 72%) -> (3.7k/58k) -> write( 6%)
0:33:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 56M 6% 51k/s ] rels: [ 0 0% 0/s ] features: [ 784M 160k/s ] 67G blocks: [ 29k 68% 1/s ]
cpus: 5.4 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 983M
read( 0%) -> (11/18) -> process(81% 76% 74% 71% 75% 70% 82%) -> (4k/58k) -> write( 5%)
0:33:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 56M 6% 57k/s ] rels: [ 0 0% 0/s ] features: [ 786M 170k/s ] 67G blocks: [ 29k 68% 1/s ]
cpus: 5.4 gc: 1% heap: 2.5G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 990M
read( 0%) -> (11/18) -> process(69% 86% 71% 76% 67% 74% 86%) -> (3.9k/58k) -> write( 5%)
0:33:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 57M 6% 99k/s ] rels: [ 0 0% 0/s ] features: [ 789M 259k/s ] 67G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 4.3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(63% 63% 66% 59% 64% 59% 64%) -> (3.8k/58k) -> write( 7%)
0:34:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 58M 6% 105k/s ] rels: [ 0 0% 0/s ] features: [ 791M 261k/s ] 67G blocks: [ 29k 68% 2/s ]
cpus: 4.7 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(64% 67% 65% 65% 67% 64% 64%) -> (4.9k/58k) -> write( 7%)
0:34:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 60M 6% 107k/s ] rels: [ 0 0% 0/s ] features: [ 794M 258k/s ] 67G blocks: [ 29k 68% 2/s ]
cpus: 4.7 gc: 1% heap: 3.3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(63% 61% 68% 66% 68% 63% 62%) -> (1.8k/58k) -> write( 7%)
0:34:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 60M 6% 98k/s ] rels: [ 0 0% 0/s ] features: [ 796M 264k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(61% 65% 61% 62% 63% 59% 67%) -> (3k/58k) -> write( 7%)
0:34:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 61M 6% 71k/s ] rels: [ 0 0% 0/s ] features: [ 798M 192k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 5.1 gc: 1% heap: 2.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(72% 74% 72% 74% 73% 65% 68%) -> (4.5k/58k) -> write( 5%)
0:34:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 62M 6% 93k/s ] rels: [ 0 0% 0/s ] features: [ 801M 256k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 4.6 gc: 1% heap: 1.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(68% 60% 67% 60% 71% 61% 61%) -> (3.7k/58k) -> write( 7%)
0:34:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 63M 6% 94k/s ] rels: [ 0 0% 0/s ] features: [ 804M 259k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(60% 64% 62% 66% 61% 60% 61%) -> (4.5k/58k) -> write( 7%)
0:35:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 64M 7% 95k/s ] rels: [ 0 0% 0/s ] features: [ 806M 261k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 4.4 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1G
read( 0%) -> (11/18) -> process(62% 63% 59% 62% 64% 62% 59%) -> (3.2k/58k) -> write( 7%)
0:35:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 65M 7% 95k/s ] rels: [ 0 0% 0/s ] features: [ 809M 260k/s ] 68G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 2.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(63% 58% 64% 62% 62% 65% 66%) -> (3.8k/58k) -> write( 7%)
0:35:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 66M 7% 102k/s ] rels: [ 0 0% 0/s ] features: [ 811M 256k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(64% 64% 61% 62% 62% 66% 61%) -> (3.6k/58k) -> write( 7%)
0:35:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 67M 7% 101k/s ] rels: [ 0 0% 0/s ] features: [ 814M 261k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.7 gc: 1% heap: 1.6G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(71% 61% 65% 68% 65% 66% 65%) -> (2.1k/58k) -> write( 7%)
0:35:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 68M 7% 95k/s ] rels: [ 0 0% 0/s ] features: [ 817M 261k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.7 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(64% 64% 67% 68% 64% 62% 66%) -> (1.8k/58k) -> write( 7%)
0:35:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 69M 7% 85k/s ] rels: [ 0 0% 0/s ] features: [ 819M 247k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.7 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(63% 66% 63% 62% 69% 70% 64%) -> (3.4k/58k) -> write( 7%)
0:36:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 70M 7% 98k/s ] rels: [ 0 0% 0/s ] features: [ 822M 253k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.7 gc: 1% heap: 1.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.1G
read( 0%) -> (11/18) -> process(64% 68% 64% 62% 64% 67% 65%) -> (3.9k/58k) -> write( 7%)
0:36:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 71M 7% 89k/s ] rels: [ 0 0% 0/s ] features: [ 824M 256k/s ] 69G blocks: [ 29k 68% 1/s ]
cpus: 4.7 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(64% 64% 69% 68% 68% 59% 70%) -> (2k/58k) -> write( 7%)
0:36:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 72M 7% 96k/s ] rels: [ 0 0% 0/s ] features: [ 827M 281k/s ] 71G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 2.1G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(63% 61% 59% 62% 63% 63% 66%) -> (4k/58k) -> write( 7%)
0:36:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 73M 7% 109k/s ] rels: [ 0 0% 0/s ] features: [ 830M 275k/s ] 71G blocks: [ 29k 68% 1/s ]
cpus: 4.5 gc: 1% heap: 2.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(64% 63% 66% 64% 60% 63% 60%) -> (2.1k/58k) -> write( 7%)
0:36:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 74M 8% 118k/s ] rels: [ 0 0% 0/s ] features: [ 833M 299k/s ] 71G blocks: [ 29k 68% 2/s ]
cpus: 4.7 gc: 1% heap: 1.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(60% 66% 65% 67% 65% 65% 63%) -> (3.6k/58k) -> write( 8%)
0:36:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 75M 8% 104k/s ] rels: [ 0 0% 0/s ] features: [ 836M 277k/s ] 71G blocks: [ 29k 68% 1/s ]
cpus: 4.3 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(56% 61% 60% 55% 63% 61% 59%) -> (3.8k/58k) -> write( 7%)
0:37:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 76M 8% 110k/s ] rels: [ 0 0% 0/s ] features: [ 839M 302k/s ] 71G blocks: [ 29k 68% 2/s ]
cpus: 4.6 gc: 1% heap: 3.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(63% 62% 65% 68% 67% 63% 60%) -> (4k/58k) -> write( 8%)
0:37:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 77M 8% 116k/s ] rels: [ 0 0% 0/s ] features: [ 842M 316k/s ] 72G blocks: [ 29k 68% 2/s ]
cpus: 4.6 gc: 1% heap: 3.9G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(64% 62% 63% 62% 66% 65% 61%) -> (2.8k/58k) -> write( 8%)
0:37:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 78M 8% 105k/s ] rels: [ 0 0% 0/s ] features: [ 845M 297k/s ] 72G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(60% 60% 59% 63% 61% 61% 59%) -> (3.5k/58k) -> write( 8%)
0:37:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 79M 8% 102k/s ] rels: [ 0 0% 0/s ] features: [ 848M 288k/s ] 72G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 2.5G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(65% 62% 63% 59% 62% 60% 59%) -> (3.3k/58k) -> write( 7%)
0:37:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 80M 8% 102k/s ] rels: [ 0 0% 0/s ] features: [ 850M 293k/s ] 72G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 1.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.2G
read( 0%) -> (11/18) -> process(60% 60% 59% 61% 61% 62% 60%) -> (2.8k/58k) -> write( 7%)
0:37:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 81M 8% 108k/s ] rels: [ 0 0% 0/s ] features: [ 854M 303k/s ] 72G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 2.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(61% 59% 62% 61% 61% 64% 61%) -> (4.6k/58k) -> write( 8%)
0:38:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 83M 8% 107k/s ] rels: [ 0 0% 0/s ] features: [ 856M 295k/s ] 73G blocks: [ 29k 69% 1/s ]
cpus: 4.3 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(59% 59% 60% 60% 60% 58% 59%) -> (3.3k/58k) -> write( 8%)
0:38:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 84M 8% 109k/s ] rels: [ 0 0% 0/s ] features: [ 859M 282k/s ] 73G blocks: [ 29k 69% 2/s ]
cpus: 4.3 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(60% 60% 57% 59% 60% 60% 61%) -> (4.1k/58k) -> write( 7%)
0:38:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 85M 9% 112k/s ] rels: [ 0 0% 0/s ] features: [ 862M 305k/s ] 73G blocks: [ 29k 69% 1/s ]
cpus: 4.6 gc: 1% heap: 2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(63% 65% 62% 60% 64% 66% 62%) -> (2.1k/58k) -> write( 8%)
0:38:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 86M 9% 115k/s ] rels: [ 0 0% 0/s ] features: [ 865M 288k/s ] 73G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 3.1G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(63% 62% 61% 61% 63% 60% 61%) -> (2.6k/58k) -> write( 7%)
0:38:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 87M 9% 104k/s ] rels: [ 0 0% 0/s ] features: [ 868M 293k/s ] 73G blocks: [ 29k 69% 1/s ]
cpus: 4.3 gc: 1% heap: 1.5G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(65% 55% 60% 59% 56% 62% 57%) -> (3.3k/58k) -> write( 7%)
0:38:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 88M 9% 101k/s ] rels: [ 0 0% 0/s ] features: [ 871M 293k/s ] 73G blocks: [ 29k 69% 1/s ]
cpus: 4.2 gc: 1% heap: 2.2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(57% 58% 56% 60% 61% 57% 59%) -> (4.2k/58k) -> write( 7%)
0:39:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 89M 9% 107k/s ] rels: [ 0 0% 0/s ] features: [ 874M 279k/s ] 74G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.3G
read( 0%) -> (11/18) -> process(61% 60% 60% 62% 59% 60% 62%) -> (3.4k/58k) -> write( 7%)
0:39:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 90M 9% 107k/s ] rels: [ 0 0% 0/s ] features: [ 877M 265k/s ] 74G blocks: [ 29k 69% 1/s ]
cpus: 4.3 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(63% 60% 57% 61% 61% 60% 58%) -> (4.6k/58k) -> write( 7%)
0:39:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 91M 9% 92k/s ] rels: [ 0 0% 0/s ] features: [ 879M 260k/s ] 74G blocks: [ 29k 69% 1/s ]
cpus: 4.4 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(59% 64% 60% 63% 63% 61% 62%) -> (4.3k/58k) -> write( 7%)
0:39:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 92M 9% 101k/s ] rels: [ 0 0% 0/s ] features: [ 882M 280k/s ] 74G blocks: [ 29k 69% 1/s ]
cpus: 4.7 gc: 1% heap: 4.3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(71% 63% 64% 67% 60% 67% 62%) -> (2.6k/58k) -> write( 7%)
0:39:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 93M 9% 102k/s ] rels: [ 0 0% 0/s ] features: [ 885M 273k/s ] 74G blocks: [ 29k 69% 1/s ]
cpus: 4.6 gc: 1% heap: 3.4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(66% 64% 66% 65% 60% 63% 62%) -> (2.9k/58k) -> write( 7%)
0:39:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 94M 10% 94k/s ] rels: [ 0 0% 0/s ] features: [ 887M 265k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.6 gc: 1% heap: 4.3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(60% 61% 61% 67% 66% 65% 66%) -> (3.9k/58k) -> write( 7%)
0:40:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 95M 10% 96k/s ] rels: [ 0 0% 0/s ] features: [ 890M 272k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.7 gc: 1% heap: 4.1G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(68% 68% 66% 65% 63% 62% 62%) -> (2.5k/58k) -> write( 7%)
0:40:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 96M 10% 117k/s ] rels: [ 0 0% 0/s ] features: [ 893M 283k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.8 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.4G
read( 0%) -> (11/18) -> process(67% 68% 70% 67% 66% 67% 61%) -> (2.5k/58k) -> write( 7%)
0:40:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 97M 10% 112k/s ] rels: [ 0 0% 0/s ] features: [ 896M 280k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.8 gc: 1% heap: 4G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.5G
read( 0%) -> (11/18) -> process(66% 66% 66% 71% 67% 64% 66%) -> (4.9k/58k) -> write( 7%)
0:40:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 98M 10% 108k/s ] rels: [ 0 0% 0/s ] features: [ 899M 274k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.7 gc: 1% heap: 4.3G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.5G
read( 0%) -> (11/18) -> process(65% 64% 65% 61% 65% 66% 69%) -> (3.5k/58k) -> write( 7%)
0:40:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 99M 10% 103k/s ] rels: [ 0 0% 0/s ] features: [ 901M 274k/s ] 75G blocks: [ 29k 69% 1/s ]
cpus: 4.7 gc: 1% heap: 2G/12G direct: 63M postGC: 1.5G relInfo: 564M mpGeoms: 1.5G
read( 0%) -> (11/18) -> process(64% 65% 65% 62% 64% 68% 70%) -> (3.3k/58k) -> write( 7%)
0:40:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 101M 10% 111k/s ] rels: [ 0 0% 0/s ] features: [ 904M 294k/s ] 77G blocks: [ 29k 69% 1/s ]
cpus: 4.3 gc: 1% heap: 2.5G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(60% 59% 63% 56% 59% 60% 62%) -> (4.3k/58k) -> write( 8%)
0:41:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 102M 10% 119k/s ] rels: [ 0 0% 0/s ] features: [ 907M 284k/s ] 77G blocks: [ 29k 69% 2/s ]
cpus: 4.6 gc: 1% heap: 3.6G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(62% 67% 65% 65% 59% 62% 62%) -> (4.2k/58k) -> write( 7%)
0:41:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 103M 10% 113k/s ] rels: [ 0 0% 0/s ] features: [ 910M 291k/s ] 77G blocks: [ 29k 69% 1/s ]
cpus: 4.6 gc: 1% heap: 4.3G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(67% 63% 60% 66% 61% 66% 60%) -> (4.3k/58k) -> write( 8%)
0:41:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 104M 11% 108k/s ] rels: [ 0 0% 0/s ] features: [ 913M 276k/s ] 77G blocks: [ 29k 69% 1/s ]
cpus: 4.5 gc: 1% heap: 1.5G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(60% 63% 63% 59% 61% 63% 66%) -> (4.8k/58k) -> write( 7%)
0:41:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 105M 11% 108k/s ] rels: [ 0 0% 0/s ] features: [ 916M 282k/s ] 77G blocks: [ 29k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(60% 63% 61% 61% 61% 61% 60%) -> (1.6k/58k) -> write( 7%)
0:41:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 106M 11% 107k/s ] rels: [ 0 0% 0/s ] features: [ 918M 288k/s ] 78G blocks: [ 29k 70% 1/s ]
cpus: 4.5 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(62% 59% 62% 62% 64% 62% 64%) -> (3.2k/58k) -> write( 8%)
0:41:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 107M 11% 120k/s ] rels: [ 0 0% 0/s ] features: [ 921M 304k/s ] 78G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.6G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(59% 63% 61% 60% 63% 62% 62%) -> (4k/58k) -> write( 8%)
0:42:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 108M 11% 109k/s ] rels: [ 0 0% 0/s ] features: [ 925M 302k/s ] 78G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.5G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(60% 60% 61% 62% 61% 61% 60%) -> (4.7k/58k) -> write( 8%)
0:42:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 110M 11% 114k/s ] rels: [ 0 0% 0/s ] features: [ 928M 304k/s ] 78G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.6G
read( 0%) -> (11/18) -> process(60% 63% 63% 58% 59% 62% 58%) -> (5k/58k) -> write( 8%)
0:42:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 111M 11% 102k/s ] rels: [ 0 0% 0/s ] features: [ 930M 285k/s ] 78G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(59% 57% 63% 62% 59% 57% 63%) -> (2.4k/58k) -> write( 7%)
0:42:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 112M 11% 103k/s ] rels: [ 0 0% 0/s ] features: [ 933M 290k/s ] 79G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.9G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(59% 61% 61% 60% 60% 62% 62%) -> (2.6k/58k) -> write( 8%)
0:42:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 113M 11% 99k/s ] rels: [ 0 0% 0/s ] features: [ 936M 279k/s ] 79G blocks: [ 30k 70% 1/s ]
cpus: 4.3 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(59% 57% 59% 60% 61% 61% 58%) -> (3.5k/58k) -> write( 7%)
0:42:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 114M 12% 103k/s ] rels: [ 0 0% 0/s ] features: [ 939M 280k/s ] 79G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(57% 61% 60% 60% 57% 69% 61%) -> (3.5k/58k) -> write( 7%)
0:43:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 115M 12% 125k/s ] rels: [ 0 0% 0/s ] features: [ 942M 305k/s ] 79G blocks: [ 30k 70% 2/s ]
cpus: 4.5 gc: 1% heap: 2.5G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(63% 62% 60% 61% 61% 63% 62%) -> (3.4k/58k) -> write( 8%)
0:43:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 116M 12% 113k/s ] rels: [ 0 0% 0/s ] features: [ 945M 305k/s ] 79G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.1G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(60% 62% 61% 61% 60% 61% 59%) -> (3.5k/58k) -> write( 8%)
0:43:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 117M 12% 108k/s ] rels: [ 0 0% 0/s ] features: [ 948M 288k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 4.2 gc: 1% heap: 2.4G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (11/18) -> process(57% 58% 56% 59% 61% 59% 58%) -> (3.5k/58k) -> write( 7%)
0:43:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 118M 12% 108k/s ] rels: [ 0 0% 0/s ] features: [ 951M 285k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.7G
read( 0%) -> (10/18) -> process(60% 65% 61% 62% 58% 61% 59%) -> (5.2k/58k) -> write( 7%)
0:43:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 119M 12% 113k/s ] rels: [ 0 0% 0/s ] features: [ 954M 294k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 4.2 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(57% 59% 58% 59% 60% 58% 59%) -> (5k/58k) -> write( 7%)
0:43:58 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 120M 12% 103k/s ] rels: [ 0 0% 0/s ] features: [ 957M 291k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 4.2 gc: 1% heap: 4.2G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(57% 60% 59% 57% 57% 60% 59%) -> (4.6k/58k) -> write( 7%)
0:44:08 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 121M 12% 106k/s ] rels: [ 0 0% 0/s ] features: [ 960M 299k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 4.2 gc: 1% heap: 2.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(61% 60% 58% 57% 57% 57% 59%) -> (2.8k/58k) -> write( 8%)
0:44:18 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 122M 12% 88k/s ] rels: [ 0 0% 0/s ] features: [ 963M 296k/s ] 80G blocks: [ 30k 70% 1/s ]
cpus: 3.9 gc: 1% heap: 2.3G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(54% 54% 54% 54% 54% 54% 53%) -> (3.4k/58k) -> write( 7%)
0:44:28 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 123M 12% 101k/s ] rels: [ 0 0% 0/s ] features: [ 966M 295k/s ] 81G blocks: [ 30k 70% 1/s ]
cpus: 4.2 gc: 1% heap: 1.5G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(60% 59% 58% 59% 58% 58% 58%) -> (4.1k/58k) -> write( 8%)
0:44:38 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 124M 13% 109k/s ] rels: [ 0 0% 0/s ] features: [ 969M 296k/s ] 81G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 2.6G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(60% 60% 62% 60% 63% 59% 61%) -> (2.3k/58k) -> write( 8%)
0:44:48 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 126M 13% 106k/s ] rels: [ 0 0% 0/s ] features: [ 971M 288k/s ] 81G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 4.1G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(61% 63% 61% 61% 59% 60% 59%) -> (4.4k/58k) -> write( 7%)
0:44:59 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 127M 13% 110k/s ] rels: [ 0 0% 0/s ] features: [ 974M 292k/s ] 81G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(61% 62% 58% 62% 61% 60% 61%) -> (3.7k/58k) -> write( 8%)
0:45:09 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 128M 13% 109k/s ] rels: [ 0 0% 0/s ] features: [ 977M 285k/s ] 81G blocks: [ 30k 70% 1/s ]
cpus: 4.5 gc: 1% heap: 2.8G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.8G
read( 0%) -> (11/18) -> process(64% 62% 60% 60% 62% 64% 62%) -> (4.5k/58k) -> write( 7%)
0:45:19 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 129M 13% 100k/s ] rels: [ 0 0% 0/s ] features: [ 980M 283k/s ] 83G blocks: [ 30k 70% 1/s ]
cpus: 4.4 gc: 1% heap: 3.2G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(59% 62% 59% 61% 58% 63% 62%) -> (2.1k/58k) -> write( 7%)
0:45:29 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 130M 13% 105k/s ] rels: [ 0 0% 0/s ] features: [ 983M 280k/s ] 83G blocks: [ 30k 70% 1/s ]
cpus: 4.5 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(62% 67% 60% 63% 62% 63% 63%) -> (2.6k/58k) -> write( 7%)
0:45:39 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 131M 13% 98k/s ] rels: [ 0 0% 0/s ] features: [ 986M 271k/s ] 83G blocks: [ 30k 70% 1/s ]
cpus: 4.5 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(65% 62% 63% 67% 62% 60% 61%) -> (3.8k/58k) -> write( 7%)
0:45:49 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 132M 13% 97k/s ] rels: [ 0 0% 0/s ] features: [ 988M 266k/s ] 83G blocks: [ 30k 71% 1/s ]
cpus: 4.6 gc: 1% heap: 2.3G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(63% 62% 61% 65% 65% 67% 68%) -> (4k/58k) -> write( 7%)
0:45:59 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 133M 13% 95k/s ] rels: [ 0 0% 0/s ] features: [ 991M 251k/s ] 83G blocks: [ 30k 71% 1/s ]
cpus: 4.8 gc: 1% heap: 3.3G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(63% 70% 63% 67% 69% 69% 65%) -> (3.1k/58k) -> write( 7%)
0:46:09 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 134M 14% 99k/s ] rels: [ 0 0% 0/s ] features: [ 993M 260k/s ] 84G blocks: [ 30k 71% 1/s ]
cpus: 4.8 gc: 1% heap: 3.7G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(67% 64% 73% 64% 67% 63% 64%) -> (3.2k/58k) -> write( 7%)
0:46:19 INF [osm_pass2] - nodes: [ 8.8B 100% 0/s ] 92G ways: [ 135M 14% 106k/s ] rels: [ 0 0% 0/s ] features: [ 996M 293k/s ] 84G blocks: [ 30k 71% 1/s ]
cpus: 4.5 gc: 1% heap: 3.8G/12G direct: 63M postGC: 1.6G relInfo: 564M mpGeoms: 1.9G
read( 0%) -> (11/18) -> process(64% 59% 62% 65% 62% 62% 62%) -> (2.4k/58k) -> write( 7%)