s8sg / goflow

A Golang based high performance, scalable and distributed workflow framework
MIT License
1.06k stars 129 forks source link

[Question] How to restart a flow from where it stopped #84

Open caubechankiu opened 9 months ago

caubechankiu commented 9 months ago

I have a flow with multiple nodes: 1 -> 2 -> 3 -> 4. When this flow is executed, Node 1 done, Node 2 done, Node 3 runs for a long time but eventually forces a stop due to the application shutting down. However, when I restart the application, I want the flow to restart from Node 3, but it does not. How can I achieve this?