Skip to content

Commit e6517d1

Browse files
committedJul 24, 2020
8250627: Use -XX:+/-UseContainerSupport for enabling/disabling Java container metrics
Reviewed-by: aph, dholmes, bobv
1 parent 10b9d0b commit e6517d1

File tree

7 files changed

+175
-2
lines changed

7 files changed

+175
-2
lines changed
 

‎make/hotspot/symbols/symbols-linux

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#
2323

2424
JVM_handle_linux_signal
25+
JVM_IsUseContainerSupport
2526
numa_error
2627
numa_warn
2728
sysThreadAvailableStackWithSlack

‎src/hotspot/share/include/jvm.h

+3
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ JVM_MaxMemory(void);
158158
JNIEXPORT jint JNICALL
159159
JVM_ActiveProcessorCount(void);
160160

161+
JNIEXPORT jboolean JNICALL
162+
JVM_IsUseContainerSupport(void);
163+
161164
JNIEXPORT void * JNICALL
162165
JVM_LoadLibrary(const char *name);
163166

‎src/hotspot/share/prims/jvm.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,15 @@ JVM_ENTRY_NO_ENV(jint, JVM_ActiveProcessorCount(void))
538538
return os::active_processor_count();
539539
JVM_END
540540

541-
541+
JVM_ENTRY_NO_ENV(jboolean, JVM_IsUseContainerSupport(void))
542+
JVMWrapper("JVM_IsUseContainerSupport");
543+
#ifdef LINUX
544+
if (UseContainerSupport) {
545+
return JNI_TRUE;
546+
}
547+
#endif
548+
return JNI_FALSE;
549+
JVM_END
542550

543551
// java.lang.Throwable //////////////////////////////////////////////////////
544552

‎src/java.base/linux/classes/jdk/internal/platform/CgroupMetrics.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,13 @@ public long getBlkIOServiced() {
160160
}
161161

162162
public static Metrics getInstance() {
163+
if (!isUseContainerSupport()) {
164+
// Return null on -XX:-UseContainerSupport
165+
return null;
166+
}
163167
return CgroupSubsystemFactory.create();
164168
}
165169

166-
}
170+
private static native boolean isUseContainerSupport();
171+
172+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc.
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. Oracle designates this
8+
* particular file as subject to the "Classpath" exception as provided
9+
* by Oracle in the LICENSE file that accompanied this code.
10+
*
11+
* This code is distributed in the hope that it will be useful, but WITHOUT
12+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14+
* version 2 for more details (a copy is included in the LICENSE file that
15+
* accompanied this code).
16+
*
17+
* You should have received a copy of the GNU General Public License version
18+
* 2 along with this work; if not, write to the Free Software Foundation,
19+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20+
*
21+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22+
* or visit www.oracle.com if you need additional information or have any
23+
* questions.
24+
*/
25+
26+
#include "jni.h"
27+
#include "jvm.h"
28+
29+
#include "jdk_internal_platform_CgroupMetrics.h"
30+
31+
JNIEXPORT jboolean JNICALL
32+
Java_jdk_internal_platform_CgroupMetrics_isUseContainerSupport(JNIEnv *env, jclass ignored)
33+
{
34+
return JVM_IsUseContainerSupport();
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc.
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+
import jdk.internal.platform.Metrics;
25+
26+
public class CheckUseContainerSupport {
27+
28+
// Usage: boolean value of -XX:+/-UseContainerSupport
29+
// passed as the only argument
30+
public static void main(String[] args) throws Exception {
31+
if (args.length != 1) {
32+
throw new RuntimeException("Expected only one boolean argument");
33+
}
34+
boolean expectedContainerSupport = Boolean.parseBoolean(args[0]);
35+
boolean actualContainerSupport = (Metrics.systemMetrics() != null);
36+
if (expectedContainerSupport != actualContainerSupport) {
37+
String msg = "-XX:" + ( expectedContainerSupport ? "+" : "-") + "UseContainerSupport, but got " +
38+
"Metrics.systemMetrics() == " + (Metrics.systemMetrics() == null ? "null" : "non-null");
39+
System.out.println(msg);
40+
System.out.println("TEST FAILED!!!");
41+
return;
42+
}
43+
System.out.println("TEST PASSED!!!");
44+
}
45+
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc.
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+
* @test
26+
* @summary UseContainerSupport flag should reflect Metrics being available
27+
* @requires docker.support
28+
* @library /test/lib
29+
* @modules java.base/jdk.internal.platform
30+
* @build CheckUseContainerSupport
31+
* @run main/timeout=360 TestUseContainerSupport
32+
*/
33+
34+
import jdk.test.lib.Utils;
35+
import jdk.test.lib.containers.docker.Common;
36+
import jdk.test.lib.containers.docker.DockerRunOptions;
37+
import jdk.test.lib.containers.docker.DockerTestUtils;
38+
39+
public class TestUseContainerSupport {
40+
private static final String imageName = Common.imageName("useContainerSupport");
41+
42+
public static void main(String[] args) throws Exception {
43+
if (!DockerTestUtils.canTestDocker()) {
44+
return;
45+
}
46+
47+
DockerTestUtils.buildJdkDockerImage(imageName, "Dockerfile-BasicTest", "jdk-docker");
48+
49+
try {
50+
testUseContainerSupport(true);
51+
testUseContainerSupport(false);
52+
} finally {
53+
DockerTestUtils.removeDockerImage(imageName);
54+
}
55+
}
56+
57+
private static void testUseContainerSupport(boolean useContainerSupport) throws Exception {
58+
String testMsg = " with -XX:" + (useContainerSupport ? "+" : "-") + "UseContainerSupport";
59+
Common.logNewTestCase("Test TestUseContainerSupport" + testMsg);
60+
DockerRunOptions opts =
61+
new DockerRunOptions(imageName, "/jdk/bin/java", "CheckUseContainerSupport");
62+
opts.addClassOptions(Boolean.valueOf(useContainerSupport).toString());
63+
opts.addDockerOpts("--memory", "200m")
64+
.addDockerOpts("--volume", Utils.TEST_CLASSES + ":/test-classes/");
65+
if (useContainerSupport) {
66+
opts.addJavaOpts("-XX:+UseContainerSupport");
67+
} else {
68+
opts.addJavaOpts("-XX:-UseContainerSupport");
69+
}
70+
opts.addJavaOpts("-cp", "/test-classes/");
71+
opts.addJavaOpts("--add-exports", "java.base/jdk.internal.platform=ALL-UNNAMED");
72+
DockerTestUtils.dockerRunJava(opts).shouldHaveExitValue(0).shouldContain("TEST PASSED!!!");
73+
}
74+
}

0 commit comments

Comments
 (0)
Please sign in to comment.