The flow will run hourly and fetch data for the previous hour + transform + deliver elsewhere.
I’ve considered using some retry logic on certain tasks, however in a case where say one of my data sources is unreachable for a certain period of time between hours and retries don’t suffice.
Then I thought about using the KV store to stash the last successful time interval, then having a parent flow that will kick off child flow runs for ever hour since the last successful
scheduled_start_time
to ensure delivery of data remains chunked by 1 hour without doing excessive retries