-
Team, I have recently started exploring the conductor framework. I have two questions. Q2: What happens if conductor server come back before the task task 2 completion, will that workflow continue execution as is ? Any help will be appreciated. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @rskTech Conductor server manages the state outside in the persistence layer. This means in the above example, the workflow will resume where it left off. However, the task 2 worker when it tries to update the server will receive the failure if the server is down. There are two choices here:
In summary, Conductor server takes care of failures and provides right framework choices. The delivery guarantees for Conductor here is |
Beta Was this translation helpful? Give feedback.
Hi @rskTech
Conductor server manages the state outside in the persistence layer. This means in the above example, the workflow will resume where it left off. However, the task 2 worker when it tries to update the server will receive the failure if the server is down. There are two choices here:
retryCount
for the task is 2 and you can implement the logic to skip running the actual work and just update it to COMPLETED status.