Run DAG

Teradata Developer Guides

ft:locale
en-US
ft:lastEdition
2026-08-18

DAGs will run in one of two ways:

  1. When they are triggered either manually or via the API
  2. On a defined schedule, which is defined as part of the DAG example_teradata_operator is defined to trigger as manually. To define a schedule, any valid crontab schedule value can be passed to the schedule argument.
with DAG(
  dag_id="my_daily_dag",
  schedule="0 0 * * *"
  ) as dag: