spark.scheduler.TaskSet.scala Maven / Gradle / Ivy
The newest version!
package spark.scheduler
/**
* A set of tasks submitted together to the low-level TaskScheduler, usually representing
* missing partitions of a particular stage.
*/
private[spark] class TaskSet(val tasks: Array[Task[_]], val stageId: Int, val attempt: Int, val priority: Int) {
val id: String = stageId + "." + attempt
override def toString: String = "TaskSet " + id
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy