[QUESTION]: Version 3: How custom worker will acknowledge to conductor server if it's reading (executing) a task #2258
-
|
In conductor version 3, https://github.com/Netflix/conductor/blob/main/CHANGELOG.md How worker can acknowledge to Conductor server about execution of task? Is there any new API that worker need to use to acknowledge Connector servicer. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
There is no need to acknowledge that task execution has begun. Task state changes to |
Beta Was this translation helpful? Give feedback.
There is no need to acknowledge that task execution has begun. Task state changes to
IN_PROGRESSwhen/pollreturns. The worker simply needs to call/updateTaskwith the desired status for the task.ackwas necessary when the default Worker implementation in the client maintained its own in-memory queue. The client no longer has its own queue andackwas deprecated in2.xand removed in3.x.