Hello everyone, is there a way to manually run a P...
# prefect-server
s
Hello everyone, is there a way to manually run a Prefect flow from the middle of the schematic in Prefect Server(Prefect Cloud)? Sometimes my flow fails and I need to skip tasks and run from the middle.
k
Hey @Sumit Kumar Rai, retrying will only run failed tasks. If you want to only run the midpoint onwards, you can either apply caching to the first tasks, or you would need to package the midway onwards as it’s own subflow that can be triggered with a
StartFlowRun
task
s
I use ECSRun to run my flows, does the caching work on it?
k
Caching is a Prefect thing you have to apply to the task so it will work with all RunConfigs. These states will be stored in the Prefect database