python通过thrift方式连接hive问题

发布于 2021-11-17 06:50:53 字数 2671 浏览 794 评论 2

根据某高手前辈的链接安装好thrift和相亲包,执行如下测试脚本出现无法连接的情况。

  1. #!/usr/bin/env python  
  2. import sys  
  3. from hive_service import ThriftHive  
  4. from hive_service.ttypes import HiveServerException  
  5. from thrift import Thrift  
  6. from thrift.transport import TSocket  
  7. from thrift.transport import TTransport  
  8. from thrift.protocol import TBinaryProtocol  
  9.   
  10. def hiveExe(sql):  
  11.   
  12.     try:  
  13.         transport = TSocket.TSocket('127.0.0.1', 10000)   
  14.         transport = TTransport.TBufferedTransport(transport)  
  15.         protocol = TBinaryProtocol.TBinaryProtocol(transport)  
  16.         client = ThriftHive.Client(protocol)  
  17.         transport.open()  
  18.   
  19.   
  20.         client.execute(sql)  
  21.   
  22.         print "The return value is : "   
  23.         print client.fetchAll()  
  24.         print "............"  
  25.         transport.close()  
  26.     except Thrift.TException, tx:  
  27.         print '%s' % (tx.message)  
  28.   
  29. if __name__ == '__main__':  
  30.     hiveExe("select * from t_afan_test") 

错误提示:Could not connect to 127.0.0.1:10000

请高手解救,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丢了幸福的猪 2021-11-21 16:44:57

原来是hive server没启动。执行hive --service hiveserver就可以了

挽清梦 2021-11-20 11:01:05

补充一下,使用的是hive 0.8.1版本,thrift是0.9.0版本。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文