aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala/spark/scheduler/ActiveJob.scala
blob: 105eaecb22e5dd5dcd84edb93e730d90c60a26fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package spark.scheduler

import spark.TaskContext

import java.util.Properties

/**
 * Tracks information about an active job in the DAGScheduler.
 */
private[spark] class ActiveJob(
    val runId: Int,
    val finalStage: Stage,
    val func: (TaskContext, Iterator[_]) => _,
    val partitions: Array[Int],
    val callSite: String,
    val listener: JobListener,
    val properties: Properties) {

  val numPartitions = partitions.length
  val finished = Array.fill[Boolean](numPartitions)(false)
  var numFinished = 0
}