Connect to Impala using impyla client with Kerberos auth

后端 未结 7 1317
栀梦
栀梦 2021-01-01 03:23

I\'m on a W8 machine, where I use Python (Anaconda distribution) to connect to Impala in our Hadoop cluster using the

7条回答
  •  一个人的身影
    2021-01-01 04:05

    For me, the following connection parameters worked. I did not have to install any additional packages in python.

    connect(host="your_host", port=21050, auth_mechanism='GSSAPI', timeout=100000, use_ssl=False, ca_cert=None, ldap_user=None, ldap_password=None, kerberos_service_name='impala')
    

提交回复
热议问题