How to make RabbitMQ scalable?

大憨熊 提交于 2019-12-01 06:38:12

I resolved the problem by adding load balancer. The producers send data to load balancer. On the other hand the load balancer id connected to many nodes of rabbitmq, but those nodes are not connected between them (to avoid synchronization which affects the performance). So by this way, I can multiply the throughput (ex: 3 nodes= 3x throughput).

It might depend on other factors such as your network, or your hardware performance.

When reading benchmark always consider the environment surrounding the tests

As on how to improve perf you can improve your hardware or network if this is the limiting factor.

Consider switching to a SSD or using link aggregation on your network would be a good start.

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