您的位置:首页 > 大数据 > 人工智能

Allocation Failure

2015-07-16 18:08 441 查看
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: