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

impyla-0.14.2.2安装注意事项

时间:2019-12-29 23:55:00      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:from   eve   启动   amp   python   ISE   inux   erro   sasl   

### impyla-0.14.2.2安装注意事项
+ 环境
- Red Hat Enterprise Linux Server release 6.8 (Santiango)
- Python3.7.3

+ impyla-0.14.2.2依赖包
- yum install -y python-devel cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib
- thrift - 0.11.0
- sasl - 0.2.1
- thrift_sasl - 0.2.1
- thriftpy - 0.3.9

+ 问题1: syntax error near ‘async=True)‘ 报错
- hiveserver2.py 第340行 `async=True)` 改为 `async2=True)` (估计async是关键字)
- hiveserver2.py 第1022行 `async=False)` 改为 `async2=False)`
- hiveserver2.py 第1026行 `=async)` 改为 `=async2)`

+ 问题2:‘TSocket‘ object has no attribute ‘isOpen‘报错?
- 把 thrift_sasl 从0.3.0换成0.2.1版本 (在python2.7中0.3.0没问题)

+ 问题3:No protocol version header
- connect函数需要指定 user, password, auth_mechanism = ‘PLAIN‘

+ 问题4:报错sasl/sasl.h: No such file or directory
- yum install -y cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib

+ 示例

```python

from impala.dbapi import connect

conn = connect(host=‘hadoop01‘, port=10000, user=‘hadoop‘, password=‘hadoop‘, auth_mechanism = ‘PLAIN‘)
cursor = conn.cursor()
cursor.execute(‘SHOW DATABASES‘)
for result in cursor.fetchall():
print(result)

```

+ 注意启动hiveserver2
```bash
nohup hive --service hiveserver2 > nohup.hiveserver2&
```

impyla-0.14.2.2安装注意事项

标签:from   eve   启动   amp   python   ISE   inux   erro   sasl   

原文地址:https://www.cnblogs.com/zhaohz/p/12117102.html

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