码迷,mamicode.com
首页 > 其他好文 > 详细

CMS两个常见问题

时间:2020-09-15 21:02:24      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:oca   app   memory   dir   fragment   epo   方案   垃圾   tin   

CMS的问题

  1. Memory Fragmentation(内存碎片过多,导致启动单线程serial垃圾回收器)

    -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction 默认为0 指的是经过多少次FGC才进行压缩

  2. Floating Garbage(浮动垃圾,并发回收垃圾的同时产生新的垃圾,但并未被回收)

    Concurrent Mode Failure 产生:if the concurrent collector is unable to finish reclaiming the unreachable objects before the tenured generation fills up, or if an allocation cannot be satisfiedwith the available free space blocks in the tenured generation, then theapplication is paused and the collection is completed with all the applicationthreads stopped

    解决方案:降低触发CMS的阈值

    PromotionFailed

    解决方案类似,保持老年代有足够的空间

    –XX:CMSInitiatingOccupancyFraction 92% 可以降低这个值,让CMS保持老年代足够的空间

CMS两个常见问题

标签:oca   app   memory   dir   fragment   epo   方案   垃圾   tin   

原文地址:https://www.cnblogs.com/gabin/p/13599491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!