Member since
11-30-2016
85
Posts
7
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3223 | 03-15-2017 07:33 AM |
08-14-2018
11:57 AM
2 Kudos
Hey @J Koppole, I connected to hive using JayDeBeApi python package. To establish JDBC Connection, Download Hive Uber JDBC Jar created by @Tim Veil. Steps to connect has been mentioned on JayDeBeApi link: I am pasting sample code snippet below import jaydebeapi;
conn = jaydebeapi.connect("org.apache.hive.jdbc.HiveDriver","<hive_jdbc_url>",["<username>", "<password>"],"/path/to/hive-jdbc-uber-<version>.jar")
curs = conn.cursor();
curs.execute("select * from some_table");
curs.close()
... View more
02-19-2018
08:56 AM
looking for something like this : http://localhost:21000/api/atlas/entities?type=type_name This rest endpoint was available in Atlas rest API v1, Not sure how to get the same in Atlas Rest API v2. Thank you, Subash
... View more
01-15-2018
10:35 AM
Hi, As per the docs , I am trying the rest endpoint to fetch all entities in my browser. Rest Endpoint is : http://localhost:21000/api/atlas/v2/entity/bulk I tried multiple combinations of filters, but till now haven't found any luck. Let me know what am I missing here. Please suggest a good doc which can be referred. Ty, Subash
... View more
Labels:
- Labels:
-
Apache Atlas
11-15-2017
12:23 PM
Hi, I would like to connect to Hive via Knox using JDBC connection in python. Please note that my cluster is secured and SSL is enabled and we use LDAP to Login to Hive via Knox.I am able to establish the connection to Hive using DbViz and JDBC driver of Hive. I had gone through a lot of links and haven't found any good examples as well as recommendations to connect hive using python. Thank you in Advance, Subash
... View more
Labels:
- Labels:
-
Apache Hive
-
Apache Knox
11-14-2017
02:07 PM
Thank you @Parag Redij
... View more
10-14-2017
02:14 PM
Thank you @Ashutosh Mestry.
... View more
10-12-2017
05:24 PM
Hi, I am trying to build a script to capture lineage (Atlas) when Data moves out of Hive. In order to capture the HQL statements executed in Hive( MR / Tez) by other applications, I am looking for some API endpoint to capture real time events occurring in hive. Thank you, Subash
... View more
Labels:
- Labels:
-
Apache Atlas
-
Apache Hive
-
Apache YARN
10-06-2017
09:05 AM
Hey @Shashant , You can try out ranger audit logs especially for Hive. Ranger captures all the column and table name. Few customization in code will help to get the full hive query. Subash
... View more
10-05-2017
01:17 PM
Which URL need to be passed to get_user_query(job_tracker_url) function.
... View more
08-10-2017
09:45 AM
Thank you @Bryan Bende, I will try Storm.
... View more