This repository was archived by the owner on Dec 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 33A worker is responsible for executing a task. Operator and System tasks are handled by the Conductor server, while user
44defined tasks needs to have a worker created that awaits the work to be scheduled by the server for it to be executed.
55Workers can be implemented in any language, and Conductor provides support for Java, Golang and Python worker framework that provides features such as
6- polling threads, metrics and server communication that makes creating workers each .
6+ polling threads, metrics and server communication that makes creating workers easy .
77
88Each worker embodies Microservice design pattern and follows certain basic principles:
99
10101 . Workers are stateless and do not implement a workflow specific logic.
11112 . Each worker executes a very specific task and produces well defined output given specific inputs.
12123 . Workers are meant to be idempotent (or should handle cases where the task that partially executed gets rescheduled due to timeouts etc.)
13134 . Workers do not implement the logic to handle retries etc, that is taken care by the Conductor server.
14-
14+
You can’t perform that action at this time.
0 commit comments