I have an app that I'm running in a version 1.8 JVM in Windows. I'm setting max and min heap size, but it only seems to actually use the max setting. The min memory allocation is much lower than what I specified and it grows as needed.
My memory settings are...
That's 10 GB for both (it's a big app). It does top out at 10 GB (plus perm gen, etc), but it starts out only being about 1 GB. I want it to pre-allocate everything.
Is this a version 1.8 thing? I've searched all of the JVM/JDK/JRE docs for 1.8 and nothing indicates that it would be acting the way it is.
Any ideas?
My memory settings are...
Code:
-Xms10240m -Xmx10240m
That's 10 GB for both (it's a big app). It does top out at 10 GB (plus perm gen, etc), but it starts out only being about 1 GB. I want it to pre-allocate everything.
Is this a version 1.8 thing? I've searched all of the JVM/JDK/JRE docs for 1.8 and nothing indicates that it would be acting the way it is.
Any ideas?