aboutsummaryrefslogtreecommitdiff
path: root/docs/spark-standalone.md
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-01-07 23:56:04 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-01-08 00:09:12 -0800
commitc78b381e91c9902a1510a2ed4ec5c898b51adfe8 (patch)
treee053e22560836a54d072b08604ddbba74934d8f8 /docs/spark-standalone.md
parentd0533f704681adccc8fe2b814dc9e5082646057a (diff)
downloadspark-c78b381e91c9902a1510a2ed4ec5c898b51adfe8.tar.gz
spark-c78b381e91c9902a1510a2ed4ec5c898b51adfe8.tar.bz2
spark-c78b381e91c9902a1510a2ed4ec5c898b51adfe8.zip
Fixes
Diffstat (limited to 'docs/spark-standalone.md')
-rw-r--r--docs/spark-standalone.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/spark-standalone.md b/docs/spark-standalone.md
index 7da64749b7..ecd642cc60 100644
--- a/docs/spark-standalone.md
+++ b/docs/spark-standalone.md
@@ -151,19 +151,20 @@ You can also pass an option `-c <numCores>` to control the number of cores that
You may also run your application entirely inside of the cluster by submitting your application driver using the submission client. The syntax for submitting applications is as follows:
- ./spark-class org.apache.spark.deploy.client.DriverClient launch
+ ./spark-class org.apache.spark.deploy.Client launch
[client-options] \
<cluster-url> <application-jar-url> <main-class> \
[application-options]
cluster-url: The URL of the master node.
- application-jar-url: Path to a bundled jar including your application and all dependencies. Currently, the URL must be visible from inside of your cluster, for instance, in an HDFS directory.
+ application-jar-url: Path to a bundled jar including your application and all dependencies. Currently, the URL must be globally visible inside of your cluster, for instance, an `hdfs://` path or a `file://` path that is present on all nodes.
main-class: The entry point for your application.
Client Options:
--memory <count> (amount of memory, in MB, allocated for your driver program)
--cores <count> (number of cores allocated for your driver program)
--supervise (whether to automatically restart your driver on application or node failure)
+ --verbose (prints increased logging output)
Keep in mind that your driver program will be executed on a remote worker machine. You can control the execution environment in the following ways: