Member since
03-03-2017
15
Posts
0
Kudos Received
0
Solutions
08-30-2018
06:22 AM
1 Kudo
Hi, you have to create an ssl_context before you open the connection and point it to the CA certificate: import ssl
context = ssl.create_default_context(cafile=cmcertpath)
api = ApiResource( cm_host, '7183', username=username, password=password, use_tls=True, ssl_context=context)
... View more
07-11-2018
11:09 PM
In below mentioned post when I fire query like below, works fine select * from working.ddr2_raw_actual_test where dest_icao='NULL' But with actual file it is not working. I am getting resultset in hive which is correct but same query not able to get in impala. Thanks and Regards, Naveen Srikanth D
... View more