-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDK-8273526: Extend the OSContainer API pids controller with pids.current #5437
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,7 +94,14 @@ private static void checkResult(List<String> lines, String lineMarker, String ex | |
System.out.println("DEBUG: line = " + line); | ||
System.out.println("DEBUG: parts.length = " + parts.length); | ||
if (expectedValue.equals("no_value_expected")) { | ||
System.out.println("No value expected for " + lineMarker); | ||
Asserts.assertEquals(parts.length, 2); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is "no_value_expected" generated by Docker? I searched the entire HotSpot source code and couldn't find it. I also couldn't find "WARNING: Your kernel does not support pids limit capabilities". To make it easier to understand this test, I would suggest grouping all messages that were generated outside of HotSpot into something like:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, I misunderstood the test. "no_value_expected" was passed in from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
+1 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Hi, this warning is showing up on some of our Linux ppc64le machines where the pids limit capabilities is not supported. Best regards, Matthias There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hello, I adjusted to any_integer, and introduced the "final String warning_kernel_no_pids_support" . I think the message is more related to the kernel features so I did not add the add the 'generated by Docker' comment. Best regards, Matthias |
||
String ivalue = parts[1].replaceAll("\\s",""); | ||
System.out.println("Found " + lineMarker + " with value: " + ivalue); | ||
try { | ||
int ai = Integer.parseInt(ivalue); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you move the debug print line to after line 101, please. It could say:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the debug println has been moved down. |
||
} catch (NumberFormatException ex) { | ||
throw new RuntimeException("Could not convert " + ivalue + " to an integer, log line was " + line); | ||
} | ||
break; | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pids.current
never contains a stringmax
(for unlimited). Therefore, we shouldn't need to do thepids_current_val
->limit_from_str()
trick. We should be able to useGET_CONTAINER_INFO(int, [...]
akin tocpu_quota
.int
orlong
would both be suitable. Up to you to decide which data type to use. I don't think it'll ever be beyond the maximum integrer value.