Question

After using Node.js and socket.io for a while, I understand that if I want my application to support up to 1 million concurrent users I need to scale it, So I started using Redis to PUB/SUB messages between sockets and running a lot of socket.io servers instances, in the same machine and on other machines but all my socket.io servers works with the same Redis server.

So it makes me think.. whats the point? so i will need a few more redis servers and scale between them? My point is that their will always be a bottleneck on the top server.

My question is, Is it possible to scale Redis? and if yes, how all my sockets that connected to different socket.io server will be able to PUB/SUB between the Redis servers?

Many thanks

Était-ce utile?

La solution

I think what you're looking for is Redis Cluster. It is mentioned on that page as "being worked on" and "hopefully for this summer".

There's a presentation here. It's basically hashing + single master and slaves for redundancy. But it's not ready yet. Your best bet for more information is to hit up the forums and IRC for those products.

If someone is doing something similar, they will be on those channels.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top