-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-13492][MESOS] Configurable Mesos framework webui URL. #11369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,7 +47,7 @@ private[mesos] class MesosClusterDispatcherArguments(args: Array[String], conf: | |
| port = value | ||
| parse(tail) | ||
|
|
||
| case ("--webui-port" | "-p") :: IntParam(value) :: tail => | ||
| case ("--webui-port") :: IntParam(value) :: tail => | ||
|
||
| webUiPort = value | ||
| parse(tail) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the problem with the /?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After discussing with @s-urbaniak directly, I see it's a bug where the link doesn't work when application proxy is set.