-
- Downloads
[SPARK-15844][CORE] HistoryServer doesn't come up if spark.authenticate = true
## What changes were proposed in this pull request? During history server startup, the spark configuration is examined. If security.authentication is set, log at debug and set the value to false, so that {{SecurityManager}} can be created. ## How was this patch tested? A new test in `HistoryServerSuite` sets the `spark.authenticate` property to true, tries to create a security manager via a new package-private method `HistoryServer.createSecurityManager(SparkConf)`. This is the method used in `HistoryServer.main`. All other instantiations of a security manager in `HistoryServerSuite` have been switched to the new method, for consistency with the production code. Author: Steve Loughran <stevel@apache.org> Closes #13579 from steveloughran/history/SPARK-15844-security.
Showing
- core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala 16 additions, 1 deletion...scala/org/apache/spark/deploy/history/HistoryServer.scala
- core/src/test/scala/org/apache/spark/deploy/history/HistoryServerSuite.scala 14 additions, 3 deletions.../org/apache/spark/deploy/history/HistoryServerSuite.scala
Please register or sign in to comment