I have searched quite a lot about this but could not find any substantial information about it. My problem is that I have a DAG that should backfill the data from March 2017.
So I have put the start_date: '01-03-2017'. I have also provided schedule_interval as daily. Now, I know that my DAG will start running from March 2017 with a given schedule. But if my dag will follow schedule daily, it will take more than 2 years to reach the current date
I cannot wait for 2 years to get the past data. I want my DAG to complete backfill as soon as possible so that my DAG catches the current time and start scheduling every day. How can I achieve this? Can I provide max_active_runs to some high number to schedule several DAGRuns at the same time?