I would love to hear more about real application experience witn MongoDB as a queue service, if you used MongoDB for this purpose could you share your thoughts, as well as the environment in which it was used?
I am using mongodb as a queue service for email sending. It will work in the following way:
Processing
to true, so it does not process the same message twice (because my background job runs multiple threads in parallel).In general, I use mongodb as a queue service only for one reason: because I need to send emails by specified schedule (each message contains information on what time it should be sent).
If you do not have any schedule and need to process messages immediately, I suggest that you look into existing queue services, because they probably handle all cases that you may not see without a deeper understanding of message queues.
When a background job crashes during message processing you could do the following:
Move this message to another, message queue errors collection, or...
Increase processing attempts counter in a message and again assign status "New", to try process it again. Just make sure that the background job is idempotent (can process the same message multiple times and not corrupt data) and transactional (when a job fails you must undo changes that were made. if any). When a job fails after 5 attempts (config value) perform #1.
Once the bug with message processing was fixed you could process it again once more by assigning "New" status and moving to the message queue or just deleting the message. It depends on business processes actually.
I know that this question is back from 2012, but during my own research i found this article and just want to inform any other user that the devs from serverdensity replaced rabbitmq in favor of a simple queueing system with mongodb.
A detailed article is given here:
https://blog.serverdensity.com/replacing-rabbitmq-with-mongodb/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With