aboutsummaryrefslogtreecommitdiff
path: root/docs/sparkr.md
diff options
context:
space:
mode:
authorFelix Cheung <felixcheung_m@hotmail.com>2016-06-20 13:46:24 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2016-06-20 13:46:24 -0700
commit359c2e827d5682249c009e83379a5ee8e5aa4e89 (patch)
tree1aac6f407a2fac66b44bd4e03672f58d311ee759 /docs/sparkr.md
parentb0f2fb5b9729b38744bf784f2072f5ee52314f87 (diff)
downloadspark-359c2e827d5682249c009e83379a5ee8e5aa4e89.tar.gz
spark-359c2e827d5682249c009e83379a5ee8e5aa4e89.tar.bz2
spark-359c2e827d5682249c009e83379a5ee8e5aa4e89.zip
[SPARK-15159][SPARKR] SparkSession roxygen2 doc, programming guide, example updates
## What changes were proposed in this pull request? roxygen2 doc, programming guide, example updates ## How was this patch tested? manual checks shivaram Author: Felix Cheung <felixcheung_m@hotmail.com> Closes #13751 from felixcheung/rsparksessiondoc.
Diffstat (limited to 'docs/sparkr.md')
-rw-r--r--docs/sparkr.md99
1 files changed, 48 insertions, 51 deletions
diff --git a/docs/sparkr.md b/docs/sparkr.md
index 961bd323fa..023bbcd39c 100644
--- a/docs/sparkr.md
+++ b/docs/sparkr.md
@@ -14,29 +14,24 @@ supports operations like selection, filtering, aggregation etc. (similar to R da
[dplyr](https://github.com/hadley/dplyr)) but on large datasets. SparkR also supports distributed
machine learning using MLlib.
-# SparkR DataFrames
+# SparkDataFrame
-A DataFrame is a distributed collection of data organized into named columns. It is conceptually
+A SparkDataFrame is a distributed collection of data organized into named columns. It is conceptually
equivalent to a table in a relational database or a data frame in R, but with richer
-optimizations under the hood. DataFrames can be constructed from a wide array of sources such as:
+optimizations under the hood. SparkDataFrames can be constructed from a wide array of sources such as:
structured data files, tables in Hive, external databases, or existing local R data frames.
All of the examples on this page use sample data included in R or the Spark distribution and can be run using the `./bin/sparkR` shell.
-## Starting Up: SparkContext, SQLContext
+## Starting Up: SparkSession
<div data-lang="r" markdown="1">
-The entry point into SparkR is the `SparkContext` which connects your R program to a Spark cluster.
-You can create a `SparkContext` using `sparkR.init` and pass in options such as the application name
-, any spark packages depended on, etc. Further, to work with DataFrames we will need a `SQLContext`,
-which can be created from the SparkContext. If you are working from the `sparkR` shell, the
-`SQLContext` and `SparkContext` should already be created for you, and you would not need to call
-`sparkR.init`.
+The entry point into SparkR is the `SparkSession` which connects your R program to a Spark cluster.
+You can create a `SparkSession` using `sparkR.session` and pass in options such as the application name, any spark packages depended on, etc. Further, you can also work with SparkDataFrames via `SparkSession`. If you are working from the `sparkR` shell, the `SparkSession` should already be created for you, and you would not need to call `sparkR.session`.
<div data-lang="r" markdown="1">
{% highlight r %}
-sc <- sparkR.init()
-sqlContext <- sparkRSQL.init(sc)
+sparkR.session()
{% endhighlight %}
</div>
@@ -45,13 +40,13 @@ sqlContext <- sparkRSQL.init(sc)
You can also start SparkR from RStudio. You can connect your R program to a Spark cluster from
RStudio, R shell, Rscript or other R IDEs. To start, make sure SPARK_HOME is set in environment
(you can check [Sys.getenv](https://stat.ethz.ch/R-manual/R-devel/library/base/html/Sys.getenv.html)),
-load the SparkR package, and call `sparkR.init` as below. In addition to calling `sparkR.init`, you
-could also specify certain Spark driver properties. Normally these
+load the SparkR package, and call `sparkR.session` as below. In addition to calling `sparkR.session`,
+ you could also specify certain Spark driver properties. Normally these
[Application properties](configuration.html#application-properties) and
[Runtime Environment](configuration.html#runtime-environment) cannot be set programmatically, as the
driver JVM process would have been started, in this case SparkR takes care of this for you. To set
-them, pass them as you would other configuration properties in the `sparkEnvir` argument to
-`sparkR.init()`.
+them, pass them as you would other configuration properties in the `sparkConfig` argument to
+`sparkR.session()`.
<div data-lang="r" markdown="1">
{% highlight r %}
@@ -59,11 +54,11 @@ if (nchar(Sys.getenv("SPARK_HOME")) < 1) {
Sys.setenv(SPARK_HOME = "/home/spark")
}
library(SparkR, lib.loc = c(file.path(Sys.getenv("SPARK_HOME"), "R", "lib")))
-sc <- sparkR.init(master = "local[*]", sparkEnvir = list(spark.driver.memory="2g"))
+sc <- sparkR.session(master = "local[*]", sparkConfig = list(spark.driver.memory="2g"))
{% endhighlight %}
</div>
-The following options can be set in `sparkEnvir` with `sparkR.init` from RStudio:
+The following Spark driver properties can be set in `sparkConfig` with `sparkR.session` from RStudio:
<table class="table">
<tr><th>Property Name</th><th>Property group</th><th><code>spark-submit</code> equivalent</th></tr>
@@ -91,17 +86,17 @@ The following options can be set in `sparkEnvir` with `sparkR.init` from RStudio
</div>
-## Creating DataFrames
-With a `SQLContext`, applications can create `DataFrame`s from a local R data frame, from a [Hive table](sql-programming-guide.html#hive-tables), or from other [data sources](sql-programming-guide.html#data-sources).
+## Creating SparkDataFrames
+With a `SparkSession`, applications can create `SparkDataFrame`s from a local R data frame, from a [Hive table](sql-programming-guide.html#hive-tables), or from other [data sources](sql-programming-guide.html#data-sources).
### From local data frames
-The simplest way to create a data frame is to convert a local R data frame into a SparkR DataFrame. Specifically we can use `createDataFrame` and pass in the local R data frame to create a SparkR DataFrame. As an example, the following creates a `DataFrame` based using the `faithful` dataset from R.
+The simplest way to create a data frame is to convert a local R data frame into a SparkDataFrame. Specifically we can use `as.DataFrame` or `createDataFrame` and pass in the local R data frame to create a SparkDataFrame. As an example, the following creates a `SparkDataFrame` based using the `faithful` dataset from R.
<div data-lang="r" markdown="1">
{% highlight r %}
-df <- createDataFrame(sqlContext, faithful)
+df <- as.DataFrame(faithful)
-# Displays the content of the DataFrame to stdout
+# Displays the first part of the SparkDataFrame
head(df)
## eruptions waiting
##1 3.600 79
@@ -113,16 +108,15 @@ head(df)
### From Data Sources
-SparkR supports operating on a variety of data sources through the `DataFrame` interface. This section describes the general methods for loading and saving data using Data Sources. You can check the Spark SQL programming guide for more [specific options](sql-programming-guide.html#manually-specifying-options) that are available for the built-in data sources.
+SparkR supports operating on a variety of data sources through the `SparkDataFrame` interface. This section describes the general methods for loading and saving data using Data Sources. You can check the Spark SQL programming guide for more [specific options](sql-programming-guide.html#manually-specifying-options) that are available for the built-in data sources.
-The general method for creating DataFrames from data sources is `read.df`. This method takes in the `SQLContext`, the path for the file to load and the type of data source. SparkR supports reading JSON, CSV and Parquet files natively and through [Spark Packages](http://spark-packages.org/) you can find data source connectors for popular file formats like [Avro](http://spark-packages.org/package/databricks/spark-avro). These packages can either be added by
+The general method for creating SparkDataFrames from data sources is `read.df`. This method takes in the path for the file to load and the type of data source, and the currently active SparkSession will be used automatically. SparkR supports reading JSON, CSV and Parquet files natively and through [Spark Packages](http://spark-packages.org/) you can find data source connectors for popular file formats like [Avro](http://spark-packages.org/package/databricks/spark-avro). These packages can either be added by
specifying `--packages` with `spark-submit` or `sparkR` commands, or if creating context through `init`
you can specify the packages with the `packages` argument.
<div data-lang="r" markdown="1">
{% highlight r %}
-sc <- sparkR.init(sparkPackages="com.databricks:spark-avro_2.11:2.0.1")
-sqlContext <- sparkRSQL.init(sc)
+sc <- sparkR.session(sparkPackages="com.databricks:spark-avro_2.11:3.0.0")
{% endhighlight %}
</div>
@@ -131,7 +125,7 @@ We can see how to use data sources using an example JSON input file. Note that t
<div data-lang="r" markdown="1">
{% highlight r %}
-people <- read.df(sqlContext, "./examples/src/main/resources/people.json", "json")
+people <- read.df("./examples/src/main/resources/people.json", "json")
head(people)
## age name
##1 NA Michael
@@ -147,8 +141,8 @@ printSchema(people)
{% endhighlight %}
</div>
-The data sources API can also be used to save out DataFrames into multiple file formats. For example we can save the DataFrame from the previous example
-to a Parquet file using `write.df` (Until Spark 1.6, the default mode for writes was `append`. It was changed in Spark 1.7 to `error` to match the Scala API)
+The data sources API can also be used to save out SparkDataFrames into multiple file formats. For example we can save the SparkDataFrame from the previous example
+to a Parquet file using `write.df`.
<div data-lang="r" markdown="1">
{% highlight r %}
@@ -158,20 +152,19 @@ write.df(people, path="people.parquet", source="parquet", mode="overwrite")
### From Hive tables
-You can also create SparkR DataFrames from Hive tables. To do this we will need to create a HiveContext which can access tables in the Hive MetaStore. Note that Spark should have been built with [Hive support](building-spark.html#building-with-hive-and-jdbc-support) and more details on the difference between SQLContext and HiveContext can be found in the [SQL programming guide](sql-programming-guide.html#starting-point-sqlcontext).
+You can also create SparkDataFrames from Hive tables. To do this we will need to create a SparkSession with Hive support which can access tables in the Hive MetaStore. Note that Spark should have been built with [Hive support](building-spark.html#building-with-hive-and-jdbc-support) and more details can be found in the [SQL programming guide](sql-programming-guide.html#starting-point-sqlcontext). In SparkR, by default it will attempt to create a SparkSession with Hive support enabled (`enableHiveSupport = TRUE`).
<div data-lang="r" markdown="1">
{% highlight r %}
-# sc is an existing SparkContext.
-hiveContext <- sparkRHive.init(sc)
+sparkR.session()
-sql(hiveContext, "CREATE TABLE IF NOT EXISTS src (key INT, value STRING)")
-sql(hiveContext, "LOAD DATA LOCAL INPATH 'examples/src/main/resources/kv1.txt' INTO TABLE src")
+sql("CREATE TABLE IF NOT EXISTS src (key INT, value STRING)")
+sql("LOAD DATA LOCAL INPATH 'examples/src/main/resources/kv1.txt' INTO TABLE src")
# Queries can be expressed in HiveQL.
-results <- sql(hiveContext, "FROM src SELECT key, value")
+results <- sql("FROM src SELECT key, value")
-# results is now a DataFrame
+# results is now a SparkDataFrame
head(results)
## key value
## 1 238 val_238
@@ -181,19 +174,19 @@ head(results)
{% endhighlight %}
</div>
-## DataFrame Operations
+## SparkDataFrame Operations
-SparkR DataFrames support a number of functions to do structured data processing.
+SparkDataFrames support a number of functions to do structured data processing.
Here we include some basic examples and a complete list can be found in the [API](api/R/index.html) docs:
### Selecting rows, columns
<div data-lang="r" markdown="1">
{% highlight r %}
-# Create the DataFrame
-df <- createDataFrame(sqlContext, faithful)
+# Create the SparkDataFrame
+df <- as.DataFrame(faithful)
-# Get basic information about the DataFrame
+# Get basic information about the SparkDataFrame
df
## SparkDataFrame[eruptions:double, waiting:double]
@@ -207,7 +200,7 @@ head(select(df, df$eruptions))
# You can also pass in column name as strings
head(select(df, "eruptions"))
-# Filter the DataFrame to only retain rows with wait times shorter than 50 mins
+# Filter the SparkDataFrame to only retain rows with wait times shorter than 50 mins
head(filter(df, df$waiting < 50))
## eruptions waiting
##1 1.750 47
@@ -251,7 +244,7 @@ SparkR also provides a number of functions that can directly applied to columns
{% highlight r %}
# Convert waiting time from hours to seconds.
-# Note that we can assign this to a new column in the same DataFrame
+# Note that we can assign this to a new column in the same SparkDataFrame
df$waiting_secs <- df$waiting * 60
head(df)
## eruptions waiting waiting_secs
@@ -263,19 +256,19 @@ head(df)
</div>
## Running SQL Queries from SparkR
-A SparkR DataFrame can also be registered as a temporary table in Spark SQL and registering a DataFrame as a table allows you to run SQL queries over its data.
-The `sql` function enables applications to run SQL queries programmatically and returns the result as a `DataFrame`.
+A SparkDataFrame can also be registered as a temporary view in Spark SQL and that allows you to run SQL queries over its data.
+The `sql` function enables applications to run SQL queries programmatically and returns the result as a `SparkDataFrame`.
<div data-lang="r" markdown="1">
{% highlight r %}
# Load a JSON file
-people <- read.df(sqlContext, "./examples/src/main/resources/people.json", "json")
+people <- read.df("./examples/src/main/resources/people.json", "json")
-# Register this DataFrame as a table.
-registerTempTable(people, "people")
+# Register this SparkDataFrame as a temporary view.
+createOrReplaceTempView(people, "people")
# SQL statements can be run by using the sql method
-teenagers <- sql(sqlContext, "SELECT name FROM people WHERE age >= 13 AND age <= 19")
+teenagers <- sql("SELECT name FROM people WHERE age >= 13 AND age <= 19")
head(teenagers)
## name
##1 Justin
@@ -353,4 +346,8 @@ You can inspect the search path in R with [`search()`](https://stat.ethz.ch/R-ma
- The method `table` has been removed and replaced by `tableToDF`.
- The class `DataFrame` has been renamed to `SparkDataFrame` to avoid name conflicts.
- - The `sqlContext` parameter is no longer required for these functions: `createDataFrame`, `as.DataFrame`, `read.json`, `jsonFile`, `read.parquet`, `parquetFile`, `read.text`, `sql`, `tables`, `tableNames`, `cacheTable`, `uncacheTable`, `clearCache`, `dropTempTable`, `read.df`, `loadDF`, `createExternalTable`
+ - Spark's `SQLContext` and `HiveContext` have been deprecated to be replaced by `SparkSession`. Instead of `sparkR.init()`, call `sparkR.session()` in its place to instantiate the SparkSession. Once that is done, that currently active SparkSession will be used for SparkDataFrame operations.
+ - The parameter `sparkExecutorEnv` is not supported by `sparkR.session`. To set environment for the executors, set Spark config properties with the prefix "spark.executorEnv.VAR_NAME", for example, "spark.executorEnv.PATH"
+ - The `sqlContext` parameter is no longer required for these functions: `createDataFrame`, `as.DataFrame`, `read.json`, `jsonFile`, `read.parquet`, `parquetFile`, `read.text`, `sql`, `tables`, `tableNames`, `cacheTable`, `uncacheTable`, `clearCache`, `dropTempTable`, `read.df`, `loadDF`, `createExternalTable`.
+ - The method `registerTempTable` has been deprecated to be replaced by `createOrReplaceTempView`.
+ - The method `dropTempTable` has been deprecated to be replaced by `dropTempView`.