You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Thomas (JIRA)" <ji...@apache.org> on 2017/01/03 15:04:58 UTC

[jira] [Created] (SPARK-19061) Master Web UI does not link to correct Application UI in standalone cluster mode

Thomas created SPARK-19061:
------------------------------

             Summary: Master Web UI does not link to correct Application UI in standalone cluster mode
                 Key: SPARK-19061
                 URL: https://issues.apache.org/jira/browse/SPARK-19061
             Project: Spark
          Issue Type: Bug
          Components: Web UI
    Affects Versions: 2.1.0
            Reporter: Thomas


I have the same issue as in SPARK-11782. Here are the steps to reproduce it:

* On node1, launch master:
{code}
./bin/start-master.sh
{code}
The Master UI is available at http://node1:8080 and shows spark://node1:7077 as master URL and spark://node1:6066 as master REST URL.
* On node2, launch worker:
{code}
./bin/start-slave.sh spark://node1:7077
{code}

* Upload myapp.jar to both nodes.
* On *node1*, submit a job in standalone cluster mode:
{code}
./bin/spark-submit --master spark://node1:6066 --deploy-mode cluster --supervise --class myMainClass --total-executor-cores 1 myapp.jar
{code}

What I get is:
* A driver associated with my job, running on node2 (as expected in cluster mode).
* The Application UI accessible on http://node2:4040

The two following links are wrong:
* On the Master UI, under "Running Application", column "Name" link on "myMainClass" points to http://node1:4040
* On the Master UI, under "Running Application", column "Application ID", on the page of my application ID (http://node1:8080/app/?appId=myAppId), the "Application Detail UI" link also points to http://node1:4040

The problem is that http://node1:4040 does not lead anywhere. The expected behaviour would be to replace those two links by http://node2:4040 (which is where the Application UI actually is).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org