Kyle Sutton created SPARK-12482: ----------------------------------- Summary: CLONE - Spark fileserver not started on same IP as using spark.driver.host Key: SPARK-12482 URL: https://issues.apache.org/jira/browse/SPARK-12482 Project: Spark Issue Type: Bug Components: Spark Core Affects Versions: 1.2.1 Reporter: Kyle Sutton
I initially inquired about this here: http://mail-archives.apache.org/mod_mbox/spark-user/201503.mbox/%3ccalq9kxcn2mwfnd4r4k0q+qh1ypwn3p8rgud1v6yrx9_05lv...@mail.gmail.com%3E If the Spark driver host has multiple IPs and spark.driver.host is set to one of them, I would expect the fileserver to start on the same IP. I checked HttpServer and the jetty Server is started the default IP of the machine: https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/HttpServer.scala#L75 Something like this might work instead: {code:title=HttpServer.scala#L75} val server = new Server(new InetSocketAddress(conf.get("spark.driver.host"), 0)) {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org