RabbitMQ client load balancing

后端 未结 3 2017
情歌与酒
情歌与酒 2021-01-02 21:49

I am piloting rabbit mq and find it quite good. Looking at the HA page I find that the exchange/queue replication works well.

I am troubled by the fact that I must u

3条回答
  •  無奈伤痛
    2021-01-02 21:58

    For python nameko suggested way for achieving High Availability-Failover(Rabbitmq) is mentioned here. Nameko manages to achieve this as the backing library(kombu) supports round-robin failover

    AMQP_URI: pyamqp://guest:guest@rabbitmq1:5672/;pyamqp://guest:guest@rabbitmq2:5672/
    

提交回复
热议问题