I wish to increase the heap memory to 4 GB but I can't find it in the script..
to HEAP="-Xms512m -Xmx4096m"
Is there a way I can do that in JMeter itself?
Thanks
I wish to increase the heap memory to 4 GB but I can't find it in the script..
to HEAP="-Xms512m -Xmx4096m"
Is there a way I can do that in JMeter itself?
Thanks
Moving to Hardware and performance forum...
I figured it out by looking at my .sh or .bat files
first step is to ,odify the JVM memory in the JMeter batch file
In jmeter.sh
JVM_ARGS=-Xms512m -Xmx4096m
in jmeter.bat
set JVM_ARGS=-Xms512m -Xmx4096m
2nd step is to modify HEAP="-Xms512m -Xmx4096m" in the JMeter batch file:
in the jmeter.sh
HEAP="-Xms512m -Xmx4096m"
in the jmeter.bat:
set HEAP=-Xms512m -Xmx4096m