Is there a way to quickly start running an existin...
# prefect-community
j
Is there a way to quickly start running an existing flow starting with a task in the middle of the dependency graph? (treating like all its dependencies have already been met)
d
Hi @Jasono! Not at the moment. We’d like to support running arbitrary tasks in the graph (and downstream) at some point in the future
For now, if this is something you think you might need often, you can pass a parameter to your flow and have tasks raise
SKIP
signals if the parameter is
True
j
Thanks for your response. As an alternative, is there a way to re-run a subset of tasks from a successfully completed run?
I see, let me look into that.
d
You could set the task you’re thinking of to
Pending
and change the flow to a
Scheduled
state
Downstream dependencies should re-run
j
oh..that sounds promising
Thank you.
d
Anytime!
Sorry, a
Scheduled
state
Edited above as well
j
got it.
d
I would set all downstream tasks to
Pending
as well just to be safe
j
Okay. will do