aboutsummaryrefslogtreecommitdiff
path: root/docs/quick-start.md
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-05-28 15:49:54 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-28 15:49:54 -0700
commit7801d44fd3bcf4d82e6db12574cc42bef15bf0e1 (patch)
tree4e7bb66a520d955d3340e5b47bd546fbfcb6bc1a /docs/quick-start.md
parent82eadc3b07d3f00eebd30811f981016e68cf60bf (diff)
downloadspark-7801d44fd3bcf4d82e6db12574cc42bef15bf0e1.tar.gz
spark-7801d44fd3bcf4d82e6db12574cc42bef15bf0e1.tar.bz2
spark-7801d44fd3bcf4d82e6db12574cc42bef15bf0e1.zip
Organize configuration docs
This PR improves and organizes the config option page and makes a few other changes to config docs. See a preview here: http://people.apache.org/~pwendell/config-improvements/configuration.html The biggest changes are: 1. The configs for the standalone master/workers were moved to the standalone page and out of the general config doc. 2. SPARK_LOCAL_DIRS was missing from the standalone docs. 3. Expanded discussion of injecting configs with spark-submit, including an example. 4. Config options were organized into the following categories: - Runtime Environment - Shuffle Behavior - Spark UI - Compression and Serialization - Execution Behavior - Networking - Scheduling - Security - Spark Streaming Author: Patrick Wendell <pwendell@gmail.com> Closes #880 from pwendell/config-cleanup and squashes the following commits: 93f56c3 [Patrick Wendell] Feedback from Matei 6f66efc [Patrick Wendell] More feedback 16ae776 [Patrick Wendell] Adding back header section d9c264f [Patrick Wendell] Small fix e0c1728 [Patrick Wendell] Response to Matei's review 27d57db [Patrick Wendell] Reverting changes to index.html (covered in #896) e230ef9 [Patrick Wendell] Merge remote-tracking branch 'apache/master' into config-cleanup a374369 [Patrick Wendell] Line wrapping fixes fdff7fc [Patrick Wendell] Merge remote-tracking branch 'apache/master' into config-cleanup 3289ea4 [Patrick Wendell] Pulling in changes from #856 106ee31 [Patrick Wendell] Small link fix f7e79bc [Patrick Wendell] Re-organizing config options. 54b184d [Patrick Wendell] Adding standalone configs to the standalone page 592e94a [Patrick Wendell] Stash 29b5446 [Patrick Wendell] Better discussion of spark-submit in configuration docs 2d719ef [Patrick Wendell] Small fix 4af9e07 [Patrick Wendell] Adding SPARK_LOCAL_DIRS docs 204b248 [Patrick Wendell] Small fixes
Diffstat (limited to 'docs/quick-start.md')
-rw-r--r--docs/quick-start.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 33a0df1036..20e17ebf70 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -252,11 +252,11 @@ we initialize a SparkContext as part of the program.
We pass the SparkContext constructor a
[SparkConf](api/scala/index.html#org.apache.spark.SparkConf)
object which contains information about our
-application. We also call sc.addJar to make sure that when our application is launched in cluster
-mode, the jar file containing it will be shipped automatically to worker nodes.
+application.
-This file depends on the Spark API, so we'll also include an sbt configuration file, `simple.sbt`
-which explains that Spark is a dependency. This file also adds a repository that Spark depends on:
+Our application depends on the Spark API, so we'll also include an sbt configuration file,
+`simple.sbt` which explains that Spark is a dependency. This file also adds a repository that
+Spark depends on:
{% highlight scala %}
name := "Simple Project"