October 2015
Beginner to intermediate
254 pages
5h 31m
English
In this recipe, we'll take a look at how to bring Spark into our project (using SBT) and how Spark works internally.
The code for this recipe can be found at https://github.com/arunma/ScalaDataAnalysisCookbook/blob/master/chapter1-spark-csv/build.sbt.
Let's now throw some Spark dependencies into our build.sbt file so that we can start playing with them in subsequent recipes. For now, we'll just focus on three of them: Spark Core, Spark SQL, and Spark MLlib. We'll take a look at a host of other Spark dependencies as we proceed further in this book:
build.sbt.Read now
Unlock full access