what does the >> operator do in an Airflow DAG ?
it defines downstream steps or step sequencing. https://stackoverflow.com/questions/52389105/how-operator-defines-task-dependencies-in-airflow In the example below, dbt_run then dot_test
it defines downstream steps or step sequencing. https://stackoverflow.com/questions/52389105/how-operator-defines-task-dependencies-in-airflow In the example below, dbt_run then dot_test
For example to run: dbt run then dbt test You could do this in a Airflow/Python DAG – For those not familiar with Apache Airflow DAG – see the Apache Airflow documentation – basically it is a unit of execution and a python program – notice the DAG simply executes DBT commands from the Airflow …
Using Airflow to execute and schedule a DBT Core function Read More »