You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is that SparkConf is not thread-safe; so it was possible
for the executor thread to try to read the configuration while the
context thread was modifying it. In my tests this caused the executor
to consistently miss the "spark.driver.port" config and fail tests.
Long term, it would probably be better to investigate using a concurrent
map implementation in SparkConf (instead of a HashMap).
0 commit comments