常用JVM配置参数

Trace跟踪参数

-verbose:gc
-XX:+printGC
//可以打印GC的简要信息

例如:(GC简要信息)

[GC 4790K->374K(15872K), 0.0001606 secs]
[GC 4790K->374K(15872K), 0.0001474 secs]
[GC 4790K->374K(15872K), 0.0001563 secs]
[GC 4790K->374K(15872K), 0.0001682 secs]

-XX:+PrintGCDetails
-打印GC详细信息
-XX:+PringtGCTimeStamps
-打印CG发生的时间戳

[GC[DefNew: 4416K->0K(4928K), 0.0001897 secs] 4790K->374K(15872K), 0.0002232 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] 
-XX:+PrintGCDetails的输出
Heap
 def new generation (新生代15M)  total 13824K, used 11223K(已使用) [0x27e80000, 0x28d80000, 0x28d80000) (低边界起始位置,当前边界,最高边界) 
  eden(对象出生) space 12288K,  91% used [0x27e80000, 0x28975f20, 0x28a80000)
  from(survivor区) space 1536K,   0% used [0x28a80000, 0x28a80000, 0x28c00000)
  to(survivor区)   space 1536K,   0% used [0x28c00000, 0x28c00000, 0x28d80000)
 tenured generation(老年代 5M)   total 5120K, used 0K [0x28d80000, 0x29280000, 0x34680000)
   the space 5120K,   0% used [0x28d80000, 0x28d80000, 0x28d80200, 0x29280000)
 compacting perm gen(永久区、方法区)  total 12288K, used 142K [0x34680000, 0x35280000, 0x38680000)
   the space 12288K,   1% used [0x34680000, 0x346a3a90, 0x346a3c00, 0x35280000)
    ro space 10240K,  44% used [0x38680000, 0x38af73f0, 0x38af7400, 0x39080000)
    rw space 12288K,  52% used [0x39080000, 0x396cdd28, 0x396cde00, 0x39c80000)

一般GC是打印在控制台的,如果想重定向到文本文件当中,可以使用命令参数-Xloggc:log/gc.log,帮助开发人员分析问题。

-XX:+PrintHeapAtGC
每一次GC后,都打印堆信息



Heap before GC invocations=0 (full 0):
 def new generation   total 3072K, used 2752K [0x33c80000, 0x33fd0000, 0x33fd0000)
  eden space 2752K, 100% used [0x33c80000, 0x33f30000, 0x33f30000)
  from space 320K,   0% used [0x33f30000, 0x33f30000, 0x33f80000)
  to   space 320K,   0% used [0x33f80000, 0x33f80000, 0x33fd0000)
 tenured generation   total 6848K, used 0K [0x33fd0000, 0x34680000, 0x34680000)
   the space 6848K,   0% used [0x33fd0000, 0x33fd0000, 0x33fd0200, 0x34680000)
 compacting perm gen  total 12288K, used 143K [0x34680000, 0x35280000, 0x38680000)
   the space 12288K,   1% used [0x34680000, 0x346a3c58, 0x346a3e00, 0x35280000)
    ro space 10240K,  44% used [0x38680000, 0x38af73f0, 0x38af7400, 0x39080000)
    rw space 12288K,  52% used [0x39080000, 0x396cdd28, 0x396cde00, 0x39c80000)
//GC之前
**[GC[DefNew: 2752K->320K(3072K), 0.0014296 secs] 2752K->377K(9920K), 0.0014604 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]** 
//GC之后 
Heap after GC invocations=1 (full 0):
 def new generation   total 3072K, used 320K [0x33c80000, 0x33fd0000, 0x33fd0000)
  eden space 2752K,   0% used [0x33c80000, 0x33c80000, 0x33f30000)
  from space 320K, 100% used [0x33f80000, 0x33fd0000, 0x33fd0000)
  to   space 320K,   0% used [0x33f30000, 0x33f30000, 0x33f80000)
 tenured generation   total 6848K, used 57K [0x33fd0000, 0x34680000, 0x34680000)
   the space 6848K,   0% used [0x33fd0000, 0x33fde458, 0x33fde600, 0x34680000)
 compacting perm gen  total 12288K, used 143K [0x34680000, 0x35280000, 0x38680000)
   the space 12288K,   1% used [0x34680000, 0x346a3c58, 0x346a3e00, 0x35280000)
    ro space 10240K,  44% used [0x38680000, 0x38af73f0, 0x38af7400, 0x39080000)
    rw space 12288K,  52% used [0x39080000, 0x396cdd28, 0x396cde00, 0x39c80000)

调用前Eden是100%,调用后Eden为0%,完全清空。
老年代(tenured generation)从0K到57K意味着,有对象从新生代转移到老年代

–XX:+TraceClassLoading

-监控类的加载

[Loaded java.lang.Object from shared objects file]
//先加载Object  所有类的父类
[Loaded java.io.Serializable from shared objects file]
[Loaded java.lang.Comparable from shared objects file]
[Loaded java.lang.CharSequence from shared objects file]
[Loaded java.lang.String from shared objects file]
[Loaded java.lang.reflect.GenericDeclaration from shared objects file]
[Loaded java.lang.reflect.Type from shared objects file]

堆的分配参数

-Xmx -Xms
指定最大堆 和最小堆
最多使用多少空间 , 最少启动多少空间

-Xmn
设置新生代的大小(后面跟多少M)

-XX:NewRatio
新生代(eden+2*s)和老年代(不包含永久去)的比值
例如 设为4
表示 新生代:老年代 = 1 : 4,即年轻带占堆的1/5

-XX:SurvivorRatio
设置两个Survivor区和Eden的比
比如 设为8(默认)
表示 两个Survivor:eden = 2:8,即一个Survivor占年轻代的1/10

-XX:+HeapDumpOnOutOfMemoryError
OOM时导出堆到文件

-XX:+HeapDumpPath
导出OOM的路径

Xmx20m -Xms5m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=d:/a.dump
表示最大堆20M 最小堆5M, 在OOM 时导出文件到 d盘下的a.dump中。

//这段代码会产生OutOfMemory
 Vector v=new Vector();
        for(int i=0;i<25;i++)
            v.add(new byte[1*1024*1024]);

产生OutOfMemory可能是堆的空间不足,对象太多导致的。

-XX:OnOutOfMemoryError
在OOM时,执行一个脚本
“-XX:OnOutOfMemoryError=D:/tools/jdk1.7_40/bin/printstack.bat %p“
当程序OOM时,在D:/a.txt中将会生成线程的dump
可以在OOM时,发送邮件,甚至是重启程序

官方推荐新生代占堆的3/8
幸存代占新生代的1/10

永久区分配参数

-XX:PermSize -XX:MaxPermSize
设置永久区的初始空间和最大空间
他们表示,一个系统可以容纳多少个类型

把永久区撑满也会造成OOM,并不一定是堆空间满才会。
如果堆空间没有用完也抛出了OOM,有可能是永久区导致的
如下代码

for(int i=0;i<100000;i++){
    CglibBean bean = new CglibBean("geym.jvm.ch3.perm.bean"+i,new HashMap());
}

栈大小分配参数

-Xss
通常只有几百K
决定了函数调用的深度
每个线程都有独立的栈空间
局部变量、参数 分配在栈上

要想线程多,尽量将栈的大小减小。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值