Integrated: 8349906: G1: Improve initial survivor rate for newly used young regions
Thomas Schatzl
tschatzl at openjdk.org
Wed Feb 26 10:33:10 UTC 2025
On Wed, 12 Feb 2025 10:55:46 GMT, Thomas Schatzl <tschatzl at openjdk.org> wrote:
> Hi all,
>
> please review this change that tries to improve the survivor rate initial values for newly expanded regions.
>
> Currently G1 uses `InitialSurvivorRate` as survivor rate for such regions, but it is typically a pretty bad choice because
>
> * it's rather conservative, estimating that 40% of region contents will survive
> * such a conservative value is kind of bad particularly in cases for regions that are expanded late in the mutator phase because they are not frequently updated (and with our running weights changes get propagated over a very long time), i.e. this 40% sticks for a long time (*)
> * it is a random value, i.e. not particularly specific to the application.
>
> The suggestion is to use the survivor rate for the last region we know the survivor rate already.
>
> (*) to clarify this a little: G1 keeps track of `[0...m]` survivor rate predictors. For a given garbage collection, `[0...n]` of those are updated (`n` is the number of eden/survivor regions depending on the rate group). However those for `]n...m]` are not, particularly those in that range that are seldom allocated, the predictors are not updated very frequently. Now the young gen sizing uses these predictions "at the end" of the predictor anyway, and since they are infrequently updated and their values are very conservative, G1 won't expand young gen as much as it could/should.
>
> Testing: gha, tier1-7 (with other changes)
>
> Hth,
> Thomas
This pull request has now been integrated.
Changeset: aac9cb45
Author: Thomas Schatzl <tschatzl at openjdk.org>
URL: https://git.openjdk.org/jdk/commit/aac9cb4537b13a4af123ae76f29359e851dc4c82
Stats: 16 lines in 1 file changed: 13 ins; 0 del; 3 mod
8349906: G1: Improve initial survivor rate for newly used young regions
Reviewed-by: kbarrett, iwalulya
-------------
PR: https://git.openjdk.org/jdk/pull/23584
More information about the hotspot-gc-dev
mailing list