Task Workers¶
Workers process queued tasks that cannot be handled by the web client.
Tasks can be created either via the Python API, for example in other workers, or via authenticated users.
By default, running the subfork worker
command will pull tasks from a
specified queue and process them.
For example:
Will poll the test
queue for new tasks, and run the function subfork.worker.test
.
Workers can also be defined in the subfork.yml
file, and can contain
more than one worker specification:
workers:
worker1:
queue: test
function: subfork.worker.test
worker2:
queue: stress
function: subfork.worker.stress
Creating tasks¶
To create a task, pass a function kwargs dict to a named task queue,
for example, to pass t=3
to worker2 defined above:
Getting results¶
To get the results of completed tasks: