Reputation: 217
I created a cluster in Google Cloud and submitted a spark job. Then I connected to the UI following these instructions: I created an ssh tunnel and used it to open the Hadoop web interface. But the job is not showing up.
Some extra information:
spark-shell
, this "job" does show up in the hadoop web interface.Upvotes: 1
Views: 170
Reputation: 217
The problem was that I was running my jobs in local mode. My code had a .master("local[*]")
that was causing this. After removing it, the jobs showed up in the Hadoop UI as before.
Upvotes: 1