I have multiple distributed competing consumers each pulling messages off the same (transactional) queue. I want to implement each consumer as an Idempotent Receiver so I never process the same message more than once (across all consumers) even if a duplicate arrives. How can I accomplish this with multiple consumers?

My first thought is to somehow generate a consecutive sequence number for each message before putting them on the queue and then use a shared database table to coordinate the work between consumers. I.e. consumer#1 processes msg#1 and then writes a row to DB table saying 'msg#1 is processed' (want it in a database to ensure durability). When a consumer is ready to process a message, it peeks at the next one available in the queue, consults the shared DB table and determines if this is the next msg in order. If so, it pulls it off the queue. If not, it ignores it.

In this way, I only need to store the last message processed (as there is a consecutive sequence number for all msgs), I don't need to use a buffer storing IDs of all messages received with a negotiated 'window' size, and the messages are always processed serially (which is what I want for this scenario).

Just curious if there is a better way? I'm concerned about the cost of querying the database whenever I need to process a message.

If the answer is "it depends on the framework", then I had MSMQ in mind

link|improve this question

67% accept rate
feedback

2 Answers

The point of idempotent receiver is that is does not matter if a message is processed several times. Hence, idempotent receivers don't need to somhow detect that a message is a duplicate, they can simply process it as usual ...

So either your receiver is not idempotent, or you are worrying needlessly ...

link|improve this answer
If my API / message processing logic is designed in a way to be idempotent then yes, I don't need to worry about receiving duplicate msgs. This is not the case for my scenario. I need to filter out duplicate messages and not just for one instance of a consumer but across multiple instances. – Andrew Smith Nov 3 '09 at 20:34
feedback

Andrew -

Another option is to look at how your queue handles messages. There are queues which remove messages after they have been picked up by a consumer. This is typical behavior for a queue and it shouldn't be difficult to find a queue with this type of functionality. This should provide you a simple solution instead of the building a way for each consumer to ensure they do not receive a message which has already been processed by another consumer.

Best, Henry

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.