开发者

Unique Messages per Queue in AMQP?

开发者 https://www.devze.com 2022-12-09 22:28 出处:网络
This is similar to this other question but with a bit of a twist: I re开发者_如何学JAVAad in the specification that the message-id for AMQP messages should be set by the application itself, so in theo

This is similar to this other question but with a bit of a twist: I re开发者_如何学JAVAad in the specification that the message-id for AMQP messages should be set by the application itself, so in theory I could use that to guarantee a certain degree of uniqueness, right?

My main question is now: In what scope is that message-id garantueed to be unique? For the messages currently enqueued inside a specific queue? Over all queues? Over the universe? :-)

And is this behaviour standardized? I plan to use RabbitMQ here, but it would be nice to have something not vendor specifc :-)

Thanks.


Another suggestion is according to the dump pipes - smart endpoints school of thought.

You could handle uniqueness in your application, using some sort of shared state.

We had the same problem when switching from Gearman to RabbitMQ. We use memcached to keep track of unique message ID's posted and consumers drop messages for which the message ID is already stored in memcache (duplicates). You could also check memcache before putting it on the queue altogether.

This frees you from using this feature in your message bus layer (so you can more easily switch between brokers, also those who do not guarantee uniqueness)


Message Id is application-specific only and may be not unique at all. You have to take care of uniqueness by yourself.

0

精彩评论

暂无评论...
验证码 换一张
取 消