<div dir="ltr"><div>Hi Thomas,</div><div><br></div><div>Thanks for the review. No worries about the delay. Responding to some comments below, will address other comments soon.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">- not sure about the usefulness of the OverheadTester interface. At<br>least in the current implementation its implementation could be easily<br>replaced by static functions returning a bool. That would save a lot of<br>boiler plate code. Is there some reason to have explicit classes for<br>that?</blockquote><div>The OverheadTester interface provides a way to pass functions as parameters to <span style="color:rgb(0,0,0)">OverheadChecker::check_gc_overhead_limit()</span>, and hide details about what parameters are required to compute is_exceeded().</div><div>We could change <span style="color:rgb(0,0,0)">OverheadChecker::check_gc_overhead_limit() to take "bool time_overhead_exceeded, bool space_overhead_exceeded" parameters instead of two pointers to </span><span style="color:rgb(0,0,0)">OverheadTester.</span><br></div><div><span style="color:rgb(0,0,0)">Then we can have two static functions instead of the </span>OverheadTester<span style="color:rgb(0,0,0)"> interface. However, it would introduce a small </span><span style="color:rgb(0,0,0)">behavior</span><span style="color:rgb(0,0,0)"> change for </span>AdaptiveSizePolicy::check_gc_overhead_limit().</div><div>Specifically, it would compute whether time and space overhead limits are exceeded every time the function is called. Currently it only needs to compute these under the following condition:</div><font face="monospace, monospace"> !GCCause::is_user_requested_gc(gc_cause) && !GCCause::is_serviceability_requested_gc(gc_cause) && is_full_gc</font><div><div>If this behavior change is OK, I can replace the OverheadTester interface.<br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Assuming that all collectors want to implement this, and actually need<br>to I am leaning towards doing so. However the ZGC/Shenandoah people<br>might object to this.</blockquote><div>I think it is reasonable for all collectors to support this, but the low-pause collectors may have a very different definition for GC overhead.</div><div>I also received internal user complaints that the current UseGCOverheadLimit for ParallelGC and CMS is too difficult to get triggered, because of the requirement for 5 consecutive full GCs.</div><div>It might also be a problem for G1, as it avoids full GCs eagerly. I think we might need to change the 5-full-GC requirement in the future to make it more useful.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Okay. However I do not know how to rename them and what are the<br>requirements here. Probably a CSR is needed, although I have seen<br>translation tables used (in<br>src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/resources/a<br>liasmap). I cc'ed hotspot-dev in the assumption somebody else there<br>knows more about this.</blockquote><div>If the process is too complicated, I can live with the current imperfect name. It is not causing much ambiguity. I can just move it's definition to GCPolicyCounters.</div><div>Keeping its name unchanged also reduces users' work when they upgrade to new JDK, if they are already monitoring this counter using their own tools.</div><div>In fact, the more useful counter for monitoring purpose is the raw value for gc_cost().</div><div>We have a local patch to export it for ParallelGC and CMS, but it doesn't work for G1 yet. Perhaps we can upstream it in the future when it works for G1.</div><div><br></div><div><div><div dir="ltr" class="m_4639897842409021148gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">-Man</div></div></div></div></div></div>