Afiq Johari
11/21/2024, 8:00 AMobserved_date = '2024-10-01'
, defined in parameters.yml
, that I use to run the pipeline. At the end of the pipeline, the output is saved to or replaced in a SQL table.
Now, I want to loop over this pipeline for every 5 day from Jan 2022 till October 2024.
Manually, this would require updating the parameters.yml
file each time I want to change the date and rerun the pipeline (kedro run
).
I don't want to introduce a loop directly into the pipeline, as it’s cleaner when observed_date
is treated as a single date rather than a list of dates.
However, I’d like to find a clean way to loop over different dates, running kedro run
for each date.Hall
11/21/2024, 8:00 AMPaul Weiss
11/21/2024, 8:25 AMAfiq Johari
11/21/2024, 8:27 AM