This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from airflow.operators.dummy_operator import DummyOperator | |
from airflow.models import DAG | |
from airflow.utils.dates import days_ago | |
with DAG( | |
"big_dag", | |
start_date=days_ago(1), | |
schedule_interval=None, |