dongjoon-hyun commented on a change in pull request #35422:
URL: https://github.com/apache/spark/pull/35422#discussion_r800989349
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
##########
@@ -675,6 +677,21 @@ private[spark] object Config extends Logging {
.checkValue(value => value > 0, "Maximum number of pending pods should
be a positive integer")
.createWithDefault(Int.MaxValue)
+ val KUBERNETES_JOB_MIN_MEMORY =
ConfigBuilder("spark.kubernetes.job.min.memory")
+ .doc("The minimum memory for running the job, in MiB unless otherwise
specified. This only " +
+ s"applicable when you enable `${classOf[VolcanoFeatureStep].getName}`
feature step in" +
+ " `spark.kubernetes.driver.pod.featureSteps`.")
+ .version("3.3.0")
+ .bytesConf(ByteUnit.MiB)
+ .createWithDefaultString("3g")
+ val KUBERNETES_JOB_MIN_CPU = ConfigBuilder("spark.kubernetes.job.min.cpu")
Review comment:
Please add a new line between two configurations.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]