Apache Airflow is a platform created by the community to programmatically author, schedule and monitor workflows.Apache Airflow is used to orchestrate complex workflows by allowing users to author, schedule, and monitor tasks using code.
Steps
airflow.Server: Connection definition for Airflow
airflow.Task:
airflow.getDag: Get basic information about a DAG
airflow.filterDags: List all DAGs
airflow.updateDag: Mark the DAG as active or paused
airflow.getDagRun: Get details of a DAG run
airflow.listDagRuns: List DAG runs detail
airflow.getTaskInstance: Get details of a task instance
airflow.triggerDagRun: Trigger a new DAG run
airflow.modifyDagRun: Modify a DAG run state
airflow.deleteDagRun: Delete a DAG run










