-
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
8297186: G1 triggers unnecessary full GCs when heap utilization is low #11209
Closed
tschatzl
wants to merge
6
commits into
openjdk:master
from
tschatzl:submit/8297186-unnecessary-fullgc-on-small-heap
+135
−31
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7e5d89b
Make sure that after young gc, we try to get at least one empty eden …
tschatzl 0bf2812
Add test
tschatzl 5e08fa4
caoman, turbanoff review
tschatzl 5467359
Improve test avoiding heap fragmentation so that it succeeds
tschatzl ed7e27e
Refactoring after Kim's review, ayang noted that "needs_one_eden_regi…
tschatzl 38f1c4f
kbarrett review 2
tschatzl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
package gc.g1; | ||
|
||
/* | ||
* @test | ||
* @bug 8297186 | ||
* @requires vm.gc.G1 | ||
* @library /test/lib | ||
* @run driver gc.g1.TestOneEdenRegionAfterGC | ||
* @summary Test that on a very small heap g1 with very little data (smaller than region size) | ||
* will use at least one eden region after gc to avoid full gcs. | ||
*/ | ||
|
||
import jdk.test.lib.process.OutputAnalyzer; | ||
import jdk.test.lib.process.ProcessTools; | ||
|
||
public class TestOneEdenRegionAfterGC { | ||
private static long YoungGenSize = 32 * 1024 * 1024; | ||
|
||
private static OutputAnalyzer run() throws Exception { | ||
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( | ||
"-Xbootclasspath/a:.", | ||
"-Xmn" + YoungGenSize, | ||
"-Xmx512M", | ||
"-Xms512M", | ||
"-XX:G1HeapRegionSize=32M", | ||
"-XX:+UseG1GC", | ||
"-Xlog:gc,gc+ergo*=trace", | ||
TestOneEdenRegionAfterGC.Allocate.class.getName(), | ||
"" + YoungGenSize); | ||
return new OutputAnalyzer(pb.start()); | ||
} | ||
|
||
public static void main(String args[]) throws Exception { | ||
OutputAnalyzer out = run(); | ||
|
||
out.shouldMatch(".*Pause Young \\(Normal\\).*"); | ||
out.shouldNotMatch(".*Pause Full.*"); | ||
} | ||
|
||
public static class Allocate { | ||
public static Object dummy; | ||
|
||
public static void main(String [] args) throws Exception { | ||
if (args.length != 1) { | ||
throw new IllegalArgumentException("Usage: <YoungGenSize>"); | ||
} | ||
|
||
long youngGenSize = Long.parseLong(args[0]); | ||
triggerYoungGCs(youngGenSize); | ||
} | ||
|
||
public static void triggerYoungGCs(long youngGenSize) { | ||
long approxAllocSize = 32 * 1024; | ||
long numAllocations = 2 * youngGenSize / approxAllocSize; | ||
|
||
for (long i = 0; i < numAllocations; i++) { | ||
dummy = new byte[(int)approxAllocSize]; | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Does this mean
G1Policy::calculate_young_desired_length()
could return 0 instead of a minimum of 1 now? Comment on line 228 may need updating.I noticed
young_list_desired_length()
is also used inG1Policy::update_ihop_prediction()
. Could this change mess up with_ihop_control->update_allocation_info()
?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.
No. Line 285 clamps the value to min/max of the young gen sizer; minimum size returned by it is 1 region, see
G1YoungSizer
code. So the original code to ensure a minimum region size of one has already been superfluous in the original implementation.Since it serves no purpose, I removed it. I added an assertion at the end.
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.
Feel free to ask if there is something you do not understand.