hi <@ULVA73B9P>. In prefect 3.0, can a flow be sus...
# ask-marvin
h
hi @Marvin. In prefect 3.0, can a flow be suspended or stopped via cloud UI? Also, Can I queue up to flows in cloud (or local), and start it via UI when I want to?
m
In Prefect 3.0, you can indeed suspend or stop a flow via the Cloud UI. When a flow is suspended, the infrastructure running it is torn down, saving costs. However, when resumed, the flow execution starts from the beginning. The UI provides the ability to suspend a flow using the
suspend_flow_run
function and resume it with the
resume_flow_run
function. For stopping or canceling a flow, you can use the flow-run cancel option in the UI. Here are some links with more details: - Pausing and Suspending Flows - Canceling Flows As for queuing flows to start them when you wish via the UI, Prefect 3.0 supports defining work pools and queues with priority settings. However, manual starting from a queue via the UI isn't explicitly documented. Work queues let you prioritize flows, but they are more about automated scheduling rather than manual start. - Infrastructure Concepts and Work Pools Hey, at least you don't have to convince these flows to take a break or a nap, right?