EVALUATION
###@###.### 2004-04-23
Peter & Ramki also looked at this a bit. On the hashmap resizing, when a
hashmap (or hashtable) fills up, it expands by doubling in size.
From Peter.Kessler:
>
> ... It looks like it's just going to run out of
> memory, ...
Ah, it does run out of memory. And since it doesn't
have catch blocks, the OutOfMemoryError kills off
one of the 20 threads that they start, which frees
up a pile and a half of space, which allows the other
threads to continue.
From Y.S.Ramakrishna:
I noticed their use of a HashMap in the test and wonder
if this may be related to HashMap resizing that causes
a _huge_ allocation request at some point sufficiently
far into the run... Might be useful to have the
HashMap print out its size periodically, so one
can track its resizing (or have verbose gc print out
the allocation request that triggered a collection).
###@###.### 2004-04-26
Email from Rajesh; CBOE is not using CMS:
Because of some confusion earlier, I said customer was using Concurrent
collector. I just confirmed with them and they are NOT. They are just
using UseParallelGC only.
I has asked CBOE to send us the GC logs and will forward you as soon as
I get them
###@###.### 2004-05-13
This particular problem occurs because they are running with AdaptiveSizePolicy
disabled and a large heap with -Xms == -Xmx.
AdaptiveSizePolicy::_promo_size is set in the AdaptiveSizePolicy constructor to
the initial size of the old gen. They are running with -Xms==-Xmx==3g and
-XX:-UseAdaptiveSizePolicy, so _promo_size is initialized to a large value and
then never updated.
AdaptiveSizePolicy::should_full_GC() is used even when UseAdaptiveSizePolicy is
false, and it contains this calculation which overflows:
size_t upper_bound = _live_at_last_full_gc + _promo_size;
The result is a bogus small value of upper_bound, which causes should_full_GC()
to return true, so a full GC is done instead of just a scavenge.
|