JVM问题解决之旅(三)

今天a服务顺利的跑了一天,晚上打开服务器一看内存使用率低于平时,非常异常。top一看,原来是mysql挂掉了。。。
但是这样也好,至少拿到了一天的GC log。download到本地后打开,查看最后的一条:

{Heap before GC invocations=1405 (full 3):
 def new generation   total 15936K, used 15617K [0x00000000ed400000, 0x00000000ee540000, 0x00000000f3800000)
  eden space 14208K,  99% used [0x00000000ed400000, 0x00000000ee1df8a8, 0x00000000ee1e0000)
  from space 1728K,  81% used [0x00000000ee390000, 0x00000000ee4f0d80, 0x00000000ee540000)
  to   space 1728K,   0% used [0x00000000ee1e0000, 0x00000000ee1e0000, 0x00000000ee390000)
 tenured generation   total 35188K, used 23302K [0x00000000f3800000, 0x00000000f5a5d000, 0x0000000100000000)
   the space 35188K,  66% used [0x00000000f3800000, 0x00000000f4ec1900, 0x00000000f4ec1a00, 0x00000000f5a5d000)
 Metaspace       used 50126K, capacity 53260K, committed 53504K, reserved 1095680K
  class space    used 7028K, capacity 7576K, committed 7680K, reserved 1048576K
2021-03-15T21:57:51.287+0800: 118701.261: [GC (Allocation Failure)  38919K->25177K(51124K), 0.0070226 secs]
Heap after GC invocations=1406 (full 3):
 def new generation   total 15936K, used 845K [0x00000000ed400000, 0x00000000ee540000, 0x00000000f3800000)
  eden space 14208K,   0% used [0x00000000ed400000, 0x00000000ed400000, 0x00000000ee1e0000)
  from space 1728K,  48% used [0x00000000ee1e0000, 0x00000000ee2b3500, 0x00000000ee390000)
  to   space 1728K,   0% used [0x00000000ee390000, 0x00000000ee390000, 0x00000000ee540000)
 tenured generation   total 35188K, used 24332K [0x00000000f3800000, 0x00000000f5a5d000, 0x0000000100000000)
   the space 35188K,  69% used [0x00000000f3800000, 0x00000000f4fc30e8, 0x00000000f4fc3200, 0x00000000f5a5d000)
 Metaspace       used 50126K, capacity 53260K, committed 53504K, reserved 1095680K
  class space    used 7028K, capacity 7576K, committed 7680K, reserved 1048576K
}

可以看到full gc了三次,本次gc又有1000k的对象进入老年代,新老年带的比例是1:2,整个日志文件非常大,从invocations这个数据看,昨天中午到现在以及进行了1406次gc,可见普通gc非常频繁(在gc日志中,只有2种gc)这里可以想到的调优方式是:调大新生代,可以有效的减少普通gc次数,也让每次晋升更难一点。
接下来关注几次full gc的节点:
第一次:

{Heap before GC invocations=35 (full 0):
 def new generation   total 9792K, used 1591K [0x00000000ed400000, 0x00000000edea0000, 0x00000000f3800000)
  eden space 8704K,  14% used [0x00000000ed400000, 0x00000000ed5318a0, 0x00000000edc80000)
  from space 1088K,  33% used [0x00000000edd90000, 0x00000000eddec5e8, 0x00000000edea0000)
  to   space 1088K,   0% used [0x00000000edc80000, 0x00000000edc80000, 0x00000000edd90000)
 tenured generation   total 21888K, used 10494K [0x00000000f3800000, 0x00000000f4d60000, 0x0000000100000000)
   the space 21888K,  47% used [0x00000000f3800000, 0x00000000f423f8f0, 0x00000000f423fa00, 0x00000000f4d60000)
 Metaspace       used 20088K, capacity 21106K, committed 21248K, reserved 1067008K
  class space    used 2750K, capacity 2979K, committed 3072K, reserved 1048576K
2021-03-14T12:59:40.970+0800: 10.944: [Full GC (Metadata GC Threshold)  12085K->9545K(31680K), 0.0370012 secs]
Heap after GC invocations=36 (full 1):
 def new generation   total 9920K, used 0K [0x00000000ed400000, 0x00000000edec0000, 0x00000000f3800000)
  eden space 8832K,   0% used [0x00000000ed400000, 0x00000000ed400000, 0x00000000edca0000)
  from space 1088K,   0% used [0x00000000edca0000, 0x00000000edca0000, 0x00000000eddb0000)
  to   space 1088K,   0% used [0x00000000eddb0000, 0x00000000eddb0000, 0x00000000edec0000)
 tenured generation   total 21888K, used 9545K [0x00000000f3800000, 0x00000000f4d60000, 0x0000000100000000)
   the space 21888K,  43% used [0x00000000f3800000, 0x00000000f4152788, 0x00000000f4152800, 0x00000000f4d60000)
 Metaspace       used 20088K, capacity 21106K, committed 21248K, reserved 1067008K
  class space    used 2750K, capacity 2979K, committed 3072K, reserved 1048576K
}

第二次

{Heap before GC invocations=62 (full 1):
 def new generation   total 9920K, used 5711K [0x00000000ed400000, 0x00000000edec0000, 0x00000000f3800000)
  eden space 8832K,  59% used [0x00000000ed400000, 0x00000000ed919bc0, 0x00000000edca0000)
  from space 1088K,  44% used [0x00000000edca0000, 0x00000000edd1a360, 0x00000000eddb0000)
  to   space 1088K,   0% used [0x00000000eddb0000, 0x00000000eddb0000, 0x00000000edec0000)
 tenured generation   total 21888K, used 15942K [0x00000000f3800000, 0x00000000f4d60000, 0x0000000100000000)
   the space 21888K,  72% used [0x00000000f3800000, 0x00000000f4791a68, 0x00000000f4791c00, 0x00000000f4d60000)
 Metaspace       used 33145K, capacity 35304K, committed 35416K, reserved 1079296K
  class space    used 4627K, capacity 5048K, committed 5120K, reserved 1048576K
2021-03-14T12:59:49.955+0800: 19.928: [Full GC (Metadata GC Threshold)  21654K->15501K(31808K), 0.0743291 secs]
Heap after GC invocations=63 (full 2):
 def new generation   total 11712K, used 0K [0x00000000ed400000, 0x00000000ee0b0000, 0x00000000f3800000)
  eden space 10432K,   0% used [0x00000000ed400000, 0x00000000ed400000, 0x00000000ede30000)
  from space 1280K,   0% used [0x00000000ede30000, 0x00000000ede30000, 0x00000000edf70000)
  to   space 1280K,   0% used [0x00000000edf70000, 0x00000000edf70000, 0x00000000ee0b0000)
 tenured generation   total 25840K, used 15501K [0x00000000f3800000, 0x00000000f513c000, 0x0000000100000000)
   the space 25840K,  59% used [0x00000000f3800000, 0x00000000f47236f8, 0x00000000f4723800, 0x00000000f513c000)
 Metaspace       used 33145K, capacity 35304K, committed 35416K, reserved 1079296K
  class space    used 4627K, capacity 5048K, committed 5120K, reserved 1048576K
}

第三次

{Heap before GC invocations=1399 (full 2):
 def new generation   total 11712K, used 11709K [0x00000000ed400000, 0x00000000ee0b0000, 0x00000000f3800000)
  eden space 10432K, 100% used [0x00000000ed400000, 0x00000000ede30000, 0x00000000ede30000)
  from space 1280K,  99% used [0x00000000ede30000, 0x00000000edf6f520, 0x00000000edf70000)
  to   space 1280K,   0% used [0x00000000edf70000, 0x00000000edf70000, 0x00000000ee0b0000)
 tenured generation   total 25840K, used 24915K [0x00000000f3800000, 0x00000000f513c000, 0x0000000100000000)
   the space 25840K,  96% used [0x00000000f3800000, 0x00000000f5054e50, 0x00000000f5055000, 0x00000000f513c000)
 Metaspace       used 47117K, capacity 50234K, committed 50432K, reserved 1093632K
  class space    used 6558K, capacity 7137K, committed 7168K, reserved 1048576K
2021-03-15T21:57:04.135+0800: 118654.108: [GC (Allocation Failure)  36624K->26401K(37936K), 0.0091020 secs]
2021-03-15T21:57:04.144+0800: 118654.118: [Full GC (Allocation Failure)  26401K->21112K(37936K), 0.1259435 secs]
Heap after GC invocations=1400 (full 3):
 def new generation   total 15936K, used 0K [0x00000000ed400000, 0x00000000ee540000, 0x00000000f3800000)
  eden space 14208K,   0% used [0x00000000ed400000, 0x00000000ed400000, 0x00000000ee1e0000)
  from space 1728K,   0% used [0x00000000ee1e0000, 0x00000000ee1e0000, 0x00000000ee390000)
  to   space 1728K,   0% used [0x00000000ee390000, 0x00000000ee390000, 0x00000000ee540000)
 tenured generation   total 35188K, used 21112K [0x00000000f3800000, 0x00000000f5a5d000, 0x0000000100000000)
   the space 35188K,  59% used [0x00000000f3800000, 0x00000000f4c9e298, 0x00000000f4c9e400, 0x00000000f5a5d000)
 Metaspace       used 46970K, capacity 49994K, committed 50432K, reserved 1093632K
  class space    used 6532K, capacity 7089K, committed 7168K, reserved 1048576K
}

前2次是由于元空间不足导致的,最后一次是正经的堆空间不足进行回收。从几次full gc看来,总有55%左右的对象无法回收,应该是一直要使用的对象(太难了)。这样看如果按之前的想法去调整堆比例也既有可能造成老年代空间不足。
目前还是要看dump文件,看看能不能尽量减少老年代对象以及之前回收耗时过久的原因。以目前的进度来看,明天晚上应该可以拿到一个不错的dump文件。拭目以待~

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容