[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_PROGRESS
when/poll
returns. The worker simply needs to call/updateTask
with the desired status for the task.ack
was necessary when the default Worker implementation in the client maintained its own in-memory queue. The client no longer has its own queue andack
was deprecated in2.x
and removed in3.x
.