Hacker News new | ask | show | jobs
by thilog 1799 days ago
After a brief glimpse at the documentation, I am missing a feature comparable to Kafka's partitioning. Well, the protocol [1] briefly mentions it, but it does not seem to be exposed.

Getting insights into the roadmap for this would certainly be interesting...

[1]: https://github.com/rabbitmq/rabbitmq-server/blob/v3.9.x/deps...

1 comments

Genuine question: what is it that you need from Kafka partitioning?
Not OP, but what I need from Kafka partitioning is guaranteed message ordering (per partition key).

I don't know about RabbitMQ, but with Apache AMQ there is message grouping, which is kind of similar, but not quite the same. With Kafka it's unavoidable, which is good.

Guaranteed ordering per partition while keeping the ability to scale across partitions.