Horizontal scaling across multiple aws regions? #1506
vinod-canihelp
started this conversation in
General
Replies: 1 comment 4 replies
-
python-socketio does not have any limitations in terms of the deployment. As long as you deploy your message queue so that it is accessible from the two regions, the servers should be able to communicate and share events. Whether that is a good or bad idea it is a different topic. The latency is going to be fairly high, for example. And you are going to have to put a lot of thought into securing your message queue, because I believe it is not possible to create a VPC that spans regions, so you'll be forced to send your message queue traffic over the open internet, which is quite risky. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all!
I just started using python-socketio. I use redis as the message queue to enable horizontal scaling.
Please correct me if I am wrong but this only enables scaling within an AWS region, right?
If so, what is the way to scale across aws regions? For example, how can an socketio event in us-west-2 be shared with servers in us-east-1?
Beta Was this translation helpful? Give feedback.
All reactions