impyla挂起作为Pandas()

inb24sb2  于 2021-06-26  发布在  Impala
关注(0)|答案(0)|浏览(158)

我有问题加载数据从 Impala 使用 Impala 。同样的代码也适用于Python2.7,现在当我转到Python3.7时,它停止了。

connect = connect(host=host_name, port=21050, user=login, password=passwd, use_ssl=True, auth_mechanism='LDAP')
cursor = connect.cursor()
cursor.execute('USE ' + db_name)

奇怪的是,当使用count调用select时,它正在工作

cursor.execute('select count(*) from table')
tab_len = as_pandas(cursor)

但有了这个代码就不是了

cursor.execute('select * from table LIMIT 100')
data = as_pandas(cursor)

我查过了,它正在堆积

cursor.fetchall()

没有错误,仍在加载。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题