Search code examples
apache-sparkapache-zeppelin

Zeppelin - how to connect to spark ui when spark interpreter configured in local mode


I am using zippelin with spark Interpreter configured with master = local[*]

I need to connect to spark web ui to observe the tasks and the execution DAG. does zippelin provide access to spark web ui with the above configuration?


Solution

  • Local mode means the spark UI will be accessible on the same host as Zeppelin, and unless the UI port is taken (or configured explicitly), UI will use the default 4040 port.

    So, for example, if Zeppelin's host is localhost, try http://localhost:4040