问题
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