TaskInstance

data class TaskInstance(val dagId: String, val runId: String, val taskId: String, val mapIndex: Int?, val tryNumber: Int)

Identifies the task instance that is currently executing.

Constructors

Link copied to clipboard
constructor(dagId: String, runId: String, taskId: String, mapIndex: Int?, tryNumber: Int)

Properties

Link copied to clipboard

ID of the parent Dag.

Link copied to clipboard

Index of a mapped task.

Link copied to clipboard

ID of the Dag run that triggered this instance.

Link copied to clipboard

ID of the task within the Dag.

Link copied to clipboard

How many times this task instance has been attempted.