<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<br>
<br>
On 02/22/12 21:07, Andrew Thompson wrote:
<blockquote cite="mid:5042538A-9440-4C06-9D00-4642077DD359@mac.com"
type="cite"><br>
<div>
<div>On Feb 22, 2012, at 4:45 PM, Jon Masamitsu wrote:</div>
<div><br>
</div>
<div><br>
</div>
<div>Thanks for the response Jon. I realize this isn't any easy
problem to solve because of the huge variations in kinds of
programs out there, not to mention reasonable people differ on
what is desirable behavior.</div>
<div>Still, I feel the settings we have for the VM are heavily
slanted towards server deployment where total amount of RAM on
the host is a known quantity, and the total number of apps is
usually fixed. </div>
<div><br>
</div>
<div>Contrast the client where:</div>
<div><br>
</div>
<div>- every PC or Mac may have a different amount of RAM</div>
<div>- users may be starting up and shutting down programs
constantly</div>
<div>- users expect to be able to open huge files, limited only
by the amount of RAM they bought.</div>
<div><br>
</div>
<div>With that model, guessing what to put in -Xmx is borderline
impossible.</div>
<div><br>
</div>
<div>More comments inline below</div>
<div><br>
</div>
<blockquote type="cite">
<div><br>
On 2/21/2012 9:49 PM, Srinivas Ramakrishna wrote:<br>
<blockquote type="cite">Good points... It's a good idea to
cross- post this over to hotspot-gc-dev since it's
relevant to "client ergonomics" or current lack
thereof....<br>
</blockquote>
<blockquote type="cite"><br>
</blockquote>
<blockquote type="cite">Sent from my iPhone<br>
</blockquote>
<blockquote type="cite"><br>
</blockquote>
<blockquote type="cite">On Feb 21, 2012, at 20:54, Andrew
Thompson<<a moz-do-not-send="true"
href="mailto:lordpixel+openjdk@mac.com">lordpixel+openjdk@mac.com</a>>
wrote:<br>
</blockquote>
<blockquote type="cite"><br>
</blockquote>
<blockquote type="cite">
<blockquote type="cite">...<br>
</blockquote>
</blockquote>
<blockquote type="cite">
<blockquote type="cite">But why should this be the
behavior? Apps written in Objective C don't self limit,
so why not make Xmx default to physical RAM size?<br>
</blockquote>
</blockquote>
<br>
Hotspot reserves the address space for the heap at
initialization. Having it automatically<br>
grab 1gb seems unfriendly to other users of address space
within the process and may<br>
exclude other process from starting up (depending on how
over subscription of memory<br>
is handled).<br>
</div>
</blockquote>
<div><br>
</div>
<div>Is that really a concern on a 64bit VM? I know it is a huge
concern on 32bit (e.g. I have never gotten WIndows XP to go
beyond a 1GB Xmx reliably on 32 bit) but for 64 bit the
address space is at least several GB, right? </div>
<div>It seems to me that the design of G1 would one day allow
discontiguous heaps where the memory need not be reserved at
startup as a single piece, but isn't that already irrelevant
on 64bit?</div>
</div>
</blockquote>
<br>
You're absolutely right. 64bit is not a concern. And in 32bit
it's as much a matter of<br>
having the card table cover the heap as the heap itself.<br>
<br>
<blockquote cite="mid:5042538A-9440-4C06-9D00-4642077DD359@mac.com"
type="cite">
<div>
<div><br>
</div>
<br>
<blockquote type="cite">
<div>A smaller limit on the size of the heap also limits the
pause time an application will see.<br>
It can also limits throughput but I believe there are many
users who prefer the low pause<br>
more often rather than the larger pauses less often.<br>
</div>
</blockquote>
<div><br>
</div>
<div>I can more or less control this today. I can do something
like</div>
<div><br>
</div>
<div>-Xmx = 128m</div>
<div>-XX:GCTimeRatio=19, </div>
<div>
<div>-XX:MaxGCPauseMillis=1000</div>
<div><br>
</div>
<div>Then the parallel collector will respond by not growing
the heap as much... it prefers to collect over grow on more
occasions.</div>
<div>So it is possible to keep some of the benefits of a
smaller heap.</div>
<div><br>
</div>
<div>But the real issue is these 2 flags do nothing to the
parallel collector, which creates the highwatermark effect</div>
<div><br>
</div>
</div>
<div><span class="Apple-style-span" style="font-family: arial,
helvetica, sans-serif; font-size: 12px; ">-XX:MaxHeapFreeRatio=YY</span></div>
<div>-<span class="Apple-style-span" style="font-family: arial,
helvetica, sans-serif; font-size: 12px; ">XX:MinHeapFreeRatio=ZZ</span></div>
<div><span class="Apple-style-span" style="font-family: arial,
helvetica, sans-serif; font-size: 12px; "><br>
</span></div>
<div><span class="Apple-style-span" style="font-family: arial,
helvetica, sans-serif; font-size: 12px; ">Since mx is small
the actual used amount of memory (not address space) starts
low, can go up, but can't go down again unless one is
running serlal gc.</span></div>
<div><span class="Apple-style-span" style="font-family: arial,
helvetica, sans-serif; font-size: 12px; ">This is what I
think we are missing in the desktops apps. mx is hard to
predict so rather than do what why not let Hotspot grab a
block of address space for a potentially large heap and let
it (the heap's data) grow and shrink as needed.</span></div>
</div>
</blockquote>
<br>
The part about the heap not shrinking is a bug.<br>
<br>
<blockquote cite="mid:5042538A-9440-4C06-9D00-4642077DD359@mac.com"
type="cite">
<div><br>
<blockquote type="cite">
<div>Regarding shrinking the heap and giving back the memory,
yes, the hotspot should do<br>
that.<br>
</div>
</blockquote>
</div>
\
<div>So was there a fundamental flaw with last year's patch? It
caused more gcs but was there a showstopper problem with it or
did the developer just lose interest?</div>
<div><br>
</div>
</blockquote>
<br>
I believe you are referring to a contribution from a Google
engineer.<br>
It got complicated in a non-technical way.<br>
<br>
</body>
</html>