Crates.io | sea-streamer-redis |
lib.rs | sea-streamer-redis |
version | 0.5.0 |
source | src |
created_at | 2023-03-25 13:43:50.332736 |
updated_at | 2024-04-24 18:04:06.778575 |
description | 🌊 SeaStreamer Redis Backend |
homepage | |
repository | https://github.com/SeaQL/sea-streamer |
max_upload_size | |
id | 820264 |
size | 202,204 |
sea-streamer-redis
: Redis BackendThis is the Redis backend implementation for SeaStreamer. This crate provides a high-level async API on top of Redis that makes working with Redis Streams fool-proof:
XADD
, XREAD
or XACK
anymoreXADD
and paged XREAD
, with a throughput in the realm of 100k messages per secondWhile we'd like to provide a Kafka-like client experience, there are some fundamental differences between Redis and Kafka:
ACK
has to be done per message
What's already implemented:
It's best to look through the tests for an illustration of the different streaming behaviour.
How SeaStreamer offers better concurrency?
Consider the following simple stream processor:
loop {
let input = XREAD.await;
let output = process(input).await;
XADD(output).await;
}
When it's reading or writing, it's not processing. So it's wasting time idle and reading messages with a higher delay, which in turn limits the throughput. In addition, the ideal batch size for reads may not be the ideal batch size for writes.
With SeaStreamer, the read and write loops are separated from your process loop, so they can all happen in parallel (async in Rust is multi-threaded, so it is truely parallel)!
If you are reading from a consumer group, you also have to consider when to ACK and how many ACKs to batch in one request. SeaStreamer can commit in the background on a regular interval, or you can commit asynchronously without blocking your process loop.
In the future, we'd like to support Redis Cluster, because sharding without clustering is not very useful. Right now it's pretty much a work-in-progress. It's quite a difficult task, because clients have to take responsibility when working with a cluster. In Redis, shards and nodes is a M-N mapping - shards can be moved among nodes at any time. It makes testing much more difficult. Let us know if you'd like to help!
There is also a small utility to dump Redis Streams messages into a SeaStreamer file.
This crate is built on top of redis
.