<div dir="ltr"><div>Hi Kats,</div><div><br></div>I just wanted to weigh in here (as Thomas mentioned) and say that we at Google are actively working on something fairly similar, and have seen success with limiting heap expansions using a dynamic flag similar to CurrentMaxHeapSize. We have begun using this functionality in containerized environments to help prevent container OOMs. (If you are interested in learning more about this project, feel free to check out this talk here: <a href="https://www.youtube.com/watch?v=qOt4vOkk49k">https://www.youtube.com/watch?v=qOt4vOkk49k</a> <div><br></div><div>Unfortunately, I haven't had the bandwidth to upstream the code (since it is somewhat tied to Google's specific implementation). I do want to work on upstreaming these changes and/or making progress on JEP-8204088, but I don't see this happening for at least 6 months at the minimum. If this is something you are actively interested in working on, then I am happy to share my thoughts and experiences. (We can schedule a meeting to discuss, etc.) </div><div><br></div><div>Thank you!</div><div><br></div><div>~ Jonathan</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Feb 2, 2023 at 4:36 AM Thomas Schatzl <<a href="mailto:thomas.schatzl@oracle.com">thomas.schatzl@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
<br>
On 02.02.23 12:31, Katsutomo Sekiguchi (Fujitsu) wrote:<br>
> Hi Thomas,<br>
> <br>
> Thank you for quick reply. I got the current situation.<br>
> <br>
> I believe that it needs a chunk of address space for MaxHeapSize even if<br>
> it only allocate heaps up to CurrentMaxHeapSize.<br>
> In other words, do you mean it reserve an address space of MaxHeapSize<br>
> and commit a physical memory to CurrentMaxHeapSize instead of MaxHeapSize<br>
> then control the amount of physical memory by changing CurrentMaxHeapSize?<br>
> <br>
> Maybe, I think we must figure out somehow to feed back current conditions like<br>
> heap usage as input to change CurrentMaxHeapSize.<br>
<br>
   making the heap expansion follow CurrentMaxHeapSize instead of <br>
MaxHeapSize is not that big of an issue. Existing code already handles <br>
committing and uncommitting just fine if you use the new variable.<br>
<br>
I.e. the only difference having a CurrentMaxHeapSize or not is instead <br>
of expanding until MaxHeapSize, only allow heap expansion (and <br>
allocation) up to CurrentMaxHeapSize.<br>
<br>
E.g. in the patch you gave [1], the hunk at @@ -1148,7 +1148,8 @@ in <br>
g1CollectedHeap.cpp limited that for heap expansion.<br>
It also handled other cases where G1 would try to expand.<br>
<br>
The real problems (to me) seem to be located in other users of "max heap <br>
size" value in the VM.<br>
<br>
An initial review of mine noticed quite a few issues and questions with <br>
that implementation ([2]) that ought to be addressed in one way or <br>
another; briefly looking over them the comments still seem very much <br>
applicable.<br>
<br>
[1] <a href="http://cr.openjdk.java.net/~tschatzl/jelastic/cmx/" rel="noreferrer" target="_blank">http://cr.openjdk.java.net/~tschatzl/jelastic/cmx/</a><br>
[2] <a href="https://mail.openjdk.org/pipermail/hotspot-gc-dev/2018-June/022472.html" rel="noreferrer" target="_blank">https://mail.openjdk.org/pipermail/hotspot-gc-dev/2018-June/022472.html</a><br>
<br>
Hth,<br>
   Thomas<br>
<br>
</blockquote></div>