Skip to content
Snippets Groups Projects
Commit a4b5cefc authored by Nishkam Ravi's avatar Nishkam Ravi Committed by Marcelo Vanzin
Browse files

[SPARK-11501][CORE][YARN] Propagate spark.rpc config to executors

spark.rpc is supposed to be configurable but is not currently (doesn't get propagated to executors because RpcEnv.create is done before driver properties are fetched).

Author: Nishkam Ravi <nishkamravi@gmail.com>

Closes #9460 from nishkamravi2/master_akka.
parent 2e86cf1b
No related branches found
No related tags found
No related merge requests found
...@@ -629,6 +629,7 @@ private[spark] object SparkConf extends Logging { ...@@ -629,6 +629,7 @@ private[spark] object SparkConf extends Logging {
name.startsWith("spark.akka") || name.startsWith("spark.akka") ||
(name.startsWith("spark.auth") && name != SecurityManager.SPARK_AUTH_SECRET_CONF) || (name.startsWith("spark.auth") && name != SecurityManager.SPARK_AUTH_SECRET_CONF) ||
name.startsWith("spark.ssl") || name.startsWith("spark.ssl") ||
name.startsWith("spark.rpc") ||
isSparkPortConf(name) isSparkPortConf(name)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment