Created on 04-03-2018 09:37 PM - edited 08-17-2019 09:20 PM
I am creating my first application using Scala IDE. I got some errors.
I need to import the jars related to spark. can anyone suggest the jars
Created 04-04-2018 05:00 AM
You need to add spark-core as dependency. It will download all required jar files.
You can refer code from https://github.com/databricks/learning-spark.
It has WordCount sample program. https://github.com/databricks/learning-spark/blob/master/mini-complete-example/src/main/scala/com/or...
Steps:
1. Clone of download repo from https://github.com/databricks/learning-spark
2. Extract the repo. Go to mini-complete-example directory.
3. Build the Project
mvn clean install
4. Import project into IDE and run WordCount.scala.
Thanks
Shubham