R frontend for Spark
SparkR is an R package that provides a light-weight frontend to use Apache Spark from R. SparkR exposes the Spark API through the RDD
class and allows users to interactively run jobs from the R shell on a cluster.
NOTE: As of April 2015, SparkR has been officially merged into Apache Spark and is shipping in an upcoming release (1.4) due early summer 2015. You can contribute and follow SparkR developments on the Apache Spark mailing lists and issue tracker.
NOTE: The API from the upcoming Spark release (1.4) will not have the same API as described here. Initial support for Spark in R be focussed on high level operations instead of low level ETL. This may change in the (1.5) version.
SparkR exposes the RDD API of Spark as distributed lists in R. For example we can read an input file from HDFS and process every line using lapply
on a RDD.
sc <- sparkR.init("local")
lines <- textFile(sc, "hdfs://data.txt")
wordsPerLine <- lapply(lines, function(line) { length(unlist(strsplit(line, " "))) })
In addition to lapply
, SparkR also allows closures to be applied on every partition using lapplyWithPartition
. Other supported RDD functions include operations like reduce
, reduceByKey
, groupByKey
and collect
.
SparkR automatically serializes the necessary variables to execute a function on the cluster. For example if you use some global variables in a function passed to lapply
, SparkR will automatically capture these variables and copy them to the cluster. An example of using a random weight vector to initialize a matrix is shown below
lines <- textFile(sc, "hdfs://data.txt")
initialWeights <- runif(n=D, min = -1, max = 1)
createMatrix <- function(line) {
as.numeric(unlist(strsplit(line, " "))) %*% t(initialWeights)
}
# initialWeights is automatically serialized
matrixRDD <- lapply(lines, createMatrix)
SparkR also allows easy use of existing R packages inside closures. The includePackage
command can be used to indicate packages that should be loaded before every closure is executed on the cluster. For example to use the Matrix
in a closure applied on each partition of an RDD, you could run
generateSparse <- function(x) {
# Use sparseMatrix function from the Matrix package
sparseMatrix(i=c(1, 2, 3), j=c(1, 2, 3), x=c(1, 2, 3))
}
includePackage(sc, Matrix)
sparseMat <- lapplyPartition(rdd, generateSparse)
SparkR requires Scala 2.10 and Spark version >= 1.1.0 and depends on the R package testthat
(only required for running unit tests).
DataFrame: DataFrame was introduced in Spark 1.3; the 1.3-compatible SparkR version can be found in the Github repo sparkr-sql branch, which includes a preliminary R API to work with DataFrames. To link SparkR against older versions of Spark, use the archives on this page or the master branch.
For lastest information, please refer to README.
If you wish to try out SparkR, you can use install_github
from the devtools
package to directly install the package.
library(devtools)
install_github("amplab-extras/SparkR-pkg", subdir="pkg")
If you wish to clone the repository and build from source, you can using the following script to build the package locally.
./install-dev.sh
If you have installed it directly from github, you can include the SparkR package and then initialize a SparkContext. For example to run with a local Spark master you can launch R and then run
library(SparkR)
sc <- sparkR.init(master="local")
If you have cloned and built SparkR, you can start using it by launching the SparkR shell with
./sparkR
SparkR also comes with several sample programs in the examples
directory.
To run one of them, use ./sparkR <filename> <args>
. For example:
./sparkR examples/pi.R local[2]
You can also run the unit-tests for SparkR by running
./run-tests.sh
Documentation for package ‘SparkR’
For better tracking and collaboration, issues and TODO items are reported to the Apache Spark JIRA under the component tag "SparkR". For more information, please refer to README.