hprof-analyzer 0.2.0

Fast, low-memory Java HPROF heap-dump analyzer with Eclipse MAT-parity reports (System Overview, Leak Suspects, Top Consumers).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# Heap Dump Analysis: `dump_1_mnemonics.hprof`

*Generated by hprof-analyzer views — 2026-07-31T21:02:50.863885000Z*

_All sizes are binary (1 KB = 1024 bytes, 1 MB = 1024 KB, and so on)._

----

## Contents

- [Summary](#summary)
- [Memory Triage](#memory-triage)
- [Waste Summary](#waste-summary)
- [System Overview](#system-overview)
- [Leak Suspects](#leak-suspects)
- [Top Consumers](#top-consumers)
- [Dominator Analysis](#dominator-analysis)
- [Threads](#threads)
- [Top Components](#top-components)
- [Arrays by Size](#arrays-by-size)
- [Collections](#collections)
- [References](#references)
- [Unreachable Objects](#unreachable-objects)
- [Allocation Sites](#allocation-sites)
- [Retention Concentration](#retention-concentration)
- [Dominator-Depth Distribution](#dominator-depth-distribution)
- [Glossary](#glossary)

----

## Summary

_At-a-glance digest; see the sections below for full detail._

| Metric               |   Value |
| -------------------- | ------: |
| Total reachable heap | 11.3 MB |
| Objects              | 334,875 |
| Classes              |   2,285 |
| Class loaders        |       5 |
| Threads              |       4 |
| GC roots             |   1,553 |

**Top suspects by retained heap**

|  # | Suspect                                   | Retained | % Heap |
| -: | ----------------------------------------- | -------: | -----: |
|  1 | `java.lang.Thread` (single object)        |   5.5 MB |  48.8% |
|  2 | `scala.runtime.LazyVals$` (single object) |   2.5 MB |  22.2% |

**Likely problem:** retention is spread across several roots; no single object dominates.

## Memory Triage

_Where the reachable heap is concentrated, at a glance._

- **Headline retainer:** `java.lang.Thread` (a single object) retains 5.5 MB (48.8% of reachable heap). See [Leak Suspects](#leak-suspects).
- **Concentration:** diffuse — retention is spread across multiple roots, so there is no single object to free. See [Leak Suspects](#leak-suspects).
- **Shape:** deep (retention flows through long dominator chains — often nested collections or linked structures) — 90% of objects within depth 8, max depth 28. See [Dominator-Depth Distribution](#dominator-depth-distribution).
- **One leak or many:** the single biggest object, `java.lang.Thread`, retains 48.8% and the top 10 retain 84.3% of the heap; 6 object(s) each hold >=1%. See [Top Consumers](#top-consumers).
- **Thread pinning:** thread `main` retains 5.5 MB (48.8% of heap) and pins 329 thread-local roots — a live thread is holding memory alive. See [Threads](#threads).
- **Off-heap (DirectByteBuffer):** 134.3 MB of native memory is held by live DirectByteBuffers — not counted in heap size but can dominate RSS. See [Leak Indicators](#leak-indicators).
- **Fixed per-object header overhead:** 334,875 objects × 12 B header = 3.8 MB (34.1% of heap) is consumed by JVM object headers alone — consider value types, primitive arrays, or fewer wrapper objects. See [Header Overhead](#object-header-overhead).
- **Empty-collection cemetery:** 2,943 of 3,891 tracked collections (75.6%) are empty (size == 0) — pre-allocated but never populated containers waste object-header overhead; consider lazy initialisation or null. See [Collections](#collections).
- **Collection waste not analyzed:** _Collection waste not analyzed — re-run with `--collections` to check for wasted capacity._

## Waste Summary

_Approximately **1.2 MB** looks reclaimable across the sources below. Figures are approximate and may overlap slightly._

| Source                                     | Reclaimable |
| ------------------------------------------ | ----------: |
| [Under-filled object arrays](#collections) |    736.7 KB |
| [Under-filled collections](#collections)   |    485.2 KB |

## System Overview

_Reachable-heap totals and the largest classes by retained heap._

### Heap Summary

| Property                                      | Value                             |
| --------------------------------------------- | --------------------------------- |
| HPROF format                                  | JAVA PROFILE 1.0.2                |
| File size                                     | 20.3 MB                           |
| Identifier size                               | 64-bit                            |
| Compressed OOPs                               | yes                               |
| Dump created                                  | 2026-07-08T12:44:20Z              |
| Total objects                                 | 334,875                           |
| Total reachable heap                          | 11.3 MB                           |
| Off-heap / on-heap                            | 134.3 MB off-heap (11.9× on-heap) |
| GC roots                                      | 1,553                             |
| Classes loaded                                | 2,285                             |
| Class loaders                                 | 5                                 |
| Unreachable objects (excluded)                | 3,716 (659.6 KB)                  |
| Heap fragmentation (unreachable / heap total) | 5.4%                              |
| Top-class retained concentration              | 55.2%                             |

- **Class loaders (labels):** java/net/URLClassLoader, jdk/internal/loader/ClassLoaders$AppClassLoader, jdk/internal/loader/ClassLoaders$PlatformClassLoader

### GC Roots by Type

| Root Type    | Count |                  |
| ------------ | ----: | ---------------- |
| Sticky Class | 1,438 | ████████████████ |
| JNI Global   |   108 | █▏               |
| Thread       |     7 | ▏                |

### Heap Composition

| Kind             | Objects | Shallow Heap |                  |
| ---------------- | ------: | -----------: | ---------------- |
| Instances        | 266,242 |       5.7 MB | ████████████████ |
| Object arrays    |   4,667 |       1.2 MB | ███▍             |
| Primitive arrays |  61,681 |       4.3 MB | ████████████     |
| Class objects    |   2,285 |      29.4 KB | ▏                |

### HPROF Record Census

_Raw HPROF record-type composition of the dump (pass-1 counts). Useful for diagnosing truncated or unusual dumps (e.g. zero stack frames means no allocation-site data; a mismatch between load-class and class-dump counts can indicate a partial write). Additive, not parity-compared._

| Record Type           |   Count |
| --------------------- | ------: |
| UTF8 strings          |  61,050 |
| Load class            |   2,386 |
| Unload class          |       0 |
| Stack frames          |     287 |
| Stack traces          |       8 |
| Heap dump segments    |      21 |
| Instance dumps        | 267,339 |
| Object-array dumps    |   4,707 |
| Primitive-array dumps |  64,158 |
| Class dumps           |   2,386 |

#### GC Root Records by Tag

| Root Tag     | Count |
| ------------ | ----: |
| Sticky Class | 1,442 |
| Java Frame   |   356 |
| JNI Global   |   108 |
| Thread       |     7 |

### Duplicate Strings (approximate)

_Duplicate-string analysis not run (pass `--find-duplicates`)._

### Duplicate Primitive Arrays (approximate)

_Duplicate primitive-array analysis not run (pass `--find-duplicates`)._

### Boxed Numbers

_Wrapper types whose instances occupy heap that could be replaced with primitives._

|  # | Class                 | Instances | Total Shallow | % of Heap | Avg Size |
| -: | --------------------- | --------: | ------------: | --------: | -------: |
|  1 | `java.lang.Long`      |       256 |        6.0 KB |      0.1% |     24 B |
|  2 | `java.lang.Integer`   |       277 |        4.3 KB |     <0.1% |     16 B |
|  3 | `java.lang.Byte`      |       256 |        4.0 KB |     <0.1% |     16 B |
|  4 | `java.lang.Short`     |       256 |        4.0 KB |     <0.1% |     16 B |
|  5 | `java.lang.Character` |       128 |        2.0 KB |     <0.1% |     16 B |
|  6 | `java.lang.Boolean`   |         2 |          32 B |      0.0% |     16 B |
|  7 | `java.lang.Double`    |         1 |          24 B |      0.0% |     24 B |
|  8 | `java.lang.Float`     |         1 |          16 B |      0.0% |     16 B |

### Object Header Overhead

_Classes where object headers consume a large share of shallow heap. The practical action is to reduce object *count*: merge small objects, use primitive arrays instead of boxed wrappers, or replace fine-grained instances with a flat array of fields. Value types (Project Valhalla) eliminate headers entirely but are not yet generally available._

|  # | Class                                                 | Instances | Hdr/obj | Total Headers | Hdr % | Avg Size |
| -: | ----------------------------------------------------- | --------: | ------: | ------------: | ----: | -------: |
|  1 | `java.lang.Object`                                    |   132,975 |    12 B |        1.5 MB | 75.0% |     16 B |
|  2 | `java.lang.String`                                    |    59,804 |    12 B |      700.8 KB | 50.0% |     24 B |
|  3 | `java.util.HashMap$Node`                              |    47,746 |    12 B |      559.5 KB | 37.5% |     32 B |
|  4 | `java.util.concurrent.ConcurrentHashMap$Node`         |     5,958 |    12 B |       69.8 KB | 37.5% |     32 B |
|  5 | `java.util.jar.Attributes`                            |     2,895 |    12 B |       33.9 KB | 75.0% |     16 B |
|  6 | `java.lang.Class`                                     |     2,294 |    12 B |       26.9 KB | 89.6% |     13 B |
|  7 | `java.util.LinkedHashMap$Entry`                       |     1,179 |    12 B |       13.8 KB | 30.0% |     40 B |
|  8 | `java.lang.invoke.MemberName`                         |       782 |    12 B |        9.2 KB | 30.0% |     40 B |
|  9 | `jdk.internal.util.WeakReferenceKey`                  |       698 |    12 B |        8.2 KB | 37.5% |     32 B |
| 10 | `java.lang.invoke.MethodType`                         |       681 |    12 B |        8.0 KB | 30.0% |     40 B |
| 11 | `java.lang.invoke.ResolvedMethodName`                 |       598 |    12 B |        7.0 KB | 75.0% |     16 B |
| 12 | `java.lang.Class[]`                                   |       545 |    12 B |        6.4 KB | 40.9% |     29 B |
| 13 | `java.util.ArrayList`                                 |       528 |    12 B |        6.2 KB | 50.0% |     24 B |
| 14 | `java.lang.String[]`                                  |       450 |    12 B |        5.3 KB | 30.7% |     39 B |
| 15 | `java.lang.invoke.LambdaForm$Name`                    |       404 |    12 B |        4.7 KB | 37.5% |     32 B |
| 16 | `java.lang.module.ModuleDescriptor$Exports`           |       367 |    12 B |        4.3 KB | 50.0% |     24 B |
| 17 | `jdk.internal.math.FDBigInteger`                      |       341 |    12 B |        4.0 KB | 37.5% |     32 B |
| 18 | `java.lang.Integer`                                   |       277 |    12 B |        3.2 KB | 75.0% |     16 B |
| 19 | `sun.security.util.KnownOIDs`                         |       264 |    12 B |        3.1 KB | 30.0% |     40 B |
| 20 | `java.lang.Long`                                      |       256 |    12 B |        3.0 KB | 50.0% |     24 B |
| 21 | `java.lang.Byte`                                      |       256 |    12 B |        3.0 KB | 75.0% |     16 B |
| 22 | `java.lang.Short`                                     |       256 |    12 B |        3.0 KB | 75.0% |     16 B |
| 23 | `java.util.HashSet`                                   |       245 |    12 B |        2.9 KB | 75.0% |     16 B |
| 24 | `java.util.ImmutableCollections$Set12`                |       245 |    12 B |        2.9 KB | 50.0% |     24 B |
| 25 | `jdk.internal.module.ServicesCatalog$ServiceProvider` |       190 |    12 B |        2.2 KB | 50.0% |     24 B |
| 26 | `java.lang.invoke.DirectMethodHandle`                 |       187 |    12 B |        2.2 KB | 30.0% |     40 B |
| 27 | `java.lang.invoke.MethodTypeForm`                     |       167 |    12 B |        2.0 KB | 37.5% |     32 B |
| 28 | `java.lang.invoke.LambdaForm$NamedFunction`           |       157 |    12 B |        1.8 KB | 50.0% |     24 B |
| 29 | `java.util.ImmutableCollections$SetN`                 |       149 |    12 B |        1.7 KB | 50.0% |     24 B |
| 30 | `java.lang.ref.SoftReference`                         |       148 |    12 B |        1.7 KB | 30.0% |     40 B |

### Class Histogram (by Retained Heap)

_Top 50 classes ranked by retained heap; the full list is in the JSON output._

|  # | Class                                             | Instances | Shallow Heap |  Largest | Retained Heap | % Heap |
| -: | ------------------------------------------------- | --------: | -----------: | -------: | ------------: | -----: |
|  1 | `java.util.HashMap$Node[]`                        |       417 |     389.2 KB | 256.0 KB |        6.2 MB |  55.2% |
|  2 | `java.util.HashMap`                               |       410 |      19.2 KB |     48 B |        6.2 MB |  54.7% |
|  3 | `java.util.HashMap$Node`                          |    47,746 |       1.5 MB |     32 B |        5.8 MB |  52.0% |
|  4 | `java.lang.Thread`                                |        27 |       2.7 KB |    104 B |        5.5 MB |  48.9% |
|  5 | `java.util.HashSet`                               |       245 |       3.8 KB |     16 B |        5.2 MB |  46.0% |
|  6 | `java.util.stream.ReduceOps$3ReducingSink`        |        18 |        576 B |     32 B |        5.1 MB |  45.5% |
|  7 | `java.lang.String`                                |    59,804 |       1.4 MB |     24 B |        4.9 MB |  43.8% |
|  8 | `byte[]`                                          |    60,520 |       4.1 MB | 255.1 KB |        4.1 MB |  36.6% |
|  9 | `java.lang.Class`                                 |     2,294 |      30.0 KB |   1.1 KB |        3.5 MB |  30.7% |
| 10 | `java.lang.Object[]`                              |     2,329 |     722.5 KB | 512.0 KB |        2.9 MB |  25.8% |
| 11 | `scala.runtime.LazyVals$`                         |         1 |         16 B |     16 B |        2.5 MB |  22.2% |
| 12 | `java.lang.Object`                                |   132,975 |       2.0 MB |     16 B |        2.0 MB |  18.0% |
| 13 | `java.lang.ref.SoftReference`                     |       148 |       5.8 KB |     40 B |      605.2 KB |   5.3% |
| 14 | `java.util.jar.JarFile`                           |         7 |        448 B |     64 B |      593.3 KB |   5.1% |
| 15 | `java.util.jar.Manifest`                          |         6 |        144 B |     24 B |      590.3 KB |   5.1% |
| 16 | `java.util.concurrent.ConcurrentHashMap`          |       113 |       7.1 KB |     64 B |      526.3 KB |   4.6% |
| 17 | `java.util.concurrent.ConcurrentHashMap$Node[]`   |        89 |      53.6 KB |   8.0 KB |      519.6 KB |   4.5% |
| 18 | `java.util.zip.ZipFile$Source`                    |         7 |        560 B |     80 B |      446.6 KB |   3.9% |
| 19 | `java.util.concurrent.ConcurrentHashMap$Node`     |     5,958 |     186.2 KB |     32 B |      390.1 KB |   3.4% |
| 20 | `java.util.LinkedHashMap`                         |     2,935 |     183.4 KB |     64 B |      338.1 KB |   2.9% |
| 21 | `java.util.jar.Attributes`                        |     2,895 |      45.2 KB |     16 B |      238.4 KB |   2.1% |
| 22 | `java.time.zone.ZoneRulesProvider`                |         0 |          0 B |      0 B |      198.4 KB |   1.7% |
| 23 | `org.renaissance.core.ModuleLoader`               |         2 |         48 B |     24 B |      149.8 KB |   1.3% |
| 24 | `sun.util.calendar.ZoneInfoFile`                  |         0 |          0 B |      0 B |      145.4 KB |   1.3% |
| 25 | `java.util.LinkedHashMap$Entry`                   |     1,179 |      46.1 KB |     40 B |      145.1 KB |   1.3% |
| 26 | `java.util.LinkedHashSet`                         |        38 |        608 B |     16 B |      144.6 KB |   1.3% |
| 27 | `java.lang.invoke.MethodType`                     |       681 |      26.6 KB |     40 B |      132.0 KB |   1.1% |
| 28 | `java.time.zone.TzdbZoneRulesProvider`            |         1 |         24 B |     24 B |      118.2 KB |   1.0% |
| 29 | `int[]`                                           |       897 |     106.7 KB |  34.3 KB |      106.7 KB |   0.9% |
| 30 | `byte[][]`                                        |         1 |       1.4 KB |   1.4 KB |       94.1 KB |   0.8% |
| 31 | `java.util.ImmutableCollections$SetN`             |       149 |       3.5 KB |     24 B |       91.5 KB |   0.8% |
| 32 | `sun.security.util.KnownOIDs`                     |       264 |      10.3 KB |     40 B |       88.5 KB |   0.8% |
| 33 | `java.net.URLClassLoader`                         |         2 |        176 B |     88 B |       81.0 KB |   0.7% |
| 34 | `org.renaissance.core.BenchmarkSuite`             |         1 |         32 B |     32 B |       77.0 KB |   0.7% |
| 35 | `java.util.ArrayList`                             |       528 |      12.4 KB |     24 B |       76.0 KB |   0.7% |
| 36 | `java.util.Optional`                              |         4 |         64 B |     16 B |       73.9 KB |   0.6% |
| 37 | `java.lang.Module`                                |        70 |       3.3 KB |     48 B |       65.5 KB |   0.6% |
| 38 | `sun.util.cldr.CLDRLocaleProviderAdapter`         |         1 |         80 B |     80 B |       62.6 KB |   0.5% |
| 39 | `sun.util.locale.provider.LocaleProviderAdapter`  |         0 |          0 B |      0 B |       62.3 KB |   0.5% |
| 40 | `java.lang.invoke.MemberName`                     |       782 |      30.5 KB |     40 B |       56.2 KB |   0.5% |
| 41 | `char[]`                                          |       223 |      55.7 KB |  16.0 KB |       55.7 KB |   0.5% |
| 42 | `sun.security.provider.Sun`                       |         1 |        104 B |    104 B |       53.7 KB |   0.5% |
| 43 | `jdk.internal.loader.ClassLoaders$AppClassLoader` |         1 |         96 B |     96 B |       53.0 KB |   0.5% |
| 44 | `java.lang.invoke.LambdaForm`                     |       138 |       6.5 KB |     48 B |       52.2 KB |   0.5% |
| 45 | `sun.util.resources.Bundles`                      |         0 |          0 B |      0 B |       49.2 KB |   0.4% |
| 46 | `jdk.internal.util.ReferencedKeyMap`              |         1 |         24 B |     24 B |       48.1 KB |   0.4% |
| 47 | `jdk.internal.util.ReferencedKeySet`              |         1 |         16 B |     16 B |       48.1 KB |   0.4% |
| 48 | `java.lang.module.ModuleDescriptor`               |        62 |       3.9 KB |     64 B |       40.1 KB |   0.3% |
| 49 | `java.lang.invoke.MethodTypeForm`                 |       167 |       5.2 KB |     32 B |       38.1 KB |   0.3% |
| 50 | `jdk.internal.math.FDBigInteger[]`                |         1 |       1.3 KB |   1.3 KB |       36.2 KB |   0.3% |
_… 2,336 more classes, 365.3 KB shallow / 1.4 MB retained (full list in JSON)._

### Class Loaders

_Classes grouped by the loader that defined them. The **Loader** column shows the loader's class (e.g. `java/net/URLClassLoader`), not an instance name — the hprof format does not record loader names. Multiple rows with the same loader class are distinct loader instances; many such instances each holding significant heap can signal a classloader leak. The **Address** column distinguishes them._

| Loader                                               | Address    | Classes | Instances | Shallow Heap | Retained Heap |
| ---------------------------------------------------- | ---------- | ------: | --------: | -----------: | ------------: |
| <boot>                                               | <boot>     |   1,703 |   334,432 |      11.2 MB |       59.0 MB |
| java/net/URLClassLoader                              | 0xce800048 |     575 |       330 |      18.0 KB |        2.6 MB |
| jdk/internal/loader/ClassLoaders$AppClassLoader      | 0xffeecf48 |      90 |        68 |       1.4 KB |      238.0 KB |
| java/net/URLClassLoader                              | 0xc0412620 |      17 |        44 |        880 B |        9.2 KB |
| jdk/internal/loader/ClassLoaders$PlatformClassLoader | 0xffeec828 |       1 |         1 |         16 B |        7.4 KB |

## Leak Suspects

_Objects and class groups retaining the most heap, ranked by retained size. These are the most likely accumulation points for excessive memory usage. To fix: follow the dominator chain to the nearest object you control, and drop or null out the reference that keeps it alive. The path to GC root is shown for each suspect below — the tool cannot yet name the specific field; that requires field-labeled reference paths._

### 1. `java.lang.Thread` — retains 5.5 MB (48.8% of reachable heap)

One `java.lang.Thread` object (shallow 104 B) dominates this retained heap.

Held by a **Thread** GC root.

Retained heap accumulates at `java.util.HashMap$Node[]` (retained 4.2 MB).

_Directly dominates 25,551 objects (showing top 1 classes by retained heap)._

**Accumulated objects by class:**

| Class                    | Objects |  Shallow | Retained | % of suspect |
| ------------------------ | ------: | -------: | -------: | -----------: |
| `java.util.HashMap$Node` |  25,551 | 798.5 KB |   4.0 MB |        72.1% |

**Dominator chain to GC root:**

1. `java.lang.Thread` (5.5 MB) — GC root: Thread (this object is directly held by a GC root; no intermediate chain)

<details>
<summary>Dominator subtree</summary>

**Dominator subtree:**

- `java.util.HashMap$Node[]` (shallow 256.0 KB, retained 4.2 MB)
  - `java.util.HashMap$Node` (shallow 32 B, retained 768 B)
    - `java.util.HashMap$Node` (shallow 32 B, retained 640 B)
      - `java.util.HashMap$Node` (shallow 32 B, retained 512 B)
        - `java.util.HashMap$Node` (shallow 32 B, retained 384 B)
          - `java.util.HashMap$Node` (shallow 32 B, retained 256 B)
            _… (2 deeper — full data in JSON)_
          - `java.lang.String` (shallow 24 B, retained 96 B)
            _… (1 deeper — full data in JSON)_
        - `java.lang.String` (shallow 24 B, retained 96 B)
          - `byte[]` (shallow 72 B, retained 72 B)
      - `java.lang.String` (shallow 24 B, retained 96 B)
        - `byte[]` (shallow 72 B, retained 72 B)
    - `java.lang.String` (shallow 24 B, retained 96 B)
      - `byte[]` (shallow 72 B, retained 72 B)
  - `java.util.HashMap$Node` ×11 (shallow 32 B, retained 640 B each)
    - `java.util.HashMap$Node` (shallow 32 B, retained 512 B)
      - `java.util.HashMap$Node` (shallow 32 B, retained 384 B)
        - `java.util.HashMap$Node` (shallow 32 B, retained 256 B)
          - `java.util.HashMap$Node` (shallow 32 B, retained 128 B)
            _… (1 deeper — full data in JSON)_
          - `java.lang.String` (shallow 24 B, retained 96 B)
            _… (1 deeper — full data in JSON)_
        - `java.lang.String` (shallow 24 B, retained 96 B)
          - `byte[]` (shallow 72 B, retained 72 B)
      - `java.lang.String` (shallow 24 B, retained 96 B)
        - `byte[]` (shallow 72 B, retained 72 B)
    - `java.lang.String` (shallow 24 B, retained 96 B)
      - `byte[]` (shallow 72 B, retained 72 B)
  - `java.util.HashMap$Node` ×110 (shallow 32 B, retained 512 B each)
    - `java.util.HashMap$Node` (shallow 32 B, retained 384 B)
      - `java.util.HashMap$Node` (shallow 32 B, retained 256 B)
        - `java.util.HashMap$Node` (shallow 32 B, retained 128 B)
          - `java.lang.String` (shallow 24 B, retained 96 B)
            _… (1 deeper — full data in JSON)_
        - `java.lang.String` (shallow 24 B, retained 96 B)
          - `byte[]` (shallow 72 B, retained 72 B)
      - `java.lang.String` (shallow 24 B, retained 96 B)
        - `byte[]` (shallow 72 B, retained 72 B)
    - `java.lang.String` (shallow 24 B, retained 96 B)
      - `byte[]` (shallow 72 B, retained 72 B)
  - `java.util.HashMap$Node` ×4 (shallow 32 B, retained 504 B each)
    - `java.util.HashMap$Node` (shallow 32 B, retained 376 B)
      - `java.util.HashMap$Node` (shallow 32 B, retained 248 B)
        - `java.util.HashMap$Node` (shallow 32 B, retained 120 B)
          - `java.lang.String` (shallow 24 B, retained 88 B)
            _… (1 deeper — full data in JSON)_
        - `java.lang.String` (shallow 24 B, retained 96 B)
          - `byte[]` (shallow 72 B, retained 72 B)
      - `java.lang.String` (shallow 24 B, retained 96 B)
        - `byte[]` (shallow 72 B, retained 72 B)
    - `java.lang.String` (shallow 24 B, retained 96 B)
      - `byte[]` (shallow 72 B, retained 72 B)
  - `java.util.HashMap$Node` ×384 (shallow 32 B, retained 384 B each)
    - `java.util.HashMap$Node` (shallow 32 B, retained 256 B)
      - `java.util.HashMap$Node` (shallow 32 B, retained 128 B)
        - `java.lang.String` (shallow 24 B, retained 96 B)
          - `byte[]` (shallow 72 B, retained 72 B)
      - `java.lang.String` (shallow 24 B, retained 96 B)
        - `byte[]` (shallow 72 B, retained 72 B)
    - `java.lang.String` (shallow 24 B, retained 96 B)
      - `byte[]` (shallow 72 B, retained 72 B)

</details>

### 2. `scala.runtime.LazyVals$` — retains 2.5 MB (22.2% of reachable heap)

One `scala.runtime.LazyVals$` object (shallow 32 B) dominates this retained heap.

Retained heap accumulates at `java.lang.Object[]` (retained 2.5 MB).

_Directly dominates 131,072 objects (showing top 1 classes by retained heap)._

**Accumulated objects by class:**

| Class              | Objects | Shallow | Retained | % of suspect |
| ------------------ | ------: | ------: | -------: | -----------: |
| `java.lang.Object` | 131,072 |  2.0 MB |   2.0 MB |        80.0% |

**Dominator chain to GC root:**

1. `scala.runtime.LazyVals$` (2.5 MB)

<details>
<summary>Dominator subtree</summary>

**Dominator subtree:**

- `java.lang.Object[]` (shallow 512.0 KB, retained 2.5 MB)
  - `java.lang.Object` ×4999 (shallow 16 B, retained 16 B each)

</details>

## Top Consumers

### Biggest Objects (Top-Level Dominators)

_All top-level dominators ranked by retained heap. Unlike Leak Suspects, this list is unfiltered — it includes every object directly dominated by a GC root, down to the smallest. Use it when the suspect you care about didn't cross the leak-suspect threshold, or to see the full retention picture._

|  # | Class                                                  | Shallow | Retained | % Heap |
| -: | ------------------------------------------------------ | ------: | -------: | -----: |
|  1 | `java.lang.Thread`                                     |   104 B |   5.5 MB |  48.8% |
|  2 | `scala.runtime.LazyVals$`                              |    32 B |   2.5 MB |  22.2% |
|  3 | `java.util.jar.JarFile`                                |    64 B | 585.1 KB |   5.1% |
|  4 | `java.util.zip.ZipFile$Source`                         |    80 B | 295.2 KB |   2.6% |
|  5 | `java.time.zone.ZoneRulesProvider`                     |    16 B | 198.4 KB |   1.7% |
|  6 | `sun.util.calendar.ZoneInfoFile`                       |   120 B | 145.4 KB |   1.3% |
|  7 | `sun.security.util.KnownOIDs`                          |  1.1 KB |  88.5 KB |   0.8% |
|  8 | `java.lang.Object[]`                                   |  8.9 KB |  75.5 KB |   0.7% |
|  9 | `java.net.URLClassLoader`                              |    88 B |  74.5 KB |   0.6% |
| 10 | `java.util.zip.ZipFile$Source`                         |    80 B |  68.2 KB |   0.6% |
| 11 | `sun.util.locale.provider.LocaleProviderAdapter`       |    24 B |  62.3 KB |   0.5% |
| 12 | `sun.security.provider.Sun`                            |   104 B |  53.7 KB |   0.5% |
| 13 | `jdk.internal.loader.ClassLoaders$AppClassLoader`      |    96 B |  53.0 KB |   0.5% |
| 14 | `java.util.zip.ZipFile$Source`                         |    80 B |  52.5 KB |   0.5% |
| 15 | `sun.util.resources.Bundles`                           |    24 B |  49.2 KB |   0.4% |
| 16 | `java.lang.invoke.MethodType`                          |    48 B |  48.3 KB |   0.4% |
| 17 | `java.util.concurrent.ConcurrentHashMap`               |    64 B |  34.0 KB |   0.3% |
| 18 | `jdk.internal.loader.ClassLoaders$PlatformClassLoader` |    96 B |  32.8 KB |   0.3% |
| 19 | `java.lang.Object[]`                                   | 31.0 KB |  31.0 KB |   0.3% |
| 20 | `java.lang.CharacterData00`                            |    40 B |  29.8 KB |   0.3% |

### Biggest Classes by Retained Heap

_Classes whose instances together retain the most heap._

|  # | Class                                                  | Instances | Retained Heap |
| -: | ------------------------------------------------------ | --------: | ------------: |
|  1 | `java.lang.Thread`                                     |        25 |        5.5 MB |
|  2 | `java.lang.Class`                                      |     1,622 |        3.4 MB |
|  3 | `java.util.jar.JarFile`                                |         7 |      592.8 KB |
|  4 | `java.lang.String`                                     |     8,922 |      591.6 KB |
|  5 | `java.util.zip.ZipFile$Source`                         |         7 |      446.2 KB |
|  6 | `java.lang.Object[]`                                   |         4 |      106.6 KB |
|  7 | `java.lang.invoke.MethodType`                          |       675 |       83.7 KB |
|  8 | `java.net.URLClassLoader`                              |         2 |       80.8 KB |
|  9 | `java.lang.Module`                                     |        61 |       63.1 KB |
| 10 | `sun.security.provider.Sun`                            |         1 |       53.7 KB |
| 11 | `jdk.internal.loader.ClassLoaders$AppClassLoader`      |         1 |       53.0 KB |
| 12 | `java.lang.invoke.LambdaForm`                          |       103 |       41.7 KB |
| 13 | `java.lang.module.ModuleDescriptor`                    |        62 |       40.0 KB |
| 14 | `java.util.concurrent.ConcurrentHashMap`               |         1 |       34.0 KB |
| 15 | `jdk.internal.loader.ClassLoaders$PlatformClassLoader` |         1 |       32.8 KB |
| 16 | `java.lang.invoke.MethodTypeForm`                      |       107 |       28.9 KB |
| 17 | `java.io.PrintStream`                                  |         1 |       17.3 KB |
| 18 | `java.net.URI`                                         |        61 |       11.8 KB |
| 19 | `java.lang.ModuleLayer`                                |         2 |       11.8 KB |
| 20 | `jdk.internal.module.ModuleReferenceImpl`              |        62 |        8.9 KB |

### Top-Dominator Size Distribution

_Retained-size spread across all 12733 top-level dominators (the biggest memory contributors)._

- Dominators: 12,733
- Smallest / largest retained: 0 B / 5.5 MB
- Median retained: 56 B
- Total retained (top-level): 11.3 MB

|   Size ≤ | Count | % of Dom. |
| -------: | ----: | --------: |
|      1 B |   446 |      3.5% |
|      8 B |    96 |      0.8% |
|     16 B |   178 |      1.4% |
|     32 B |   741 |      5.8% |
|     64 B | 6,770 |     53.2% |
|    128 B | 3,371 |     26.5% |
|    256 B |   580 |      4.6% |
|    512 B |   309 |      2.4% |
|   1.0 KB |   117 |      0.9% |
|   2.0 KB |    47 |      0.4% |
|   4.0 KB |    27 |      0.2% |
|   8.0 KB |    19 |      0.1% |
|  16.0 KB |     8 |      0.1% |
|  32.0 KB |     6 |     <0.1% |
|  64.0 KB |     8 |      0.1% |
| 128.0 KB |     4 |     <0.1% |
| 256.0 KB |     2 |     <0.1% |
| 512.0 KB |     1 |     <0.1% |
|   1.0 MB |     1 |     <0.1% |
|   4.0 MB |     1 |     <0.1% |
|   8.0 MB |     1 |     <0.1% |

### Biggest Packages by Retained Heap

_Retained heap aggregated by package prefix (rows retaining <1% of the total are pruned)._

| Package             | Objects |  Shallow | Retained |
| ------------------- | ------: | -------: | -------: |
| `java`              |  11,875 | 337.8 KB |   8.1 MB |
| `java.lang`         |  10,784 | 313.6 KB |   6.6 MB |
| `java.lang.invoke`  |   1,265 |  46.1 KB | 241.8 KB |
| `java.util`         |     610 |   9.7 KB |   1.1 MB |
| `java.util.jar`     |      30 |    952 B | 594.8 KB |
| `java.util.zip`     |      62 |   2.1 KB | 453.0 KB |
| `java.time`         |     153 |   3.8 KB | 230.7 KB |
| `java.time.zone`    |      11 |    208 B | 205.6 KB |
| `scala`             |      67 |    760 B |   2.5 MB |
| `scala.runtime`     |       8 |     96 B |   2.5 MB |
| `sun`               |     265 |   6.9 KB | 465.7 KB |
| `sun.util`          |      87 |   1.9 KB | 288.3 KB |
| `sun.util.calendar` |       5 |    176 B | 145.5 KB |
| `sun.security`      |      54 |   1.9 KB | 157.9 KB |
| `jdk`               |     318 |   9.0 KB | 136.3 KB |
| `jdk.internal`      |     315 |   9.0 KB | 136.2 KB |

## Dominator Analysis

### Big Drops

_Dominators where retained heap does not flow into a single child — the gap between an object's retained size and its largest child's retained size. A large drop means this object directly owns a lot of memory spread across many children (e.g. an array or collection). Threshold 0.1 MB (1% of reachable shallow). Multiple rows with the same class are distinct objects._

| Object                                          |      # |    Retained | Largest Child                                   | Child Retained |        Drop |
| ----------------------------------------------- | -----: | ----------: | ----------------------------------------------- | -------------: | ----------: |
| `java.util.HashMap$Node[]`                      | 176145 |      4.2 MB | `java.util.HashMap$Node`                        |          768 B |      4.2 MB |
| `java.lang.Object[]`                            |      1 |      2.5 MB | `java.lang.Object`                              |           16 B |      2.5 MB |
| `java.lang.Thread`                              | 314096 |      5.5 MB | `java.util.stream.ReduceOps$3ReducingSink`      |         4.2 MB |      1.3 MB |
| `java.util.HashMap$Node[]`                      |  67833 |    611.9 KB | `java.util.HashMap$Node`                        |          592 B |    611.3 KB |
| `java.util.HashMap$Node[]`                      |  50504 |    577.2 KB | `java.util.HashMap$Node`                        |         1000 B |    576.2 KB |
| `java.util.HashMap$Node[]`                      |  83761 |    309.0 KB | `java.util.HashMap$Node`                        |          600 B |    308.4 KB |
| `byte[]`                                        | 194886 |    255.1 KB | —                                               |            0 B |    255.1 KB |
| `java.util.HashMap$Node[]`                      |  95440 |    136.9 KB | `java.util.HashMap$Node`                        |          824 B |    136.1 KB |
| `java.util.concurrent.ConcurrentHashMap$Node[]` |  16249 |    115.6 KB | `byte[]`                                        |         1.4 KB |    114.2 KB |
| `java.lang.Class`                               |  14328 |    198.4 KB | `java.time.zone.TzdbZoneRulesProvider`          |       118.2 KB |     80.2 KB |
| `java.lang.Class`                               | 331877 |    145.4 KB | `byte[][]`                                      |        94.1 KB |     51.2 KB |
| `java.util.zip.ZipFile$Source`                  | 314175 |    295.2 KB | `byte[]`                                        |       255.1 KB |     40.1 KB |
| `java.util.jar.Manifest`                        |  29414 |    584.7 KB | `java.util.HashMap`                             |       577.2 KB |      7.5 KB |
| `java.time.zone.TzdbZoneRulesProvider`          |  16243 |    118.2 KB | `java.util.concurrent.ConcurrentHashMap`        |       115.7 KB |      2.5 KB |
| `java.lang.Class`                               | 306832 |      2.5 MB | `java.lang.Object[]`                            |         2.5 MB |      1.0 KB |
| `java.util.jar.JarFile`                         |  29411 |    585.1 KB | `java.lang.ref.SoftReference`                   |       584.8 KB |       352 B |
| `java.util.HashMap`                             |  94670 |    137.0 KB | `java.util.HashMap$Node[]`                      |       136.9 KB |        80 B |
| `java.util.concurrent.ConcurrentHashMap`        |  16248 |    115.7 KB | `java.util.concurrent.ConcurrentHashMap$Node[]` |       115.6 KB |        64 B |
| `java.util.HashMap`                             |     ×4 |    577.2 KB | `java.util.HashMap$Node[]`                      |       577.2 KB |        48 B |
| `java.lang.ref.SoftReference`                   |  29413 |    584.8 KB | `java.util.jar.Manifest`                        |       584.7 KB |        40 B |
| `java.util.stream.ReduceOps$3ReducingSink`      |     ×2 |    612.0 KB | `java.util.HashSet`                             |       612.0 KB |        32 B |
| **Total**                                       |        | **25.9 MB** |                                                 |    **15.8 MB** | **10.1 MB** |

### Immediate Dominators

_Objects immediately dominated, rolled up by the dominator's class; a heavy dominated shallow heap under one class flags a retention hub._

| Dominator Class                                   | #Dominators |  #Dominated | Dominator Shallow | Dominated Shallow |
| ------------------------------------------------- | ----------: | ----------: | ----------------: | ----------------: |
| `java.lang.String`                                |      59,690 |      59,690 |            1.4 MB |            3.6 MB |
| `java.lang.Object[]`                              |         234 |     134,015 |          557.2 KB |            2.1 MB |
| `java.util.HashMap$Node`                          |      45,248 |      59,329 |            1.4 MB |            1.4 MB |
| `java.util.HashMap$Node[]`                        |         372 |      37,135 |          379.7 KB |            1.1 MB |
| `java.lang.Class`                                 |       1,472 |       4,404 |           27.4 KB |          738.3 KB |
| `java.util.zip.ZipFile$Source`                    |           7 |          21 |             560 B |          445.6 KB |
| `java.util.HashMap`                               |         371 |         423 |           17.4 KB |          376.5 KB |
| `java.util.concurrent.ConcurrentHashMap$Node[]`   |          87 |       4,922 |           53.5 KB |          184.3 KB |
| `java.util.jar.Attributes`                        |       2,895 |       2,895 |           45.2 KB |          180.9 KB |
| `java.util.concurrent.ConcurrentHashMap$Node`     |       4,050 |       5,024 |          126.6 KB |          175.7 KB |
| `byte[][]`                                        |           1 |         346 |            1.4 KB |           92.8 KB |
| `java.util.LinkedHashMap`                         |          45 |       1,228 |            2.8 KB |           55.6 KB |
| `java.util.concurrent.ConcurrentHashMap`          |          89 |          98 |            5.6 KB |           53.8 KB |
| `java.io.BufferedWriter`                          |           2 |           4 |              80 B |           32.1 KB |
| `java.util.ArrayList`                             |         512 |         512 |           12.0 KB |           29.3 KB |
| `java.util.LinkedHashMap$Entry`                   |       1,125 |       1,142 |           43.9 KB |           26.8 KB |
| `jdk.internal.math.FDBigInteger`                  |         341 |         341 |           10.7 KB |           24.2 KB |
| `java.util.ImmutableCollections$SetN`             |         149 |         149 |            3.5 KB |           23.3 KB |
| `java.lang.invoke.MethodType`                     |         565 |         805 |           22.1 KB |           21.9 KB |
| `java.lang.Thread`                                |          27 |         496 |            2.7 KB |           21.0 KB |
| `java.lang.invoke.MethodTypeForm`                 |         136 |         272 |            4.2 KB |           20.2 KB |
| `java.lang.invoke.MemberName`                     |         492 |         785 |           19.2 KB |           14.0 KB |
| `java.lang.invoke.LambdaForm`                     |         138 |         302 |            6.5 KB |           12.2 KB |
| `java.lang.invoke.LambdaForm$Name[]`              |         134 |         371 |            5.7 KB |           11.6 KB |
| `java.lang.invoke.DirectMethodHandle$Constructor` |         123 |         425 |            5.8 KB |           11.6 KB |
| `java.util.HashSet`                               |         245 |         245 |            3.8 KB |           11.5 KB |
| `java.lang.invoke.LambdaForm$Name`                |         309 |         417 |            9.7 KB |           11.1 KB |
| `jdk.internal.math.FDBigInteger[]`                |           1 |         341 |            1.3 KB |           10.6 KB |
| `java.lang.invoke.DirectMethodHandle`             |         160 |         161 |            6.2 KB |            6.3 KB |
| `java.lang.String[]`                              |           3 |         252 |            2.5 KB |            5.9 KB |
| **Total**                                         | **119,023** | **316,550** |        **4.1 MB** |       **10.7 MB** |

## Threads

### Thread Overview

_One row per resolved thread; columns mirror Eclipse MAT's Thread Overview._

| Name                           | Shallow | Retained | Max. Locals' Retained | Context Class Loader                   | Daemon | Priority | State                                                  |
| ------------------------------ | ------: | -------: | --------------------: | -------------------------------------- | ------ | -------: | ------------------------------------------------------ |
| [main](#thread-1)              |   104 B |   5.5 MB |                2.8 KB | `java/net/URLClassLoader @ 0xc0412620` | no     |        5 | [alive, runnable]                                      |
| [Reference Handler](#thread-2) |   104 B |    200 B |                   0 B | `—`                                    | yes    |       10 | [alive, runnable]                                      |
| [Finalizer](#thread-3)         |   112 B |    208 B |                  40 B | `—`                                    | yes    |        8 | [alive, waiting, waiting indefinitely, in Object.wait] |
| [Common-Cleaner](#thread-6)    |   112 B |    168 B |                 128 B | `—`                                    | yes    |        8 | [alive, waiting, waiting with timeout, parked]         |

<a id="thread-1"></a>

### Thread 1 "main" (java/lang/Thread)

_Local roots: 329._

_Showing top 20 by retained heap (sizes overlap and do not sum to thread total)._

**Local root objects:**

| Object                                                   | Count | Shallow | Retained |
| -------------------------------------------------------- | ----: | ------: | -------: |
| `org/renaissance/jdk/streams/MnemonicsCoderWithStream`   |     1 |    24 B |   2.8 KB |
| `java/util/HashMap`                                      |     1 |    48 B |   1.7 KB |
| `[Ljava/lang/String;`                                    |     1 |   160 B |    160 B |
| `java/util/stream/IntPipeline$1$1`                       |    ×2 |    24 B |    152 B |
| `java/util/stream/ReduceOps$3ReducingSink`               |     1 |    32 B |     88 B |
| `java/util/HashSet`                                      |     1 |    16 B |     64 B |
| `java/lang/String`                                       |    ×2 |    24 B |     48 B |
| `java/util/ArrayList$ArrayListSpliterator`               |     1 |    32 B |     32 B |
| `java/util/stream/Collectors$CollectorImpl`              |     1 |    32 B |     32 B |
| `java/util/stream/ReduceOps$3ReducingSink`               |    ×3 |    32 B |     32 B |
| `java/util/stream/ReferencePipeline$7$1`                 |     1 |    24 B |     24 B |
| `java/lang/String`                                       |     1 |    24 B |     24 B |
| `[B`                                                     |     1 |    24 B |     24 B |
| `java/lang/String`                                       |     1 |    24 B |     24 B |
| `java/util/stream/Collectors$$Lambda+0x00007ff1d406e898` |     1 |    16 B |     16 B |
| `java/util/stream/Collectors$$Lambda+0x00007ff1d406eab8` |     1 |    16 B |     16 B |

_Frame percentages are of this thread's 5.5 MB retained heap._

- `java.lang.StringLatin1$CharsSpliterator.forEachRemaining (StringLatin1.java:811)`
  - `java.util.stream.IntPipeline$1$1` retains 152 B (<0.1% of thread retained)
  - `byte[]` retains 24 B (<0.1% of thread retained)
- `java.util.stream.AbstractPipeline.copyInto (AbstractPipeline.java:509)`
  - `java.util.stream.IntPipeline$1$1` retains 152 B (<0.1% of thread retained)
- `java.util.stream.AbstractPipeline.wrapAndCopyInto (AbstractPipeline.java:499)`
  - `java.util.stream.ReduceOps$3ReducingSink` retains 88 B (<0.1% of thread retained)
- `java.util.stream.Collectors.lambda$groupingBy$53 (Collectors.java:1105)`
  - `java.util.HashMap` retains 1.7 KB (<0.1% of thread retained)
  - `java.lang.String` retains 24 B (<0.1% of thread retained)
  - `java.util.stream.Collectors$$Lambda+0x00007ff1d406e898` retains 16 B (<0.1% of thread retained)
  - `java.util.stream.Collectors$$Lambda+0x00007ff1d406eab8` retains 16 B (<0.1% of thread retained)
- `java.util.Spliterators$ArraySpliterator.forEachRemaining (Spliterators.java:1024)`
  - `java.lang.String[]` retains 160 B (<0.1% of thread retained)
  - `java.util.stream.ReduceOps$3ReducingSink` retains 32 B (<0.1% of thread retained)
- `java.util.stream.AbstractPipeline.copyInto (AbstractPipeline.java:509)`
  - `java.util.stream.ReduceOps$3ReducingSink` retains 32 B (<0.1% of thread retained)
- `java.util.stream.AbstractPipeline.wrapAndCopyInto (AbstractPipeline.java:499)`
  - `java.util.stream.ReduceOps$3ReducingSink` retains 32 B (<0.1% of thread retained)
- `java.util.stream.ReferencePipeline.collect (ReferencePipeline.java:682)`
  - `java.util.stream.Collectors$CollectorImpl` retains 32 B (<0.1% of thread retained)
- `org.renaissance.jdk.streams.MnemonicsCoderWithStream.encode (MnemonicsCoderWithStream.java:62)`
  - `org.renaissance.jdk.streams.MnemonicsCoderWithStream` retains 2.8 KB (<0.1% of thread retained)
  - `java.util.HashSet` retains 64 B (<0.1% of thread retained)
  - `java.lang.String` retains 24 B (<0.1% of thread retained)
- `org.renaissance.jdk.streams.MnemonicsCoderWithStream.lambda$encode$9 (MnemonicsCoderWithStream.java:67)`
  - `java.lang.String` retains 48 B (<0.1% of thread retained)
  - `java.lang.String` retains 48 B (<0.1% of thread retained)
- `java.util.stream.ReferencePipeline$3$1.accept (ReferencePipeline.java:197)`
  - `java.util.stream.ReferencePipeline$7$1` retains 24 B (<0.1% of thread retained)
- `java.util.ArrayList$ArrayListSpliterator.forEachRemaining (ArrayList.java:1708)`
  - `java.util.ArrayList$ArrayListSpliterator` retains 32 B (<0.1% of thread retained)

<a id="thread-2"></a>

### Thread 2 "Reference Handler" (java/lang/ref/Reference$ReferenceHandler)

_Local roots: 0._

- `java.lang.ref.Reference.waitForReferencePendingList (Native Method)`
- `java.lang.ref.Reference.processPendingReferences (Reference.java:246)`
- `java.lang.ref.Reference$ReferenceHandler.run (Reference.java:208)`

<a id="thread-3"></a>

### Thread 3 "Finalizer" (java/lang/ref/Finalizer$FinalizerThread)

_Local roots: 7._

**Local root objects:**

| Object                                    | Count | Shallow | Retained |
| ----------------------------------------- | ----: | ------: | -------: |
| `java/lang/ref/NativeReferenceQueue`      |    ×3 |    40 B |     40 B |
| `java/lang/ref/NativeReferenceQueue$Lock` |    ×3 |    16 B |     16 B |
| `java/lang/System$2`                      |     1 |    16 B |     16 B |

_Frame percentages are of this thread's 208 B retained heap._

- `java.lang.Object.wait (Object.java:366)`
  - `java.lang.ref.NativeReferenceQueue$Lock` retains 16 B (<0.1% of thread retained)
- `java.lang.Object.wait (Object.java:339)`
  - `java.lang.ref.NativeReferenceQueue$Lock` retains 16 B (<0.1% of thread retained)
- `java.lang.ref.NativeReferenceQueue.await (NativeReferenceQueue.java:48)`
  - `java.lang.ref.NativeReferenceQueue` retains 40 B (<0.1% of thread retained)
- `java.lang.ref.ReferenceQueue.remove0 (ReferenceQueue.java:158)`
  - `java.lang.ref.NativeReferenceQueue` retains 40 B (<0.1% of thread retained)
- `java.lang.ref.NativeReferenceQueue.remove (NativeReferenceQueue.java:89)`
  - `java.lang.ref.NativeReferenceQueue` retains 40 B (<0.1% of thread retained)
  - `java.lang.ref.NativeReferenceQueue$Lock` retains 16 B (<0.1% of thread retained)
- `java.lang.ref.Finalizer$FinalizerThread.run (Finalizer.java:173)`
  - `java.lang.System$2` retains 16 B (<0.1% of thread retained)

<a id="thread-6"></a>

### Thread 6 "Common-Cleaner" (jdk/internal/misc/InnocuousThread)

_Local roots: 12._

**Local root objects:**

| Object                                                                  | Count | Shallow | Retained |
| ----------------------------------------------------------------------- | ----: | ------: | -------: |
| `java/lang/Class`                                                       |    ×2 |    32 B |    128 B |
| `java/util/concurrent/TimeUnit`                                         |     1 |    80 B |     80 B |
| `java/lang/ref/ReferenceQueue`                                          |    ×3 |    32 B |     48 B |
| `java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionNode`   |     1 |    32 B |     32 B |
| `jdk/internal/ref/CleanerImpl`                                          |    ×3 |    24 B |     24 B |
| `java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject` |    ×2 |    24 B |     24 B |

_Frame percentages are of this thread's 168 B retained heap._

- `java.util.concurrent.locks.LockSupport.parkNanos (LockSupport.java:269)`
  - `java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject` retains 24 B (<0.1% of thread retained)
- `java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await (AbstractQueuedSynchronizer.java:1886)`
  - `java.util.concurrent.TimeUnit` retains 80 B (<0.1% of thread retained)
  - `java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode` retains 32 B (<0.1% of thread retained)
  - `java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject` retains 24 B (<0.1% of thread retained)
- `java.lang.ref.ReferenceQueue.await (ReferenceQueue.java:71)`
  - `java.lang.ref.ReferenceQueue` retains 48 B (<0.1% of thread retained)
- `java.lang.ref.ReferenceQueue.remove0 (ReferenceQueue.java:143)`
  - `java.lang.ref.ReferenceQueue` retains 48 B (<0.1% of thread retained)
- `java.lang.ref.ReferenceQueue.remove (ReferenceQueue.java:218)`
  - `java.lang.ref.ReferenceQueue` retains 48 B (<0.1% of thread retained)
- `jdk.internal.ref.CleanerImpl.run (CleanerImpl.java:140)`
  - `jdk.internal.ref.CleanerImpl` retains 24 B (<0.1% of thread retained)
- `java.lang.Thread.runWith (Thread.java:1596)`
  - `java.lang.Class` retains 128 B (<0.1% of thread retained)
  - `jdk.internal.ref.CleanerImpl` retains 24 B (<0.1% of thread retained)
- `java.lang.Thread.run (Thread.java:1583)`
  - `java.lang.Class` retains 128 B (<0.1% of thread retained)
  - `jdk.internal.ref.CleanerImpl` retains 24 B (<0.1% of thread retained)

## Top Components

_Retained heap grouped by class loader (component); `% Heap` is the share of total reachable heap._

| Component                                              | Retained | % Heap | Top classes                                                                                                                                                                                                                                                                                                                                                               |
| ------------------------------------------------------ | -------: | -----: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `<boot>`                                               |  59.0 MB |  95.4% | `java.util.HashMap$Node[]` (6.2 MB), `java.util.HashMap` (6.2 MB), `java.util.HashMap$Node` (5.8 MB), `java.lang.Thread` (5.5 MB), `java.util.HashSet` (5.2 MB)                                                                                                                                                                                                           |
| `java/net/URLClassLoader`                              |   2.6 MB |   4.2% | `scala.runtime.LazyVals$` (2.5 MB), `org.renaissance.harness.ConfigParser$$anon$1` (13.0 KB), `scala.math.BigInt$` (8.2 KB), `scopt.ORunner$` (8.1 KB), `scala.math.BigInt[]` (8.0 KB)                                                                                                                                                                                    |
| `jdk/internal/loader/ClassLoaders$AppClassLoader`      | 238.0 KB |   0.4% | `org.renaissance.core.ModuleLoader` (149.8 KB), `org.renaissance.core.BenchmarkSuite` (77.0 KB), `org.renaissance.BenchmarkResult$Validators` (2.5 KB), `org.renaissance.core.BenchmarkDescriptor` (2.3 KB), `org.renaissance.core.Launcher` (1.6 KB)                                                                                                                     |
| `java/net/URLClassLoader`                              |   9.2 KB |  <0.1% | `org.renaissance.jdk.streams.MnemonicsCoderWithStream` (6.7 KB), `org.renaissance.jdk.streams.MnemonicsCoderWithStream$$Lambda+0x00007ff1d4127800` (1.4 KB), `org.renaissance.jdk.streams.MnemonicsCoderWithStream$1` (456 B), `org.renaissance.jdk.streams.Mnemonics` (312 B), `org.renaissance.jdk.streams.MnemonicsCoderWithStream$$Lambda+0x00007ff1d4126b18` (256 B) |
| `jdk/internal/loader/ClassLoaders$PlatformClassLoader` |   7.4 KB |  <0.1% | `sun.util.resources.cldr.provider.CLDRLocaleDataMetaInfo` (7.4 KB)                                                                                                                                                                                                                                                                                                        |

## Arrays by Size

_Array-length distribution bucketed by power-of-two element length; `Max length` is the inclusive upper bound of each bucket._

### Object arrays

| Max length |   Objects |    Shallow |
| ---------: | --------: | ---------: |
|        ≤ 1 |       701 |    16.4 KB |
|        ≤ 2 |       553 |    13.0 KB |
|        ≤ 4 |       670 |    20.9 KB |
|        ≤ 8 |       651 |    27.1 KB |
|       ≤ 16 |     1,232 |    80.7 KB |
|       ≤ 32 |       334 |    38.2 KB |
|       ≤ 64 |       126 |    26.4 KB |
|      ≤ 128 |        64 |    23.2 KB |
|      ≤ 256 |        26 |    23.2 KB |
|      ≤ 512 |        10 |    15.4 KB |
|    ≤ 1,024 |        17 |    58.2 KB |
|    ≤ 2,048 |         5 |    32.8 KB |
|    ≤ 4,096 |         5 |    57.3 KB |
|    ≤ 8,192 |         2 |    63.0 KB |
|   ≤ 65,536 |         1 |   256.0 KB |
|  ≤ 131,072 |         1 |   512.0 KB |
|  **Total** | **4,398** | **1.2 MB** |

### Primitive arrays

| Max length |    Objects |    Shallow |
| ---------: | ---------: | ---------: |
|        ≤ 1 |        480 |    11.2 KB |
|        ≤ 2 |        687 |    16.1 KB |
|        ≤ 4 |      1,388 |    32.9 KB |
|        ≤ 8 |      2,411 |    58.0 KB |
|       ≤ 16 |      4,324 |   143.2 KB |
|       ≤ 32 |      5,713 |   255.5 KB |
|       ≤ 64 |     45,922 |     3.0 MB |
|      ≤ 128 |        858 |    85.7 KB |
|      ≤ 256 |        181 |    41.2 KB |
|      ≤ 512 |        268 |   101.3 KB |
|    ≤ 1,024 |         74 |    57.0 KB |
|    ≤ 2,048 |         15 |    50.4 KB |
|    ≤ 4,096 |          3 |     9.6 KB |
|    ≤ 8,192 |          8 |    83.9 KB |
|   ≤ 16,384 |          3 |    61.2 KB |
|   ≤ 65,536 |          2 |   104.0 KB |
|  ≤ 131,072 |          1 |   512.0 KB |
|  ≤ 262,144 |          1 |   255.1 KB |
|  **Total** | **62,339** | **4.9 MB** |

Zero-length arrays: 2,128

## Collections

_Collection and array occupancy: how full collections are, how big they get, and constant primitive arrays._

### Collections by Kind

| Kind      |     Count | Total Elements | Max Elements | Total Shallow |
| --------- | --------: | -------------: | -----------: | ------------: |
| list      |       531 |          1,362 |          463 |       12.4 KB |
| map       |     3,360 |         48,945 |       32,500 |      203.5 KB |
| **Total** | **3,891** |     **50,307** |              |  **215.9 KB** |

### Collection Fill Ratio

_1,050 tracked of 3,891 collections._

|      Fill % | Collections |     Shallow |       Wasted |
| ----------: | ----------: | ----------: | -----------: |
|       0–10% |         563 |     18.9 KB |      50.5 KB |
|      10–20% |         217 |      8.2 KB |      20.9 KB |
|      20–30% |          66 |      2.6 KB |      18.0 KB |
|      30–40% |          59 |      2.8 KB |      35.4 KB |
|      40–50% |          62 |      3.1 KB |     299.2 KB |
|      50–60% |          16 |       800 B |       7.3 KB |
|      60–70% |          17 |       920 B |      43.4 KB |
|      70–80% |          10 |       424 B |       9.8 KB |
|      80–90% |           2 |        48 B |        752 B |
|     90–100% |           0 |         0 B |          0 B |
| 100% (full) |          38 |       912 B |          0 B |
|   **Total** |   **1,050** | **38.7 KB** | **485.2 KB** |

### Collections by Size

_3,891 tracked; 2,943 empty._

|    Size ≤ | Collections | Total Shallow |
| --------: | ----------: | ------------: |
|       ≤ 1 |         520 |       16.5 KB |
|       ≤ 2 |         176 |        5.6 KB |
|       ≤ 4 |         131 |        4.8 KB |
|       ≤ 8 |          38 |        1.9 KB |
|      ≤ 16 |          30 |        1.5 KB |
|      ≤ 32 |          26 |        1.2 KB |
|      ≤ 64 |           8 |         392 B |
|     ≤ 128 |           4 |         224 B |
|     ≤ 256 |           5 |         304 B |
|     ≤ 512 |           3 |         120 B |
|   ≤ 1,024 |           3 |         144 B |
|   ≤ 4,096 |           2 |          96 B |
|   ≤ 8,192 |           1 |          48 B |
|  ≤ 32,768 |           1 |          48 B |
| **Total** |     **948** |   **32.8 KB** |

### Array Fill Ratio

_4,398 tracked object arrays._

|      Fill % |    Arrays |    Shallow |       Wasted |
| ----------: | --------: | ---------: | -----------: |
|       0–10% |     1,253 |    98.3 KB |     149.5 KB |
|      10–20% |       271 |    29.2 KB |      41.5 KB |
|      20–30% |       105 |    18.2 KB |      24.2 KB |
|      30–40% |       139 |   301.1 KB |     368.9 KB |
|      40–50% |       245 |   131.6 KB |     136.2 KB |
|      50–60% |        40 |     9.9 KB |       8.6 KB |
|      60–70% |        36 |     4.7 KB |       2.9 KB |
|      70–80% |        29 |     3.5 KB |       1.6 KB |
|      80–90% |        14 |     4.2 KB |       1.2 KB |
|     90–100% |        14 |    36.3 KB |       2.1 KB |
| 100% (full) |     2,252 |   627.1 KB |          0 B |
|   **Total** | **4,398** | **1.2 MB** | **736.7 KB** |

### Map Collision Ratio

_511 tracked of 3,360 maps (occupied slots ÷ size; lower is worse)._

|      Load % |    Maps |     Shallow |
| ----------: | ------: | ----------: |
|       0–10% |     221 |     11.0 KB |
|      10–20% |     123 |      6.1 KB |
|      20–30% |      38 |      2.1 KB |
|      30–40% |      66 |      3.5 KB |
|      40–50% |      50 |      2.7 KB |
|      50–60% |       8 |       448 B |
|      60–70% |       2 |       128 B |
|      70–80% |       3 |       160 B |
|      80–90% |       0 |         0 B |
|     90–100% |       0 |         0 B |
| 100% (full) |       0 |         0 B |
|   **Total** | **511** | **26.0 KB** |

### Constant Primitive Arrays

_Primitive arrays whose every element is identical — possible candidates for deduplication or replacement with a shared constant. Short arrays (length < 8 with few instances) are hidden as noise._

_(33 trivial groups hidden.)_

| Array class |  Length | Value | Objects |  Shallow |
| ----------- | ------: | ----: | ------: | -------: |
| `int[]`     | 131,064 |     0 |       1 | 512.0 KB |
| `char[]`    |   8,192 |     0 |       1 |  16.0 KB |
| `int[]`     |     834 |     0 |       1 |   3.3 KB |
| `int[]`     |     766 |     0 |       1 |   3.0 KB |
| `long[]`    |      32 |     0 |       4 |   1.1 KB |
| `byte[]`    |     512 |     0 |       2 |   1.0 KB |
| `byte[]`    |       2 |    49 |      31 |    744 B |
| `int[]`     |      32 |     0 |       4 |    576 B |
| `byte[]`    |     256 |     0 |       2 |    544 B |
| `short[]`   |      32 |     0 |       4 |    320 B |
| `int[]`     |      10 |     0 |       5 |    280 B |
| `int[]`     |       2 |     0 |      10 |    240 B |
| `byte[]`    |       8 |     0 |       7 |    168 B |
| `char[]`    |      26 |     0 |       2 |    144 B |
| `byte[]`    |     128 |     0 |       1 |    144 B |
| `byte[]`    |      63 |    48 |       1 |     80 B |
| `int[]`     |      16 |     0 |       1 |     80 B |
| `int[]`     |      12 |     0 |       1 |     64 B |
| `byte[]`    |      10 |    32 |       1 |     32 B |
| `byte[]`    |      13 |    48 |       1 |     32 B |
| `byte[]`    |      16 |     0 |       1 |     32 B |
| `byte[]`    |       8 |    32 |       1 |     24 B |
| `byte[]`    |       8 |    48 |       1 |     24 B |

### Top Arrays (primitive)

_The largest primitive arrays by shallow size, individually and aggregated by array class._

| Array class |  Length |      Shallow | Owner (Class#field)                    |
| ----------- | ------: | -----------: | -------------------------------------- |
| `int[]`     | 131,064 |     512.0 KB | —                                      |
| `byte[]`    | 261,187 |     255.1 KB | `java.util.zip.ZipFile$Source#cen`     |
| `byte[]`    |  60,231 |      58.8 KB | `java.util.zip.ZipFile$Source#cen`     |
| `byte[]`    |  46,187 |      45.1 KB | `java.util.zip.ZipFile$Source#cen`     |
| `int[]`     |   8,781 |      34.3 KB | `java.util.zip.ZipFile$Source#entries` |
| `int[]`     |   4,546 |      17.8 KB | —                                      |
| `char[]`    |   8,192 |      16.0 KB | `java.io.BufferedWriter#cb`            |
| `char[]`    |   8,192 |      16.0 KB | `java.io.BufferedWriter#cb`            |
| `byte[]`    |  15,354 |      15.0 KB | `java.util.zip.ZipFile$Source#cen`     |
| `byte[]`    |  12,096 |      11.8 KB | `java.lang.String#value`               |
| **Total**   |         | **982.0 KB** |                                        |

#### Top Array Classes (primitive)

| Array class |  Instances |    Shallow |
| ----------- | ---------: | ---------: |
| `byte[]`    |     61,405 |     4.2 MB |
| `int[]`     |      2,489 |   683.6 KB |
| `char[]`    |        223 |    55.7 KB |
| `long[]`    |         16 |    14.2 KB |
| `boolean[]` |          9 |     1.9 KB |
| `double[]`  |          7 |      672 B |
| `short[]`   |          6 |      352 B |
| `float[]`   |          3 |       96 B |
| **Total**   | **64,158** | **4.9 MB** |

### Top Arrays (object)

_The largest object arrays by shallow size, individually and aggregated by array class._

| Array class                                     |  Length |     Used/Length |      Shallow | Owner (Class#field)                            |
| ----------------------------------------------- | ------: | --------------: | -----------: | ---------------------------------------------- |
| `java.lang.Object[]`                            | 131,072 | 131,072/131,072 |     512.0 KB | —                                              |
| `java.util.HashMap$Node[]`                      |  65,536 |   25,551/65,536 |     256.0 KB | `java.util.HashMap#table`                      |
| `java.util.HashMap$Node[]`                      |   8,192 |     3,685/8,192 |      32.0 KB | `java.util.HashMap#table`                      |
| `java.lang.Object[]`                            |   7,937 |     7,706/7,937 |      31.0 KB | —                                              |
| `java.util.HashMap$Node[]`                      |   4,096 |     2,048/4,096 |      16.0 KB | `java.util.HashMap#table`                      |
| `java.util.HashMap$Node[]`                      |   4,096 |     1,889/4,096 |      16.0 KB | `java.util.HashMap#table`                      |
| `java.lang.Object[]`                            |   2,285 |       405/2,285 |       8.9 KB | —                                              |
| `java.lang.Object[]`                            |   2,126 |     1,063/2,126 |       8.3 KB | `java.util.ImmutableCollections$SetN#elements` |
| `scala.math.BigInt[]`                           |   2,049 |         0/2,049 |       8.0 KB | —                                              |
| `java.util.concurrent.ConcurrentHashMap$Node[]` |   2,048 |       544/2,048 |       8.0 KB | `java.util.concurrent.ConcurrentHashMap#table` |
| **Total**                                       |         |                 | **896.4 KB** |                                                |

#### Top Array Classes (object)

| Array class                                     | Instances |    Shallow |
| ----------------------------------------------- | --------: | ---------: |
| `java.lang.Object[]`                            |     2,310 |   722.2 KB |
| `java.util.HashMap$Node[]`                      |       418 |   389.3 KB |
| `java.util.concurrent.ConcurrentHashMap$Node[]` |        89 |    53.6 KB |
| `java.lang.ref.SoftReference[]`                 |       272 |    20.2 KB |
| `java.lang.Class[]`                             |       549 |    15.8 KB |
| `java.lang.String[]`                            |       208 |    13.4 KB |
| `scala.math.BigInt[]`                           |         1 |     8.0 KB |
| `java.lang.invoke.MethodHandle[]`               |        48 |     7.8 KB |
| `java.lang.invoke.LambdaForm$Name[]`            |       143 |     6.0 KB |
| `java.nio.ByteBuffer[]`                         |         1 |     4.0 KB |
| **Total**                                       | **4,039** | **1.2 MB** |

## References

_Soft/weak/phantom reference referents (what they point at)._

### Soft References

_Soft references keep objects alive until the JVM needs memory — they are cleared under GC pressure. A large soft-referenced heap is often a cache that grows unbounded; consider bounding the cache size._

_218 reference instances._

#### Referent classes

| Class                                    | Objects | Shallow | Retained |
| ---------------------------------------- | ------: | ------: | -------: |
| `java.lang.invoke.LambdaForm`            |     130 |  6.1 KB |  58.8 KB |
| `java.lang.Class$ReflectionData`         |      21 |  1.3 KB |   1.3 KB |
| `java.lang.invoke.DirectMethodHandle`    |      21 |   840 B |    840 B |
| `sun.util.locale.BaseLocale`             |      20 |   640 B |   1.2 KB |
| `java.util.Locale`                       |      10 |   320 B |    320 B |
| `java.util.jar.Manifest`                 |       6 |   144 B | 590.2 KB |
| `java.util.concurrent.ConcurrentHashMap` |       4 |   256 B |   1.7 KB |
| `[Ljava.lang.Object;`                    |       2 |    64 B |      0 B |
| `java.util.ArrayList`                    |       1 |    24 B |     80 B |
| `sun.text.resources.cldr.FormatData`     |       1 |    40 B |  28.3 KB |
| `sun.text.resources.cldr.FormatData_en`  |       1 |    40 B |  20.0 KB |
| `sun.util.resources.Bundles$1`           |       1 |    40 B |     40 B |

#### Only-weakly retained _(approximate)_

_Objects with no incoming strong reference other than this reference chain — GC pressure would free them._

| Class                            | Objects | Shallow | Retained |
| -------------------------------- | ------: | ------: | -------: |
| `java.lang.Class$ReflectionData` |      21 |  1.3 KB |   1.3 KB |

### Weak References

_Weak references do not prevent GC. Objects listed here are reachable only via weak chains — under any GC they may be reclaimed. Large counts are usually benign._

_745 reference instances._

#### Referent classes

| Class                                                             | Objects | Shallow | Retained |
| ----------------------------------------------------------------- | ------: | ------: | -------: |
| `java.lang.invoke.MethodType`                                     |     681 | 26.6 KB |  83.9 KB |
| `java.util.logging.Level`                                         |       9 |   288 B |    288 B |
| `java.util.logging.Logger`                                        |       8 |   448 B |   4.3 KB |
| `java.lang.Module`                                                |       4 |   192 B |  21.8 KB |
| `java.util.logging.LogManager$RootLogger`                         |       4 |   256 B |   1.4 KB |
| `java.lang.ClassValue$Version`                                    |       3 |    72 B |    168 B |
| `java.lang.ClassValue$Identity`                                   |       2 |    32 B |     32 B |
| `sun.security.provider.FileInputStreamPool$UnclosableInputStream` |       2 |    32 B |     32 B |
| `java.lang.ClassLoader`                                           |       1 |    16 B |      0 B |
| `java.lang.ThreadGroup`                                           |       1 |    48 B |     48 B |
| `java.net.URLClassLoader`                                         |       1 |     8 B |      0 B |
| `java.security.Provider$Service`                                  |       1 |     8 B |      0 B |
| `java.security.SecureClassLoader`                                 |       1 |     0 B |      0 B |
| `jdk.internal.loader.BuiltinClassLoader`                          |       1 |    16 B |      0 B |
| `jdk.internal.loader.ClassLoaders$AppClassLoader`                 |       1 |     8 B |      0 B |
| `jdk.internal.loader.ClassLoaders$PlatformClassLoader`            |       1 |     8 B |      0 B |
| `jdk.internal.misc.TerminatingThreadLocal$1`                      |       1 |    16 B |     16 B |
| `org.renaissance.core.Launcher`                                   |       1 |    24 B |      0 B |
| `scala.reflect.ManifestFactory$ObjectManifest`                    |       1 |    32 B |     32 B |
| `sun.nio.ch.Util$1`                                               |       1 |    16 B |     16 B |
_… 1 more classes (1 objects, 16 B shallow, 16 B retained)._

#### Only-weakly retained _(approximate)_

_Objects with no incoming strong reference other than this reference chain — GC pressure would free them._

_None found — no objects are exclusively reachable via this reference kind._

### Phantom References

_Phantom references mark objects in finalization or cleanup pipelines. A large backlog may indicate that the ReferenceQueue processor is too slow or blocked, or that native resources (file handles, native buffers) are not being released promptly._

_29 reference instances._

#### Referent classes

| Class                                 | Objects | Shallow | Retained |
| ------------------------------------- | ------: | ------: | -------: |
| `java.io.FileDescriptor`              |       9 |   360 B |    360 B |
| `java.util.zip.Inflater`              |       8 |   512 B |    512 B |
| `java.util.jar.JarFile`               |       7 |   448 B | 592.8 KB |
| `java.lang.ref.Cleaner`               |       1 |    16 B |     16 B |
| `java.nio.DirectByteBuffer`           |       1 |    72 B |     72 B |
| `sun.net.www.protocol.jar.URLJarFile` |       1 |    80 B |    344 B |
| `sun.nio.fs.NativeBuffer`             |       1 |    32 B |     64 B |

#### Only-weakly retained _(approximate)_

_Objects with no incoming strong reference other than this reference chain — GC pressure would free them._

_None found — no objects are exclusively reachable via this reference kind._

## Unreachable Objects

_3,716 unreachable objects, 659.6 KB shallow heap (within the unreachable forest retained = shallow since all paths stay in-forest; top 30 classes by shallow)._

_Unreachable objects are eligible for collection but have not yet been reclaimed. At 5.4% of heap total (reachable + unreachable) this is elevated — the JVM may not have had time to GC before the dump was taken, or finalization may be backed up._

| Kind             | Objects |  Shallow |
| ---------------- | ------: | -------: |
| Instances        |   1,098 |  31.7 KB |
| Object arrays    |      40 |   1.6 KB |
| Primitive arrays |   2,477 | 626.4 KB |
| Class objects    |     101 |      0 B |

_Shallow heap is additive; Retained sets overlap (nested subtrees are counted once per ancestor)._

| Class                                                  | Objects |  Shallow | Retained |
| ------------------------------------------------------ | ------: | -------: | -------: |
| `int[]`                                                |   1,592 | 576.9 KB | 576.9 KB |
| `byte[]`                                               |     885 |  49.5 KB |  49.5 KB |
| `java.lang.String`                                     |     885 |  20.7 KB |  70.3 KB |
| `java.lang.reflect.Field`                              |      46 |   3.2 KB |   5.8 KB |
| `java.lang.reflect.Method`                             |      18 |   1.5 KB |   3.2 KB |
| `java.lang.Class$ReflectionData`                       |      21 |   1.3 KB |  13.1 KB |
| `java.lang.invoke.MemberName`                          |      21 |    840 B |    904 B |
| `java.lang.ref.SoftReference`                          |      21 |    840 B |  14.0 KB |
| `java.lang.reflect.Constructor`                        |       9 |    648 B |   2.0 KB |
| `java.lang.invoke.DirectMethodHandle$Constructor`      |       8 |    384 B |   1.1 KB |
| `java.lang.ClassValue$Entry[]`                         |       2 |    288 B |    288 B |
| `java.lang.reflect.Field[]`                            |       4 |    256 B |   6.1 KB |
| `java.lang.reflect.Method[]`                           |      10 |    248 B |   3.4 KB |
| `java.lang.reflect.Constructor[]`                      |      10 |    240 B |   2.3 KB |
| `java.util.HashMap$Node`                               |       7 |    224 B |    224 B |
| `java.lang.Class[]`                                    |       9 |    216 B |    216 B |
| `java.lang.Thread`                                     |       2 |    208 B |    520 B |
| `java.lang.invoke.ResolvedMethodName`                  |      12 |    192 B |    192 B |
| `jdk.internal.reflect.DirectConstructorHandleAccessor` |       8 |    192 B |   1.4 KB |
| `java.lang.invoke.DirectMethodHandle`                  |       4 |    160 B |    384 B |
| `java.lang.invoke.BoundMethodHandle$Species_L`         |       4 |    160 B |    544 B |
| `java.util.WeakHashMap$Entry[]`                        |       2 |    160 B |    240 B |
| `jdk.internal.reflect.DirectMethodHandleAccessor`      |       4 |    128 B |    672 B |
| `java.lang.ClassValue$ClassValueMap`                   |       2 |    128 B |    992 B |
| `java.util.WeakHashMap$Entry`                          |       2 |     80 B |     80 B |
| `java.security.AccessControlContext`                   |       2 |     80 B |     80 B |
| `java.lang.Thread$FieldHolder`                         |       2 |     80 B |     80 B |
| `java.lang.invoke.BoundMethodHandle$Species_LL`        |       2 |     80 B |    224 B |
| `java.util.HashMap$Node[]`                             |       1 |     80 B |    304 B |
| `java.lang.ref.ReferenceQueue`                         |       2 |     64 B |    208 B |

### Garbage-Root Dominator Trees

_Top garbage-root subtrees by retained heap (unreachable objects with no reachable predecessor). Depth capped._

1. **int[]** — 512.0 KB (1 object in subtree)

2. **int[]** — 17.8 KB (1 object in subtree)

3. **int[]** — 3.3 KB (1 object in subtree)

4. **java.lang.ref.SoftReference** — 3.2 KB (70 objects in subtree)
   └─ java.lang.Class$ReflectionData — 3.2 KB
        └─ java.lang.reflect.Field[] — 3.1 KB
             ├─ java.lang.reflect.Field — 200 B
             │    └─ jdk.internal.reflect.MethodHandleObjectFieldAccessorImpl — 128 B
             │         └─ java.lang.invoke.DirectMethodHandle$StaticAccessor — 96 B
             ├─ java.lang.reflect.Field — 144 B
             │    └─ java.lang.String — 72 B
             │         └─ byte[] — 48 B
             ├─ java.lang.reflect.Field — 144 B
             │    └─ java.lang.String — 72 B
             │         └─ byte[] — 48 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             └─ java.lang.reflect.Field — 136 B
                  └─ java.lang.String — 64 B
                       └─ byte[] — 40 B

5. **int[]** — 3.0 KB (1 object in subtree)

6. **int[]** — 2.1 KB (1 object in subtree)

7. **java.lang.ref.SoftReference** — 1.6 KB (36 objects in subtree)
   └─ java.lang.Class$ReflectionData — 1.6 KB
        └─ java.lang.reflect.Field[] — 1.5 KB
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             └─ java.lang.reflect.Field — 120 B
                  └─ java.lang.String — 48 B
                       └─ byte[] — 24 B

8. **java.lang.ref.SoftReference** — 1.1 KB (26 objects in subtree)
   └─ java.lang.Class$ReflectionData — 1.1 KB
        └─ java.lang.reflect.Field[] — 1016 B
             ├─ java.lang.reflect.Field — 200 B
             │    ├─ java.lang.String — 80 B
             │    │    └─ byte[] — 56 B
             │    └─ java.lang.String — 48 B
             │         └─ byte[] — 24 B
             ├─ java.lang.reflect.Field — 176 B
             │    ├─ java.lang.String — 56 B
             │    │    └─ byte[] — 32 B
             │    └─ java.lang.String — 48 B
             │         └─ byte[] — 24 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 136 B
             │    └─ java.lang.String — 64 B
             │         └─ byte[] — 40 B
             ├─ java.lang.reflect.Field — 128 B
             │    └─ java.lang.String — 56 B
             │         └─ byte[] — 32 B
             ├─ java.lang.reflect.Field — 120 B
             │    └─ java.lang.String — 48 B
             │         └─ byte[] — 24 B
             └─ java.lang.reflect.Field — 72 B

9. **java.lang.ref.SoftReference** — 912 B (19 objects in subtree)
   └─ java.lang.Class$ReflectionData — 872 B
        ├─ java.lang.reflect.Method[] — 544 B
        │    ├─ java.lang.reflect.Method — 304 B
        │    │    ├─ java.lang.String — 120 B
        │    │    │    └─ byte[] — 96 B
        │    │    ├─ java.lang.String — 72 B
        │    │    │    └─ byte[] — 48 B
        │    │    └─ java.lang.Class[] — 24 B
        │    └─ java.lang.reflect.Method — 216 B
        │         └─ java.lang.String — 128 B
        │              └─ byte[] — 104 B
        └─ java.lang.reflect.Constructor[] — 264 B
             └─ java.lang.reflect.Constructor — 240 B
                  └─ jdk.internal.reflect.DirectConstructorHandleAccessor — 168 B
                       └─ java.lang.invoke.DirectMethodHandle$Constructor — 144 B

10. **int[]** — 816 B (1 object in subtree)

## Allocation Sites

_Objects grouped by the stack trace that allocated them — each site is a candidate to allocate less by pooling, caching, or deferring construction. Shallow heap is additive; retained heap is not shown because summing per-object retained values over-counts shared subgraphs (a subtree retained by multiple sites is counted once per allocator, not once total)._

_Allocation-site records are present but contain no per-frame data. To capture method-level allocation stacks, run with JFR (`-XX:StartFlightRecording`) or attach a profiler before taking the heap dump._

## Retention Concentration

_Share of the reachable heap retained by the few largest top-level dominators (a dominator's retained size is everything it keeps alive). Read it as a concentration curve: if **Top 1** is already high, one object is the leak and freeing it reclaims most of the heap; if the share only climbs as you widen to **Top 10** / **Top 100**, the leak is spread across many peers (e.g. a big cache or collection of similar objects) and no single free helps much._

| Scope           | Retained Share | Retained |
| --------------- | -------------: | -------: |
| Top 1 object    |          48.8% |   5.5 MB |
| Top 10 objects  |          84.3% |   9.5 MB |
| Top 100 objects |          91.5% |  10.3 MB |

_6 objects each hold ≥1% of the reachable heap._

## Dominator-Depth Distribution

_How far each live object sits below a GC root, counted in dominator hops. Most objects clustering at shallow depths means memory is held close to the roots; a long tail means deep, chained structures (often a sign of nested collections or linked leaks)._

_Half of all live objects sit within 3 hops of a GC root; the deepest chain is 28 hops._

| Depth | Objects | % Objects | Cumulative % |
| ----: | ------: | --------: | -----------: |
|     1 |  12,733 |      3.8% |         3.8% |
|     2 |  15,866 |      4.7% |         8.5% |
|     3 | 139,020 |     41.5% |        50.1% |
|     4 |   8,803 |      2.6% |        52.7% |
|     5 |   9,182 |      2.7% |        55.4% |
|     6 |  39,469 |     11.8% |        67.2% |
|     7 |  45,957 |     13.7% |        80.9% |
|     8 |  46,876 |     14.0% |        94.9% |
|     9 |  11,858 |      3.5% |        98.5% |
|    10 |   3,070 |      0.9% |        99.4% |
|    11 |   1,084 |      0.3% |        99.7% |
|    12 |     631 |      0.2% |        99.9% |

_… (+16 deeper buckets, 325 objects, 100.0% cumulative — full data in JSON)_

## Leak Indicators

_Scalar signals for common Java leak patterns; non-zero values are flagged in [Memory Triage](#memory-triage) above. This table provides the raw numbers behind those bullets._

| Indicator                         |    Value |
| --------------------------------- | -------: |
| Anonymous/generated classes       |      174 |
| `DirectByteBuffer` total capacity | 134.3 MB |

## Glossary

_Definitions for the terms used above._

- **Shallow size**: the memory an object occupies by itself, meaning its header
  plus its own fields (and, for an array, its elements). It does *not* include the
  objects it points to.
- **Retained heap (retained size)**: the total memory that would be freed if this
  object were garbage-collected, meaning its own shallow size plus everything
  reachable *only* through it. This is the number that answers "how much does
  freeing this actually reclaim?" and it is the basis for every percentage in this
  report. See [dominator (graph theory)](https://en.wikipedia.org/wiki/Dominator_(graph_theory)).
- **Reachable heap**: all objects the [garbage collector](https://en.wikipedia.org/wiki/Garbage_collection_(computer_science)) can still
  reach from a GC root. Anything unreachable is already collectible and is excluded
  from the totals here.
- **GC root**: an object the JVM keeps alive unconditionally, such as live thread
  stacks (local variables), static fields of loaded classes,
  [JNI](https://en.wikipedia.org/wiki/Java_Native_Interface) references, and
  similar. Every retained-size chain ends at a GC root.
- **Dominator**: object *A* dominates object *B* if every path from a GC root to
  *B* passes through *A*. In other words, if *A* were freed, *B* would become
  unreachable too. An object's retained heap is exactly the set of objects it
  dominates. See [dominator (graph theory)](https://en.wikipedia.org/wiki/Dominator_(graph_theory)).
- **Dominator tree**: the tree formed by linking each object to its immediate
  dominator. Retained sizes are computed by summing shallow sizes up this tree.
- **Top-level dominator**: an object whose immediate dominator is a GC root, so it
  sits at the top of the dominator tree. The "Biggest Objects" and "Retention
  Concentration" views rank these.
- **Dominator depth**: how many dominator-tree hops an object sits below a GC root.
  Shallow depth means most objects are held close to a root; deep depth means
  retention flows through long chains (nested collections, linked lists).
- **Accumulation point**: a single object (often a collection, cache, or map) that
  dominates a large number of instances of the *same* class, meaning where a
  [memory leak](https://en.wikipedia.org/wiki/Memory_leak) accumulates.
- **Class loader**: the JVM component that defined a class. The same class name
  loaded by two different [class loaders](https://en.wikipedia.org/wiki/Java_Classloader)
  is two distinct classes in the heap, so heap is attributed per (class, loader)
  pair.
- **Referent**: the object that a reference field points *to*. A
  [`WeakReference`](https://en.wikipedia.org/wiki/Weak_reference), for example, has
  a referent it does not keep alive.
- **Instance vs. class**: an *instance* is one object; a *class* row aggregates
  every instance of that type. "Largest" in the histogram is the shallow size of
  the single biggest instance of a class.
- **Collection fill ratio**: the fraction of a collection's backing-array capacity
  that is actually occupied by elements — `elements / capacity`. A fill ratio near
  0 means the backing array is mostly empty (wasted memory). A ratio near 1 means
  the collection is full.
- **Map collision ratio** (load factor): for hash maps, the fraction of backing-array
  slots occupied — `occupied_slots / total_slots`. A low load factor means many
  empty buckets (wasted memory); a very high load factor increases hash collision
  probability and lookup cost.
- **Only-weakly retained**: an object that has no incoming strong reference — it is
  reachable only through one or more `WeakReference` or `SoftReference` chains.
  Under GC pressure these objects are candidates for collection.
- **Compressed OOPs** (Compressed Ordinary Object Pointers): a JVM optimisation
  where object references are stored as 32-bit integers instead of 64-bit pointers,
  halving reference-field overhead on heaps <= ~32 GB. Visible in the Heap Summary
  as `Compressed OOPs: yes`.
- **Class#field**: the notation used throughout this report to identify a specific
  field — `HolderClass#fieldName`. For example `java.util.HashMap#table` names the
  `table` field of `HashMap`. This is the dominant incoming reference path for an
  object, not a guaranteed allocation site — it is a hint, not a precise origin.