Hi. I am trying to connect to HiveServer2 using HTTPS mode and also SSL enabled. For HTTPS mode, I had used the below connection URL:
jdbc:hive2://<host>:<port>/<db>?hive.server2.transport.mode=http;hive.server2.thrift.http.path=<http_endpoint>
and for SSL I had used:
jdbc:hive2://<host>:<port>/<db>?hive.server2.transport.mode=http;hive.server2.thrift.http.path=<http_endpoint>
How to use both of this in a single connection URL?