Reputation: 1
I want to add GeoSpark library to Apache Spark. How do I add GeoSpark library from Spark shell?
Upvotes: 0
Views: 922
Reputation: 3228
$ ./bin/spark-shell --master local[4] --jars code.jar
--jars option will distribute your local custom jar to cluster automatically.
Upvotes: 3