RFR: 8268163: Change the order of fallback full GCs in G1

Kim Barrett kbarrett at openjdk.java.net
Wed Jun 9 08:45:16 UTC 2021


On Tue, 8 Jun 2021 12:33:24 GMT, Thomas Schatzl <tschatzl at openjdk.org> wrote:

>> Please review this change to make the order of G1 Full GCs a bit more straight forward.
>> 
>> **Summary**
>> In [JDK-8233822](https://bugs.openjdk.java.net/browse/JDK-8233822) the way Full GCs were scheduled was changed a bit to support a use-case introduced by [JDK-8202286](https://bugs.openjdk.java.net/browse/JDK-8202286) (which allowed the heap to have the old generation on an alternative memory device). This feature has been removed ([JDK-8256181](https://bugs.openjdk.java.net/browse/JDK-8256181)), but the Full GC scheduling has not been reverted. This can lead to situations where we do three Full GCs in a row. Doing more than two seems a bit over the top, so this change more or less reverts back to the old behavior 
>> * Young collection requesting to allocate when done will cause at most two Full GCs, the first will not clear any soft references and allow dead wood to be left. The second one, if still not able to satisfy the allocation will clear soft references and compact everything not allowing any dead wood.
>> * For concurrent start collections and young collections not requesting any allocation, one Full GC will be scheduled if no regions were freed up by the initial collection.
>> 
>> A change compared to current behavior is that a concurrent collection started because of the metadata threshold not being met, will no longer be upgraded to a Full GC. This is still equal to how things were handled prior to [JDK-8233822](https://bugs.openjdk.java.net/browse/JDK-8233822).
>> 
>> **Testing**
>> Tier 1-3, plus manual testing looking at output in near OOM situations.
>
> src/hotspot/share/gc/g1/g1VMOperations.cpp line 103:
> 
>> 101:     // the GCLocker check in the prologue.)
>> 102:     _transient_failure = true;
>> 103:   } else if (g1h->should_upgrade_to_full_gc(_gc_cause)) {
> 
> I think there is a pre-existing bug here: `should_upgrade_to_full_gc` always returns `false` here because the called `should_do_concurrent_full_gc()` used there (and returning true) is always true for `VM_G1TryInitiateConcMark`.
> 
> Afaict this has been introduced in (https://bugs.openjdk.java.net/browse/JDK-8232588) where `VM_G1CollectForAllocation` has been split into `VM_G1TryInitiateConcMark` and `VM_G1CollectForAllocation`, and `should_upgrade_to_full_gc()` not updated.
> 
> Tote that JDK-8232588 suggests to *not* upgrade for a `System.gc` call with `-XX:+ExplicitGCInvokesConcurrent`, but strangely adds the code to do so. Later, JDK-8232588, due to some refactoring error, disables the upgrade again.
> 
> I'll file a bug to investigate this (mess).

At the time of JDK-8232588 the `should_do_concurrent_full_gc()` check was preceded by a check of `policy()->force_upgrade_to_full()` that could make the full GC happen.  That seems to have disappeared.

-------------

PR: https://git.openjdk.java.net/jdk/pull/4342



More information about the hotspot-gc-dev mailing list