`
乡里伢崽
  • 浏览: 109114 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

hive的常见问题

    博客分类:
  • hive
 
阅读更多
1.     org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:10000
问题:hive --service hiveserver  启动hiveserver服务
解决方法:端口被占用  ,kill 该端口进程或者重新制定端口 hive --service hiveserver -p 10001
2.     Error in metadata: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.metastore.HiveMetaStoreClient

解决方法:./hive -hiveconf hive.root.logger=DEBUG,console

输出错误日志,进行修改。一般都是hive用户mysql库权限问题。
3.       Error: dl failure on line 864
Error: failed /home/app/jdk1.7.0_21/jre/lib/i386/client/libjvm.so, because /home/app/jdk1.7.0_21/jre/lib/i386/client/libjvm.so: cannot restore segment prot after reloc: Permission denied

解决方法: /usr/sbin/setenforce 0

4.       运行Hadoop程序 时,出现  Filesystem closed异常。

通过查证是设置了缓存。需要取消缓存。

通过修改配置文件core-site.xml:

<property>

<name>fs.hdfs.impl.disable.cache</name>

<value>true</value>

</property>

程序仍然出现上述问题。

在程序中,加上这条语句:JobConf  jobConf.set("fs.hdfs.impl.disable.cache", "true");

程序运行成功。

5    Failed with exception Unable to move sourcehdfs://vmtmstorm01:8020/test to destination hdfs://vmtmstorm01:8020/user/hive/warehouse/ptest/name=ww/test
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.MoveTask
     原因:由于hive的用户权限问题,hive在源目录或者是目的目录没有操作的权限
6.  Unable to instantiate org.apache.hadoop.hive.metastore.HiveMetaStoreClie
    1.可能是mysql权限不够
     2.可能是元数据服务未启动或hive服务未启动
7.Caused by: org.apache.thrift.protocol.TProtocolException: Required field 'serverProtocolVersion' is unset! Struct:TOpenSessionResp(status:TStatus(statusCode:SUCCESS_STATUS), serverProtocolVersion:null, sessionHandle:TSessionHandle(sessionId:THandleIdentifier(guid:A0 3F 2D 35 DD BD 47 6C 80 B6 36 83 1A DB 60 4C, secret:F6 13 B5 E3 20 65 48 F5 9A F4 0F 04 A2 FC 30 B2)), configuration:{})
  原因:因为hive的hiveserver版本和包不一致
8.ClassNotFoundException HttpRequestInterceptor。。。
原因:这几个 jar 在 solr 3.6 的发行包中并没有集成,需要从这里下载
http://archive.apache.org/dist/httpcomponents/httpclient/binary/httpcomponents-client-4.1.3-bin.zip
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics