GitHub user roel-w closed a discussion: Catchup=True isn't scheduling any tasks

I'm using the catchup=True parameter to run my dag daily when it hasn't run for 
a few days.

with DAG(
    "ingestion_pbi_data_activities",
    description=__doc__.partition(".")[0],
    doc_md=__doc__,
    default_args=DEFAULT_ARGS,
    schedule_interval="@daily",
    start_date=datetime(2024, 10, 1),
    max_active_runs=1,
    concurrency=2,
    catchup=True,
    tags=TAGS,
) as dag:

![image](https://github.com/user-attachments/assets/d87d9f26-1add-4f80-8b1c-daf8d8c9ea75)

I ran it manually 14/02 and today (17/02) i enabled it again with the idea that 
the catchup would make the intervals that were missing. It did indeed do that, 
but for all but the last one it didn't run any tasks.
Is this intended for the catchup parameter? If so what parameters do i need to 
use to get running tasks for the generated data intervals?

GitHub link: https://github.com/apache/airflow/discussions/46825

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to