Resin Documentationapp server |
command-line configurationWhile most configuration options have been made available in resin.xml, this section describes some common command-line options.
The
The most commonly used options for
The 64-bit JNI compilation must match the JDK you're using, i.e.
you'll need to add a As of Resin 4.0, startup options should be declared in the configuration file using <jvm-arg>. However, some startup options are available via the command line. Command-line arguments
Resin 4.0 has moved all JDK arguments into the resin.xml file, in the <jvm-arg> tag. Because the Resin 4.0 watchdog starts each Resin server instance, it can pass the arguments defined in the configuration file to the JVM. By moving the Java arguments to the configuration file, server configuration is easier and more maintainable. <resin xmlns="http://caucho.com/ns/resin"> <cluster id="app-tier"> <server-default> <jvm-arg>-Xms32m</jvm-arg> <jvm-arg>-Xmx512m</jvm-arg> <jvm-arg>-Xss1m</jvm-arg> <jvm-arg>-verbosegc</jvm-arg> <jvm-arg>-Dfoo=bar</jvm-arg> <jvm-arg>-Dcaucho.smallmem</jvm-arg> <jvm-arg>-agentlib:resin</jvm-arg> <jvm-arg>-Xdebug</jvm-arg> <http port="8080"/> </server-default> <server id="a" address="192.168.2.1" port="6800"/> ... </cluster> </resin> The allocation of memory for the JVM is specified using -X options when starting Resin (the exact options may depend upon the JVM that you are using, the examples here are for the Sun JVM).
<resin xmlns="http://caucho.com/ns/resin"> <cluster id=""> <server id="" address="127.0.0.1" port="6800"> <jvm-arg>-Xmx500M</jvm-arg> <jvm-arg>-Xms500M</jvm-arg> <jvm-arg>-Xmn100M</jvm-arg> <http port="80"/> </server> ... </cluster> </resin> It is good practice with server-side Java applications like Resin to set the minimum and maximum heap sizes to the same value.For efficient garbage collection, the value should be lower than the value. Heap size does not determine the amount of memory your process usesIf you monitor your java process with an OS tool like top or taskmanager, you may see the amount of memory you use exceed the amount you have specified for -Xmx. -Xmx limits the java heap size, java will allocate memory for other things, including a stack for each thread. It is not unusual for the total memory consumption of the VM to exceed the value of -Xmx. (thanks to Rob Lockstone for his comments) There are essentially two GC threads running. One is a very lightweight thread which does "little" collections primarily on the Eden (a.k.a. Young) generation of the heap. The other is the Full GC thread which traverses the entire heap when there is not enough memory left to allocate space for objects which get promoted from the Eden to the older generation(s). If there is a memory leak or inadequate heap allocated, eventually the older generation will start to run out of room causing the Full GC thread to run (nearly) continuously. Since this process "stops the world", Resin won't be able to respond to requests and they'll start to back up. The amount allocated for the Eden generation is the value specified with . The amount allocated for the older generation is the value of minus the . Generally, you don't want the Eden to be too big or it will take too long for the GC to look through it for space that can be reclaimed.Each thread in the VM gets a stack. The stack size will limit the number of threads that you can have, too big of a stack size and you will run out of memory as each thread is allocated more memory than it needs. 2048k is an appropriate value for most situations.
Some people have reported that it is necessary to change stack size
settings at the OS level for Linux. A call to unix> ulimit -s 2048 JDK 6 includes a number of tools that are useful for monitoring the JVM. Documentation for these tools is available from the Sun website. The most useful tool is Administration section of the Resin documentation. . Details on using jconsole are provided in the<resin xmlns="http://caucho.com/ns/resin"> <cluster id=""> <server-default> <jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg> </server-default> <server id="" address="127.0.0.1" port="6800"/> ... </cluster> </resin> ... in another shell window ... win> jconsole.exe unix> jconsole Choose Resin's JVM from the "Local" list. resin-admin console documentation. and are also useful, providing a quick command line method for obtaining stack traces of all current threads. Details on obtaining and interpreting stack traces is in the# jps 12903 Jps 20087 Resin # jstack 20087 Attaching to process ID 20087, please wait... Debugger attached successfully. Client compiler detected. JVM version is 1.5.0-beta2-b51 Thread 12691: (state = BLOCKED) - java.lang.Object.wait(long) (Compiled frame; information may be imprecise) - com.caucho.util.ThreadPool.runTasks() @bci=111, line=474 (Compiled frame) - com.caucho.util.ThreadPool.run() @bci=85, line=423 (Interpreted frame) - java.lang.Thread.run() @bci=11, line=595 (Interpreted frame) Thread 12689: (state = BLOCKED) - java.lang.Object.wait(long) (Compiled frame; information may be imprecise) - com.caucho.util.ThreadPool.runTasks() @bci=111, line=474 (Compiled frame) - com.caucho.util.ThreadPool.run() @bci=85, line=423 (Interpreted frame) - java.lang.Thread.run() @bci=11, line=595 (Interpreted frame) ...
|