We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this client works ith Kerberos authentication i activated in Hive Metastore Service?
The text was updated successfully, but these errors were encountered:
This worked for me (overriding the internal method that provides the tprotocol), provided I'm already performed a kinit:
class KerberosHiveMetastoreClient(HiveMetastoreClient): @staticmethod def _init_protocol(host: str, port: int) -> TBinaryProtocol: transport = TSocket.TSocket(host, int(port)) transport = TTransport.TSaslClientTransport(transport, host=host, service="hive") transport = TTransport.TBufferedTransport(transport) return TBinaryProtocol.TBinaryProtocol(transport)
Sorry, something went wrong.
No branches or pull requests
Does this client works ith Kerberos authentication i activated in Hive Metastore Service?
The text was updated successfully, but these errors were encountered: