【大数据】windows 下python3连接hive
2021-01-06 21:28
标签:cut style sasl title -- sch auth string dep 环境 : windows10 python版本:3.6 hive版本:1.1 亲测可用! pip install bit_array pip install thrift pip install thriftpy pip install pure_sasl pip install --no-deps thrift-sasl==0.2.1 pip install impyla 注意事项 1.重点不要安装sasl,否则会提示报错 卸载方式:pip uninstall sasl 2.在安装过程中,如果出现包安装失败的情况,可以下载whl包进行安装,下载链接:https://www.lfd.uci.edu/~gohlke/pythonlibs/ 安装方式:pip install 包的绝对路径 3.如果在安装过程中,出现任何包安装失败的问题,可以先将之前所有安装过的包统统卸载,再按顺序依次安装一次 这个问题的原因是thrift-sasl版本过高导致的,将其换成0.2.1的版本即可 pip install thrift-sasl==0.2.1 这是由于auth_mechanism设置的问题导致的,加上或将其改为auth_mechanism="PLAIN"即可 修改 thrift-sasl init.py,在第94行之前加上以下语句即可: 这是Windows下采用pyhive连接方式提出的错误,正如前言所述,可能需要修改对应的配置文件,也可能sasl根本就不支持Windows,建议改用impyla形式连接 修改thriftpy包下\parser\parser.py"中第488行代码,将"if url_scheme == ‘‘:" 修改为"if len(url_scheme) 1:"即可注意:impyla 既可以连接impala, 也可以连接hive
impyla安装过程
安装依赖
安装impyla
连接Hive
# -*-coding:utf-8 -*-
from impala.dbapi import connect
conn = connect(host=‘ip‘, port=port, database=‘default‘, user=‘user_name‘, password=‘password‘, auth_mechanism="PLAIN")
cur = conn.cursor()
cur.execute(‘show tables‘)
print(cur.fetchall())
问题集锦
impyla (0.14.0) ERROR - ‘TSocket‘ object has no attribute ‘isOpen‘
thriftpy2.protocol.exc.TProtocolException: TProtocolException(type=4)
TypeError: can’t concat str to bytes
if (type(body) is str):
body = body.encode()
thrift.transport.TTransport.TTransportException: Could not start SASL: b‘Error in sasl_client_start (-4) SASL(-4): no mechanism available: Unable to find a callback: 2‘
thriftpy.parser.exc.ThriftParserError: ThriftPy does not support generating module with path in protocol ‘c‘
转载自 https://www.aitolearn.com/article/9a06a8e1ff5e4252aa2373eb3cc4fed8
【大数据】windows 下python3连接hive
标签:cut style sasl title -- sch auth string dep
原文地址:https://www.cnblogs.com/TurboWay/p/12975034.html
文章标题:【大数据】windows 下python3连接hive
文章链接:http://soscw.com/index.php/essay/40555.html