<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<br>
Hi Jon and Derek,<br>
<br>
<div class="moz-cite-prefix">On 2015-04-23 19:13, Jon Masamitsu
wrote:<br>
</div>
<blockquote cite="mid:55392838.5090900@oracle.com" type="cite">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<br>
<br>
<div class="moz-cite-prefix">On 04/23/2015 12:46 AM, Bengt
Rutisson wrote:<br>
</div>
<blockquote cite="mid:5538A341.6020302@oracle.com" type="cite">
<meta content="text/html; charset=utf-8"
http-equiv="Content-Type">
<div class="moz-cite-prefix">On 22/04/15 17:45, Jon Masamitsu
wrote:<br>
</div>
<blockquote cite="mid:5537C215.4060806@oracle.com" type="cite">
<meta content="text/html; charset=utf-8"
http-equiv="Content-Type">
<br>
<br>
<div class="moz-cite-prefix">On 4/21/2015 2:57 PM, bill
pittore wrote:<br>
</div>
<blockquote cite="mid:5536C7BE.4000405@oracle.com" type="cite">
<meta content="text/html; charset=utf-8"
http-equiv="Content-Type">
<br>
<br>
<div class="moz-cite-prefix">On 4/21/2015 4:56 PM, Derek
White wrote:<br>
</div>
<blockquote cite="mid:5536B981.80307@oracle.com" type="cite">
<meta content="text/html; charset=utf-8"
http-equiv="Content-Type">
<div class="moz-cite-prefix">Thanks Jon!<br>
<br>
On 4/21/15 1:23 PM, Jon Masamitsu wrote:<br>
</div>
<blockquote cite="mid:553687A0.8090802@oracle.com"
type="cite">
<meta content="text/html; charset=utf-8"
http-equiv="Content-Type">
Derek,<br>
<br>
Thanks for fixing this.<br>
<br>
Fix looks good.<br>
<br>
What do you think about always making
testDynamicNumberOfGCThread()<br>
check for the uniprocessor case (as opposed to passing
in a flag to explicitly<br>
check it)? <br>
</blockquote>
This may not catch all of the failures. What I couldn't
pin down was why some 2, 3(!), or 4 core ARM machines
would result in defaulting ParallelGCThreads=1. Now these
were embedded machines, with potentially "odd" versions of
linux, possibly with "odd" errata. Or perhaps there was
some dynamic differences between "installed" and "on-line"
cores.<br>
</blockquote>
There is definitely a difference between the processor count
and the online processor count. It seems that the
calculation of ParallelGCThreads uses the online count which
could easily be 1 on some embedded platform since the kernel
does do active power management by shutting off cores. The
comment in os.hpp for active_processor_count() says "Returns
the number of CPUs this process is currently allowed to run
on". On linux at least I don't think that's correct. Cores
could be powered down just because the kernel is in some low
power state and not because of some affinity property for
this particular Java process. I'd change the calculation to
call processor_count() instead of active_processor_count().<br>
</blockquote>
<br>
An early implementation used processor_count() and there was
some issue with virtualization.<br>
I forget what the virtualization was but it was something like
Solaris containers or zones. Let me<br>
call them containers. A container on an 8 processor machine
might only get 1 processor but<br>
processor_count() would return 8. It may also have been on a
system where there were 8<br>
processors but 7 were disabled. Only 1 processor was
available to execute the JVM but<br>
processor_count() returned 8. Anyway, if anyone thinks it
should be processor_count()<br>
instead of active_processor_count(), check those types of
situations.<br>
</blockquote>
<br>
Jon,<br>
<br>
In the hg repo it has always been active_processor_count(). I
was not able to figure out exactly when it was changed from
processor_count(), but back in 2003 when JDK-4804915 was pushed
it was already active_processor_count(). So, maybe it is worth
re-evaluating processor_count() again. I don't pretend that I
know what the correct answer here is, it just feels like a lot
has happened in the virtualization area over the past 10+ years
so maybe we should reconsider how we calculate the number of
worker threads. Especially if it causes problems on embedded.<br>
</blockquote>
<br>
No argument there. I just wanted to point out situations where it<br>
might matter.<br>
</blockquote>
<br>
I didn't mean to start an argument. Sorry if it was interpreted like
that. I just don't want us to be afraid of investigating a change
like this. It is great to know the historical reason for a
particular choice, so thanks for providing this, Jon!<br>
<br>
<blockquote cite="mid:55392838.5090900@oracle.com" type="cite"> <br>
<blockquote cite="mid:5538A341.6020302@oracle.com" type="cite"> <br>
Also, I find the comment for active_processor_count() a bit
worrying.<br>
<br>
// Returns the number of CPUs this process is currently
allowed to run on.<br>
// Note that on some OSes this can change dynamically.<br>
static int active_processor_count();<br>
<br>
We read it only once and set the static value for
ParallelGCThreads based on this. But apparently it can change
over time so why do we think that we get a good value to start
with?<br>
</blockquote>
<br>
At the time the number of parallel GC threads could not change so<br>
we were stuck with the value at the start. Even today increasing<br>
beyond the original maximum GC threads would take some work<br>
(arrays sized for the maximum number of GC threads, for example).<br>
There's plenty of ergonomics work like that to do.<br>
</blockquote>
<br>
Right, and the current implementation of the dynamic GC thread count
does not read the active_processor_count() so we don't reduce the
number of GC threads if that value drops. But that would be a
simpler fix than increasing beyond the initial value.<br>
<br>
Thanks,<br>
Bengt<br>
<br>
<blockquote cite="mid:55392838.5090900@oracle.com" type="cite"> <br>
Jon<br>
<br>
<br>
<blockquote cite="mid:5538A341.6020302@oracle.com" type="cite"> <br>
Thanks,<br>
Bengt<br>
<br>
<blockquote cite="mid:5537C215.4060806@oracle.com" type="cite">
<br>
Jon<br>
<br>
<blockquote cite="mid:5536C7BE.4000405@oracle.com" type="cite">
<br>
bill<br>
<br>
<blockquote cite="mid:5536B981.80307@oracle.com" type="cite">
<br>
In any case the safest test seemed to be to force
ParallelGCThreads=1 and see if it works.<br>
<blockquote cite="mid:553687A0.8090802@oracle.com"
type="cite"> ForceDynamicNumberOfGCThreads is a
diagnostic flag<br>
<br>
diagnostic(bool, ForceDynamicNumberOfGCThreads,
false, \<br>
"Force dynamic selection of the number of
" \<br>
"parallel threads parallel gc will use to aid
debugging") \<br>
<br>
so I think you need +UnlockDiagnosticVMOptions.<br>
</blockquote>
OK. <br>
<blockquote cite="mid:553687A0.8090802@oracle.com"
type="cite">
<div class="moz-cite-prefix">On 04/21/2015 06:53 AM,
Derek White wrote:<br>
</div>
<blockquote cite="mid:5536563F.4020806@oracle.com"
type="cite">
<meta http-equiv="content-type" content="text/html;
charset=utf-8">
<tt>Hi All,</tt><tt><br>
</tt><tt><br>
</tt><tt>Please review this fix for: <br>
<a moz-do-not-send="true"
class="moz-txt-link-freetext"
href="https://bugs.openjdk.java.net/browse/JDK-8076995">https://bugs.openjdk.java.net/browse/JDK-8076995</a></tt><br>
<pre wrap="">Webrev:
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://cr.openjdk.java.net/%7Edrwhite/8076995/webrev.00/">http://cr.openjdk.java.net/~drwhite/8076995/webrev.00/</a>
Summary:
Part 1 is a test bug that tries to run G1 on embedded SE builds. Not changed by this webrev.</pre>
</blockquote>
</blockquote>
<br>
Looking into changing TEST.group...<br>
<br>
BTW, I tested with jprt earlier, but I'll try to get an
Aurora run in.<br>
<br>
<br>
- Derek<br>
<blockquote cite="mid:553687A0.8090802@oracle.com"
type="cite">
<blockquote cite="mid:5536563F.4020806@oracle.com"
type="cite">
<pre wrap="">Part two is assertion failure that is being fixed by this webrev.
This is a fix for bug that triggered an assert when running CMS on very
small machines - 1 core x86, or 1-4 core ARM. This may seem unlikely but
can easily happen when running virtual instances.
Failure stack traces also show bug crashing printing a stack trace, but this is being tracked in another bug.
Thanks,
- Derek
</pre>
<br>
</blockquote>
</blockquote>
</blockquote>
<br>
</blockquote>
<br>
</blockquote>
<br>
</blockquote>
<br>
</blockquote>
<br>
</body>
</html>