Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to integrate a message queuing middle tier in my web application. I have tested Rabbitmq as well as Amazon SQS but find Amazon SQS is slow. I am getting 80 req/sec in Amazon SQS where I am getting 2000 req/sec in Rabbitmq. I am asking this Question because I am more interested Amazon SQS since I am using all the services of Amazon for my web app. Can anybody please tell me why this is so slow? Or if anybody has any good benchmark of Amazon SQS can you please share? Any help will be appriced.

share|improve this question
Can you tell us more about your setup: what language are you using, and with multiple threads or not? Also Amazon never promised that message delivery would be low latency, only that it scales very well, given sufficient readers and writers. – Jeff May 10 '12 at 3:00
I have tested with Java drivers. I have tested with 1 thread and then with 25 threads for both receive message and send message. I have reuse the code given as a sample in AWS Java SDK 1.3.8. – Anand Soni May 10 '12 at 4:07
1  
If you want a EC2 hosted solution for RabbitMQ, checkout cloudamqp.com – Carl Hörberg Apr 22 at 13:27
Thank you Carl Horberg. I have checked it but as it is paid I have avoided it :-) . So I have decided to go with my own servers of RabbitMQ in EC2 and Scale it as we want. Though this service is nice. Thanks again. – Anand Soni Apr 22 at 17:28

1 Answer

up vote 3 down vote accepted

According to this article you can run RabbitMQ on Amazon AWS (EC2) and it will be faster and possibly cheaper, there is a message per second and a financial comparison. There are some other howto guides on the RabbitMQ site

share|improve this answer
Thank you robthewolf. I have seen the exact site you have given. I have gone through RabbitMQ but I am facing problem in AutoScaling rabbitmq cluster. – Anand Soni May 9 '12 at 13:22
have you seen this rabbitmq.com/blog/2012/04/25/… not sure if it helps – robthewolf May 10 '12 at 11:18
ya rabbit is good in performance, but i want to know why SQS is so slow? – Anand Soni May 10 '12 at 11:22
I'm facing the same issues as Anand. I want the easy of scalability of SQS but the speed I'm getting out of my medium instance running rabbitmq. Are we doing something wrong or is the polling of SQS just the problem? – thanos Oct 13 '12 at 21:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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