Hi Mikael --<br><br>I am not convinced that the code here that is skeptical about using weighted averages until<br>there are sufficiently many samples in the history is really that useful. I'd just as soon start using the<br>
original weight straightaway and dispense with the slow circumspective march towards its eventual use.<br>For example, with weight = 75, which would weight the history 0.75 and the current sample 0.25 would need<br>3 or 4 steps before it started using the original weight. If you agree, then you can lose that code<br>
and your change to it., and thus avoid the divide by 0 issue that you faced,<br><br>As to the background of that piece of code -- Did the direct and immediate use of the weight cause the<br>control circuits to oscillate initially? Has that been observed or is it just a theoretical fear? (Although my<br>
theory says we need not have any such fears, especially if we wait long enough before actuating the<br>control surfaces.)<br><br>Also, it appears as though there would be other serious problems, see LinearLeastSquaresFit,<br>
if count() were to overflow. In fact many of the calculations in LinearLeastSquareFit (and perhaps elsewhere<br>where the count is used) would go unstable at such a transition point. May be what we really need<br>is a way to cull the count periodically to avoid its overflow. I think one could probably do that without too<br>
much problem by keeping a boundary crossing (say at half the available range for count) at which to do so,<br>by correspondingly scaling the relevant quantities down appropriately -- sum_x, sum_x^2 etc.<br>IIRC, this is a technique oftenused in digital filtering and signal processing, when implementing IIR filters.<br>
<br>-- ramki<br><br><br><div class="gmail_quote">On Tue, Apr 24, 2012 at 11:01 AM, Mikael Vidstedt <span dir="ltr"><<a href="mailto:mikael.vidstedt@oracle.com">mikael.vidstedt@oracle.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Hi all,<br>
<br>
The statistical counters in gcUtil are used to keep track of historical information about various key metrics in the garbage collectors. Built in to the core AdaptiveWeightedAverage base class is the concept of aging the values, essentially treating the first 100 values differently and putting more weight on them since there's not yet enough historical data built up.<br>

<br>
In the class there is a 32-bit counter (_sample_count) that incremented for every sample and used to compute scale the weight of the added value (see compute_adaptive_average), and the scaling logic divides 100 by the count. In the normal case this is not a problem - the counters are reset every once in a while and/or grow very slowly. In some pathological cases the counter will however continue to increment and eventually overflow/wrap, meaning the 32-bit count will go back to zero and the division in compute_adaptive_average will lead to a div-by-zero crash.<br>

<br>
The test case where this is observed is a test that stress tests allocation in combination with the GC locker. Specifically, the test is multi-threaded which pounds on java.util.zip.Deflater.<u></u>deflate, which internally uses the GetPrimitiveArrayCritical JNI function to temporarily lock out the GC (using the GC locker). The garbage collector used is in this case the parallel scavenger and the the counter that overflows is _avg_pretenured. _avg_pretenured is incremented/sampled every time an allocation is made directly in the old gen, which I believe is more likely when the GC locker is active.<br>

<br>
<br>
The suggested fix is to only perform the division in compute_adaptive_average when it is relevant, which currently is for the first 100 values. Once there are more than 100 samples there is no longer a need to scale the weight.<br>

<br>
This problem is tracked in 7158457 (stress: jdk7 u4 core dumps during megacart stress test run).<br>
<br>
Please review and comment on the webrev below:<br>
<br>
<a href="http://cr.openjdk.java.net/%7Emikael/7158457/webrev.00" target="_blank">http://cr.openjdk.java.net/~<u></u>mikael/7158457/webrev.00</a><br>
<br>
Thanks,<br>
Mikael<br>
<br>
</blockquote></div><br>