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

Allocation Failure

时间:2015-07-16 21:35:51      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:

up vote 8 down vote accepted

"Allocation Failure" is a cause of GC cycle to kick.

"Allocation Failure" means what no more space left in Eden to allocate object. So, it is normal cause of young GC.

Older JVM were not printing GC cause for minor GC cycles.

"Allocation Failure" is almost only possible cause for minor GC. Another reason for minor GC to kick could be CMS remark phase (if +XX:+ScavengeBeforeRemark is enabled).

 

http://stackoverflow.com/questions/28342736/java-gc-allocation-failure

 

Allocation Failure

标签:

原文地址:http://www.cnblogs.com/jvava/p/4652096.html

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