Apache Airflow · Example Payload

Airflow Task Instance History Response Example

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Airflow Task Instance History Response Example is an example object payload from Apache Airflow, with 26 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

task_iddag_iddag_run_idmap_indexstart_dateend_datedurationstatetry_numbermax_triestask_display_namedag_display_namehostnameunixnamepoolpool_slotsqueuepriority_weightoperatoroperator_namequeued_whenscheduled_whenpidexecutorexecutor_configdag_version

Example Payload

Raw ↑
{
  "task_id": "abc123",
  "dag_id": "abc123",
  "dag_run_id": "abc123",
  "map_index": 1,
  "start_date": "example-value",
  "end_date": "example-value",
  "duration": "example-value",
  "state": "success",
  "try_number": 1,
  "max_tries": 1,
  "task_display_name": "example-name",
  "dag_display_name": "example-name",
  "hostname": "example-name",
  "unixname": "example-name",
  "pool": "example-value",
  "pool_slots": 1,
  "queue": "example-value",
  "priority_weight": "example-value",
  "operator": "example-value",
  "operator_name": "example-name",
  "queued_when": "example-value",
  "scheduled_when": "example-value",
  "pid": "abc123",
  "executor": "example-value",
  "executor_config": "example-value",
  "dag_version": "example-value"
}