Redis Streams client implementation for high availability usage including consumer, monitor and scaler implementation
Project description
Redis-Streams
This package builds on Redis Streams and provides an easy to use interface for batch collection and processing. Simplifies the consumer group and consumers management. Designed for a highly available, scalable and distributed environment, it thus offers, in addition to the main functionality, monitoring and scaling capabilities.
The main idea is that Redis Streams supports several message producers. The messages then organized into consumer groups where multiple consumers can collect a batch of items, process them and acknowledge the successfully processed ones. If processing fails, the message has not been acknowledged will be part of the next batch. In case of consumer failure the monitor component will re-assign the related messages to a healthy consumer this way messages don't get lost. Optional scaling component monitors incoming/processed message rate and suggests consumer scale if necessary
Installation
Latest version:
pip3 install redis-streams
Components
Overview of the components Image source: tgrall.github.io
Provider
As its name suggests, this component is responsible for providing the messages in the stream. Redis supports multiple providers.
Example code
redis_conn = Redis()
sample_data = {"message": "stuff goes here"}
redis_conn.xadd(name=STREAM, fields=sample_data)
Consumer
The consumer registers in the consumer group and start fetching for available messages. Once a preconfigured batch size is reached, it gives back the list of items to the caller which then can acknowledge this way remove from the Stream the message. The consumer implementation returns after the preconfigured maximum weight time, even if the lot is not full. This way the items won't wait long in the stream
Example code
# It is crucial to enable "decode_response" feature of Redis
redis_conn = Redis(decode_responses=True)
consumer = Consumer(
redis_conn=redis_conn,
stream=STREAM,
consumer_group=GROUP,
batch_size=10,
max_wait_time_ms=30000
)
while True:
messages = consumer.get_items()
total_no_of_messages = len(messages)
for i, item in enumerate(messages):
print(f"Pocessing {i}/{total_no_of_messages} message:{item}")
process_message(item=item)
consumer.remove_item_from_stream(item_id=item.msgid)
Monitor
Periodically check the activity of the consumers warns if they are idle - not fetching message from the Stream for longer than the preconfigured inactivity threshold or have more assigned messages than the batch size. Automatic or on-demand cleanup are also supported.
Example code
monitor = Monitor(
redis_conn=Redis(),
stream=STREAM,
consumer_group=GROUP,
batch_size=10, # batch size has to be tha same as for consumers
)
monitor.collect_monitoring_data(auto_cleanup=True)
monitor.print_monitoring_data()
Output
+-------------------------+-------------+-----------------+----------------------------------+
| Consumer id | Idle time | Pending items | Status |
+=========================+=============+=================+==================================+
| b'29102140026848155456' | 923 | 7 | OK |
+-------------------------+-------------+-----------------+----------------------------------+
| b'29104139791624517440' | 294191 | 5 | WARNING - idle for long time |
+-------------------------+-------------+-----------------+----------------------------------+
| b'29144140168467982144' | 361502 | 8 | WARNING - idle for long time |
+-------------------------+-------------+-----------------+----------------------------------+
| b'29304140033034540864' | 8658 | 11 | WARNING - too many pending items |
+-------------------------+-------------+-----------------+----------------------------------+
| b'29312139940580673344' | 11734 | 58 | WARNING - too many pending items |
+-------------------------+-------------+-----------------+----------------------------------+
| b'29314139867734665024' | 14216 | 1 | OK |
+-------------------------+-------------+-----------------+----------------------------------+
Scaler
By checking the number of messages waiting to be assigned and the number of pending items, utilization ratio can be calculated. Once this rate crosses a lower (scale in) or higher (scale out) the code will give a suggestion of scale in / out.
Example code
scaler = Scaler(
redis_conn=Redis(decode_responses=True),
stream=STREAM,
consumer_group=GROUP
)
scaler.collect_metrics()
rate, suggestion = scaler.get_scale_decision(
scale_out_rate=60, scale_in_rate=20
)
print(
f"Consumers should be {suggestion} as stream length "
f"({scaler.stream_lenght}) / pending ({scaler.stream_pending}) "
f"rate is {rate}%"
)
Output
Consumers should be IN as stream length (11) / pending (83) rate is 13.253%
Consumers should be NO_SCALE as stream length (18) / pending (79) rate is 22.7848%
License
This project is licensed under the terms of the GPL3.0.
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-streams-0.2.0.tar.gz
.
File metadata
- Download URL: redis-streams-0.2.0.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.26.0 setuptools/58.3.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 953c3f8208ad7e09bdf38a5391199695b7d7aba3ac5f9495c713e59c8888f3a9 |
|
MD5 | 0fec316daaaf2e3da8cb4e673ebc4fb1 |
|
BLAKE2b-256 | 365cf2be040d9ebaabd98c5be4ff0c824785f2293b4c14eb43d8294dcce3f12d |
File details
Details for the file redis_streams-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: redis_streams-0.2.0-py3-none-any.whl
- Upload date:
- Size: 23.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.26.0 setuptools/58.3.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 448f06fd8dbad131b479022fce3e19403e0cb5adb0a28a33a0798a2ff7bc24eb |
|
MD5 | d1ba039d1312e92485c47e0593b3c9bb |
|
BLAKE2b-256 | dfa359550d48edbf6e28114ea09ae81dc398ac5c43fd4ddf08edc8e41660baa7 |