I want to add a library and use it in Zeppelin (ex. Spark-csv). I succeeded in adding it to Spark and using it by putting my Jar in all nodes and adding spark.jars='path-to-jar' in conf/spark-defaults.conf.
However when I call the library from Zeppelin it doesn't work (class not found). From my understanding Zeppelin do a Spark-submit so if the package is already added in Spark it should work. Also, I tried adding using export
SPARK_SUBMIT_OPTIONS=”--jars
/path/mylib1.jar,/path/mylib2.jar" to zeppelin-env.sh but same problem.
Has anyone suceeded in adding libraries to Zeppelin ? have you seen this problem ?