码迷,mamicode.com
首页 > 编程语言 > 详细

Hive java.lang.OutOfMemoryError: unable to create new native thread异常

时间:2014-11-13 16:09:46      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   os   sp   java   文件   on   

   最近在同一时刻执行多个hive -e 操作时,出现了java.lang.OutOfMemoryError: unable to create new native thread异常 或Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.metastore.HiveMetaStoreClient。折磨许久,后来发现是该机器没有设置创建线程数量造成的,默认是1024,需要改系统配置文件,设大才行。

 

 

修改/etc/security/limits.conf

*    soft    nofile    65536
*    hard    nofile    65536
username  soft nproc  32000
username hard nproc  32000
username soft stack  1024
username hard stack  1024

修改配置文件需重新登陆客户端,即可生效。

Hive java.lang.OutOfMemoryError: unable to create new native thread异常

标签:style   io   color   ar   os   sp   java   文件   on   

原文地址:http://www.cnblogs.com/weiqiang-liu/p/4094981.html

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