Trying to get serde working with zeppelin and/or the spark shell. Running the following in either
val links =
sqlContext.sql("SELECT * FROM test_links LIMIT 10")
links.show()
Produces an error
ERROR hive.log: error in initSerDe: java.lang.ClassNotFoundException Class org.apache.hive.hcatalog.data.JsonSerDe not found
java.lang.ClassNotFoundException: Class org.apache.hive.hcatalog.data.JsonSerDe not found
Tried added this to /etc/spark/conf/hive-site.xml
<property>
<name>hive.aux.jars.path</name>
<value>file:///usr/hdp/2.5.3.0-37/hive2/lib/hive-hcatalog-core.jar</value>
</property>
But am still getting the error.