aboutsummaryrefslogtreecommitdiff
path: root/docs/running-on-mesos.md
diff options
context:
space:
mode:
authorSergiusz Urbaniak <sur@mesosphere.io>2016-03-09 18:10:01 -0800
committerAndrew Or <andrew@databricks.com>2016-03-09 18:10:01 -0800
commita4a0addccffb7cd0ece7947d55ce2538afa54c97 (patch)
treea0b9e95ecc43737c1e42025611714f4801927587 /docs/running-on-mesos.md
parent5f7dbdba6fec7615d3813365228ea093585e91f0 (diff)
downloadspark-a4a0addccffb7cd0ece7947d55ce2538afa54c97.tar.gz
spark-a4a0addccffb7cd0ece7947d55ce2538afa54c97.tar.bz2
spark-a4a0addccffb7cd0ece7947d55ce2538afa54c97.zip
[SPARK-13492][MESOS] Configurable Mesos framework webui URL.
## What changes were proposed in this pull request? Previously the Mesos framework webui URL was being derived only from the Spark UI address leaving no possibility to configure it. This commit makes it configurable. If unset it falls back to the previous behavior. Motivation: This change is necessary in order to be able to install Spark on DCOS and to be able to give it a custom service link. The configured `webui_url` is configured to point to a reverse proxy in the DCOS environment. ## How was this patch tested? Locally, using unit tests and on DCOS testing and stable revision. Author: Sergiusz Urbaniak <sur@mesosphere.io> Closes #11369 from s-urbaniak/sur-webui-url.
Diffstat (limited to 'docs/running-on-mesos.md')
-rw-r--r--docs/running-on-mesos.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/running-on-mesos.md b/docs/running-on-mesos.md
index 912a010812..3a832de95f 100644
--- a/docs/running-on-mesos.md
+++ b/docs/running-on-mesos.md
@@ -390,6 +390,22 @@ See the [configuration page](configuration.html) for information on Spark config
</ul>
</td>
</tr>
+<tr>
+ <td><code>spark.mesos.driver.webui.url</code></td>
+ <td><code>(none)</code></td>
+ <td>
+ Set the Spark Mesos driver webui_url for interacting with the framework.
+ If unset it will point to Spark's internal web UI.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.mesos.dispatcher.webui.url</code></td>
+ <td><code>(none)</code></td>
+ <td>
+ Set the Spark Mesos dispatcher webui_url for interacting with the framework.
+ If unset it will point to Spark's internal web UI.
+ </td>
+</tr>
</table>
# Troubleshooting and Debugging