Open limx0 opened 4 months ago
Hi! I am sure, that you are able to implement such behavior already by playing with various stream options (last_id
at least). I'll try to dig into to help your.
Btw, did you tried to use persisntent subscriber (it saves read position between restarts): https://faststream.airt.ai/0.5/redis/streams/groups/
@kumaranvpl you have a bigger expertiece in Redis, can you please take a quick look and decide, should has it sence, should we add new API for it or it is already implemented by some options. Just for backlog
@kumaranvpl do you know, what is the feature about?
@Lancetnik After reading in few times, I think I know what he expects.
When consuming from a topic/subject he wants to consume from the earliest message. In Kafka, this can be done by setting the config variable auto.offset.reset
to earliest
.
I am not sure what is the configuration equivalent for this in Redis. If there is one and if we support setting that config in RedisBroker subscriber then we don't need to change the code. He can simply set the config. It is already possible for both Confluent and aiokafka KafkaBrokers.
@limx0 Please confirm whether this is what you meant.
Is your feature request related to a problem? Please describe. I would like to be able to replay the messages stored on a persistent queue on subscribe on process start. If my process restarts, I would like the option to replay some or all of the messages on a given topic/queue.
Describe the solution you'd like Add some sort of
replay
orstart_timestamp
kwargs for subscribe that allows replaying messages stored in backend on startup.Feature code example To help others understand the proposed feature, illustrate it with a FastStream code example:
Describe alternatives you've considered I thought this would have discussed/implemented given the majority of backends support this functionality (RMQ, redis, nats, kafka), but I can't find anything in the docs or issues.
Additional context Apologies if I've somehow missed something here!