Spark UI on AWS EMR

前端 未结 5 1453
清歌不尽
清歌不尽 2021-02-07 10:41

I am running a AWS EMR cluster with Spark (1.3.1) installed via the EMR console dropdown. Spark is current and processing data but I am trying to find which port has been assign

5条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-07 11:22

    Simply use SSH tunnel On your local machine do:

    ssh -i /path/to/pem -L 3000:ec2-xxxxcompute-1.amazonaws.com:8088 hadoop@ec2-xxxxcompute-1.amazonaws.com

    On your local machine browser hit:

    localhost:3000

提交回复
热议问题