What are the ways of to make an application more resilient when RabbitMQ is down?
-
We are trying to make a more resilient system. We have an architecture based on a message broker, in this case, RabbitMQ is the message broker used. Our application is basically a video sharing web site. We have a web application written in Rails and a simple ruby application to edit videos (add a watermark, upload to youtube). The main use case of this application is to allow the user to upload videos. To complete this task the following steps are needed: 1 - upload video to S3 (directly from the web application) 2 - add a watermark to the video (ruby console application subscribes to RabbitMQ queue) 3 - upload this video to youtube (ruby console application) To put a watermark on a video, the ruby console application subscribes to a queue in RabbitMQ. When the process is completed, RabbitMQ will notify the Rails application that the video process is completed. What do you do if RabbitMQ is down? Imagine this happening in the middle of the editing process. In this case the rails app will never be notified when the editing process of a video is completed. Is there some way to avoid this scenario? Change the ruby console to executing a series of retrying until the RabbitMQ is live again? Thanks
-
Answer:
Why does your RabbitMQ go down? What does your application do when RabbiqMQ is unavailable? What should it do when its unavailable? If you want your application to keep accepting work, even when the queue is unavailable, then you could: a) write the message to a local database, or queue, or file. b) write the message to a remote database, or file then have a process, as part of the application, that checks for these orphaned messages... and make sure that they are idempotent operations, so that it's ok if a message is accidentally processed multiple times.
John Merrells at Quora Visit the source
Other answers
You could put http://qdb.io/ (my project) between the parts of your app that publish messages (e.g. the video editing app) and RabbitMQ. It will buffer the messages and deliver them when RabbitMQ is back up.
David Tinker
Related Q & A:
- What are some ways to make extra money while in college?Best solution by Yahoo! Answers
- What are some ways to make money?Best solution by Yahoo! Answers
- What are some ways I can make a little money?Best solution by Yahoo! Answers
- How do I make an Application Stand out?Best solution by eHow old
- What are other ways to make teeth white?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.