aboutsummaryrefslogtreecommitdiff
path: root/docs/spark-standalone.md
diff options
context:
space:
mode:
authorAndrew Or <andrewor14@gmail.com>2014-08-05 00:39:07 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-08-05 00:39:07 -0700
commita646a365e3beb8d0cd7e492e625ce68ee9439a07 (patch)
treef3c5ee29f72f8086e2d93e503fab1ede8abe9e79 /docs/spark-standalone.md
parent4fde28c2063f673ec7f51d514ba62a73321960a1 (diff)
downloadspark-a646a365e3beb8d0cd7e492e625ce68ee9439a07.tar.gz
spark-a646a365e3beb8d0cd7e492e625ce68ee9439a07.tar.bz2
spark-a646a365e3beb8d0cd7e492e625ce68ee9439a07.zip
[SPARK-2857] Correct properties to set Master / Worker ports
`master.ui.port` and `worker.ui.port` were never picked up by SparkConf, simply because they are not prefixed with "spark." Unfortunately, this is also currently the documented way of setting these values. Author: Andrew Or <andrewor14@gmail.com> Closes #1779 from andrewor14/master-worker-port and squashes the following commits: 8475e95 [Andrew Or] Update docs to reflect changes in configs 4db3d5d [Andrew Or] Stop using configs that don't actually work
Diffstat (limited to 'docs/spark-standalone.md')
-rw-r--r--docs/spark-standalone.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/spark-standalone.md b/docs/spark-standalone.md
index 2fb30765f3..293a7ac9bc 100644
--- a/docs/spark-standalone.md
+++ b/docs/spark-standalone.md
@@ -314,7 +314,7 @@ configure those ports.
<td>Standalone Cluster Master</td>
<td>8080</td>
<td>Web UI</td>
- <td><code>master.ui.port</code></td>
+ <td><code>spark.master.ui.port</code></td>
<td>Jetty-based</td>
</tr>
<tr>
@@ -338,7 +338,7 @@ configure those ports.
<td>Worker</td>
<td>8081</td>
<td>Web UI</td>
- <td><code>worker.ui.port</code></td>
+ <td><code>spark.worker.ui.port</code></td>
<td>Jetty-based</td>
</tr>
<!-- Cluster interactions -->