jetty - How do I change the spark.ui.port? - Stack Overflow
--conf spark.ui.port=4050
is a Spark 1.1 feature. You can set it in your codes, such as:
val conf = new SparkConf().setAppName(s"SimpleApp").set("spark.ui.port", "4050") val sc = new SparkContext(conf)
Read full article from jetty - How do I change the spark.ui.port? - Stack Overflow
No comments:
Post a Comment