I would like to have some tasks running every day and others running every week inside the same DAG, is it possible or should I create a different DAG for different schedule tasks ?
I have seen the solution of using ShortCircuitOperator
or AirflowSkipException
and I was wondering if it is a good practice or a means of bypassing limitations of Airflow. Finally my question would be : is using ShortCircuitOperator
or AirflowSkipException
acceptable or using a new DAG is preferable ?