Slow Performance of Amazon SQS compared with RabbitMQ

烈酒焚心 提交于 2019-12-03 12:50:55

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

One thing to keep in mind here is that SQS is replicating your data across multiple AZ's. This is going to add to the time complexity compared to a single Rabbit or other MQ implementation.

If your single RabbitMQ instance goes down, are you ok with not being able to process messages or potentially losing data? If you are, you probably don't need replication or even disk persistence. But I'm guessing most use cases would care and thus, SQS offers a very hands off distributed MQ solution that is, in theory, insulated from a single point of failure.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!