Running a workflow in Airflow

Running a simple Airflow task

airflow run <dag_id> <task_id> <start_date>
  • Dags are written in Python, but they can use components written in other languages

    - Dags are made up of components (called tasks) to be executed, such as Operators, sensors, etc.