Github user tgravescs commented on a diff in the pull request:
https://github.com/apache/spark/pull/22288#discussion_r222783407
--- Diff:
core/src/main/scala/org/apache/spark/internal/config/package.scala ---
@@ -597,6 +597,17 @@ package object config {
.checkValue(v => v > 0, "The value should be a positive time value.")
.createWithDefaultString("365d")
+ // Threshold above which we abort the TaskSet if a task could not be
scheduled because of complete
+ // blacklisting.
+ private[spark] val UNSCHEDULABLE_TASKSET_TIMEOUT =
+ ConfigBuilder("spark.scheduler.unschedulableTaskSetTimeout")
+ .doc("The timeout in seconds to wait before aborting a TaskSet to
acquire a new executor " +
--- End diff --
reword to be timeout in seconds to wait to try to acquire a new executor
and schedule a task before aborting....
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]