How odd is it to register a schedule for a workflow from a different running workflow? We have an a...
o
How odd is it to register a schedule for a workflow from a different running workflow? We have an application where users trigger training of ML models through a web app. Upon triggering that, we would want to register a daily scheduled workflow to be run every day. Does Prefect allow to express that? is there best practices around that?
1
t
Using our API you can configure deployments programmatically. You can define a deployment in python
o
Thanks Taylor! so either using the Prefect CLI or the Prefect REST API or the Prefect Python SDK?
I mean either options would work for registering/configuring a deployment (in my specific example a workflow on a recurring schedule)
t
correct! main thing to know is you can define a deployment in python using the sdk!
o
Great thanks 🙏