Let's say a server gets 10,000 concurrent connections (via socket.io). That's a lot, and if it can't handle any more, I need to spin up another server.

How can I sync the two servers together with their socket.io?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can try to use for example cluster module and distribute the load to multiple cores (in case you have a multi-core CPU). In case this is not enough you can try to use reverse proxy for distributing requests across multiple servers and redis as a central session data store (if it's possible for your scenario).

link|improve this answer
1  
Properly written cluster could should scale across multiple servers with a bit of boiler plate code. – Raynos May 10 '11 at 16:58
feedback

I wouldn't use Cluster to scale Socket.IO. Socket.IO 0.6 is designed as a single process server, and it uses long living connections or polling connections to achieve a real time connection between the server and client.

If you put Cluster infront of your socket.io client you will basically distribute the polling transports between different servers, who are not aware of the client. This will result in broken connections. But also broadcasting to all your clients will be a pain as they are all distributed on different servers and you don't have IPC between them.

So I would only advice to use Cluster if you only use Web Socket & Flash Socket connections and don't need to use the broadcast functionality.

So what should you do?

You could wait until socket.io 0.7 is released which is designed from the ground up to be used on multiple processes.

Or you can use pub/sub to send messages between different servers.

link|improve this answer
+1 Because it's the 3rdEden himself! – Raynos Jun 13 '11 at 17:57
1  
There a working version of the RedisStore available here: github.com/dshaw/socket.io/blob/master/lib/stores/redis.js It should become available in socket.io soon as well, but if you need to scale this is probably the fastest way. – 3rdEden Sep 12 '11 at 8:57
when you say redisstore. I presume you mean we store sessions in redis and then store data attached to a session authenticated socket in redis for the duration of the session livetime? The store uses the socket.get and socket.set interface. (Bonus, socket.io lacks detailed documentation) – Raynos Sep 12 '11 at 9:10
2  
Yes, RedisStore. By default Socket.IO will handshakes & connection ids + socket data in the memory of the process but when you change to the redis store this data becomes available on all process as it's stored in one single place + sessionids are replicated overall processes. So they can accept each incoming poll even if they are handshaken on a different process. Anyways, the finished store landed in the github master yesterday, so you can play with it in the next release :) – 3rdEden Sep 20 '11 at 13:19
And yup, we are lacking on the documentation side, I'm hoping that someone from the community is stepping up and start working on some wiki's as both me and rauchg are really busy atm :9 – 3rdEden Sep 20 '11 at 13:20
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.