< prev index next >

test/hotspot/jtreg/gc/shenandoah/mxbeans/TestChurnNotifications.java

Print this page

  1 /*
  2  * Copyright (c) 2018, Red Hat, Inc. All rights reserved.

  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 /*
 26  * @test id=passive
 27  * @summary Check that MX notifications are reported for all cycles
 28  * @library /test/lib /
 29  * @requires vm.gc.Shenandoah
 30  *
 31  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 32  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
 33  *      -XX:+ShenandoahDegeneratedGC -Dprecise=true
 34  *      TestChurnNotifications
 35  *
 36  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 37  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
 38  *      -XX:-ShenandoahDegeneratedGC -Dprecise=true
 39  *      TestChurnNotifications
 40  */
 41 
 42 /*
 43  * @test id=aggressive
 44  * @summary Check that MX notifications are reported for all cycles
 45  * @library /test/lib /
 46  * @requires vm.gc.Shenandoah
 47  *
 48  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 49  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive
 50  *      -Dprecise=false
 51  *      TestChurnNotifications
 52  */
 53 
 54 /*
 55  * @test id=adaptive
 56  * @summary Check that MX notifications are reported for all cycles
 57  * @library /test/lib /
 58  * @requires vm.gc.Shenandoah
 59  *
 60  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 61  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive
 62  *      -Dprecise=false
 63  *      TestChurnNotifications
 64  */
 65 
 66 /*
 67  * @test id=static
 68  * @summary Check that MX notifications are reported for all cycles
 69  * @library /test/lib /
 70  * @requires vm.gc.Shenandoah
 71  *
 72  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 73  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=static
 74  *      -Dprecise=false
 75  *      TestChurnNotifications
 76  */
 77 
 78 /*
 79  * @test id=compact
 80  * @summary Check that MX notifications are reported for all cycles
 81  * @library /test/lib /
 82  * @requires vm.gc.Shenandoah
 83  *
 84  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 85  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact
 86  *      -Dprecise=false
 87  *      TestChurnNotifications
 88  */
 89 
 90 /*
 91  * @test id=iu
 92  * @summary Check that MX notifications are reported for all cycles
 93  * @library /test/lib /
 94  * @requires vm.gc.Shenandoah
 95  *
 96  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 97  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
 98  *      -Dprecise=false
 99  *      TestChurnNotifications
100  *
101  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
102  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu
103  *      -Dprecise=false
104  *      TestChurnNotifications
105  */
106 












107 import java.util.*;
108 import java.util.concurrent.atomic.*;
109 import javax.management.*;
110 import java.lang.management.*;
111 import javax.management.openmbean.*;
112 
113 import jdk.test.lib.Utils;
114 
115 import com.sun.management.GarbageCollectionNotificationInfo;
116 
117 public class TestChurnNotifications {
118 
119     static final long HEAP_MB = 128;                           // adjust for test configuration above
120     static final long TARGET_MB = Long.getLong("target", 2_000); // 2 Gb allocation
121 
122     // Should we track the churn precisely?
123     // Precise tracking is only reliable when GC is fully stop-the-world. Otherwise,
124     // we cannot tell, looking at heap used before/after, what was the GC churn.
125     static final boolean PRECISE = Boolean.getBoolean("precise");
126 
127     static final long M = 1024 * 1024;
128 
129     static volatile Object sink;
130 


131     public static void main(String[] args) throws Exception {
132         final long startTime = System.currentTimeMillis();
133 
134         final AtomicLong churnBytes = new AtomicLong();
135 
136         NotificationListener listener = new NotificationListener() {
137             @Override
138             public void handleNotification(Notification n, Object o) {
139                 if (n.getType().equals(GarbageCollectionNotificationInfo.GARBAGE_COLLECTION_NOTIFICATION)) {
140                     GarbageCollectionNotificationInfo info = GarbageCollectionNotificationInfo.from((CompositeData) n.getUserData());
141                     Map<String, MemoryUsage> mapBefore = info.getGcInfo().getMemoryUsageBeforeGc();
142                     Map<String, MemoryUsage> mapAfter = info.getGcInfo().getMemoryUsageAfterGc();
143 
144                     MemoryUsage before = mapBefore.get("Shenandoah");
145                     MemoryUsage after = mapAfter.get("Shenandoah");
146 
147                     if ((before != null) && (after != null)) {
148                         long diff = before.getUsed() - after.getUsed();
149                         if (diff > 0) {
150                             churnBytes.addAndGet(diff);
151                         }
152                     }
153                 }
154             }
155         };
156 
157         for (GarbageCollectorMXBean bean : ManagementFactory.getGarbageCollectorMXBeans()) {
158             ((NotificationEmitter) bean).addNotificationListener(listener, null, null);
159         }
160 
161         final int size = 100_000;
162         long count = TARGET_MB * 1024 * 1024 / (16 + 4 * size);
163 
164         long mem = count * (16 + 4 * size);
165 
166         for (int c = 0; c < count; c++) {
167             sink = new int[size];
168         }
169 
170         System.gc();
171 
172         long minExpected = PRECISE ? (mem - HEAP_MB * 1024 * 1024) : 1;
173         long maxExpected = mem + HEAP_MB * 1024 * 1024;
174         long actual = 0;
175 
176         // Look at test timeout to figure out how long we can wait without breaking into timeout.
177         // Default to 1/4 of the remaining time in 1s steps.
178         final long STEP_MS = 1000;
179         long spentTime = System.currentTimeMillis() - startTime;
180         long maxTries = (Utils.adjustTimeout(Utils.DEFAULT_TEST_TIMEOUT) - spentTime) / STEP_MS / 4;
181 
182         // Wait until enough notifications are accrued to match minimum boundary.
183         long tries = 0;
184         while (tries++ < maxTries) {
185             actual = churnBytes.get();
186             if (minExpected <= actual) {
187                 // Wait some more to test if we are breaking the maximum boundary.
188                 Thread.sleep(5000);
189                 actual = churnBytes.get();
190                 break;
191             }
192             Thread.sleep(STEP_MS);
193         }
194 
195         String msg = "Expected = [" + minExpected / M + "; " + maxExpected / M + "] (" + mem / M + "), actual = " + actual / M;
196         if (minExpected <= actual && actual <= maxExpected) {
197             System.out.println(msg);
198         } else {
199             throw new IllegalStateException(msg);
200         }

  1 /*
  2  * Copyright (c) 2018, Red Hat, Inc. All rights reserved.
  3  * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
  4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5  *
  6  * This code is free software; you can redistribute it and/or modify it
  7  * under the terms of the GNU General Public License version 2 only, as
  8  * published by the Free Software Foundation.
  9  *
 10  * This code is distributed in the hope that it will be useful, but WITHOUT
 11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 13  * version 2 for more details (a copy is included in the LICENSE file that
 14  * accompanied this code).
 15  *
 16  * You should have received a copy of the GNU General Public License version
 17  * 2 along with this work; if not, write to the Free Software Foundation,
 18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 19  *
 20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 21  * or visit www.oracle.com if you need additional information or have any
 22  * questions.
 23  *
 24  */
 25 
 26 /*
 27  * @test id=passive
 28  * @summary Check that MX notifications are reported for all cycles
 29  * @library /test/lib /
 30  * @requires vm.gc.Shenandoah & vm.opt.ShenandoahGCMode != "generational"
 31  *
 32  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 33  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
 34  *      -XX:+ShenandoahDegeneratedGC -Dprecise=true
 35  *      TestChurnNotifications
 36  *
 37  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 38  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
 39  *      -XX:-ShenandoahDegeneratedGC -Dprecise=true
 40  *      TestChurnNotifications
 41  */
 42 
 43 /*
 44  * @test id=aggressive
 45  * @summary Check that MX notifications are reported for all cycles
 46  * @library /test/lib /
 47  * @requires vm.gc.Shenandoah & vm.opt.ShenandoahGCMode != "generational"
 48  *
 49  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 50  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive
 51  *      -Dprecise=false
 52  *      TestChurnNotifications
 53  */
 54 
 55 /*
 56  * @test id=adaptive
 57  * @summary Check that MX notifications are reported for all cycles
 58  * @library /test/lib /
 59  * @requires vm.gc.Shenandoah & vm.opt.ShenandoahGCMode != "generational"
 60  *
 61  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 62  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive
 63  *      -Dprecise=false
 64  *      TestChurnNotifications
 65  */
 66 
 67 /*
 68  * @test id=static
 69  * @summary Check that MX notifications are reported for all cycles
 70  * @library /test/lib /
 71  * @requires vm.gc.Shenandoah & vm.opt.ShenandoahGCMode != "generational"
 72  *
 73  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 74  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=static
 75  *      -Dprecise=false
 76  *      TestChurnNotifications
 77  */
 78 
 79 /*
 80  * @test id=compact
 81  * @summary Check that MX notifications are reported for all cycles
 82  * @library /test/lib /
 83  * @requires vm.gc.Shenandoah & vm.opt.ShenandoahGCMode != "generational"
 84  *
 85  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 86  *      -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact
 87  *      -Dprecise=false
 88  *      TestChurnNotifications
 89  */
 90 
 91 /*
 92  * @test id=iu
 93  * @summary Check that MX notifications are reported for all cycles
 94  * @library /test/lib /
 95  * @requires vm.gc.Shenandoah
 96  *
 97  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
 98  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
 99  *      -Dprecise=false
100  *      TestChurnNotifications
101  *
102  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
103  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu
104  *      -Dprecise=false
105  *      TestChurnNotifications
106  */
107 
108 /*
109  * @test id=generational
110  * @summary Check that MX notifications are reported for all cycles
111  * @library /test/lib /
112  * @requires vm.gc.Shenandoah
113  *
114  * @run main/othervm -Xmx128m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
115  *      -XX:+UseShenandoahGC -XX:ShenandoahGCMode=generational
116  *      -Dprecise=false -Dmem.pool=Young
117  *      TestChurnNotifications
118  */
119 
120 import java.util.*;
121 import java.util.concurrent.atomic.*;
122 import javax.management.*;
123 import java.lang.management.*;
124 import javax.management.openmbean.*;
125 
126 import jdk.test.lib.Utils;
127 
128 import com.sun.management.GarbageCollectionNotificationInfo;
129 
130 public class TestChurnNotifications {
131 
132     static final long HEAP_MB = 128;                           // adjust for test configuration above
133     static final long TARGET_MB = Long.getLong("target", 2_000); // 2 Gb allocation
134 
135     // Should we track the churn precisely?
136     // Precise tracking is only reliable when GC is fully stop-the-world. Otherwise,
137     // we cannot tell, looking at heap used before/after, what was the GC churn.
138     static final boolean PRECISE = Boolean.getBoolean("precise");
139 
140     static final long M = 1024 * 1024;
141 
142     static volatile Object sink;
143 
144     private static final String POOL_NAME = "Young".equals(System.getProperty("mem.pool")) ? "Shenandoah Young Gen" : "Shenandoah";
145 
146     public static void main(String[] args) throws Exception {
147         final long startTimeNanos = System.nanoTime();
148 
149         final AtomicLong churnBytes = new AtomicLong();
150 
151         NotificationListener listener = new NotificationListener() {
152             @Override
153             public void handleNotification(Notification n, Object o) {
154                 if (n.getType().equals(GarbageCollectionNotificationInfo.GARBAGE_COLLECTION_NOTIFICATION)) {
155                     GarbageCollectionNotificationInfo info = GarbageCollectionNotificationInfo.from((CompositeData) n.getUserData());
156                     Map<String, MemoryUsage> mapBefore = info.getGcInfo().getMemoryUsageBeforeGc();
157                     Map<String, MemoryUsage> mapAfter = info.getGcInfo().getMemoryUsageAfterGc();
158 
159                     MemoryUsage before = mapBefore.get(POOL_NAME);
160                     MemoryUsage after = mapAfter.get(POOL_NAME);
161 
162                     if ((before != null) && (after != null)) {
163                         long diff = before.getUsed() - after.getUsed();
164                         if (diff > 0) {
165                             churnBytes.addAndGet(diff);
166                         }
167                     }
168                 }
169             }
170         };
171 
172         for (GarbageCollectorMXBean bean : ManagementFactory.getGarbageCollectorMXBeans()) {
173             ((NotificationEmitter) bean).addNotificationListener(listener, null, null);
174         }
175 
176         final int size = 100_000;
177         long count = TARGET_MB * 1024 * 1024 / (16 + 4 * size);
178 
179         long mem = count * (16 + 4 * size);
180 
181         for (int c = 0; c < count; c++) {
182             sink = new int[size];
183         }
184 
185         System.gc();
186 
187         long minExpected = PRECISE ? (mem - HEAP_MB * 1024 * 1024) : 1;
188         long maxExpected = mem + HEAP_MB * 1024 * 1024;
189         long actual = 0;
190 
191         // Look at test timeout to figure out how long we can wait without breaking into timeout.
192         // Default to 1/4 of the remaining time in 1s steps.
193         final long STEP_MS = 1000;
194         long spentTimeNanos = System.nanoTime() - startTimeNanos;
195         long maxTries = (Utils.adjustTimeout(Utils.DEFAULT_TEST_TIMEOUT) - (spentTimeNanos / 1_000_000L)) / STEP_MS / 4;
196 
197         // Wait until enough notifications are accrued to match minimum boundary.
198         long tries = 0;
199         while (tries++ < maxTries) {
200             actual = churnBytes.get();
201             if (minExpected <= actual) {
202                 // Wait some more to test if we are breaking the maximum boundary.
203                 Thread.sleep(5000);
204                 actual = churnBytes.get();
205                 break;
206             }
207             Thread.sleep(STEP_MS);
208         }
209 
210         String msg = "Expected = [" + minExpected / M + "; " + maxExpected / M + "] (" + mem / M + "), actual = " + actual / M;
211         if (minExpected <= actual && actual <= maxExpected) {
212             System.out.println(msg);
213         } else {
214             throw new IllegalStateException(msg);
215         }
< prev index next >