Hi everyone, when a workflow is launched and finis...
# flyte-support
s
Hi everyone, when a workflow is launched and finishes it's execution there are times where I want to rerun a specific node of this workflow run and it's downstreams/upstreams. Is this currently possible?
f
This is not possible from the ui
You can do it using a notebook
s
Oh I see, thanks. Is there any example I can look at?
f
Hmm you will use flytekit.remote.fetch to construct the new graph sadly
The is because if you delete a data node - the io needs to be satisfied someway
What you are saying is chop off the top and replay from that node to end
This is possible with recover already
s
Hmm, the recover would work for some cases but there is a case where I want rerun a task even if it succeeded. In this case I would have to create a new workflow based on the workflow parent of the task I want to rerun and a launch plan and create an execution for it, right?
f
yes sadly
we would love to know how you think it should wpork