@@ -80,13 +80,14 @@ class MemoryWatcher {
80
80
private final int criticalThresholdPromille = 800 ;
81
81
private final int minGCWaitMS = 1000 ;
82
82
private final int minFreeWaitElapsedMS = 30000 ;
83
- private final int minFreeCriticalWaitMS = 500 ;
83
+ private final int minFreeCriticalWaitMS ;
84
84
85
85
private int lastUsage = 0 ;
86
86
private long lastGCDetected = System .currentTimeMillis ();
87
87
private long lastFree = System .currentTimeMillis ();
88
88
89
- public MemoryWatcher (String mxBeanName ) {
89
+ public MemoryWatcher (String mxBeanName , int minFreeCriticalWaitMS ) {
90
+ this .minFreeCriticalWaitMS = minFreeCriticalWaitMS ;
90
91
List <MemoryPoolMXBean > memoryBeans = ManagementFactory .getMemoryPoolMXBeans ();
91
92
for (MemoryPoolMXBean bean : memoryBeans ) {
92
93
if (bean .getName ().equals (mxBeanName )) {
@@ -151,8 +152,8 @@ private void load() {
151
152
cache .add (new Filler ());
152
153
}
153
154
154
- public MemoryUser (String mxBeanName ) {
155
- watcher = new MemoryWatcher (mxBeanName );
155
+ public MemoryUser (String mxBeanName , int minFreeCriticalWaitMS ) {
156
+ watcher = new MemoryWatcher (mxBeanName , minFreeCriticalWaitMS );
156
157
}
157
158
158
159
@ Override
@@ -191,8 +192,8 @@ private static Exitable startGCLockerStresser(String name) {
191
192
return task ;
192
193
}
193
194
194
- private static Exitable startMemoryUser (String mxBeanName ) {
195
- MemoryUser task = new MemoryUser (mxBeanName );
195
+ private static Exitable startMemoryUser (String mxBeanName , int minFreeCriticalWaitMS ) {
196
+ MemoryUser task = new MemoryUser (mxBeanName , minFreeCriticalWaitMS );
196
197
197
198
Thread thread = new Thread (task );
198
199
thread .setName ("Memory User" );
@@ -206,12 +207,13 @@ public static void main(String[] args) {
206
207
207
208
long durationMinutes = args .length > 0 ? Long .parseLong (args [0 ]) : 5 ;
208
209
String mxBeanName = args .length > 1 ? args [1 ] : null ;
210
+ int minFreeCriticalWaitMS = args .length > 2 ? Integer .parseInt (args [2 ]) : 500 ;
209
211
210
212
long startMS = System .currentTimeMillis ();
211
213
212
214
Exitable stresser1 = startGCLockerStresser ("GCLockerStresser1" );
213
215
Exitable stresser2 = startGCLockerStresser ("GCLockerStresser2" );
214
- Exitable memoryUser = startMemoryUser (mxBeanName );
216
+ Exitable memoryUser = startMemoryUser (mxBeanName , minFreeCriticalWaitMS );
215
217
216
218
long durationMS = durationMinutes * 60 * 1000 ;
217
219
while ((System .currentTimeMillis () - startMS ) < durationMS ) {
0 commit comments