Python Hive-PyHive连接重置问题

时间:2018-08-29 15:57:23

标签: python hive pyhive

我可以使用PyHive库从Python连接到蜂巢。在使用PyHive从蜂巢中获取数据时,我遇到了问题Connection reset by peer

建立连接后,我正在使用来自Python的PyHive从hive获取数据。连接已成功完成,但是在从配置单元中获取数据时,连接运行了5分钟以上,然后抛出connection reset by peer

from pyhive import 
hive conn = hive.Connection(host="host1", port="",auth="", database="",kerberos_service_name="") #successfully connection established 
cur = conn.cursor() cur.execute(query1) #(sometimes it works and some times it throws "Connection reset by peer" if query runs more than 5min)

1 个答案:

答案 0 :(得分:0)

无法识别来自服务器站点的连接可能导致此错误。您能尝试使用 pkill -9 pid 杀死python进程吗?因为如果您尝试同时使用两个python脚本连接到配置单元,则可能会导致无法识别连接。