diff --git a/docs/_layouts/global.html b/docs/_layouts/global.html index 2e9e4300868fb..8ab077d94c216 100755 --- a/docs/_layouts/global.html +++ b/docs/_layouts/global.html @@ -89,6 +89,8 @@ Deploying
Master URL | Meaning |
---|---|
local | Run Spark locally with one worker thread (i.e. no parallelism at all). |
local[K] | Run Spark locally with K worker threads (ideally, set this to the number of cores on your machine). |
local[*] | Run Spark locally with as many worker threads as logical cores on your machine. |
spark://HOST:PORT | Connect to the given Spark standalone - cluster master. The port must be whichever one your master is configured to use, which is 7077 by default. - |
mesos://HOST:PORT | Connect to the given Mesos cluster. - The port must be whichever one your is configured to use, which is 5050 by default. - Or, for a Mesos cluster using ZooKeeper, use mesos://zk://.... - |
yarn-client | Connect to a YARN cluster in -client mode. The cluster location will be found based on the HADOOP_CONF_DIR variable. - |
yarn-cluster | Connect to a YARN cluster in -cluster mode. The cluster location will be found based on HADOOP_CONF_DIR. - |