viirya commented on a change in pull request #34874:
URL: https://github.com/apache/spark/pull/34874#discussion_r767476322
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala
##########
@@ -145,6 +146,20 @@ private[spark] object Config extends Logging {
.checkValue(_ >= 0, "Interval should be non-negative")
.createWithDefault(0)
+ object ExecutorRollPolicy extends Enumeration {
+ val ID, ADD_TIME, TOTAL_GC_TIME, TOTAL_DURATION = Value
+ }
+
+ val EXECUTOR_ROLL_POLICY =
+ ConfigBuilder("spark.kubernetes.executor.rollPolicy")
+ .doc("Executor roll policy: Valid values are ID, ADD_TIME, TOTAL_GC_TIME
(default), " +
+ "and TOTAL_DURATION")
Review comment:
Do we need to describe the meanings for each policy like the description
does?
--
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]