zgc

The Redefine Team Lv5

ArchLinux 的jdk版本已经14了,但是为了损伤CPU, 所以将jdk repo 更新一下,得到最新的jdk 源码

通过

1
sh configure --with-jvm-features=zgc 

的方式开始编译三板斧的第一步

然后通过

1
make CONF=linux-x86_64-server-release images 

编译jdk

最后在build/linux-x86_64-server-release/jdk 下就是编译好的jdk ,又一次对CPU进行了损伤

添加如下代码做一个对ZGC的hello

1
2
3
4
5
public class HelloZGC{
public static void main (String [] args) {
System.out.println("Say hello to new low pause GC - ZGC!");
}
}

这时候就可以通过

1
java -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Xlog:gc* HelloZGC.java 

直接运行了

在zsh 环境下-Xlog:gc * 需要特殊处理,所以使用zsh 的情况下,修改一下-Xlog:gc 的格式

gitrepo/jdk/build/linux-x86_64-server-release/jdk/bin/java -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Xlog:gc*:mylog.log HelloZGC.java

基本可以得到下面的输出

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
[0.249s][info][gc,init] Initializing The Z Garbage Collector
[0.250s][info][gc,init] Version: 15-internal+0-adhoc.cmonkey.jdk (release)
[0.250s][info][gc,init] NUMA Support: Disabled
[0.250s][info][gc,init] CPUs: 4 total, 4 available
[0.251s][info][gc,init] Memory: 31799M
[0.251s][info][gc,init] Large Page Support: Disabled
[0.251s][info][gc,init] Medium Page Size: 32M
[0.251s][info][gc,init] Workers: 3 parallel, 1 concurrent
[0.252s][info][gc,init] Address Space Type: Contiguous/Unrestricted/Complete
[0.252s][info][gc,init] Address Space Size: 127200M x 3 = 381600M
[0.252s][info][gc,init] Heap Backing File: /memfd:java_heap
[0.252s][info][gc,init] Heap Backing Filesystem: tmpfs (0x1021994)
[0.252s][info][gc,init] Min Capacity: 8M
[0.252s][info][gc,init] Initial Capacity: 498M
[0.252s][info][gc,init] Max Capacity: 7950M
[0.252s][info][gc,init] Max Reserve: 38M
[0.252s][info][gc,init] Pre-touch: Disabled
[0.252s][info][gc,init] Available space on backing filesystem: N/A
[0.362s][info][gc,init] Uncommit: Enabled, Delay: 300s
[0.374s][info][gc,init] Runtime Workers: 3 parallel
[0.374s][info][gc ] Using The Z Garbage Collector
Say hello to new low pause GC - ZGC!
[8.739s][info][gc,heap,exit] Heap
[8.739s][info][gc,heap,exit] ZHeap used 96M, capacity 498M, max capacity 7950M
[8.739s][info][gc,heap,exit] Metaspace used 15821K, capacity 16050K, committed 16128K, reserved 16384K

需要注意的是,因为ZGC还在不断的发展(不然也不需要通过-XX:+UnlockExperimentalVMOptions 的方式才能打开了), 所以在做实验的时候,参考的文章可以看,但是不一定是和最新的版本

比如看的文章是在jdk 11 时期写的,但是现在的新版本是jdk 14 , 而自己构建的是jdk 15 , 这之间ZGC发生了很多变更,比如在flags 上的变更就是因为版本迭代

ZGC 的内存大小是2M x * 的方式,目前32M 的最小的堆大小,8M 的小堆还需要ZGC团队在jep 上开展研发(本人在这方面就是一个看客)

最后为什么ZGC可以支持4T的堆,可以通过下面这张图来看到

因为一段时间基于GCC 10 不能正确构建jdk , 所以不能了解ZGC是否已经支持8M的小堆,今天基于jdk 主干,成功通过GCC 10 进行构建
再次测试8M的小堆,发现正常输出,而不是出现OOM

在目前的jdk 11, jdk 14 上的测试还是会OOM, 而jdk 16和主干代码都可以支持8M的小堆
按照https://wiki.openjdk.java.net/display/zgc/Main的描述,此功能是在jdk 14 上提供的支持

jdk 11 暂时还不可用,可能需要等待后期他们讲代码backport 到jdk 11 上来

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
> $ ~/gitrepo/jdk/build/linux-x86_64-server-fastdebug/jdk/bin/java -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Xlog:gc\* -Xmx8M HelloZGC.java

[0.033s][info][gc,init] Initializing The Z Garbage Collector
[0.033s][info][gc,init] Version: 16-internal+0-adhoc.cmonkey.jdk (fastdebug)
[0.034s][info][gc,init] NUMA Support: Disabled
[0.034s][info][gc,init] CPUs: 12 total, 12 available
[0.034s][info][gc,init] Memory: 31826M
[0.034s][info][gc,init] Large Page Support: Disabled
[0.034s][info][gc,init] Workers: 1 parallel, 1 concurrent
[0.034s][info][gc,init] Address Space Type: Contiguous/Unrestricted/Complete
[0.034s][info][gc,init] Address Space Size: 128M x 3 = 384M
[0.034s][info][gc,init] Heap Backing File: /memfd:java_heap
[0.035s][info][gc,init] Heap Backing Filesystem: tmpfs (0x1021994)
[0.035s][info][gc,init] Min Capacity: 8M
[0.035s][info][gc,init] Initial Capacity: 8M
[0.035s][info][gc,init] Max Capacity: 8M
[0.035s][info][gc,init] Max Reserve: 2M
[0.035s][info][gc,init] Medium Page Size: N/A
[0.035s][info][gc,init] Pre-touch: Disabled
[0.035s][info][gc,init] Available space on backing filesystem: N/A
[0.035s][info][gc,init] Uncommit: Implicitly Disabled (-Xms equals -Xmx)
[0.069s][info][gc,init] Runtime Workers: 1 parallel
[0.069s][info][gc ] Using The Z Garbage Collector
[0.069s][info][gc,metaspace] CDS disabled.
[0.069s][info][gc,metaspace] Compressed class space mapped at: 0x0000000080000000-0x00000000c0000000, size: 1073741824
[0.069s][info][gc,metaspace] Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0xc0000000
[0.265s][info][gc,start ] GC(0) Garbage Collection (Warmup)
[0.269s][info][gc,phases ] GC(0) Pause Mark Start 0.620ms
[0.276s][info][gc,phases ] GC(0) Concurrent Mark 7.054ms
[0.278s][info][gc,phases ] GC(0) Pause Mark End 0.240ms
[0.279s][info][gc,phases ] GC(0) Concurrent Process Non-Strong References 0.903ms
[0.279s][info][gc,phases ] GC(0) Concurrent Reset Relocation Set 0.001ms
[0.290s][info][gc,phases ] GC(0) Concurrent Select Relocation Set 8.885ms
[0.291s][info][gc,phases ] GC(0) Pause Relocate Start 0.152ms
[0.291s][info][gc,phases ] GC(0) Concurrent Relocate 0.076ms
[0.291s][info][gc,load ] GC(0) Load: 1.08/0.90/1.13
[0.291s][info][gc,mmu ] GC(0) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/99.0%
[0.291s][info][gc,marking ] GC(0) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.291s][info][gc,nmethod ] GC(0) NMethods: 53 registered, 0 unregistered
[0.291s][info][gc,metaspace] GC(0) Metaspace: 4M used, 4M capacity, 5M committed, 1032M reserved
[0.291s][info][gc,ref ] GC(0) Soft: 12 encountered, 0 discovered, 0 enqueued
[0.291s][info][gc,ref ] GC(0) Weak: 47 encountered, 43 discovered, 6 enqueued
[0.291s][info][gc,ref ] GC(0) Final: 0 encountered, 0 discovered, 0 enqueued
[0.291s][info][gc,ref ] GC(0) Phantom: 6 encountered, 6 discovered, 2 enqueued
[0.291s][info][gc,reloc ] GC(0) Small Pages: 1 / 2M(100%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.291s][info][gc,reloc ] GC(0) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.291s][info][gc,reloc ] GC(0) Relocation: Successful
[0.291s][info][gc,heap ] GC(0) Min Capacity: 8M(100%)
[0.291s][info][gc,heap ] GC(0) Max Capacity: 8M(100%)
[0.291s][info][gc,heap ] GC(0) Soft Max Capacity: 8M(100%)
[0.291s][info][gc,heap ] GC(0) Mark Start Mark End Relocate Start Relocate End High Low
[0.291s][info][gc,heap ] GC(0) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.291s][info][gc,heap ] GC(0) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.291s][info][gc,heap ] GC(0) Free: 4M (50%) 2M (25%) 2M (25%) 2M (25%) 4M (50%) 2M (25%)
[0.291s][info][gc,heap ] GC(0) Used: 2M (25%) 4M (50%) 4M (50%) 4M (50%) 4M (50%) 2M (25%)
[0.291s][info][gc,heap ] GC(0) Live: - 0M (5%) 0M (5%) 0M (5%) - -
[0.291s][info][gc,heap ] GC(0) Allocated: - 2M (25%) 2M (25%) 2M (25%) - -
[0.291s][info][gc,heap ] GC(0) Garbage: - 1M (20%) 1M (20%) 1M (20%) - -
[0.291s][info][gc,heap ] GC(0) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.291s][info][gc ] GC(0) Garbage Collection (Warmup) 2M(25%)->4M(50%)
[0.364s][info][gc,start ] GC(1) Garbage Collection (Warmup)
[0.365s][info][gc,phases ] GC(1) Pause Mark Start 0.209ms
[0.366s][info][gc,phases ] GC(1) Concurrent Mark 1.761ms
[0.367s][info][gc,phases ] GC(1) Pause Mark End 0.057ms
[0.367s][info][gc,phases ] GC(1) Concurrent Process Non-Strong References 0.454ms
[0.367s][info][gc,phases ] GC(1) Concurrent Reset Relocation Set 0.000ms
[0.370s][info][gc,phases ] GC(1) Concurrent Select Relocation Set 1.282ms
[0.370s][info][gc,phases ] GC(1) Pause Relocate Start 0.076ms
[0.372s][info][gc,phases ] GC(1) Concurrent Relocate 1.668ms
[0.372s][info][gc,load ] GC(1) Load: 1.08/0.90/1.13
[0.372s][info][gc,mmu ] GC(1) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.372s][info][gc,marking ] GC(1) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.372s][info][gc,nmethod ] GC(1) NMethods: 118 registered, 0 unregistered
[0.372s][info][gc,metaspace] GC(1) Metaspace: 5M used, 5M capacity, 5M committed, 1032M reserved
[0.372s][info][gc,ref ] GC(1) Soft: 35 encountered, 0 discovered, 0 enqueued
[0.372s][info][gc,ref ] GC(1) Weak: 133 encountered, 124 discovered, 21 enqueued
[0.372s][info][gc,ref ] GC(1) Final: 0 encountered, 0 discovered, 0 enqueued
[0.372s][info][gc,ref ] GC(1) Phantom: 17 encountered, 17 discovered, 13 enqueued
[0.372s][info][gc,reloc ] GC(1) Small Pages: 2 / 4M(100%), Empty: 0M(0%), Compacting: 4M(100%)->2M(50%)
[0.372s][info][gc,reloc ] GC(1) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.372s][info][gc,reloc ] GC(1) Relocation: Successful
[0.372s][info][gc,heap ] GC(1) Min Capacity: 8M(100%)
[0.372s][info][gc,heap ] GC(1) Max Capacity: 8M(100%)
[0.372s][info][gc,heap ] GC(1) Soft Max Capacity: 8M(100%)
[0.372s][info][gc,heap ] GC(1) Mark Start Mark End Relocate Start Relocate End High Low
[0.372s][info][gc,heap ] GC(1) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.372s][info][gc,heap ] GC(1) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.372s][info][gc,heap ] GC(1) Free: 2M (25%) 0M (0%) 0M (0%) 2M (25%) 2M (25%) 0M (0%)
[0.372s][info][gc,heap ] GC(1) Used: 4M (50%) 6M (75%) 6M (75%) 4M (50%) 8M (100%) 4M (50%)
[0.372s][info][gc,heap ] GC(1) Live: - 0M (7%) 0M (7%) 0M (7%) - -
[0.372s][info][gc,heap ] GC(1) Allocated: - 2M (25%) 2M (25%) 4M (50%) - -
[0.372s][info][gc,heap ] GC(1) Garbage: - 3M (43%) 3M (43%) 1M (18%) - -
[0.372s][info][gc,heap ] GC(1) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.372s][info][gc ] GC(1) Garbage Collection (Warmup) 4M(50%)->4M(50%)
[0.440s][info][gc,start ] GC(2) Garbage Collection (Allocation Stall)
[0.441s][info][gc,ref ] GC(2) Clearing All SoftReferences
[0.441s][info][gc,phases ] GC(2) Pause Mark Start 0.167ms
[0.446s][info][gc,phases ] GC(2) Concurrent Mark 4.843ms
[0.446s][info][gc,phases ] GC(2) Pause Mark End 0.101ms
[0.447s][info][gc,phases ] GC(2) Concurrent Process Non-Strong References 1.037ms
[0.447s][info][gc,phases ] GC(2) Concurrent Reset Relocation Set 0.008ms
[0.449s][info][gc,phases ] GC(2) Concurrent Select Relocation Set 1.180ms
[0.449s][info][gc,phases ] GC(2) Pause Relocate Start 0.155ms
[0.451s][info][gc ] Allocation Stall (main) 10.502ms
[0.451s][info][gc,phases ] GC(2) Concurrent Relocate 1.643ms
[0.451s][info][gc,load ] GC(2) Load: 1.08/0.90/1.13
[0.451s][info][gc,mmu ] GC(2) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.451s][info][gc,marking ] GC(2) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.451s][info][gc,nmethod ] GC(2) NMethods: 283 registered, 0 unregistered
[0.451s][info][gc,metaspace] GC(2) Metaspace: 5M used, 6M capacity, 6M committed, 1032M reserved
[0.451s][info][gc,ref ] GC(2) Soft: 47 encountered, 41 discovered, 18 enqueued
[0.451s][info][gc,ref ] GC(2) Weak: 138 encountered, 129 discovered, 7 enqueued
[0.451s][info][gc,ref ] GC(2) Final: 0 encountered, 0 discovered, 0 enqueued
[0.451s][info][gc,ref ] GC(2) Phantom: 14 encountered, 14 discovered, 10 enqueued
[0.451s][info][gc,reloc ] GC(2) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.451s][info][gc,reloc ] GC(2) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.451s][info][gc,reloc ] GC(2) Relocation: Incomplete
[0.451s][info][gc,heap ] GC(2) Min Capacity: 8M(100%)
[0.451s][info][gc,heap ] GC(2) Max Capacity: 8M(100%)
[0.451s][info][gc,heap ] GC(2) Soft Max Capacity: 8M(100%)
[0.451s][info][gc,heap ] GC(2) Mark Start Mark End Relocate Start Relocate End High Low
[0.451s][info][gc,heap ] GC(2) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.451s][info][gc,heap ] GC(2) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.451s][info][gc,heap ] GC(2) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.451s][info][gc,heap ] GC(2) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.451s][info][gc,heap ] GC(2) Live: - 1M (13%) 1M (13%) 1M (13%) - -
[0.451s][info][gc,heap ] GC(2) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.451s][info][gc,heap ] GC(2) Garbage: - 4M (62%) 4M (62%) 2M (37%) - -
[0.451s][info][gc,heap ] GC(2) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.451s][info][gc ] GC(2) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.464s][info][gc,start ] GC(3) Garbage Collection (Warmup)
[0.465s][info][gc,phases ] GC(3) Pause Mark Start 0.056ms
[0.468s][info][gc,phases ] GC(3) Concurrent Mark 3.477ms
[0.468s][info][gc,phases ] GC(3) Pause Mark End 0.064ms
[0.469s][info][gc,phases ] GC(3) Concurrent Process Non-Strong References 1.063ms
[0.469s][info][gc,phases ] GC(3) Concurrent Reset Relocation Set 0.014ms
[0.471s][info][gc,phases ] GC(3) Concurrent Select Relocation Set 1.119ms
[0.471s][info][gc,phases ] GC(3) Pause Relocate Start 0.064ms
[0.472s][info][gc,phases ] GC(3) Concurrent Relocate 1.116ms
[0.473s][info][gc,load ] GC(3) Load: 1.08/0.90/1.13
[0.473s][info][gc,mmu ] GC(3) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.473s][info][gc,marking ] GC(3) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.473s][info][gc,nmethod ] GC(3) NMethods: 326 registered, 0 unregistered
[0.473s][info][gc,metaspace] GC(3) Metaspace: 5M used, 6M capacity, 6M committed, 1032M reserved
[0.473s][info][gc,ref ] GC(3) Soft: 30 encountered, 0 discovered, 0 enqueued
[0.473s][info][gc,ref ] GC(3) Weak: 131 encountered, 122 discovered, 0 enqueued
[0.473s][info][gc,ref ] GC(3) Final: 0 encountered, 0 discovered, 0 enqueued
[0.473s][info][gc,ref ] GC(3) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.473s][info][gc,reloc ] GC(3) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.473s][info][gc,reloc ] GC(3) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.473s][info][gc,reloc ] GC(3) Relocation: Incomplete
[0.473s][info][gc,heap ] GC(3) Min Capacity: 8M(100%)
[0.473s][info][gc,heap ] GC(3) Max Capacity: 8M(100%)
[0.473s][info][gc,heap ] GC(3) Soft Max Capacity: 8M(100%)
[0.473s][info][gc,heap ] GC(3) Mark Start Mark End Relocate Start Relocate End High Low
[0.473s][info][gc,heap ] GC(3) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.473s][info][gc,heap ] GC(3) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.473s][info][gc,heap ] GC(3) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.473s][info][gc,heap ] GC(3) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 6M (75%)
[0.473s][info][gc,heap ] GC(3) Live: - 1M (15%) 1M (15%) 1M (15%) - -
[0.473s][info][gc,heap ] GC(3) Allocated: - 0M (0%) 0M (0%) 2M (25%) - -
[0.473s][info][gc,heap ] GC(3) Garbage: - 4M (60%) 4M (60%) 4M (60%) - -
[0.473s][info][gc,heap ] GC(3) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.473s][info][gc ] GC(3) Garbage Collection (Warmup) 6M(75%)->6M(75%)
[0.473s][info][gc,start ] GC(4) Garbage Collection (Allocation Stall)
[0.473s][info][gc,ref ] GC(4) Clearing All SoftReferences
[0.473s][info][gc,phases ] GC(4) Pause Mark Start 0.044ms
[0.476s][info][gc,phases ] GC(4) Concurrent Mark 3.159ms
[0.476s][info][gc,phases ] GC(4) Pause Mark End 0.045ms
[0.477s][info][gc,phases ] GC(4) Concurrent Process Non-Strong References 0.857ms
[0.477s][info][gc,phases ] GC(4) Concurrent Reset Relocation Set 0.018ms
[0.479s][info][gc,phases ] GC(4) Concurrent Select Relocation Set 1.105ms
[0.479s][info][gc,phases ] GC(4) Pause Relocate Start 0.072ms
[0.480s][info][gc ] Allocation Stall (main) 15.337ms
[0.481s][info][gc,phases ] GC(4) Concurrent Relocate 2.096ms
[0.481s][info][gc,load ] GC(4) Load: 1.08/0.90/1.13
[0.481s][info][gc,mmu ] GC(4) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.481s][info][gc,marking ] GC(4) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.481s][info][gc,nmethod ] GC(4) NMethods: 333 registered, 0 unregistered
[0.481s][info][gc,metaspace] GC(4) Metaspace: 5M used, 6M capacity, 6M committed, 1032M reserved
[0.481s][info][gc,ref ] GC(4) Soft: 30 encountered, 24 discovered, 1 enqueued
[0.481s][info][gc,ref ] GC(4) Weak: 131 encountered, 122 discovered, 0 enqueued
[0.481s][info][gc,ref ] GC(4) Final: 0 encountered, 0 discovered, 0 enqueued
[0.481s][info][gc,ref ] GC(4) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.481s][info][gc,reloc ] GC(4) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.481s][info][gc,reloc ] GC(4) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.481s][info][gc,reloc ] GC(4) Relocation: Successful
[0.481s][info][gc,heap ] GC(4) Min Capacity: 8M(100%)
[0.481s][info][gc,heap ] GC(4) Max Capacity: 8M(100%)
[0.481s][info][gc,heap ] GC(4) Soft Max Capacity: 8M(100%)
[0.481s][info][gc,heap ] GC(4) Mark Start Mark End Relocate Start Relocate End High Low
[0.481s][info][gc,heap ] GC(4) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.481s][info][gc,heap ] GC(4) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.481s][info][gc,heap ] GC(4) Free: 0M (0%) 0M (0%) 0M (0%) 2M (25%) 2M (25%) 0M (0%)
[0.481s][info][gc,heap ] GC(4) Used: 6M (75%) 6M (75%) 6M (75%) 4M (50%) 8M (100%) 4M (50%)
[0.481s][info][gc,heap ] GC(4) Live: - 1M (15%) 1M (15%) 1M (15%) - -
[0.481s][info][gc,heap ] GC(4) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.481s][info][gc,heap ] GC(4) Garbage: - 4M (60%) 4M (60%) 0M (10%) - -
[0.481s][info][gc,heap ] GC(4) Reclaimed: - - 0M (0%) 4M (50%) - -
[0.481s][info][gc ] GC(4) Garbage Collection (Allocation Stall) 6M(75%)->4M(50%)
[0.564s][info][gc,start ] GC(5) Garbage Collection (Allocation Rate)
[0.565s][info][gc,phases ] GC(5) Pause Mark Start 0.129ms
[0.568s][info][gc,phases ] GC(5) Concurrent Mark 3.409ms
[0.569s][info][gc,phases ] GC(5) Pause Mark End 0.088ms
[0.570s][info][gc,phases ] GC(5) Concurrent Process Non-Strong References 1.301ms
[0.570s][info][gc,phases ] GC(5) Concurrent Reset Relocation Set 0.017ms
[0.572s][info][gc,phases ] GC(5) Concurrent Select Relocation Set 1.271ms
[0.572s][info][gc,phases ] GC(5) Pause Relocate Start 0.102ms
[0.573s][info][gc ] Allocation Stall (main) 7.941ms
[0.574s][info][gc,phases ] GC(5) Concurrent Relocate 1.292ms
[0.574s][info][gc,load ] GC(5) Load: 1.08/0.90/1.13
[0.574s][info][gc,mmu ] GC(5) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.574s][info][gc,marking ] GC(5) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.574s][info][gc,nmethod ] GC(5) NMethods: 507 registered, 0 unregistered
[0.574s][info][gc,metaspace] GC(5) Metaspace: 7M used, 7M capacity, 7M committed, 1032M reserved
[0.574s][info][gc,ref ] GC(5) Soft: 46 encountered, 0 discovered, 0 enqueued
[0.574s][info][gc,ref ] GC(5) Weak: 180 encountered, 145 discovered, 16 enqueued
[0.574s][info][gc,ref ] GC(5) Final: 0 encountered, 0 discovered, 0 enqueued
[0.574s][info][gc,ref ] GC(5) Phantom: 15 encountered, 15 discovered, 12 enqueued
[0.574s][info][gc,reloc ] GC(5) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.574s][info][gc,reloc ] GC(5) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.574s][info][gc,reloc ] GC(5) Relocation: Incomplete
[0.574s][info][gc,heap ] GC(5) Min Capacity: 8M(100%)
[0.574s][info][gc,heap ] GC(5) Max Capacity: 8M(100%)
[0.574s][info][gc,heap ] GC(5) Soft Max Capacity: 8M(100%)
[0.574s][info][gc,heap ] GC(5) Mark Start Mark End Relocate Start Relocate End High Low
[0.574s][info][gc,heap ] GC(5) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.574s][info][gc,heap ] GC(5) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.574s][info][gc,heap ] GC(5) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.574s][info][gc,heap ] GC(5) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.574s][info][gc,heap ] GC(5) Live: - 1M (15%) 1M (15%) 1M (15%) - -
[0.574s][info][gc,heap ] GC(5) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.574s][info][gc,heap ] GC(5) Garbage: - 4M (60%) 4M (60%) 2M (35%) - -
[0.574s][info][gc,heap ] GC(5) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.574s][info][gc ] GC(5) Garbage Collection (Allocation Rate) 6M(75%)->6M(75%)
[0.664s][info][gc,start ] GC(6) Garbage Collection (Allocation Rate)
[0.666s][info][gc,phases ] GC(6) Pause Mark Start 0.325ms
[0.675s][info][gc,phases ] GC(6) Concurrent Mark 8.942ms
[0.675s][info][gc,phases ] GC(6) Pause Mark End 0.220ms
[0.680s][info][gc,phases ] GC(6) Concurrent Process Non-Strong References 4.746ms
[0.680s][info][gc,phases ] GC(6) Concurrent Reset Relocation Set 0.036ms
[0.684s][info][gc,phases ] GC(6) Concurrent Select Relocation Set 2.621ms
[0.685s][info][gc,phases ] GC(6) Pause Relocate Start 0.232ms
[0.687s][info][gc ] Allocation Stall (main) 21.103ms
[0.689s][info][gc,phases ] GC(6) Concurrent Relocate 3.701ms
[0.689s][info][gc,load ] GC(6) Load: 1.08/0.90/1.13
[0.689s][info][gc,mmu ] GC(6) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.689s][info][gc,marking ] GC(6) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.689s][info][gc,nmethod ] GC(6) NMethods: 588 registered, 0 unregistered
[0.689s][info][gc,metaspace] GC(6) Metaspace: 8M used, 8M capacity, 8M committed, 1032M reserved
[0.689s][info][gc,ref ] GC(6) Soft: 64 encountered, 0 discovered, 0 enqueued
[0.689s][info][gc,ref ] GC(6) Weak: 213 encountered, 170 discovered, 12 enqueued
[0.689s][info][gc,ref ] GC(6) Final: 0 encountered, 0 discovered, 0 enqueued
[0.689s][info][gc,ref ] GC(6) Phantom: 15 encountered, 15 discovered, 12 enqueued
[0.689s][info][gc,reloc ] GC(6) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.689s][info][gc,reloc ] GC(6) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.689s][info][gc,reloc ] GC(6) Relocation: Incomplete
[0.689s][info][gc,heap ] GC(6) Min Capacity: 8M(100%)
[0.689s][info][gc,heap ] GC(6) Max Capacity: 8M(100%)
[0.689s][info][gc,heap ] GC(6) Soft Max Capacity: 8M(100%)
[0.689s][info][gc,heap ] GC(6) Mark Start Mark End Relocate Start Relocate End High Low
[0.689s][info][gc,heap ] GC(6) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.689s][info][gc,heap ] GC(6) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.689s][info][gc,heap ] GC(6) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.689s][info][gc,heap ] GC(6) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.689s][info][gc,heap ] GC(6) Live: - 1M (18%) 1M (18%) 1M (18%) - -
[0.689s][info][gc,heap ] GC(6) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.689s][info][gc,heap ] GC(6) Garbage: - 4M (57%) 4M (57%) 2M (32%) - -
[0.689s][info][gc,heap ] GC(6) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.689s][info][gc ] GC(6) Garbage Collection (Allocation Rate) 6M(75%)->6M(75%)
[0.765s][info][gc,start ] GC(7) Garbage Collection (Allocation Rate)
[0.766s][info][gc,phases ] GC(7) Pause Mark Start 0.149ms
[0.771s][info][gc,phases ] GC(7) Concurrent Mark 4.666ms
[0.771s][info][gc,phases ] GC(7) Pause Mark End 0.125ms
[0.773s][info][gc,phases ] GC(7) Concurrent Process Non-Strong References 2.003ms
[0.773s][info][gc,phases ] GC(7) Concurrent Reset Relocation Set 0.019ms
[0.777s][info][gc,phases ] GC(7) Concurrent Select Relocation Set 2.296ms
[0.777s][info][gc,phases ] GC(7) Pause Relocate Start 0.189ms
[0.778s][info][gc ] Allocation Stall (main) 12.243ms
[0.779s][info][gc,phases ] GC(7) Concurrent Relocate 2.037ms
[0.779s][info][gc,load ] GC(7) Load: 1.08/0.90/1.13
[0.779s][info][gc,mmu ] GC(7) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.779s][info][gc,marking ] GC(7) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.779s][info][gc,nmethod ] GC(7) NMethods: 681 registered, 0 unregistered
[0.779s][info][gc,metaspace] GC(7) Metaspace: 8M used, 9M capacity, 9M committed, 1034M reserved
[0.779s][info][gc,ref ] GC(7) Soft: 106 encountered, 0 discovered, 0 enqueued
[0.779s][info][gc,ref ] GC(7) Weak: 369 encountered, 335 discovered, 54 enqueued
[0.779s][info][gc,ref ] GC(7) Final: 0 encountered, 0 discovered, 0 enqueued
[0.779s][info][gc,ref ] GC(7) Phantom: 15 encountered, 15 discovered, 12 enqueued
[0.779s][info][gc,reloc ] GC(7) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.779s][info][gc,reloc ] GC(7) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.779s][info][gc,reloc ] GC(7) Relocation: Incomplete
[0.779s][info][gc,heap ] GC(7) Min Capacity: 8M(100%)
[0.779s][info][gc,heap ] GC(7) Max Capacity: 8M(100%)
[0.779s][info][gc,heap ] GC(7) Soft Max Capacity: 8M(100%)
[0.779s][info][gc,heap ] GC(7) Mark Start Mark End Relocate Start Relocate End High Low
[0.779s][info][gc,heap ] GC(7) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.779s][info][gc,heap ] GC(7) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.779s][info][gc,heap ] GC(7) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.779s][info][gc,heap ] GC(7) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.779s][info][gc,heap ] GC(7) Live: - 1M (20%) 1M (20%) 1M (20%) - -
[0.779s][info][gc,heap ] GC(7) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.779s][info][gc,heap ] GC(7) Garbage: - 4M (55%) 4M (55%) 2M (30%) - -
[0.779s][info][gc,heap ] GC(7) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.779s][info][gc ] GC(7) Garbage Collection (Allocation Rate) 6M(75%)->6M(75%)
[0.851s][info][gc,start ] GC(8) Garbage Collection (Allocation Stall)
[0.852s][info][gc,ref ] GC(8) Clearing All SoftReferences
[0.852s][info][gc,phases ] GC(8) Pause Mark Start 0.073ms
[0.857s][info][gc,phases ] GC(8) Concurrent Mark 5.012ms
[0.857s][info][gc,phases ] GC(8) Pause Mark End 0.154ms
[0.860s][info][gc,phases ] GC(8) Concurrent Process Non-Strong References 3.251ms
[0.860s][info][gc,phases ] GC(8) Concurrent Reset Relocation Set 0.018ms
[0.862s][info][gc,phases ] GC(8) Concurrent Select Relocation Set 1.099ms
[0.863s][info][gc,phases ] GC(8) Pause Relocate Start 0.153ms
[0.864s][info][gc ] Allocation Stall (main) 13.206ms
[0.865s][info][gc,phases ] GC(8) Concurrent Relocate 2.224ms
[0.865s][info][gc,load ] GC(8) Load: 1.08/0.90/1.13
[0.865s][info][gc,mmu ] GC(8) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.865s][info][gc,marking ] GC(8) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.865s][info][gc,nmethod ] GC(8) NMethods: 764 registered, 0 unregistered
[0.865s][info][gc,metaspace] GC(8) Metaspace: 9M used, 9M capacity, 10M committed, 1034M reserved
[0.865s][info][gc,ref ] GC(8) Soft: 119 encountered, 92 discovered, 32 enqueued
[0.865s][info][gc,ref ] GC(8) Weak: 360 encountered, 301 discovered, 20 enqueued
[0.865s][info][gc,ref ] GC(8) Final: 0 encountered, 0 discovered, 0 enqueued
[0.865s][info][gc,ref ] GC(8) Phantom: 7 encountered, 7 discovered, 4 enqueued
[0.865s][info][gc,reloc ] GC(8) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.865s][info][gc,reloc ] GC(8) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.865s][info][gc,reloc ] GC(8) Relocation: Incomplete
[0.865s][info][gc,heap ] GC(8) Min Capacity: 8M(100%)
[0.865s][info][gc,heap ] GC(8) Max Capacity: 8M(100%)
[0.865s][info][gc,heap ] GC(8) Soft Max Capacity: 8M(100%)
[0.865s][info][gc,heap ] GC(8) Mark Start Mark End Relocate Start Relocate End High Low
[0.865s][info][gc,heap ] GC(8) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.865s][info][gc,heap ] GC(8) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.865s][info][gc,heap ] GC(8) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.865s][info][gc,heap ] GC(8) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.865s][info][gc,heap ] GC(8) Live: - 1M (21%) 1M (21%) 1M (21%) - -
[0.865s][info][gc,heap ] GC(8) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.865s][info][gc,heap ] GC(8) Garbage: - 4M (54%) 4M (54%) 2M (29%) - -
[0.865s][info][gc,heap ] GC(8) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.865s][info][gc ] GC(8) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.865s][info][gc,start ] GC(9) Garbage Collection (Allocation Stall)
[0.865s][info][gc,ref ] GC(9) Clearing All SoftReferences
[0.866s][info][gc,phases ] GC(9) Pause Mark Start 0.116ms
[0.870s][info][gc,phases ] GC(9) Concurrent Mark 4.641ms
[0.870s][info][gc,phases ] GC(9) Pause Mark End 0.054ms
[0.873s][info][gc,phases ] GC(9) Concurrent Process Non-Strong References 2.433ms
[0.873s][info][gc,phases ] GC(9) Concurrent Reset Relocation Set 0.019ms
[0.875s][info][gc,phases ] GC(9) Concurrent Select Relocation Set 1.071ms
[0.875s][info][gc,phases ] GC(9) Pause Relocate Start 0.092ms
[0.878s][info][gc ] Allocation Stall (main) 13.200ms
[0.878s][info][gc,phases ] GC(9) Concurrent Relocate 2.731ms
[0.878s][info][gc,load ] GC(9) Load: 1.08/0.90/1.13
[0.878s][info][gc,mmu ] GC(9) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.878s][info][gc,marking ] GC(9) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.878s][info][gc,nmethod ] GC(9) NMethods: 764 registered, 0 unregistered
[0.878s][info][gc,metaspace] GC(9) Metaspace: 9M used, 9M capacity, 10M committed, 1034M reserved
[0.878s][info][gc,ref ] GC(9) Soft: 87 encountered, 60 discovered, 0 enqueued
[0.878s][info][gc,ref ] GC(9) Weak: 340 encountered, 281 discovered, 0 enqueued
[0.878s][info][gc,ref ] GC(9) Final: 0 encountered, 0 discovered, 0 enqueued
[0.878s][info][gc,ref ] GC(9) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.878s][info][gc,reloc ] GC(9) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 4M(67%)->2M(33%)
[0.878s][info][gc,reloc ] GC(9) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.878s][info][gc,reloc ] GC(9) Relocation: Successful
[0.878s][info][gc,heap ] GC(9) Min Capacity: 8M(100%)
[0.878s][info][gc,heap ] GC(9) Max Capacity: 8M(100%)
[0.878s][info][gc,heap ] GC(9) Soft Max Capacity: 8M(100%)
[0.878s][info][gc,heap ] GC(9) Mark Start Mark End Relocate Start Relocate End High Low
[0.878s][info][gc,heap ] GC(9) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.878s][info][gc,heap ] GC(9) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.878s][info][gc,heap ] GC(9) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.878s][info][gc,heap ] GC(9) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.878s][info][gc,heap ] GC(9) Live: - 3M (46%) 3M (46%) 3M (46%) - -
[0.878s][info][gc,heap ] GC(9) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.878s][info][gc,heap ] GC(9) Garbage: - 2M (29%) 2M (29%) 0M (4%) - -
[0.878s][info][gc,heap ] GC(9) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.878s][info][gc ] GC(9) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.965s][info][gc,start ] GC(10) Garbage Collection (Allocation Rate)
[0.967s][info][gc,phases ] GC(10) Pause Mark Start 0.310ms
[0.985s][info][gc,phases ] GC(10) Concurrent Mark 17.631ms
[0.986s][info][gc,phases ] GC(10) Pause Mark End 0.358ms
[0.991s][info][gc,phases ] GC(10) Concurrent Process Non-Strong References 5.272ms
[0.991s][info][gc,phases ] GC(10) Concurrent Reset Relocation Set 0.030ms
[0.995s][info][gc,phases ] GC(10) Concurrent Select Relocation Set 2.073ms
[0.996s][info][gc,phases ] GC(10) Pause Relocate Start 0.276ms
[0.996s][info][gc,phases ] GC(10) Concurrent Relocate 0.025ms
[0.996s][info][gc,load ] GC(10) Load: 1.08/0.90/1.13
[0.996s][info][gc,mmu ] GC(10) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/95.7%, 50ms/98.0%, 100ms/98.7%
[0.996s][info][gc,marking ] GC(10) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.996s][info][gc,nmethod ] GC(10) NMethods: 804 registered, 0 unregistered
[0.996s][info][gc,metaspace] GC(10) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[0.996s][info][gc,ref ] GC(10) Soft: 97 encountered, 0 discovered, 0 enqueued
[0.996s][info][gc,ref ] GC(10) Weak: 354 encountered, 314 discovered, 6 enqueued
[0.996s][info][gc,ref ] GC(10) Final: 0 encountered, 0 discovered, 0 enqueued
[0.996s][info][gc,ref ] GC(10) Phantom: 8 encountered, 8 discovered, 5 enqueued
[0.996s][info][gc,reloc ] GC(10) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.996s][info][gc,reloc ] GC(10) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.996s][info][gc,reloc ] GC(10) Relocation: Successful
[0.996s][info][gc,heap ] GC(10) Min Capacity: 8M(100%)
[0.996s][info][gc,heap ] GC(10) Max Capacity: 8M(100%)
[0.996s][info][gc,heap ] GC(10) Soft Max Capacity: 8M(100%)
[0.996s][info][gc,heap ] GC(10) Mark Start Mark End Relocate Start Relocate End High Low
[0.996s][info][gc,heap ] GC(10) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.996s][info][gc,heap ] GC(10) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.996s][info][gc,heap ] GC(10) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.996s][info][gc,heap ] GC(10) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.996s][info][gc,heap ] GC(10) Live: - 3M (50%) 3M (50%) 3M (50%) - -
[0.996s][info][gc,heap ] GC(10) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.996s][info][gc,heap ] GC(10) Garbage: - 2M (25%) 2M (25%) 2M (25%) - -
[0.996s][info][gc,heap ] GC(10) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.996s][info][gc ] GC(10) Garbage Collection (Allocation Rate) 6M(75%)->6M(75%)
[0.996s][info][gc,start ] GC(11) Garbage Collection (Allocation Stall)
[0.997s][info][gc,ref ] GC(11) Clearing All SoftReferences
[0.997s][info][gc,phases ] GC(11) Pause Mark Start 0.187ms
[1.004s][info][gc,phases ] GC(11) Concurrent Mark 7.033ms
[1.005s][info][gc,phases ] GC(11) Pause Mark End 0.354ms
[1.008s][info][gc,phases ] GC(11) Concurrent Process Non-Strong References 3.293ms
[1.008s][info][gc,phases ] GC(11) Concurrent Reset Relocation Set 0.000ms
[1.010s][info][gc,phases ] GC(11) Concurrent Select Relocation Set 1.284ms
[1.011s][info][gc,phases ] GC(11) Pause Relocate Start 0.129ms
[1.011s][info][gc,phases ] GC(11) Concurrent Relocate 0.012ms
[1.011s][info][gc,load ] GC(11) Load: 1.08/0.90/1.13
[1.011s][info][gc,mmu ] GC(11) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/94.1%, 50ms/96.8%, 100ms/98.4%
[1.011s][info][gc,marking ] GC(11) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[1.011s][info][gc,nmethod ] GC(11) NMethods: 804 registered, 0 unregistered
[1.011s][info][gc,metaspace] GC(11) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[1.011s][info][gc,ref ] GC(11) Soft: 97 encountered, 70 discovered, 9 enqueued
[1.011s][info][gc,ref ] GC(11) Weak: 348 encountered, 289 discovered, 0 enqueued
[1.011s][info][gc,ref ] GC(11) Final: 0 encountered, 0 discovered, 0 enqueued
[1.011s][info][gc,ref ] GC(11) Phantom: 3 encountered, 3 discovered, 0 enqueued
[1.011s][info][gc,reloc ] GC(11) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.011s][info][gc,reloc ] GC(11) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.011s][info][gc,reloc ] GC(11) Relocation: Successful
[1.011s][info][gc,heap ] GC(11) Min Capacity: 8M(100%)
[1.011s][info][gc,heap ] GC(11) Max Capacity: 8M(100%)
[1.011s][info][gc,heap ] GC(11) Soft Max Capacity: 8M(100%)
[1.011s][info][gc,heap ] GC(11) Mark Start Mark End Relocate Start Relocate End High Low
[1.011s][info][gc,heap ] GC(11) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[1.011s][info][gc,heap ] GC(11) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[1.011s][info][gc,heap ] GC(11) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[1.011s][info][gc,heap ] GC(11) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[1.011s][info][gc,heap ] GC(11) Live: - 3M (50%) 3M (50%) 3M (50%) - -
[1.011s][info][gc,heap ] GC(11) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[1.011s][info][gc,heap ] GC(11) Garbage: - 2M (25%) 2M (25%) 2M (25%) - -
[1.011s][info][gc,heap ] GC(11) Reclaimed: - - 0M (0%) 0M (0%) - -
[1.011s][info][gc ] GC(11) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[1.011s][info][gc ] Allocation Stall (main) 43.027ms
[1.011s][info][gc,start ] GC(12) Garbage Collection (Allocation Stall)
[1.011s][info][gc,ref ] GC(12) Clearing All SoftReferences
[1.011s][info][gc,phases ] GC(12) Pause Mark Start 0.095ms
[1.016s][info][gc,phases ] GC(12) Concurrent Mark 4.639ms
[1.016s][info][gc,phases ] GC(12) Pause Mark End 0.088ms
[1.019s][info][gc,phases ] GC(12) Concurrent Process Non-Strong References 2.224ms
[1.019s][info][gc,phases ] GC(12) Concurrent Reset Relocation Set 0.000ms
[1.021s][info][gc,phases ] GC(12) Concurrent Select Relocation Set 1.052ms
[1.021s][info][gc,phases ] GC(12) Pause Relocate Start 0.172ms
[1.021s][info][gc,phases ] GC(12) Concurrent Relocate 0.118ms
[1.021s][info][gc,load ] GC(12) Load: 1.08/0.90/1.13
[1.021s][info][gc,mmu ] GC(12) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/94.1%, 50ms/96.4%, 100ms/98.0%
[1.021s][info][gc,marking ] GC(12) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[1.021s][info][gc,nmethod ] GC(12) NMethods: 804 registered, 0 unregistered
[1.021s][info][gc,metaspace] GC(12) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[1.021s][info][gc,ref ] GC(12) Soft: 88 encountered, 61 discovered, 0 enqueued
[1.021s][info][gc,ref ] GC(12) Weak: 348 encountered, 289 discovered, 0 enqueued
[1.021s][info][gc,ref ] GC(12) Final: 0 encountered, 0 discovered, 0 enqueued
[1.021s][info][gc,ref ] GC(12) Phantom: 3 encountered, 3 discovered, 0 enqueued
[1.021s][info][gc,reloc ] GC(12) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.022s][info][gc,reloc ] GC(12) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.022s][info][gc,reloc ] GC(12) Relocation: Successful
[1.022s][info][gc,heap ] GC(12) Min Capacity: 8M(100%)
[1.022s][info][gc,heap ] GC(12) Max Capacity: 8M(100%)
[1.022s][info][gc,heap ] GC(12) Soft Max Capacity: 8M(100%)
[1.022s][info][gc,heap ] GC(12) Mark Start Mark End Relocate Start Relocate End High Low
[1.022s][info][gc,heap ] GC(12) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[1.022s][info][gc,heap ] GC(12) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[1.022s][info][gc,heap ] GC(12) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[1.022s][info][gc,heap ] GC(12) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[1.022s][info][gc,heap ] GC(12) Live: - 3M (50%) 3M (50%) 3M (50%) - -
[1.022s][info][gc,heap ] GC(12) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[1.022s][info][gc,heap ] GC(12) Garbage: - 2M (25%) 2M (25%) 2M (25%) - -
[1.022s][info][gc,heap ] GC(12) Reclaimed: - - 0M (0%) 0M (0%) - -
[1.022s][info][gc ] GC(12) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[1.022s][info][gc ] Allocation Stall (main) 10.487ms
[1.022s][info][gc ] Out Of Memory (main)
[1.022s][info][gc,start ] GC(13) Garbage Collection (Allocation Stall)
[1.022s][info][gc,ref ] GC(13) Clearing All SoftReferences
[1.022s][info][gc,phases ] GC(13) Pause Mark Start 0.082ms
[1.026s][info][gc,phases ] GC(13) Concurrent Mark 4.134ms
[1.027s][info][gc,phases ] GC(13) Pause Mark End 0.092ms
[1.032s][info][gc,phases ] GC(13) Concurrent Process Non-Strong References 5.206ms
[1.032s][info][gc,phases ] GC(13) Concurrent Reset Relocation Set 0.001ms
[1.039s][info][gc,phases ] GC(13) Concurrent Select Relocation Set 5.350ms
[1.040s][info][gc,phases ] GC(13) Pause Relocate Start 0.389ms
[1.040s][info][gc,phases ] GC(13) Concurrent Relocate 0.156ms
[1.040s][info][gc,load ] GC(13) Load: 1.08/0.90/1.13
[1.040s][info][gc,mmu ] GC(13) MMU: 2ms/69.0%, 5ms/87.6%, 10ms/91.4%, 20ms/94.1%, 50ms/96.3%, 100ms/97.5%
[1.040s][info][gc,marking ] GC(13) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[1.040s][info][gc,nmethod ] GC(13) NMethods: 804 registered, 0 unregistered
[1.040s][info][gc,metaspace] GC(13) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[1.040s][info][gc,ref ] GC(13) Soft: 88 encountered, 61 discovered, 0 enqueued
[1.041s][info][gc,ref ] GC(13) Weak: 348 encountered, 289 discovered, 0 enqueued
[1.041s][info][gc,ref ] GC(13) Final: 0 encountered, 0 discovered, 0 enqueued
[1.041s][info][gc,ref ] GC(13) Phantom: 3 encountered, 3 discovered, 0 enqueued
[1.041s][info][gc,reloc ] GC(13) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.041s][info][gc,reloc ] GC(13) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.041s][info][gc,reloc ] GC(13) Relocation: Successful
[1.041s][info][gc,heap ] GC(13) Min Capacity: 8M(100%)
[1.041s][info][gc,heap ] GC(13) Max Capacity: 8M(100%)
[1.041s][info][gc,heap ] GC(13) Soft Max Capacity: 8M(100%)
[1.041s][info][gc,heap ] GC(13) Mark Start Mark End Relocate Start Relocate End High Low
[1.041s][info][gc,heap ] GC(13) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[1.041s][info][gc,heap ] GC(13) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[1.041s][info][gc,heap ] GC(13) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[1.041s][info][gc,heap ] GC(13) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[1.041s][info][gc,heap ] GC(13) Live: - 3M (50%) 3M (50%) 3M (50%) - -
[1.041s][info][gc,heap ] GC(13) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[1.041s][info][gc,heap ] GC(13) Garbage: - 2M (25%) 2M (25%) 2M (25%) - -
[1.041s][info][gc,heap ] GC(13) Reclaimed: - - 0M (0%) 0M (0%) - -
[1.041s][info][gc ] GC(13) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[1.041s][info][gc ] Allocation Stall (main) 19.164ms
[1.041s][info][gc,start ] GC(14) Garbage Collection (Allocation Stall)
[1.042s][info][gc,ref ] GC(14) Clearing All SoftReferences
[1.042s][info][gc,phases ] GC(14) Pause Mark Start 0.392ms
[1.057s][info][gc,phases ] GC(14) Concurrent Mark 14.514ms
[1.057s][info][gc,phases ] GC(14) Pause Mark End 0.214ms
[1.062s][info][gc,phases ] GC(14) Concurrent Process Non-Strong References 4.404ms
[1.062s][info][gc,phases ] GC(14) Concurrent Reset Relocation Set 0.001ms
[1.064s][info][gc,phases ] GC(14) Concurrent Select Relocation Set 1.943ms
[1.065s][info][gc,phases ] GC(14) Pause Relocate Start 0.154ms
[1.065s][info][gc,phases ] GC(14) Concurrent Relocate 0.016ms
[1.065s][info][gc,load ] GC(14) Load: 1.08/0.90/1.13
[1.065s][info][gc,mmu ] GC(14) MMU: 2ms/69.0%, 5ms/84.4%, 10ms/91.4%, 20ms/94.1%, 50ms/95.5%, 100ms/96.7%
[1.065s][info][gc,marking ] GC(14) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[1.065s][info][gc,nmethod ] GC(14) NMethods: 804 registered, 0 unregistered
[1.065s][info][gc,metaspace] GC(14) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[1.065s][info][gc,ref ] GC(14) Soft: 88 encountered, 61 discovered, 0 enqueued
[1.065s][info][gc,ref ] GC(14) Weak: 348 encountered, 289 discovered, 0 enqueued
[1.065s][info][gc,ref ] GC(14) Final: 0 encountered, 0 discovered, 0 enqueued
[1.065s][info][gc,ref ] GC(14) Phantom: 3 encountered, 3 discovered, 0 enqueued
[1.065s][info][gc,reloc ] GC(14) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.065s][info][gc,reloc ] GC(14) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.065s][info][gc,reloc ] GC(14) Relocation: Successful
[1.065s][info][gc,heap ] GC(14) Min Capacity: 8M(100%)
[1.065s][info][gc,heap ] GC(14) Max Capacity: 8M(100%)
[1.065s][info][gc,heap ] GC(14) Soft Max Capacity: 8M(100%)
[1.065s][info][gc,heap ] GC(14) Mark Start Mark End Relocate Start Relocate End High Low
[1.065s][info][gc,heap ] GC(14) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[1.065s][info][gc,heap ] GC(14) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[1.065s][info][gc,heap ] GC(14) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[1.065s][info][gc,heap ] GC(14) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[1.065s][info][gc,heap ] GC(14) Live: - 3M (50%) 3M (50%) 3M (50%) - -
[1.065s][info][gc,heap ] GC(14) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[1.065s][info][gc,heap ] GC(14) Garbage: - 2M (25%) 2M (25%) 2M (25%) - -
[1.065s][info][gc,heap ] GC(14) Reclaimed: - - 0M (0%) 0M (0%) - -
[1.065s][info][gc ] GC(14) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[1.065s][info][gc ] Allocation Stall (main) 23.867ms
[1.065s][info][gc ] Out Of Memory (main)
[1.065s][info][gc,start ] GC(15) Garbage Collection (Allocation Stall)
[1.065s][info][gc,ref ] GC(15) Clearing All SoftReferences
[1.065s][info][gc,phases ] GC(15) Pause Mark Start 0.129ms
[1.072s][info][gc,phases ] GC(15) Concurrent Mark 6.273ms
[1.072s][info][gc,phases ] GC(15) Pause Mark End 0.167ms
[1.076s][info][gc,phases ] GC(15) Concurrent Process Non-Strong References 3.972ms
[1.076s][info][gc,phases ] GC(15) Concurrent Reset Relocation Set 0.001ms
[1.077s][info][gc ] Allocation Stall (main) 11.740ms
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
[1.078s][info][gc,phases ] GC(15) Concurrent Select Relocation Set 1.655ms
[1.079s][info][gc,phases ] GC(15) Pause Relocate Start 0.170ms
[1.079s][info][gc,phases ] GC(15) Concurrent Relocate 0.095ms
[1.079s][info][gc,load ] GC(15) Load: 1.08/0.90/1.13
[1.079s][info][gc,mmu ] GC(15) MMU: 2ms/69.0%, 5ms/84.4%, 10ms/91.4%, 20ms/94.1%, 50ms/95.5%, 100ms/96.6%
[1.079s][info][gc,marking ] GC(15) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[1.079s][info][gc,nmethod ] GC(15) NMethods: 804 registered, 0 unregistered
[1.079s][info][gc,metaspace] GC(15) Metaspace: 10M used, 11M capacity, 11M committed, 1034M reserved
[1.079s][info][gc,ref ] GC(15) Soft: 87 encountered, 61 discovered, 2 enqueued
[1.079s][info][gc,ref ] GC(15) Weak: 348 encountered, 289 discovered, 0 enqueued
[1.079s][info][gc,ref ] GC(15) Final: 0 encountered, 0 discovered, 0 enqueued
[1.079s][info][gc,ref ] GC(15) Phantom: 3 encountered, 3 discovered, 0 enqueued
[1.079s][info][gc,reloc ] GC(15) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[1.079s][info][gc,reloc ] GC(15) Large Pages: 1 / 2M(33%), Empty: 2M(33%), Compacting: 0M(0%)->0M(0%)
[1.079s][info][gc,reloc ] GC(15) Relocation: Successful
j1.079s][info][gc,heap ] GC(15) Min Capacity: 8M(100%)
[1.079s][info][gc,heap ] GC(15) Max Capacity: 8M(100%)
[1.079s][info][gc,heap ] GC(15) Soft Max Capacity: 8M(100%)
[1.079s][info][gc,heap ] GC(15) Mark Start Mark End Relocate Start Relocate End High Low
[1.079s][info][gc,heap ] GC(15) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[1.079s][info][gc,heap ] GC(15) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[1.079s][info][gc,heap ] GC(15) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[1.079s][info][gc,heap ] GC(15) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 4M (50%)
[1.079s][info][gc,heap ] GC(15) Live: - 1M (21%) 1M (21%) 1M (21%) - -
[1.079s][info][gc,heap ] GC(15) Allocated: - 0M (0%) 2M (25%) 2M (25%) - -
[1.079s][info][gc,heap ] GC(15) Garbage: - 4M (54%) 2M (29%) 2M (29%) - -
[1.079s][info][gc,heap ] GC(15) Reclaimed: - - 2M (25%) 2M (25%) - -
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.handleExceptions(JavacTaskImpl.java:175)
[1.079s][info][gc ] GC(15) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.doCall(JavacTaskImpl.java:100)
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.call(JavacTaskImpl.java:94)
at jdk.compiler/com.sun.tools.javac.launcher.Main.compile(Main.java:379)
at jdk.compiler/com.sun.tools.javac.launcher.Main.run(Main.java:189)
at jdk.compiler/com.sun.tools.javac.launcher.Main.main(Main.java:132)
[1.082s][info][gc,heap,exit] Heap
[1.082s][info][gc,heap,exit] ZHeap used 6M, capacity 8M, max capacity 8M
[1.082s][info][gc,heap,exit] Metaspace used 11064K, capacity 11321K, committed 11520K, reserved 1058816K
[1.082s][info][gc,heap,exit] class space used 1128K, capacity 1216K, committed 1280K, reserved 1048576K

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

─[$] ~/gitrepo/jdk/build/linux-x86_64-server-fastdebug/jdk/bin/java -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Xlog:gc\* -Xmx8M HelloZGC.java [15:31:37]

[0.023s][info][gc,init] Initializing The Z Garbage Collector
[0.023s][info][gc,init] Version: 16-internal+0-adhoc.cmonkey.jdk (fastdebug)
[0.023s][info][gc,init] NUMA Support: Disabled
[0.023s][info][gc,init] CPUs: 12 total, 12 available
[0.023s][info][gc,init] Memory: 31826M
[0.023s][info][gc,init] Large Page Support: Disabled
[0.023s][info][gc,init] Workers: 1 parallel, 1 concurrent
[0.024s][info][gc,init] Address Space Type: Contiguous/Unrestricted/Complete
[0.024s][info][gc,init] Address Space Size: 128M x 3 = 384M
[0.024s][info][gc,init] Heap Backing File: /memfd:java_heap
[0.024s][info][gc,init] Heap Backing Filesystem: tmpfs (0x1021994)
[0.024s][info][gc,init] Min Capacity: 8M
[0.024s][info][gc,init] Initial Capacity: 8M
[0.024s][info][gc,init] Max Capacity: 8M
[0.024s][info][gc,init] Max Reserve: 2M
[0.024s][info][gc,init] Medium Page Size: N/A
[0.024s][info][gc,init] Pre-touch: Disabled
[0.024s][info][gc,init] Available space on backing filesystem: N/A
[0.024s][info][gc,init] Uncommit: Implicitly Disabled (-Xms equals -Xmx)
[0.038s][info][gc,init] Runtime Workers: 1 parallel
[0.038s][info][gc ] Using The Z Garbage Collector
[0.038s][info][gc,metaspace] CDS disabled.
[0.038s][info][gc,metaspace] Compressed class space mapped at: 0x0000000080000000-0x00000000c0000000, size: 1073741824
[0.038s][info][gc,metaspace] Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0xc0000000
[0.189s][info][gc,start ] GC(0) Garbage Collection (Warmup)
[0.191s][info][gc,phases ] GC(0) Pause Mark Start 0.172ms
[0.192s][info][gc,phases ] GC(0) Concurrent Mark 1.251ms
[0.192s][info][gc,phases ] GC(0) Pause Mark End 0.084ms
[0.193s][info][gc,phases ] GC(0) Concurrent Process Non-Strong References 0.524ms
[0.193s][info][gc,phases ] GC(0) Concurrent Reset Relocation Set 0.000ms
[0.197s][info][gc,phases ] GC(0) Concurrent Select Relocation Set 3.812ms
[0.198s][info][gc,phases ] GC(0) Pause Relocate Start 0.115ms
[0.198s][info][gc,phases ] GC(0) Concurrent Relocate 0.008ms
[0.198s][info][gc,load ] GC(0) Load: 1.76/1.41/1.28
[0.198s][info][gc,mmu ] GC(0) MMU: 2ms/87.2%, 5ms/94.9%, 10ms/96.3%, 20ms/98.1%, 50ms/99.3%, 100ms/99.6%
[0.198s][info][gc,marking ] GC(0) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.198s][info][gc,nmethod ] GC(0) NMethods: 81 registered, 0 unregistered
[0.198s][info][gc,metaspace] GC(0) Metaspace: 5M used, 5M capacity, 5M committed, 1032M reserved
[0.198s][info][gc,ref ] GC(0) Soft: 18 encountered, 0 discovered, 0 enqueued
[0.198s][info][gc,ref ] GC(0) Weak: 75 encountered, 71 discovered, 12 enqueued
[0.198s][info][gc,ref ] GC(0) Final: 0 encountered, 0 discovered, 0 enqueued
[0.198s][info][gc,ref ] GC(0) Phantom: 9 encountered, 9 discovered, 5 enqueued
[0.198s][info][gc,reloc ] GC(0) Small Pages: 1 / 2M(100%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.198s][info][gc,reloc ] GC(0) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.198s][info][gc,reloc ] GC(0) Relocation: Successful
[0.198s][info][gc,heap ] GC(0) Min Capacity: 8M(100%)
[0.198s][info][gc,heap ] GC(0) Max Capacity: 8M(100%)
[0.198s][info][gc,heap ] GC(0) Soft Max Capacity: 8M(100%)
[0.198s][info][gc,heap ] GC(0) Mark Start Mark End Relocate Start Relocate End High Low
[0.198s][info][gc,heap ] GC(0) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.198s][info][gc,heap ] GC(0) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.198s][info][gc,heap ] GC(0) Free: 4M (50%) 2M (25%) 2M (25%) 2M (25%) 4M (50%) 2M (25%)
[0.198s][info][gc,heap ] GC(0) Used: 2M (25%) 4M (50%) 4M (50%) 4M (50%) 4M (50%) 2M (25%)
[0.198s][info][gc,heap ] GC(0) Live: - 0M (5%) 0M (5%) 0M (5%) - -
[0.198s][info][gc,heap ] GC(0) Allocated: - 2M (25%) 2M (25%) 2M (25%) - -
[0.198s][info][gc,heap ] GC(0) Garbage: - 1M (20%) 1M (20%) 1M (20%) - -
[0.198s][info][gc,heap ] GC(0) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.198s][info][gc ] GC(0) Garbage Collection (Warmup) 2M(25%)->4M(50%)
[0.290s][info][gc,start ] GC(1) Garbage Collection (Warmup)
[0.290s][info][gc,phases ] GC(1) Pause Mark Start 0.141ms
[0.303s][info][gc,phases ] GC(1) Concurrent Mark 12.508ms
[0.303s][info][gc,phases ] GC(1) Pause Mark End 0.255ms
[0.306s][info][gc,phases ] GC(1) Concurrent Process Non-Strong References 2.819ms
[0.306s][info][gc,phases ] GC(1) Concurrent Reset Relocation Set 0.001ms
[0.312s][info][gc,phases ] GC(1) Concurrent Select Relocation Set 3.440ms
[0.313s][info][gc,phases ] GC(1) Pause Relocate Start 0.259ms
[0.316s][info][gc ] Allocation Stall (main) 25.631ms
[0.316s][info][gc,phases ] GC(1) Concurrent Relocate 3.853ms
[0.317s][info][gc,load ] GC(1) Load: 1.76/1.41/1.28
[0.317s][info][gc,mmu ] GC(1) MMU: 2ms/87.1%, 5ms/94.8%, 10ms/94.9%, 20ms/97.4%, 50ms/98.7%, 100ms/99.3%
[0.317s][info][gc,marking ] GC(1) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.317s][info][gc,nmethod ] GC(1) NMethods: 259 registered, 0 unregistered
[0.317s][info][gc,metaspace] GC(1) Metaspace: 5M used, 6M capacity, 6M committed, 1032M reserved
[0.317s][info][gc,ref ] GC(1) Soft: 47 encountered, 0 discovered, 0 enqueued
[0.317s][info][gc,ref ] GC(1) Weak: 150 encountered, 141 discovered, 19 enqueued
[0.317s][info][gc,ref ] GC(1) Final: 0 encountered, 0 discovered, 0 enqueued
[0.317s][info][gc,ref ] GC(1) Phantom: 24 encountered, 24 discovered, 20 enqueued
[0.317s][info][gc,reloc ] GC(1) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.317s][info][gc,reloc ] GC(1) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.317s][info][gc,reloc ] GC(1) Relocation: Incomplete
[0.317s][info][gc,heap ] GC(1) Min Capacity: 8M(100%)
[0.317s][info][gc,heap ] GC(1) Max Capacity: 8M(100%)
[0.317s][info][gc,heap ] GC(1) Soft Max Capacity: 8M(100%)
[0.317s][info][gc,heap ] GC(1) Mark Start Mark End Relocate Start Relocate End High Low
[0.317s][info][gc,heap ] GC(1) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.317s][info][gc,heap ] GC(1) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.317s][info][gc,heap ] GC(1) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.317s][info][gc,heap ] GC(1) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.317s][info][gc,heap ] GC(1) Live: - 1M (13%) 1M (13%) 1M (13%) - -
[0.317s][info][gc,heap ] GC(1) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.317s][info][gc,heap ] GC(1) Garbage: - 4M (62%) 4M (62%) 2M (37%) - -
[0.317s][info][gc,heap ] GC(1) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.317s][info][gc ] GC(1) Garbage Collection (Warmup) 6M(75%)->6M(75%)
[0.317s][info][gc,start ] GC(2) Garbage Collection (Allocation Stall)
[0.317s][info][gc,ref ] GC(2) Clearing All SoftReferences
[0.318s][info][gc,phases ] GC(2) Pause Mark Start 0.175ms
[0.323s][info][gc,phases ] GC(2) Concurrent Mark 5.259ms
[0.323s][info][gc,phases ] GC(2) Pause Mark End 0.115ms
[0.325s][info][gc,phases ] GC(2) Concurrent Process Non-Strong References 1.287ms
[0.325s][info][gc,phases ] GC(2) Concurrent Reset Relocation Set 0.022ms
[0.327s][info][gc,phases ] GC(2) Concurrent Select Relocation Set 1.593ms
[0.328s][info][gc,phases ] GC(2) Pause Relocate Start 0.126ms
[0.329s][info][gc ] Allocation Stall (C1 CompilerThread0) 29.700ms
[0.332s][info][gc ] Allocation Stall (main) 14.184ms
[0.332s][info][gc,phases ] GC(2) Concurrent Relocate 4.172ms
[0.332s][info][gc,load ] GC(2) Load: 1.76/1.41/1.28
[0.332s][info][gc,mmu ] GC(2) MMU: 2ms/87.1%, 5ms/94.8%, 10ms/94.9%, 20ms/96.6%, 50ms/97.9%, 100ms/98.9%
[0.332s][info][gc,marking ] GC(2) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.332s][info][gc,nmethod ] GC(2) NMethods: 265 registered, 0 unregistered
[0.332s][info][gc,metaspace] GC(2) Metaspace: 5M used, 6M capacity, 6M committed, 1032M reserved
[0.332s][info][gc,ref ] GC(2) Soft: 47 encountered, 41 discovered, 18 enqueued
[0.332s][info][gc,ref ] GC(2) Weak: 131 encountered, 122 discovered, 0 enqueued
[0.332s][info][gc,ref ] GC(2) Final: 0 encountered, 0 discovered, 0 enqueued
[0.332s][info][gc,ref ] GC(2) Phantom: 4 encountered, 4 discovered, 0 enqueued
[0.332s][info][gc,reloc ] GC(2) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.332s][info][gc,reloc ] GC(2) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.332s][info][gc,reloc ] GC(2) Relocation: Successful
[0.332s][info][gc,heap ] GC(2) Min Capacity: 8M(100%)
[0.332s][info][gc,heap ] GC(2) Max Capacity: 8M(100%)
[0.332s][info][gc,heap ] GC(2) Soft Max Capacity: 8M(100%)
[0.332s][info][gc,heap ] GC(2) Mark Start Mark End Relocate Start Relocate End High Low
[0.332s][info][gc,heap ] GC(2) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.332s][info][gc,heap ] GC(2) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.332s][info][gc,heap ] GC(2) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.332s][info][gc,heap ] GC(2) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.332s][info][gc,heap ] GC(2) Live: - 1M (13%) 1M (13%) 1M (13%) - -
[0.332s][info][gc,heap ] GC(2) Allocated: - 0M (0%) 0M (0%) 6M (75%) - -
[0.332s][info][gc,heap ] GC(2) Garbage: - 4M (62%) 4M (62%) 0M (12%) - -
[0.332s][info][gc,heap ] GC(2) Reclaimed: - - 0M (0%) 4M (50%) - -
[0.332s][info][gc ] GC(2) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.390s][info][gc,start ] GC(3) Garbage Collection (Warmup)
[0.390s][info][gc,phases ] GC(3) Pause Mark Start 0.096ms
[0.394s][info][gc,phases ] GC(3) Concurrent Mark 3.439ms
[0.394s][info][gc,phases ] GC(3) Pause Mark End 0.052ms
[0.395s][info][gc,phases ] GC(3) Concurrent Process Non-Strong References 1.021ms
[0.395s][info][gc,phases ] GC(3) Concurrent Reset Relocation Set 0.016ms
[0.397s][info][gc,phases ] GC(3) Concurrent Select Relocation Set 2.250ms
[0.398s][info][gc,phases ] GC(3) Pause Relocate Start 0.128ms
[0.398s][info][gc ] Allocation Stall (main) 8.103ms
[0.399s][info][gc,phases ] GC(3) Concurrent Relocate 1.162ms
[0.399s][info][gc,load ] GC(3) Load: 1.76/1.41/1.28
[0.399s][info][gc,mmu ] GC(3) MMU: 2ms/87.1%, 5ms/94.8%, 10ms/94.9%, 20ms/96.6%, 50ms/97.9%, 100ms/98.8%
[0.399s][info][gc,marking ] GC(3) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.399s][info][gc,nmethod ] GC(3) NMethods: 416 registered, 0 unregistered
[0.399s][info][gc,metaspace] GC(3) Metaspace: 6M used, 6M capacity, 6M committed, 1032M reserved
[0.399s][info][gc,ref ] GC(3) Soft: 43 encountered, 0 discovered, 0 enqueued
[0.399s][info][gc,ref ] GC(3) Weak: 168 encountered, 158 discovered, 13 enqueued
[0.399s][info][gc,ref ] GC(3) Final: 0 encountered, 0 discovered, 0 enqueued
[0.399s][info][gc,ref ] GC(3) Phantom: 13 encountered, 13 discovered, 10 enqueued
[0.399s][info][gc,reloc ] GC(3) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.399s][info][gc,reloc ] GC(3) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.399s][info][gc,reloc ] GC(3) Relocation: Incomplete
[0.399s][info][gc,heap ] GC(3) Min Capacity: 8M(100%)
[0.399s][info][gc,heap ] GC(3) Max Capacity: 8M(100%)
[0.399s][info][gc,heap ] GC(3) Soft Max Capacity: 8M(100%)
[0.399s][info][gc,heap ] GC(3) Mark Start Mark End Relocate Start Relocate End High Low
[0.399s][info][gc,heap ] GC(3) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.399s][info][gc,heap ] GC(3) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.399s][info][gc,heap ] GC(3) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.399s][info][gc,heap ] GC(3) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.399s][info][gc,heap ] GC(3) Live: - 1M (14%) 1M (14%) 1M (14%) - -
[0.399s][info][gc,heap ] GC(3) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.399s][info][gc,heap ] GC(3) Garbage: - 4M (61%) 4M (61%) 2M (36%) - -
[0.399s][info][gc,heap ] GC(3) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.399s][info][gc ] GC(3) Garbage Collection (Warmup) 6M(75%)->6M(75%)
[0.490s][info][gc,start ] GC(4) Garbage Collection (Allocation Rate)
[0.492s][info][gc,phases ] GC(4) Pause Mark Start 0.283ms
[0.501s][info][gc,phases ] GC(4) Concurrent Mark 8.941ms
[0.501s][info][gc,phases ] GC(4) Pause Mark End 0.179ms
[0.504s][info][gc,phases ] GC(4) Concurrent Process Non-Strong References 2.692ms
[0.504s][info][gc,phases ] GC(4) Concurrent Reset Relocation Set 0.022ms
[0.507s][info][gc,phases ] GC(4) Concurrent Select Relocation Set 2.219ms
[0.507s][info][gc,phases ] GC(4) Pause Relocate Start 0.111ms
[0.509s][info][gc ] Allocation Stall (main) 17.165ms
[0.512s][info][gc,phases ] GC(4) Concurrent Relocate 4.252ms
[0.512s][info][gc,load ] GC(4) Load: 1.76/1.41/1.28
[0.512s][info][gc,mmu ] GC(4) MMU: 2ms/85.8%, 5ms/94.3%, 10ms/94.9%, 20ms/96.6%, 50ms/97.9%, 100ms/98.8%
[0.512s][info][gc,marking ] GC(4) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.512s][info][gc,nmethod ] GC(4) NMethods: 523 registered, 0 unregistered
[0.512s][info][gc,metaspace] GC(4) Metaspace: 7M used, 7M capacity, 7M committed, 1032M reserved
[0.512s][info][gc,ref ] GC(4) Soft: 53 encountered, 0 discovered, 0 enqueued
[0.512s][info][gc,ref ] GC(4) Weak: 184 encountered, 147 discovered, 9 enqueued
[0.512s][info][gc,ref ] GC(4) Final: 0 encountered, 0 discovered, 0 enqueued
[0.512s][info][gc,ref ] GC(4) Phantom: 10 encountered, 10 discovered, 7 enqueued
[0.512s][info][gc,reloc ] GC(4) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.512s][info][gc,reloc ] GC(4) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.512s][info][gc,reloc ] GC(4) Relocation: Successful
[0.512s][info][gc,heap ] GC(4) Min Capacity: 8M(100%)
[0.512s][info][gc,heap ] GC(4) Max Capacity: 8M(100%)
[0.512s][info][gc,heap ] GC(4) Soft Max Capacity: 8M(100%)
[0.512s][info][gc,heap ] GC(4) Mark Start Mark End Relocate Start Relocate End High Low
[0.512s][info][gc,heap ] GC(4) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.512s][info][gc,heap ] GC(4) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.512s][info][gc,heap ] GC(4) Free: 0M (0%) 0M (0%) 0M (0%) 2M (25%) 2M (25%) 0M (0%)
[0.512s][info][gc,heap ] GC(4) Used: 6M (75%) 6M (75%) 6M (75%) 4M (50%) 8M (100%) 4M (50%)
[0.512s][info][gc,heap ] GC(4) Live: - 1M (16%) 1M (16%) 1M (16%) - -
[0.512s][info][gc,heap ] GC(4) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.512s][info][gc,heap ] GC(4) Garbage: - 4M (59%) 4M (59%) 0M (9%) - -
[0.512s][info][gc,heap ] GC(4) Reclaimed: - - 0M (0%) 4M (50%) - -
[0.512s][info][gc ] GC(4) Garbage Collection (Allocation Rate) 6M(75%)->4M(50%)
[0.590s][info][gc,start ] GC(5) Garbage Collection (Allocation Rate)
[0.590s][info][gc,phases ] GC(5) Pause Mark Start 0.052ms
[0.595s][info][gc,phases ] GC(5) Concurrent Mark 4.336ms
[0.595s][info][gc,phases ] GC(5) Pause Mark End 0.085ms
[0.597s][info][gc,phases ] GC(5) Concurrent Process Non-Strong References 1.697ms
[0.597s][info][gc,phases ] GC(5) Concurrent Reset Relocation Set 0.019ms
[0.600s][info][gc,phases ] GC(5) Concurrent Select Relocation Set 2.254ms
[0.601s][info][gc,phases ] GC(5) Pause Relocate Start 0.081ms
[0.603s][info][gc,phases ] GC(5) Concurrent Relocate 2.736ms
[0.604s][info][gc,load ] GC(5) Load: 1.76/1.41/1.28
[0.604s][info][gc,mmu ] GC(5) MMU: 2ms/85.8%, 5ms/94.3%, 10ms/94.9%, 20ms/96.6%, 50ms/97.9%, 100ms/98.8%
[0.604s][info][gc,marking ] GC(5) Mark: 1 stripe(s), 3 proactive flush(es), 1 terminate flush(es), 1 completion(s), 0 continuation(s)
[0.604s][info][gc,nmethod ] GC(5) NMethods: 618 registered, 0 unregistered
[0.604s][info][gc,metaspace] GC(5) Metaspace: 8M used, 8M capacity, 9M committed, 1034M reserved
[0.604s][info][gc,ref ] GC(5) Soft: 69 encountered, 0 discovered, 0 enqueued
[0.604s][info][gc,ref ] GC(5) Weak: 255 encountered, 208 discovered, 16 enqueued
[0.604s][info][gc,ref ] GC(5) Final: 0 encountered, 0 discovered, 0 enqueued
[0.604s][info][gc,ref ] GC(5) Phantom: 15 encountered, 15 discovered, 12 enqueued
[0.604s][info][gc,reloc ] GC(5) Small Pages: 2 / 4M(100%), Empty: 0M(0%), Compacting: 4M(100%)->2M(50%)
[0.604s][info][gc,reloc ] GC(5) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.604s][info][gc,reloc ] GC(5) Relocation: Successful
[0.604s][info][gc,heap ] GC(5) Min Capacity: 8M(100%)
[0.604s][info][gc,heap ] GC(5) Max Capacity: 8M(100%)
[0.604s][info][gc,heap ] GC(5) Soft Max Capacity: 8M(100%)
[0.604s][info][gc,heap ] GC(5) Mark Start Mark End Relocate Start Relocate End High Low
[0.604s][info][gc,heap ] GC(5) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.604s][info][gc,heap ] GC(5) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.604s][info][gc,heap ] GC(5) Free: 2M (25%) 0M (0%) 0M (0%) 2M (25%) 2M (25%) 0M (0%)
[0.604s][info][gc,heap ] GC(5) Used: 4M (50%) 6M (75%) 6M (75%) 4M (50%) 8M (100%) 4M (50%)
[0.604s][info][gc,heap ] GC(5) Live: - 1M (18%) 1M (18%) 1M (18%) - -
[0.604s][info][gc,heap ] GC(5) Allocated: - 2M (25%) 2M (25%) 4M (50%) - -
[0.604s][info][gc,heap ] GC(5) Garbage: - 2M (32%) 2M (32%) 0M (7%) - -
[0.604s][info][gc,heap ] GC(5) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.604s][info][gc ] GC(5) Garbage Collection (Allocation Rate) 4M(50%)->4M(50%)
[0.685s][info][gc,start ] GC(6) Garbage Collection (Allocation Stall)
[0.685s][info][gc,ref ] GC(6) Clearing All SoftReferences
[0.685s][info][gc,phases ] GC(6) Pause Mark Start 0.189ms
[0.690s][info][gc,phases ] GC(6) Concurrent Mark 5.006ms
[0.691s][info][gc,phases ] GC(6) Pause Mark End 0.139ms
[0.694s][info][gc,phases ] GC(6) Concurrent Process Non-Strong References 3.112ms
[0.694s][info][gc,phases ] GC(6) Concurrent Reset Relocation Set 0.018ms
[0.696s][info][gc,phases ] GC(6) Concurrent Select Relocation Set 1.076ms
[0.696s][info][gc,phases ] GC(6) Pause Relocate Start 0.080ms
[0.696s][info][gc ] Allocation Stall (main) 11.821ms
[0.698s][info][gc,phases ] GC(6) Concurrent Relocate 1.675ms
[0.698s][info][gc,load ] GC(6) Load: 1.76/1.41/1.28
[0.698s][info][gc,mmu ] GC(6) MMU: 2ms/85.8%, 5ms/94.3%, 10ms/94.9%, 20ms/96.6%, 50ms/97.9%, 100ms/98.8%
[0.698s][info][gc,marking ] GC(6) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.698s][info][gc,nmethod ] GC(6) NMethods: 744 registered, 0 unregistered
[0.698s][info][gc,metaspace] GC(6) Metaspace: 9M used, 9M capacity, 10M committed, 1034M reserved
[0.698s][info][gc,ref ] GC(6) Soft: 119 encountered, 92 discovered, 32 enqueued
[0.698s][info][gc,ref ] GC(6) Weak: 401 encountered, 342 discovered, 61 enqueued
[0.698s][info][gc,ref ] GC(6) Final: 0 encountered, 0 discovered, 0 enqueued
[0.698s][info][gc,ref ] GC(6) Phantom: 14 encountered, 14 discovered, 11 enqueued
[0.698s][info][gc,reloc ] GC(6) Small Pages: 3 / 6M(100%), Empty: 0M(0%), Compacting: 6M(100%)->2M(33%)
[0.698s][info][gc,reloc ] GC(6) Large Pages: 0 / 0M(0%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.698s][info][gc,reloc ] GC(6) Relocation: Incomplete
[0.698s][info][gc,heap ] GC(6) Min Capacity: 8M(100%)
[0.698s][info][gc,heap ] GC(6) Max Capacity: 8M(100%)
[0.698s][info][gc,heap ] GC(6) Soft Max Capacity: 8M(100%)
[0.698s][info][gc,heap ] GC(6) Mark Start Mark End Relocate Start Relocate End High Low
[0.698s][info][gc,heap ] GC(6) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.698s][info][gc,heap ] GC(6) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.698s][info][gc,heap ] GC(6) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.698s][info][gc,heap ] GC(6) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.698s][info][gc,heap ] GC(6) Live: - 1M (21%) 1M (21%) 1M (21%) - -
[0.698s][info][gc,heap ] GC(6) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.698s][info][gc,heap ] GC(6) Garbage: - 4M (54%) 4M (54%) 2M (29%) - -
[0.698s][info][gc,heap ] GC(6) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.698s][info][gc ] GC(6) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.698s][info][gc,start ] GC(7) Garbage Collection (Allocation Stall)
[0.698s][info][gc,ref ] GC(7) Clearing All SoftReferences
[0.698s][info][gc,phases ] GC(7) Pause Mark Start 0.038ms
[0.704s][info][gc,phases ] GC(7) Concurrent Mark 5.473ms
[0.704s][info][gc,phases ] GC(7) Pause Mark End 0.292ms
[0.713s][info][gc,phases ] GC(7) Concurrent Process Non-Strong References 9.004ms
[0.714s][info][gc,phases ] GC(7) Concurrent Reset Relocation Set 0.070ms
[0.722s][info][gc,phases ] GC(7) Concurrent Select Relocation Set 5.078ms
[0.722s][info][gc,phases ] GC(7) Pause Relocate Start 0.359ms
[0.734s][info][gc ] Allocation Stall (main) 37.377ms
[0.734s][info][gc,phases ] GC(7) Concurrent Relocate 11.544ms
[0.734s][info][gc,load ] GC(7) Load: 1.76/1.41/1.28
[0.734s][info][gc,mmu ] GC(7) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.9%, 20ms/96.3%, 50ms/97.8%, 100ms/98.8%
[0.734s][info][gc,marking ] GC(7) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.734s][info][gc,nmethod ] GC(7) NMethods: 744 registered, 0 unregistered
[0.735s][info][gc,metaspace] GC(7) Metaspace: 9M used, 9M capacity, 10M committed, 1034M reserved
[0.735s][info][gc,ref ] GC(7) Soft: 87 encountered, 60 discovered, 0 enqueued
[0.735s][info][gc,ref ] GC(7) Weak: 340 encountered, 281 discovered, 0 enqueued
[0.735s][info][gc,ref ] GC(7) Final: 0 encountered, 0 discovered, 0 enqueued
[0.735s][info][gc,ref ] GC(7) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.735s][info][gc,reloc ] GC(7) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 4M(67%)->2M(33%)
[0.735s][info][gc,reloc ] GC(7) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.735s][info][gc,reloc ] GC(7) Relocation: Successful
[0.735s][info][gc,heap ] GC(7) Min Capacity: 8M(100%)
[0.735s][info][gc,heap ] GC(7) Max Capacity: 8M(100%)
[0.735s][info][gc,heap ] GC(7) Soft Max Capacity: 8M(100%)
[0.735s][info][gc,heap ] GC(7) Mark Start Mark End Relocate Start Relocate End High Low
[0.735s][info][gc,heap ] GC(7) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.735s][info][gc,heap ] GC(7) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 0M (0%)
[0.735s][info][gc,heap ] GC(7) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.735s][info][gc,heap ] GC(7) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 8M (100%) 4M (50%)
[0.735s][info][gc,heap ] GC(7) Live: - 3M (46%) 3M (46%) 3M (46%) - -
[0.735s][info][gc,heap ] GC(7) Allocated: - 0M (0%) 0M (0%) 4M (50%) - -
[0.735s][info][gc,heap ] GC(7) Garbage: - 2M (29%) 2M (29%) 0M (4%) - -
[0.735s][info][gc,heap ] GC(7) Reclaimed: - - 0M (0%) 2M (25%) - -
[0.735s][info][gc ] GC(7) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.790s][info][gc,start ] GC(8) Garbage Collection (Allocation Rate)
[0.791s][info][gc,phases ] GC(8) Pause Mark Start 0.119ms
[0.796s][info][gc,phases ] GC(8) Concurrent Mark 5.102ms
[0.796s][info][gc,phases ] GC(8) Pause Mark End 0.132ms
[0.798s][info][gc,phases ] GC(8) Concurrent Process Non-Strong References 2.232ms
[0.799s][info][gc,phases ] GC(8) Concurrent Reset Relocation Set 0.013ms
[0.800s][info][gc,phases ] GC(8) Concurrent Select Relocation Set 1.037ms
[0.801s][info][gc,phases ] GC(8) Pause Relocate Start 0.136ms
[0.801s][info][gc,phases ] GC(8) Concurrent Relocate 0.062ms
[0.801s][info][gc,load ] GC(8) Load: 1.76/1.41/1.28
[0.801s][info][gc,mmu ] GC(8) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.9%, 20ms/96.3%, 50ms/97.8%, 100ms/98.8%
[0.801s][info][gc,marking ] GC(8) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.801s][info][gc,nmethod ] GC(8) NMethods: 748 registered, 0 unregistered
[0.801s][info][gc,metaspace] GC(8) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.801s][info][gc,ref ] GC(8) Soft: 89 encountered, 0 discovered, 0 enqueued
[0.801s][info][gc,ref ] GC(8) Weak: 344 encountered, 304 discovered, 1 enqueued
[0.801s][info][gc,ref ] GC(8) Final: 0 encountered, 0 discovered, 0 enqueued
[0.801s][info][gc,ref ] GC(8) Phantom: 4 encountered, 4 discovered, 1 enqueued
[0.801s][info][gc,reloc ] GC(8) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.801s][info][gc,reloc ] GC(8) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.801s][info][gc,reloc ] GC(8) Relocation: Successful
[0.801s][info][gc,heap ] GC(8) Min Capacity: 8M(100%)
[0.801s][info][gc,heap ] GC(8) Max Capacity: 8M(100%)
[0.801s][info][gc,heap ] GC(8) Soft Max Capacity: 8M(100%)
[0.801s][info][gc,heap ] GC(8) Mark Start Mark End Relocate Start Relocate End High Low
[0.801s][info][gc,heap ] GC(8) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.801s][info][gc,heap ] GC(8) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.801s][info][gc,heap ] GC(8) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.801s][info][gc,heap ] GC(8) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.801s][info][gc,heap ] GC(8) Live: - 3M (48%) 3M (48%) 3M (48%) - -
[0.801s][info][gc,heap ] GC(8) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.801s][info][gc,heap ] GC(8) Garbage: - 2M (27%) 2M (27%) 2M (27%) - -
[0.801s][info][gc,heap ] GC(8) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.801s][info][gc ] GC(8) Garbage Collection (Allocation Rate) 6M(75%)->6M(75%)
[0.801s][info][gc,start ] GC(9) Garbage Collection (Allocation Stall)
[0.801s][info][gc,ref ] GC(9) Clearing All SoftReferences
[0.801s][info][gc,phases ] GC(9) Pause Mark Start 0.093ms
[0.805s][info][gc,phases ] GC(9) Concurrent Mark 4.102ms
[0.806s][info][gc,phases ] GC(9) Pause Mark End 0.060ms
[0.808s][info][gc,phases ] GC(9) Concurrent Process Non-Strong References 1.923ms
[0.808s][info][gc,phases ] GC(9) Concurrent Reset Relocation Set 0.000ms
[0.809s][info][gc,phases ] GC(9) Concurrent Select Relocation Set 1.086ms
[0.810s][info][gc,phases ] GC(9) Pause Relocate Start 0.143ms
[0.810s][info][gc,phases ] GC(9) Concurrent Relocate 0.082ms
[0.810s][info][gc,load ] GC(9) Load: 1.76/1.41/1.28
[0.810s][info][gc,mmu ] GC(9) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.9%, 20ms/96.3%, 50ms/97.8%, 100ms/98.8%
[0.810s][info][gc,marking ] GC(9) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.810s][info][gc,nmethod ] GC(9) NMethods: 748 registered, 0 unregistered
[0.810s][info][gc,metaspace] GC(9) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.810s][info][gc,ref ] GC(9) Soft: 89 encountered, 62 discovered, 2 enqueued
[0.810s][info][gc,ref ] GC(9) Weak: 343 encountered, 284 discovered, 0 enqueued
[0.810s][info][gc,ref ] GC(9) Final: 0 encountered, 0 discovered, 0 enqueued
[0.810s][info][gc,ref ] GC(9) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.810s][info][gc,reloc ] GC(9) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.810s][info][gc,reloc ] GC(9) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.810s][info][gc,reloc ] GC(9) Relocation: Successful
[0.810s][info][gc,heap ] GC(9) Min Capacity: 8M(100%)
[0.810s][info][gc,heap ] GC(9) Max Capacity: 8M(100%)
[0.810s][info][gc,heap ] GC(9) Soft Max Capacity: 8M(100%)
[0.810s][info][gc,heap ] GC(9) Mark Start Mark End Relocate Start Relocate End High Low
[0.810s][info][gc,heap ] GC(9) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.810s][info][gc,heap ] GC(9) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.810s][info][gc,heap ] GC(9) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.810s][info][gc,heap ] GC(9) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.810s][info][gc,heap ] GC(9) Live: - 3M (48%) 3M (48%) 3M (48%) - -
[0.810s][info][gc,heap ] GC(9) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.810s][info][gc,heap ] GC(9) Garbage: - 2M (27%) 2M (27%) 2M (27%) - -
[0.810s][info][gc,heap ] GC(9) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.810s][info][gc ] GC(9) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.810s][info][gc ] Allocation Stall (main) 19.236ms
[0.810s][info][gc,start ] GC(10) Garbage Collection (Allocation Stall)
[0.810s][info][gc,ref ] GC(10) Clearing All SoftReferences
[0.810s][info][gc,phases ] GC(10) Pause Mark Start 0.123ms
[0.815s][info][gc,phases ] GC(10) Concurrent Mark 4.210ms
[0.815s][info][gc,phases ] GC(10) Pause Mark End 0.139ms
[0.817s][info][gc,phases ] GC(10) Concurrent Process Non-Strong References 2.149ms
[0.817s][info][gc,phases ] GC(10) Concurrent Reset Relocation Set 0.000ms
[0.819s][info][gc,phases ] GC(10) Concurrent Select Relocation Set 1.041ms
[0.819s][info][gc,phases ] GC(10) Pause Relocate Start 0.155ms
[0.819s][info][gc,phases ] GC(10) Concurrent Relocate 0.007ms
[0.819s][info][gc,load ] GC(10) Load: 1.76/1.41/1.28
[0.819s][info][gc,mmu ] GC(10) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.4%, 20ms/95.8%, 50ms/97.8%, 100ms/98.5%
[0.819s][info][gc,marking ] GC(10) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.819s][info][gc,nmethod ] GC(10) NMethods: 748 registered, 0 unregistered
[0.819s][info][gc,metaspace] GC(10) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.819s][info][gc,ref ] GC(10) Soft: 87 encountered, 60 discovered, 0 enqueued
[0.819s][info][gc,ref ] GC(10) Weak: 343 encountered, 284 discovered, 0 enqueued
[0.819s][info][gc,ref ] GC(10) Final: 0 encountered, 0 discovered, 0 enqueued
[0.819s][info][gc,ref ] GC(10) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.819s][info][gc,reloc ] GC(10) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.819s][info][gc,reloc ] GC(10) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.819s][info][gc,reloc ] GC(10) Relocation: Successful
[0.819s][info][gc,heap ] GC(10) Min Capacity: 8M(100%)
[0.819s][info][gc,heap ] GC(10) Max Capacity: 8M(100%)
[0.819s][info][gc,heap ] GC(10) Soft Max Capacity: 8M(100%)
[0.819s][info][gc,heap ] GC(10) Mark Start Mark End Relocate Start Relocate End High Low
[0.819s][info][gc,heap ] GC(10) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.819s][info][gc,heap ] GC(10) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.819s][info][gc,heap ] GC(10) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.819s][info][gc,heap ] GC(10) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.819s][info][gc,heap ] GC(10) Live: - 3M (48%) 3M (48%) 3M (48%) - -
[0.819s][info][gc,heap ] GC(10) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.819s][info][gc,heap ] GC(10) Garbage: - 2M (27%) 2M (27%) 2M (27%) - -
[0.819s][info][gc,heap ] GC(10) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.819s][info][gc ] GC(10) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.819s][info][gc ] Allocation Stall (main) 9.356ms
[0.819s][info][gc ] Out Of Memory (main)
[0.820s][info][gc,start ] GC(11) Garbage Collection (Allocation Stall)
[0.820s][info][gc,ref ] GC(11) Clearing All SoftReferences
[0.820s][info][gc,phases ] GC(11) Pause Mark Start 0.123ms
[0.825s][info][gc,phases ] GC(11) Concurrent Mark 4.631ms
[0.825s][info][gc,phases ] GC(11) Pause Mark End 0.158ms
[0.827s][info][gc,phases ] GC(11) Concurrent Process Non-Strong References 2.372ms
[0.827s][info][gc,phases ] GC(11) Concurrent Reset Relocation Set 0.001ms
[0.829s][info][gc,phases ] GC(11) Concurrent Select Relocation Set 1.070ms
[0.830s][info][gc,phases ] GC(11) Pause Relocate Start 0.161ms
[0.830s][info][gc,phases ] GC(11) Concurrent Relocate 0.066ms
[0.830s][info][gc,load ] GC(11) Load: 1.76/1.41/1.28
[0.830s][info][gc,mmu ] GC(11) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.4%, 20ms/95.1%, 50ms/96.9%, 100ms/98.4%
[0.830s][info][gc,marking ] GC(11) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.830s][info][gc,nmethod ] GC(11) NMethods: 748 registered, 0 unregistered
[0.830s][info][gc,metaspace] GC(11) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.830s][info][gc,ref ] GC(11) Soft: 87 encountered, 60 discovered, 0 enqueued
[0.830s][info][gc,ref ] GC(11) Weak: 343 encountered, 284 discovered, 0 enqueued
[0.830s][info][gc,ref ] GC(11) Final: 0 encountered, 0 discovered, 0 enqueued
[0.830s][info][gc,ref ] GC(11) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.830s][info][gc,reloc ] GC(11) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.830s][info][gc,reloc ] GC(11) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.830s][info][gc,reloc ] GC(11) Relocation: Successful
[0.830s][info][gc,heap ] GC(11) Min Capacity: 8M(100%)
[0.830s][info][gc,heap ] GC(11) Max Capacity: 8M(100%)
[0.830s][info][gc,heap ] GC(11) Soft Max Capacity: 8M(100%)
[0.830s][info][gc,heap ] GC(11) Mark Start Mark End Relocate Start Relocate End High Low
[0.830s][info][gc,heap ] GC(11) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.830s][info][gc,heap ] GC(11) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.830s][info][gc,heap ] GC(11) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.830s][info][gc,heap ] GC(11) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.830s][info][gc,heap ] GC(11) Live: - 3M (48%) 3M (48%) 3M (48%) - -
[0.830s][info][gc,heap ] GC(11) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.830s][info][gc,heap ] GC(11) Garbage: - 2M (27%) 2M (27%) 2M (27%) - -
[0.830s][info][gc,heap ] GC(11) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.830s][info][gc ] GC(11) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.830s][info][gc ] Allocation Stall (main) 10.415ms
[0.830s][info][gc,start ] GC(12) Garbage Collection (Allocation Stall)
[0.830s][info][gc,ref ] GC(12) Clearing All SoftReferences
[0.830s][info][gc,phases ] GC(12) Pause Mark Start 0.120ms
[0.835s][info][gc,phases ] GC(12) Concurrent Mark 4.300ms
[0.835s][info][gc,phases ] GC(12) Pause Mark End 0.131ms
[0.837s][info][gc,phases ] GC(12) Concurrent Process Non-Strong References 2.220ms
[0.837s][info][gc,phases ] GC(12) Concurrent Reset Relocation Set 0.000ms
[0.839s][info][gc,phases ] GC(12) Concurrent Select Relocation Set 1.039ms
[0.839s][info][gc,phases ] GC(12) Pause Relocate Start 0.094ms
[0.839s][info][gc,phases ] GC(12) Concurrent Relocate 0.094ms
[0.839s][info][gc,load ] GC(12) Load: 1.76/1.41/1.28
[0.839s][info][gc,mmu ] GC(12) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.4%, 20ms/95.1%, 50ms/96.2%, 100ms/98.1%
[0.839s][info][gc,marking ] GC(12) Mark: 1 stripe(s), 1 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.839s][info][gc,nmethod ] GC(12) NMethods: 748 registered, 0 unregistered
[0.839s][info][gc,metaspace] GC(12) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.839s][info][gc,ref ] GC(12) Soft: 87 encountered, 60 discovered, 0 enqueued
[0.839s][info][gc,ref ] GC(12) Weak: 343 encountered, 284 discovered, 0 enqueued
[0.839s][info][gc,ref ] GC(12) Final: 0 encountered, 0 discovered, 0 enqueued
[0.839s][info][gc,ref ] GC(12) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.839s][info][gc,reloc ] GC(12) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.839s][info][gc,reloc ] GC(12) Large Pages: 1 / 2M(33%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.839s][info][gc,reloc ] GC(12) Relocation: Successful
[0.839s][info][gc,heap ] GC(12) Min Capacity: 8M(100%)
[0.839s][info][gc,heap ] GC(12) Max Capacity: 8M(100%)
[0.839s][info][gc,heap ] GC(12) Soft Max Capacity: 8M(100%)
[0.839s][info][gc,heap ] GC(12) Mark Start Mark End Relocate Start Relocate End High Low
[0.839s][info][gc,heap ] GC(12) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.839s][info][gc,heap ] GC(12) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.839s][info][gc,heap ] GC(12) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%) 0M (0%)
[0.839s][info][gc,heap ] GC(12) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%)
[0.839s][info][gc,heap ] GC(12) Live: - 3M (48%) 3M (48%) 3M (48%) - -
[0.839s][info][gc,heap ] GC(12) Allocated: - 0M (0%) 0M (0%) 0M (0%) - -
[0.839s][info][gc,heap ] GC(12) Garbage: - 2M (27%) 2M (27%) 2M (27%) - -
[0.839s][info][gc,heap ] GC(12) Reclaimed: - - 0M (0%) 0M (0%) - -
[0.839s][info][gc ] GC(12) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.839s][info][gc ] Allocation Stall (main) 9.248ms
[0.839s][info][gc ] Out Of Memory (main)
[0.839s][info][gc,start ] GC(13) Garbage Collection (Allocation Stall)
[0.840s][info][gc,ref ] GC(13) Clearing All SoftReferences
[0.840s][info][gc,phases ] GC(13) Pause Mark Start 0.102ms
[0.844s][info][gc,phases ] GC(13) Concurrent Mark 4.123ms
[0.844s][info][gc,phases ] GC(13) Pause Mark End 0.085ms
[0.846s][info][gc,phases ] GC(13) Concurrent Process Non-Strong References 2.139ms
[0.846s][info][gc,phases ] GC(13) Concurrent Reset Relocation Set 0.001ms
[0.848s][info][gc ] Allocation Stall (main) 8.294ms
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.handleExceptions(JavacTaskImpl.java:175)
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.doCall(JavacTaskImpl.java:100)
at jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.call(JavacTaskImpl.java:94)
at jdk.compiler/com.sun.tools.javac.launcher.Main.compile(Main.java:379)
at jdk.compiler/com.sun.tools.javac.launcher.Main.run(Main.java:189)
at jdk.compiler/com.sun.tools.javac.launcher.Main.main(Main.java:132)
[0.853s][info][gc,phases ] GC(13) Concurrent Select Relocation Set 5.663ms
[0.856s][info][gc,phases ] GC(13) Pause Relocate Start 0.274ms
[0.856s][info][gc,phases ] GC(13) Concurrent Relocate 0.070ms
[0.856s][info][gc,load ] GC(13) Load: 1.76/1.41/1.28
[0.856s][info][gc,mmu ] GC(13) MMU: 2ms/82.1%, 5ms/92.8%, 10ms/94.4%, 20ms/95.1%, 50ms/96.0%, 100ms/97.7%
[0.857s][info][gc,marking ] GC(13) Mark: 1 stripe(s), 2 proactive flush(es), 1 terminate flush(es), 0 completion(s), 0 continuation(s)
[0.857s][info][gc,nmethod ] GC(13) NMethods: 750 registered, 0 unregistered
[0.857s][info][gc,metaspace] GC(13) Metaspace: 10M used, 10M capacity, 10M committed, 1034M reserved
[0.857s][info][gc,ref ] GC(13) Soft: 86 encountered, 60 discovered, 2 enqueued
[0.857s][info][gc,ref ] GC(13) Weak: 343 encountered, 284 discovered, 0 enqueued
[0.857s][info][gc,ref ] GC(13) Final: 0 encountered, 0 discovered, 0 enqueued
[0.857s][info][gc,ref ] GC(13) Phantom: 3 encountered, 3 discovered, 0 enqueued
[0.857s][info][gc,reloc ] GC(13) Small Pages: 2 / 4M(67%), Empty: 0M(0%), Compacting: 0M(0%)->0M(0%)
[0.857s][info][gc,reloc ] GC(13) Large Pages: 1 / 2M(33%), Empty: 2M(33%), Compacting: 0M(0%)->0M(0%)
[0.857s][info][gc,reloc ] GC(13) Relocation: Successful
[0.857s][info][gc,heap ] GC(13) Min Capacity: 8M(100%)
[0.857s][info][gc,heap ] GC(13) Max Capacity: 8M(100%)
[0.857s][info][gc,heap ] GC(13) Soft Max Capacity: 8M(100%)
[0.857s][info][gc,heap ] GC(13) Mark Start Mark End Relocate Start Relocate End High Low
[0.857s][info][gc,heap ] GC(13) Capacity: 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%) 8M (100%)
[0.857s][info][gc,heap ] GC(13) Reserve: 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%) 2M (25%)
[0.857s][info][gc,heap ] GC(13) Free: 0M (0%) 0M (0%) 0M (0%) 0M (0%) 2M (25%) 0M (0%)
[0.857s][info][gc,heap ] GC(13) Used: 6M (75%) 6M (75%) 6M (75%) 6M (75%) 6M (75%) 4M (50%)
[0.857s][info][gc,heap ] GC(13) Live: - 1M (20%) 1M (20%) 1M (20%) - -
[0.857s][info][gc,heap ] GC(13) Allocated: - 0M (0%) 2M (25%) 2M (25%) - -
[0.857s][info][gc,heap ] GC(13) Garbage: - 4M (55%) 2M (30%) 2M (30%) - -
[0.857s][info][gc,heap ] GC(13) Reclaimed: - - 2M (25%) 2M (25%) - -
[0.857s][info][gc ] GC(13) Garbage Collection (Allocation Stall) 6M(75%)->6M(75%)
[0.860s][info][gc,heap,exit] Heap
[0.860s][info][gc,heap,exit] ZHeap used 6M, capacity 8M, max capacity 8M
[0.860s][info][gc,heap,exit] Metaspace used 10324K, capacity 10550K, committed 10752K, reserved 1058816K
[0.860s][info][gc,heap,exit] class space used 1043K, capacity 1151K, committed 1280K, reserved 1048576K

通过日志来看,ZGC 8M 的小堆目前来说还是存在问题(2020年8月7日15:35:12)

  • 标题: zgc
  • 作者: The Redefine Team
  • 创建于 : 2020-04-04 10:17:55
  • 更新于 : 2023-05-23 18:52:03
  • 链接: https://redefine.ohevan.com/2020/04/04/zgc/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
zgc