Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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 Member

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 Member

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.