Reputation: 45
I am trying to access the Application Detail UI of a job submitted to Spark Stand Alone cluster (v 1.4). I submitted using the following command:
./spark-submit --master spark://MASTER:7077 --deploy-mode cluster ....
Seems like the link to "Application Detail UI" (port:4040) is broken. Everything works if I submit locally (remove --deploy-mode cluster
).
Is there a workaround? Thanks in advance.
Upvotes: 1
Views: 134
Reputation: 26
There should be a URL for the application UI printed in the log file. Search for the words "started SparkUI at" and you should find it.
Upvotes: 1