aboutsummaryrefslogtreecommitdiff
path: root/docs/index.md
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-08-31 22:17:40 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-09-01 14:13:15 -0700
commit4f422032e507d698b9c717b5228154d4527a639a (patch)
tree8344eaf7e8721aa3d9e64556694823127fb0942e /docs/index.md
parent4d1cb59fe1dc9181268c8e61fc042990854f83c5 (diff)
downloadspark-4f422032e507d698b9c717b5228154d4527a639a.tar.gz
spark-4f422032e507d698b9c717b5228154d4527a639a.tar.bz2
spark-4f422032e507d698b9c717b5228154d4527a639a.zip
Update docs for new package
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.md b/docs/index.md
index 0ea0e103e4..35a597d7bb 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -3,8 +3,8 @@ layout: global
title: Spark Overview
---
-Apache Spark is a cluster computing system that aims to make data analytics faster to run and faster to write.
-It provides high-level APIs in [Scala](scala-programming-guide.html), [Java](java-programming-guide.html), and [Python](python-programming-guide.html), and a general execution engine that supports rich operator graphs.
+Apache Spark is a fast and general-purpose cluster computing system.
+It provides high-level APIs in [Scala](scala-programming-guide.html), [Java](java-programming-guide.html), and [Python](python-programming-guide.html) that make parallel jobs easy to write, and an optimized engine that supports general computation graphs.
Spark can run on the Apache Mesos cluster manager, Hadoop YARN, Amazon EC2, or without an independent resource manager ("standalone mode").
# Downloading
@@ -24,8 +24,8 @@ For its Scala API, Spark {{site.SPARK_VERSION}} depends on Scala {{site.SCALA_VE
Spark comes with several sample programs in the `examples` directory.
To run one of the samples, use `./run-example <class> <params>` in the top-level Spark directory
(the `run-example` script sets up the appropriate paths and launches that program).
-For example, `./run-example spark.examples.SparkPi` will run a sample program that estimates Pi. Each
-example prints usage help if no params are given.
+For example, try `./run-example org.apache.spark.examples.SparkPi local`.
+Each example prints usage help when run with no parameters.
Note that all of the sample programs take a `<master>` parameter specifying the cluster URL
to connect to. This can be a [URL for a distributed cluster](scala-programming-guide.html#master-urls),