We run a Minecraft server that relies on Java on a vServer that has 1GB guaranteed RAM and 4GB burstable RAM.
We run Debian 6.0 (Squeeze) Minimal (64Bit) with a lighttpd webserver with php/mySQL alongside the actual Minecraft server. We currently have everything set up to stay within our 1GB guaranteed RAM, but it seems as if we are not taking advantage of the burstable RAM this way, nor do we know how (and if?) we should do so.
We currently have our server loading with the following string:
/opt/java/jre/bin/java -Xmx880M -Xms880M
-XX:+UseConcMarkSweepGC
-XX:+CMSIncrementalPacing
-XX:ParallelGCThreads=2
-XX:+AggressiveOpts
-jar craftbukkit.jar nogui
We allocate 880M for minecraft (we think?), the rest is reserved for the system, webserver etc. How could we optimize this setup? Does it make sense to allocate this inital startup over the 1GB and well into our burstable RAM? Is there a way for Java or the system to handle this themselves, as in allocating more than 880M when it's needed at peak times, with a max of 4GB? Since the burstable RAM isn't guaranteed, what will happen if it's not available when it would need it? Thanks!