https://prefect.io logo
a

Adam Roderick

07/11/2019, 12:59 PM
Thanks! It's all looking good. I have some questions about top-level orchestration. It looks like Cloud is what I am really after, where I can attach a schedule to a flow and Cloud handles kicking it off at the right time(s). If I am self-hosting using Core, would you suggest I kick off a process that will be always on and will just wait until the scheduled time?
@Chris White I think your Marvin daily standup is a similar scenario to what I am looking for. I'll read through it in detail.
I see part 2... digging in
c

Chris White

07/11/2019, 4:29 PM
Hey Adam! So for simply running a single flow on a schedule, you can attach a schedule to your flow and call
flow.run()
<-- that will actually wait until scheduled start times arrive
a

Adam Roderick

07/11/2019, 5:36 PM
That's how I was thinking about it--just have a simple daemon or something always on that calls flow.run() with the schedule. Thanks!
c

Chris White

07/11/2019, 5:36 PM
anytime!