随笔-37  评论-3271  文章-0  trackbacks-0

如何详细设置SUN/IBM JVM的GC日志输出(转)

原文: http://www.tagtraum.com/gcviewer-vmflags.html

VMFlags

When it comes to garbage collector and memory flags VMs from different vendors differ somewhat. Most flags aren't even properly documented by the usage printout of the VM themselves. This page tries to shine some light on what garbage collection related flags there are and what they are good for. It covers several Sun and IBM JVMs

Sun JVMs

Disclaimer: Please note that the data presented in this document has been gathered from several publicly available sources. It is a conscious selection of available VM parameters and even though we tried to check most of the facts presented this document may contain errors.

Choosing a VM

-server

Instructs the VM to use the server HotSpot VM. This also implies that default heap sizes and permanent generation sizes are different.
Under 1.5 this option is the default option, if the machine is a server-class machine.
Supported by: 1.3, 1.4, 1.5

-client

Instructs the VM to use the client HotSpot VM. This also implies that default heap sizes and permanent generation sizes are different.
Supported by: 1.3, 1.4, 1.5

Printing Information about GC

-verbose:gc

Prints out information about garbage collections to standard out. To print the same information to a file, use -Xloggc:<file>
Example:
[GC 325407K->83000K(776768K), 0.2300771 secs]
[GC 325816K->83372K(776768K), 0.2454258 secs]
[Full GC 267628K->83769K(776768K), 1.8479984 secs]
See -Xloggc
Supported by: 1.3, 1.4, 1.5

-Xloggc:<file>

Prints information about garbage collections to the specified file.
In conjunction with -XX:+PrintGCDetails this is the best setting for the free GCViewer.
Supported by: 1.4, 1.5

-XX:+PrintGCDetails

Instructs the VM to be more verbose when printing out garbage collecion data. Specifically it does not only tell you that there was a collection, but also what impact it had on the different generations.
This flag is very useful when tuning generation sizes.
In conjunction with -Xloggc this is the best setting for the free GCViewer.
Example:
2.459: [GC 2.459: [DefNew: 3967K->0K(4032K), 0.0141600 secs] 8559K->7454K(16320K), 0.0143588 secs]
Supported by: 1.4, 1.5

-XX:+PrintGCApplicationStoppedTime

Instructs the VM to print out the length of actual collection pauses.
This flag is useful when tuning concurrent collectors.
Example:
Total time for which application threads were stopped: 0.0468229 seconds
Supported by: 1.4, 1.5

-XX:+PrintGCApplicationConcurrentTime

Instructs the VM to print out the amount of time the applications runs between collection pauses.
This flag is useful when tuning concurrent collectors.
Example:
Application time: 0.5291524 seconds
Supported by: 1.4, 1.5

-XX:+PrintGCTimeStamps

Ensures that timestamps relative to the start of the application are printed in the GC log.
Supported by: 1.4, 1.5

-XX:+PrintTenuringDistribution

Prints details about the tenuring distribution to standard out. It can be used to show this threshold and the ages of objects in the new generation. It is also useful for observing the lifetime distribution of an application.
Example:
5.350: [GC Desired survivor size 32768 bytes, new threshold 1 (max 31)
- age 1: 57984 bytes, 57984 total
- age 2: 7552 bytes, 65536 total
756K->455K(1984K), 0.0097436 secs]
Supported by: 1.3, 1.4, 1.5

Sizing Heap and Generations

-Xmx<value>

Overall maximum heap size. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xmx256m sets the maximum heap size to 256mb

Supported by: 1.3, 1.4, 1.5

-Xms<value>

Minimum heap size. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xms256m sets the minimum heap size to 256mb

Supported by: 1.3, 1.4, 1.5

-Xmn<value>

Sets the size of the young generation. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xmn64m sets the young generation size to 64mb

Supported by: 1.4, 1.5

-XX:MinHeapFreeRatio=<minimumInPercent>

Sets the minimal percentage of free heap memory that has to be available after a collection. This parameter can be used to influence when the VM is going to request more memory.
Example:

-XX:MinHeapFreeRatio=70

See -XX:MaxHeapFreeRatio
Supported by: 1.3, 1.4, 1.5

-XX:MaxHeapFreeRatio=<maximumInPercent>

Sets the maximal percentage of free heap memory that must at most be available after a collection. This parameter can be used to influence when the VM is going to lower its footprint. In other words it can shrink the heap and therefore memory consumption.
Example:

-XX:MaxHeapFreeRatio=20

See -XX:MinHeapFreeRatio
Supported by: 1.3, 1.4, 1.5

-XX:NewRatio=<ratio>

Sets the ratio between young and old generation.
Example:

-XX:NewRatio=3 means that the ratio between the young and old

generation is 1:3; in other words, the combined size of

eden and the survivor spaces will be one fourth of the

heap.

See -XX:NewSize and -XX:MaxNewSize
Supported by: 1.3, 1.4, 1.5

-XX:NewSize=<value>

Sets minimum size of the young generation.
Example:

-XX:NewSize=64m sets the minimum size of the young

generation to 64mb

See -XX:NewRatio and -XX:MaxNewSize
Supported by: 1.3, 1.4, 1.5

-XX:MaxNewSize=<value>

Sets maximum size of the young generation.
Example:

-XX:NewSize=64m sets the maximum size of the young

generation to 64mb

See -XX:NewRatio and -XX:NewSize
Supported by: 1.3, 1.4, 1.5

-XX:SurvivorRatio=<ratio>

Sets size of the survivor spaces in relation to eden.
Example:

-XX:SurvivorRatio=6 sets the ratio between each survivor space

and eden to be 1:6; in other words, each survivor space

will be one eighth of the young generation (not one seventh,

because there are two survivor spaces).

Supported by: 1.3, 1.4, 1.5

-XX:PermSize=<value>

Sets the initial size of the permanent generation (where classes etc. are stored). This can be useful for application servers using many EJBs and JSPs.
Example:

-XX:PermSize=64m

See -XX:MaxPermSize
Supported by: 1.3, 1.4, 1.5

-XX:MaxPermSize=<value>

Sets the maximum size of the permanent generation (where classes etc. are stored). This can be useful for application servers using many EJBs and JSPs.
Example:

-XX:MaxPermSize=64m

See -XX:PermSize
Supported by: 1.3, 1.4, 1.5

Choosing and Configuring a Collector

-XX:+UseParallelGC

Use parallel garbage collection. This collector is also referred to as the throughput collector. It uses a parallel version of the young generation collector. The old (tenured) generation is still cleaned with the default collector.
Under 1.5 this option is the default option, if the machine is a server-class machine.
This option can not be used in conjunction with -XX:+UseConcMarkSweepGC .
Supported by: 1.4.1, 1.5

-XX:+UseParallelOldGC

Use the parallel old generation collector. Certain phases of an old generation collection can be performed in parallel, speeding up an old generation collection.
This option automatically enables -XX:+UseParallelGC .
Supported by: 1.5.0.6

-XX:ParallelGCThreads=<number>

Specifies the number of threads used in parallel garbage collection when -XX:+UseParallelGC is set. By default a system with N CPUs uses N garbage collection threads.
Example:

-XX:ParallelGCThreads=4

Supported by: 1.4.1, 1.5

-XX:MaxGCPauseMillis=<ms>

Instructs the VM to try to keep garbage collection pauses shorter than the specified value in ms.
This option applies in conjunction with -XX:+UseParallelGC and has higher priority than -XX:GCTimeRatio .
Example:

-XX:MaxGCPauseMillis=10

Supported by: 1.5

-XX:GCTimeRatio=<ratio>

Sets a throughput goal for the VM. The ratio of garbage collection time to application time is1/(1+<ratio>).
This option applies in conjunction with -XX:+UseParallelGC and has lower priority than -XX:MaxGCPauseMillis .
Example:

-XX:GCTimeRatio=19 sets a goal of 5% of the total time for

garbage collection.

Supported by: 1.5

-XX:+UseAdaptiveSizePolicy

Instructs the VM to keep track of some statistics and resize both the young and the old (tenured) generation based on the collected data.
This feature is on by default when the option -XX:+UseParallelGC is used.
Supported by: 1.4.1, 1.5

-XX:+AggressiveHeap

Instructs the JVM to push memory use to the limit. It inspects the machine resources (size of memory and number of processors) and attempts to set various parameters to be optimal for long-running, memory allocation-intensive jobs. This option is recommended for dedicated server machines.
The physical memory on the machines must be at least 256MB before AggressiveHeap can be used.
Beginning with JVM 1.3.1_02 some GC activity is done in parallel.
Beginning with JVM 1.4 this option implies -XX:+UseParallelGC and -XX:+UseAdaptiveSizePolicy .
Supported by: 1.3, 1.4, 1.5

-XX:+UseConcMarkSweepGC

Use concurrent garbage collection. This collector is also referred to as the concurrent low pause collector. It collects garbage in the old (tenured) generation concurrently to executing the application.
Note that this option can not be used in conjunction with -XX:+UseParallelGC . Instead you may combine it with -XX:+UseParNewGC
Supported by: 1.4.1, 1.5

-XX:+CMSParallelRemarkEnabled

If the -XX:+UseParNewGC option is in use the remark pauses may be decreased with the -XX:+CMSParallelRemarkEnabled option.
Supported by: 1.4.1, 1.5

-XX:+UseParNewGC

Instructs the VM to use a parallel collector for the young generation. This option should be used in conjunction with -XX:+UseConcMarkSweepGC .
Supported by: 1.4.1, 1.5

-XX:+UseTrainGC

Activates the train garbage collector. Note that development for this collector has been stopped since 1.4.2.
See -Xincgc
Supported by: 1.3, 1.4, 1.5

-Xincgc

Activates the incremental (also called train) garbage collector.
See -XX:+UseTrainGC
Supported by: 1.3, 1.4, 1.5

Miscellaneous Settings

-Xss<value>

Sets the size of the stack. In a server system with many threads lowering the stack size may be advantageous to reduce footprint. If the stack is too small, you will start seeingStackOverflowErrors.
You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xss128k sets the stack size to 128kb

Supported by: 1.3, 1.4, 1.5

-XX:+DisableExplicitGC

Disables calls to java.lang.System.gc().

-XX:SoftRefLRUPolicyMSPerMB=<ms per mb>

Sets the rate at which the VM clears soft references. The rate is expressed in ms per free mb of heap. For the server VM free heap means potentially free heap using the maximum heap size as set with -Xmx in the calculation. For the client VM the free heap is calculated using the actual current heap size.
Example:

-XX:SoftRefLRUPolicyMSPerMB=1000 instructs the VM to allow

softly reachable objects to remain alive for 1s per free mb

Supported by: 1.3.1, 1.4, 1.5

Server-Class Machine

Java 5.0 (1.5) defines a class of machines referred to as server-class machines. These are machines that have 2 or more physical processors and 2 or more gb of physical memory. On server-class machines the Sun JVM starts with altered default settings. These are:

-server -XX:+UseParallelGC

Additionally the initial heap size ( -Xms ) is set to 1/64 of the physical memory, up to 1gb. The maximum heap size ( -Xmx ) is set to 1/4 of the physical memory, up to 1gb.

Note that on server-class 32bit-Windows systems the VM will nevertheless start with the classic client settings, as most 32bit-Windows Java applications are not server applications.

IBM JVMs

Disclaimer: Please note that the data presented in this document has been gathered from several publicly available sources. It is a conscious selection of available VM parameters and even though we tried to check most of the facts presented this document may contain errors. Also note that the semantics of some of these parameters are different when used with IBM's resettable JVM for the z/OS platform.

Printing Information about GC

-verbose:gc

Prints out information about garbage collections to standard out.
See -Xverbosegclog
Supported by: 1.3.1, 1.4.1, 1.4.2

-Xverbosegclog:<path to file><filename[,X,Y]>

Prints out information about garbage collections to a file. If the integers X and Y are specified, the output is redirected to X files each containing output from Y GC cycles.
See -verbose:gc
Supported by: 1.4.1, 1.4.2

Sizing Heap and Generations

-Xmx<value>

Overall maximum heap size. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xmx256m sets the maximum heap size to 256mb

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xms<value>

Overall minimum heap size. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xmx256m sets the minimum heap size to 256mb

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xinitsh<value>

Sets the initial size of the system heap. Classes in this heap exist for the lifetime of the JVM. The system heap is never subjected to garbage collection. The maximum size of the system heap is unbounded. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xinitsh256m sets the minimum system heap size to 256mb

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xmaxf<value>

This is a floating point number between 0 and 1, which specifies the maximum percentage of free space in the heap. The default is 0.6, or 60%. When this value is set to 0, heap contraction is a constant activity. With a value of 1, the heap never contracts. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xmaxf0.6 specifies that the heap will be contracted if more

then 60% of the heap are unused.

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xminf<value>

This is a floating point number between 0 and 1, which specifies the minimum percentage of free space in the heap. The default is 0.3, or 30%. The heap grows if the free space is below the specified amount. You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xminf0.3 specifies that the heap will be grown if less

then 30% of the heap are unused.

Supported by: 1.3.1, 1.4.1, 1.4.2

Choosing and Configuring a Collector

-Xgcpolicy:<optthruput|optavgpause|subpool>

Note that the subpool option was introduced in Version 1.4.1 Service Refresh 1 for AIX only.
Setting gcpolicy to optthruput disables concurrent mark. If you do not have pause time problems (as seen by erratic application response times or by analysis of the verbose GC output), you should get the best throughput with this option. optthruput is the default setting.
Setting gcpolicy to optavgpause enables concurrent mark with its default values. If you are having problems with erratic application response times that are caused by normal garbage collections, you can remove those problems at the cost of some throughput when running with theoptavgpause option.
Setting gcpolicy to subpool enables improved object allocation that aims to achieve better performance in allocating objects on the heap. This setting might provide additional throughput optimization because it can improve the efficiency of object allocation and reduce lock contention on large SMP systems. Concurrent mark is disabled when this policy is enabled.
Supported by: 1.3.1, 1.4.1, 1.4.2

-Xgcthreads<n>

Sets the total number of threads that are used for garbage collection. On a system with n processors, the default setting is n.
Supported by: 1.3.1, 1.4.1, 1.4.2

-Xcompactgc

Compacts the heap every garbage collection cycle. The default is false (that is, the heap is not compacted). This is not recommended.
Supported by: 1.3.1, 1.4.1, 1.4.2

-Xnocompactgc

Never compact the heap. Default is false.
Supported by: 1.3.1, 1.4.1, 1.4.2

-Xnoclassgc

Disables class garbage collection.
Supported by: 1.3.1, 1.4.1, 1.4.2

Miscellaneous Settings

-Xss<value>

Sets maximum native stack size for any thread.
You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xss128k sets the stack size to 128kb

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xoss<value>

Sets maximum Java stack size for any thread.
You may use k, m and g for kilobyte, megabyte and gigabyte.
Example:

-Xoss128k sets the stack size to 128kb

Supported by: 1.3.1, 1.4.1, 1.4.2

-Xcompactexplicitgc

Runs full compaction each time java.lang.System.gc() is called. Its default behavior with ajava.lang.System.gc() call is to perform a compaction only if an allocation failure triggered a garbage collection since the last java.lang.System.gc() call.
Supported by: 1.4.1, 1.4.2

-Xnocompactexplicitgc

Never runs compaction when java.lang.System.gc() is called. Its default behavior with ajava.lang.System.gc() call is to perform a compaction only if an allocation failure triggered a garbage collection since the last java.lang.System.gc() call.
Supported by: 1.4.1, 1.4.2

-Xdisableexplicitgc

Converts Java application calls to java.lang.System.gc() into no-ops.
Supported by: 1.4.1, 1.4.2

posted on 2011-08-05 08:20 BeanSoft 阅读(5157) 评论(0)  编辑  收藏 所属分类: JVM

只有注册用户登录后才能发表评论。


网站导航: