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

    https://github.com/apache/spark/pull/21092#discussion_r192241796
  
    --- Diff: 
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/features/BasicDriverFeatureStep.scala
 ---
    @@ -48,7 +48,8 @@ private[spark] class BasicDriverFeatureStep(
       private val driverMemoryMiB = conf.get(DRIVER_MEMORY)
       private val memoryOverheadMiB = conf
         .get(DRIVER_MEMORY_OVERHEAD)
    -    .getOrElse(math.max((MEMORY_OVERHEAD_FACTOR * driverMemoryMiB).toInt, 
MEMORY_OVERHEAD_MIN_MIB))
    +    .getOrElse(math.max((conf.get(MEMORY_OVERHEAD_FACTOR).getOrElse(0.1) * 
driverMemoryMiB).toInt,
    --- End diff --
    
    Isn't it easier to set it here as such, since it should default to `0.1` 
unless the non-JVM check modifies it to`0.4`? 


---

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

Reply via email to