December 2016
Beginner to intermediate
392 pages
8h 13m
English
In this recipe, we'll look at the process of writing and executing a standalone application in SparkR.
To step through this recipe, you will need a running Spark Cluster either in pseudo distributed mode or in one of the distributed modes, that is, standalone, YARN, or Mesos. Also, install RStudio. Please refer to the Installing R recipe for details on the installation of R.
In this recipe, we'll create standalone application using Spark-1.6.0 and Spark-2.0.2:
SPARK_HOME is set in environment as follows:if (nchar(Sys.getenv("SPARK_HOME")) < 1) { Sys.setenv(SPARK_HOME = "/home/padmac/bigdata/spark-1.6.0-bin- hadoop2.6") } ...
Read now
Unlock full access