How to use message queue over internet

杀马特。学长 韩版系。学妹 提交于 2019-12-21 05:36:09

问题


So basically we have a backend hosted in the cloud. This backend is composed of Web Servers (Django/Python), Databases (Postgresql), RabbitMQ, and Workers (Celery)

We also have hardware components around the world. Those hardware components need to get things done from the backend. We were thinking of using RabbitMQ to store their jobs and using a polling mechanism from hardware components to get jobs to do.

We saw that with Amazon SQS we can achieve this. They have a system allowing to get jobs in HTTPS with long-polling, which is really perfect. I was wondering if such a solution exist for RabbitMQ or other messaging system we could host our-self? I read that rabbitMQ was not designed to be exposed on the internet and I was not able to find any relevant answer to my problem.

Thank you for your help.

来源:https://stackoverflow.com/questions/30631904/how-to-use-message-queue-over-internet

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