aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gummelt <mgummelt@mesosphere.io>2016-04-07 17:41:37 -0700
committerAndrew Or <andrew@databricks.com>2016-04-07 17:41:55 -0700
commit30e980ad8e6443dddd54f3c2d48b3904499545cf (patch)
tree27a498bd5b9657f4ab4c9e47f1876b1e5c1a7150
parent49fb237081bbca0d811aa48aa06f4728fea62781 (diff)
downloadspark-30e980ad8e6443dddd54f3c2d48b3904499545cf.tar.gz
spark-30e980ad8e6443dddd54f3c2d48b3904499545cf.tar.bz2
spark-30e980ad8e6443dddd54f3c2d48b3904499545cf.zip
[DOCS][MINOR] Remove sentence about Mesos not supporting cluster mode.
Docs change to remove the sentence about Mesos not supporting cluster mode. It was not. Author: Michael Gummelt <mgummelt@mesosphere.io> Closes #12249 from mgummelt/fix-mesos-cluster-docs.
-rw-r--r--docs/submitting-applications.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/submitting-applications.md b/docs/submitting-applications.md
index 66025ed6ba..100ff0b147 100644
--- a/docs/submitting-applications.md
+++ b/docs/submitting-applications.md
@@ -58,8 +58,7 @@ for applications that involve the REPL (e.g. Spark shell).
Alternatively, if your application is submitted from a machine far from the worker machines (e.g.
locally on your laptop), it is common to use `cluster` mode to minimize network latency between
-the drivers and the executors. Note that `cluster` mode is currently not supported for
-Mesos clusters. Currently only YARN supports cluster mode for Python applications.
+the drivers and the executors. Currently only YARN supports cluster mode for Python applications.
For Python applications, simply pass a `.py` file in the place of `<application-jar>` instead of a JAR,
and add Python `.zip`, `.egg` or `.py` files to the search path with `--py-files`.