trigger_dag_run
Initiate a new DAG run in Apache Airflow, optionally passing configuration, logical date, run ID, or note.
Instructions
Trigger a new run of a DAG.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | The DAG to run. | |
| conf | No | Optional run configuration passed to the DAG. | |
| logical_date | No | Optional ISO-8601 logical date; defaults to now. | |
| dag_run_id | No | Optional explicit run id; Airflow generates one if omitted. | |
| note | No | Optional note attached to the run. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_run_id | Yes | ||
| dag_id | No | ||
| state | No | ||
| run_type | No | ||
| logical_date | No | ||
| execution_date | No | ||
| start_date | No | ||
| end_date | No | ||
| external_trigger | No | ||
| note | No |