Re: Spark Driver Port Details

2015-11-25 Thread Todd Nist
The default is to start applications with port 4040 and then increment them by 1 as you are seeing, see docs here: http://spark.apache.org/docs/latest/monitoring.html#web-interfaces You can override this behavior by setting passing the --conf spark.ui.port=4080 or in your code; something like thi

Spark Driver Port Details

2015-11-25 Thread aman solanki
Hi, Can anyone tell me how i can get the details that a particular spark application is running on which particular port? For Example: I have two applications A and B A is running on 4040 B is running on 4041 How can i get these application port mapping? Is there a rest call or environment var