You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How long to wait until an executor is available for locality-aware delay scheduling (for `PROCESS_LOCAL`, `NODE_LOCAL`, and `RACK_LOCAL`[TaskLocalities](scheduler/TaskSchedulerImpl.md#TaskLocality)) unless locality-specific setting is set (i.e., [spark.locality.wait.process](#spark.locality.wait.process), [spark.locality.wait.node](#spark.locality.wait.node), and [spark.locality.wait.rack](#spark.locality.wait.rack), respectively)
*`TaskSetManager` is requested for the [locality wait](scheduler/TaskSetManager.md#getLocalityWait) (of `TaskLocality.RACK_LOCAL`)
299
+
253
300
## <spanid="spark.logConf"> spark.logConf
254
301
255
302
Default: `false`
@@ -789,26 +836,6 @@ a| [[spark.launcher.port]]
789
836
| spark.launcher.secret
790
837
a| [[spark.launcher.secret]]
791
838
792
-
| spark.locality.wait
793
-
a| [[spark.locality.wait]] For locality-aware delay scheduling for `PROCESS_LOCAL`, `NODE_LOCAL`, and `RACK_LOCAL` scheduler:TaskSchedulerImpl.md#TaskLocality[TaskLocalities] when locality-specific setting is not set.
794
-
795
-
Default: `3s`
796
-
797
-
| spark.locality.wait.node
798
-
a| [[spark.locality.wait.node]] Scheduling delay for `NODE_LOCAL` scheduler:TaskSchedulerImpl.md#TaskLocality[TaskLocality]
799
-
800
-
Default: The value of <<spark.locality.wait, spark.locality.wait>>
801
-
802
-
| spark.locality.wait.process
803
-
a| [[spark.locality.wait.process]] Scheduling delay for `PROCESS_LOCAL` scheduler:TaskSchedulerImpl.md#TaskLocality[TaskLocality]
804
-
805
-
Default: The value of <<spark.locality.wait, spark.locality.wait>>
806
-
807
-
| spark.locality.wait.rack
808
-
a| [[spark.locality.wait.rack]] Scheduling delay for `RACK_LOCAL` scheduler:TaskSchedulerImpl.md#TaskLocality[TaskLocality]
809
-
810
-
Default: The value of <<spark.locality.wait, spark.locality.wait>>
811
-
812
839
| spark.logging.exceptionPrintInterval
813
840
a| [[spark.logging.exceptionPrintInterval]] How frequently to reprint duplicate exceptions in full (in millis).
Copy file name to clipboardexpand all lines: docs/scheduler/TaskSchedulerImpl.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -384,11 +384,13 @@ createTaskSetManager(
384
384
maxTaskFailures: Int):TaskSetManager
385
385
```
386
386
387
-
`createTaskSetManager` creates a [TaskSetManager](TaskSetManager.md).
387
+
`createTaskSetManager` creates a [TaskSetManager](TaskSetManager.md) (with this `TaskSchedulerImpl`, the given [TaskSet](TaskSet.md) and the `maxTaskFailures`).
388
+
389
+
---
388
390
389
391
`createTaskSetManager` is used when:
390
392
391
-
*`TaskSchedulerImpl` is requested to [submits tasks](#submitTasks)
393
+
*`TaskSchedulerImpl` is requested to [submit a TaskSet](#submitTasks)
392
394
393
395
## <spanid="handleFailedTask"> Notifying TaskSetManager that Task Failed
0 commit comments