我正在尝试使用 Impyla 库从 Python 连接到 Impala 集群
集群不需要用户名和密码,但需要使用 SSLKeyStore 和 SSLKeyStorePwd。
尚不清楚在 Impyla 中需要为 SSL 密钥库使用哪些参数
我试图运行的代码:
IMPALA_HOST='<server>'
IMPALA_PORT='21050'
from impala.dbapi import connect
conn = connect(host=IMPALA_HOST,
port=IMPALA_PORT,
auth_mechanism='NOSASL',
use_http_transport=False,
http_path='',
SSLKeyStorePwd='',
SSLKeyStore=''
use_ssl=True)
cursor = conn.cursor()
cursor.execute('show databases')
for row in cursor:
print(row)
我不确定如何输入 ssl 密钥库路径和密码