47
47
public class TestMemoryAwareness {
48
48
private static final String imageName = Common .imageName ("memory" );
49
49
50
+ private static String getHostMaxMemory () throws Exception {
51
+ DockerRunOptions opts = Common .newOpts (imageName );
52
+ String goodMem = Common .run (opts ).firstMatch ("total physical memory: (\\ d+)" , 1 );
53
+ assertNotNull (goodMem , "no match for 'total physical memory' in trace output" );
54
+ return goodMem ;
55
+ }
56
+
50
57
public static void main (String [] args ) throws Exception {
51
58
if (!DockerTestUtils .canTestDocker ()) {
52
59
return ;
@@ -79,7 +86,10 @@ public static void main(String[] args) throws Exception {
79
86
"1G" , Integer .toString (((int ) Math .pow (2 , 20 )) * 1024 ),
80
87
"1500M" , Integer .toString (((int ) Math .pow (2 , 20 )) * (1500 - 1024 ))
81
88
);
82
- testContainerMemExceedsPhysical ();
89
+ final String hostMaxMem = getHostMaxMemory ();
90
+ testOperatingSystemMXBeanIgnoresMemLimitExceedingPhysicalMemory (hostMaxMem );
91
+ testMetricsIgnoresMemLimitExceedingPhysicalMemory (hostMaxMem );
92
+ testContainerMemExceedsPhysical (hostMaxMem );
83
93
} finally {
84
94
if (!DockerTestUtils .RETAIN_IMAGE_AFTER_TEST ) {
85
95
DockerTestUtils .removeDockerImage (imageName );
@@ -102,24 +112,16 @@ private static void testMemoryLimit(String valueToSet, String expectedTraceValue
102
112
103
113
// JDK-8292083
104
114
// Ensure that Java ignores container memory limit values above the host's physical memory.
105
- private static void testContainerMemExceedsPhysical ()
115
+ private static void testContainerMemExceedsPhysical (final String hostMaxMem )
106
116
throws Exception {
107
-
108
117
Common .logNewTestCase ("container memory limit exceeds physical memory" );
109
-
110
- DockerRunOptions opts = Common .newOpts (imageName );
111
-
112
- // first run: establish physical memory in test environment and derive
113
- // a bad value one power of ten larger
114
- String goodMem = Common .run (opts ).firstMatch ("total physical memory: (\\ d+)" , 1 );
115
- assertNotNull (goodMem , "no match for 'total physical memory' in trace output" );
116
- String badMem = goodMem + "0" ;
117
-
118
- // second run: set a container memory limit to the bad value
119
- opts = Common .newOpts (imageName )
118
+ String badMem = hostMaxMem + "0" ;
119
+ // set a container memory limit to the bad value
120
+ DockerRunOptions opts = Common .newOpts (imageName )
120
121
.addDockerOpts ("--memory" , badMem );
122
+
121
123
Common .run (opts )
122
- .shouldMatch ("container memory limit (ignored: " + badMem + "|unlimited: -1), using host value " + goodMem );
124
+ .shouldMatch ("container memory limit (ignored: " + badMem + "|unlimited: -1), using host value " + hostMaxMem );
123
125
}
124
126
125
127
@@ -200,4 +202,23 @@ private static void testOperatingSystemMXBeanAwareness(String memoryAllocation,
200
202
}
201
203
}
202
204
205
+
206
+ // JDK-8292541: Ensure OperatingSystemMXBean ignores container memory limits above the host's physical memory.
207
+ private static void testOperatingSystemMXBeanIgnoresMemLimitExceedingPhysicalMemory (final String hostMaxMem )
208
+ throws Exception {
209
+ String badMem = hostMaxMem + "0" ;
210
+ testOperatingSystemMXBeanAwareness (badMem , hostMaxMem , badMem , hostMaxMem );
211
+ }
212
+
213
+ // JDK-8292541: Ensure Metrics ignores container memory limits above the host's physical memory.
214
+ private static void testMetricsIgnoresMemLimitExceedingPhysicalMemory (final String hostMaxMem )
215
+ throws Exception {
216
+ Common .logNewTestCase ("Metrics ignore container memory limit exceeding physical memory" );
217
+ String badMem = hostMaxMem + "0" ;
218
+ DockerRunOptions opts = Common .newOpts (imageName )
219
+ .addJavaOpts ("-XshowSettings:system" )
220
+ .addDockerOpts ("--memory" , badMem );
221
+
222
+ DockerTestUtils .dockerRunJava (opts ).shouldMatch ("Memory Limit: Unlimited" );
223
+ }
203
224
}
0 commit comments