Raster R
Raster R

Reputation: 273

RabbitMq replay limitations

I need to use rabbitmq for a client requirement. Client suggested rabbit mq. Based on some googling it looks like rabbitmq does not support replay of past messages from arbitary offsets unlike say kafka.

I just need a confirmation on whether this limitation is still valid. Any official url will be helpful.

Thanks.

R

Upvotes: 1

Views: 750

Answers (2)

Siraf
Siraf

Reputation: 1292

Since RabbitMQ v3.9.0 (July 23, 2021) RabbitMQ supports kafka like topics with replay functionality, see v3.9.0 release notes for release details.

Check RabbitMQ Streams Docs

Upvotes: 0

Luke Bakken
Luke Bakken

Reputation: 9627

Based on some googling it looks like rabbitmq does not support replay of past messages

That's correct. Once a message is delivered and acknowledged (if the queue requires an ack) it is never available again and no trace of it remains in RabbitMQ.

Upvotes: 2

Related Questions