Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

where in livy is the hive configuration the equivalent of %jdbc - hive.url parameter

avatar

where in livy is the hive configuration the equivalent of %jdbc - hive.url parameter. When I am running %livy.sql show tables, I get an empty result. I looked under livy interpreters section in zeppelin and also in ambari livy configs section but did not see an explicit hive url metastore location defined.

1 ACCEPTED SOLUTION

avatar
New Contributor

Hi @azeltov please use the following snippet, which worked for me.

%livy
sc.version
val sqlContext = new org.apache.spark.sql.hive.HiveContext(sc)
%livy.sql
show tables

View solution in original post

2 REPLIES 2

avatar
New Contributor

Hi @azeltov please use the following snippet, which worked for me.

%livy
sc.version
val sqlContext = new org.apache.spark.sql.hive.HiveContext(sc)
%livy.sql
show tables

avatar
Super Collaborator

livy will use hive-site.xml under /etc/spark/conf. Make sure you have correct configuration in that file.