Redis Based Task Queue
Project description
redis-tq
redis-tq is a Redis-based multi-producer, multi-consumer Queue. Allows for sharing data between multiple processes or hosts.
Tasks support a "lease time". After that time other workers may consider this client to have crashed or stalled and pick up the item instead. The number of retries can be configured as well.
Based on this example but with many improvements added.
Installing
redis-tq is available on PyPI so you can simply install via:
$ pip install redis-tq
How to use
On the producing side, populate the queue with tasks and a respective lease timeout:
from redistq import TaskQueue
tq = TaskQueue('localhost', 'myqueue')
for i in range(10):
tq.add(some task, lease_timeout, ttl=3)
On the consuming side:
from redistq import TaskQueue
tq = TaskQueue('localhost', 'myqueue')
while True:
task, task_id = tq.get()
if task is not None:
# do something with task and mark it as complete afterwards
tq.complete(task_id)
if tq.is_empty():
break
# tq.get is non-blocking, so you may want to sleep a
# bit before the next iteration
time.sleep(1)
If the consumer crashes (i.e. the task is not marked as completed after
lease_timeout
seconds), the task will be put back into the task queue. This
rescheduling will happen at most ttl
times and then the task will be
dropped. A callback can be provided if you want to monitor such cases.
Running the tests
The tests will check the presence of a Redis instance on localhost, you can use
docker run --rm -d -p 6379:6379 redis
to get one. Then use make test
, it will take care of creating an appropriate
virtualenv and use it to run the tests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file redis-tq-0.0.11.tar.gz
.
File metadata
- Download URL: redis-tq-0.0.11.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13fdb4d8679c58383698e9d152bdcc29b8e00a89acf2578e3d36b84ff0bf7b37 |
|
MD5 | df5b0ec36841909540179b6e6a1c75eb |
|
BLAKE2b-256 | e8ac6fd24a63cf82b823449d08abf3aae0885c8814f279ce02def78bfab2f077 |
File details
Details for the file redis_tq-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: redis_tq-0.0.11-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4815d3bcfec709821f3e0cc8a908a9bec2934c22b23ca92cd1090bb4fdfcf41a |
|
MD5 | 1693dbab2deb6e27d2a3a833b609fcba |
|
BLAKE2b-256 | 4c919584dfb834de88376025417f58753fdb8cedfd580b50ecb69a61982bbe55 |