On 12/10/2013 10:09 PM, sweety wrote: > I have set : JAVA_OPTS as value: -Xms1024M-Xmx1024M > But the dashboard still shows 64M,but now the usage is only 18% > How could that be? yesterday it was 87%.
Due to Java's garbage collection memory model, memory usage will vary. If "-Xms1024M-Xmx1024M" is the literal string you have used, it won't work - you'll need "-Xms1024M -Xmx1024M" instead -- note the space that I've added. Thanks, Shawn