Github user tgravescs commented on a diff in the pull request:

    https://github.com/apache/spark/pull/9257#discussion_r43003681
  
    --- Diff: core/src/main/scala/org/apache/spark/SecurityManager.scala ---
    @@ -365,33 +366,37 @@ private[spark] class SecurityManager(sparkConf: 
SparkConf)
        * we throw an exception.
        */
       private def generateSecretKey(): String = {
    -    if (!isAuthenticationEnabled) return null
    -    // first check to see if the secret is already set, else generate a 
new one if on yarn
    -    val sCookie = if (SparkHadoopUtil.get.isYarnMode) {
    -      val secretKey = 
SparkHadoopUtil.get.getSecretKeyFromUserCredentials(sparkSecretLookupKey)
    -      if (secretKey != null) {
    -        logDebug("in yarn mode, getting secret from credentials")
    -        return new Text(secretKey).toString
    +    if (!isAuthenticationEnabled) {
    +      null
    +    } else if (SparkHadoopUtil.get.isYarnMode) {
    +      // In YARN mode, the secure cookie will be created by the driver and 
stashed in the
    +      // user's credentials, where executors can get it. The check for an 
array of size 0
    +      // is because of the test code in YarnSparkHadoopUtilSuite.
    +      val secretKey = 
SparkHadoopUtil.get.getSecretKeyFromUserCredentials(SECRET_LOOKUP_KEY)
    +      if (secretKey == null || secretKey.length == 0) {
    +        val rnd = new SecureRandom()
    +        val length = 
sparkConf.getInt("spark.authenticate.secretBitLength", 256) / 8
    --- End diff --
    
    Also do we want to document this config or did you mean it to be internal 
for now?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to