如何使用keytab连接到impala?

jxct1oxe  于 2021-06-26  发布在  Impala
关注(0)|答案(1)|浏览(486)

我正试图通过一个python脚本建立到impala数据库的连接,使用一个keytab,而不是普通的用户/密码组合,但是我无法在网上找到任何教程,我目前使用的代码是:

conn = connect(host=impala_host, port=impala_port, use_ssl=True, auth_mechanism="PLAIN", user=username, password=pwd, database=impala_db)
cursor = conn.cursor()

但是,我想使用keytab而不是密码进行连接。

iyzzxitl

iyzzxitl1#

似乎您正在尝试使用该库:https://github.com/cloudera/impyla
请查看readme.md中的用法部分:

from impala.dbapi import connect
conn = connect(host='my.host.com', port=21050)
cursor = conn.cursor()
cursor.execute('SELECT * FROM mytable LIMIT 100')
print cursor.description  # prints the result set's schema
results = cursor.fetchall()
...
...

相关问题