Getting Started#
To get a quick overview of what you can do with zaku, check out the following:
take a look at the basic tutorial or the tutorial for robotics:
or try to take a look at the example gallery here
Install zaku — the latest version is 0.0.5 on pypi.
pip install -U 'zaku==0.0.5'
Supposed you have a TaskServer running at localhost:9000.
Adding Jobs:
from zaku import TaskQ
queue = TaskQ(name="my-test-queue", uri="http://localhost:9000")
for i in range(100):
queue.add_job({"job_id": i, "seed": i * 100})
Retrieving Jobs:
from zaku import TaskQ
queue = TaskQ(name="my-test-queue", uri="http://localhost:9000")
job_id, job = queue.take()
Now, after you have finished the job, you need to mark the job for completion. The way we do so is by calling
queue.mark_done(job_id)
Sometimes when you worker responsible for completeing the job encounters a failure, you need to also put the job back into the queue so that other workers can retry. You can do so by calling
queue.mark_reset()
Now, we offer a context manager TaskQ.pop, which automatically catches exceptions and resets the job (or marks it complete).
from zaku import TaskQ
queue = TaskQ(name="my-test-queue", uri="http://localhost:9000")
with queue.pop() as job:
if job is None:
print("No job available")
print("Retrieved job:", job)
Developing Zaku (Optional)#
If you want to develop zaku, you can install it in editable mode plus dependencies relevant for building the documentations:
cd zaku
pip install -e '.[all]'
To build the documentations, run
make docs