0

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

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 而不是我的密码进行连接。

4

1 回答 1

0

看来您正在尝试使用该库:https ://github.com/cloudera/impyla

请查看README.md中的Usage部分:

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()
...
...
于 2019-03-28T09:04:21.323 回答