I'd like to know if it's possible to broadcast on different websocket "connections" running from the same node-websocket-server app instance? Imagine a chatroom server with multiple rooms, only broadcasting messages to the participants specific to each room, on a single node.js server process. I've successfully implemented a one-chatroom-per-process solution, but I want to take it to the next level.

Thanks for your help!

link|improve this question
feedback

3 Answers

up vote 28 down vote accepted

You would probably like to try Push-it: http://github.com/aaronblohowiak/Push-It which is built on top of Socket.IO. Design adheres to the Bayeux Protocol.

However, if you need something that uses redis pubsub you can check http://github.com/shripadk/Socket.IO-PubSub

Specifically answering your question: You can maintain an array of all the clients connected to the websocket server. And probably just broadcast to a subset of those clients? The broadcast method does essentially that under the hood. node-websocket-server/Socket.IO maintains an array of all the clients connected and just loops through all of them "send"ing a message to each of the clients. Gist of the code:

// considering you storing all your clients in an array, should be doing this on connection:
clients.push(client)

// loop through that array to send to each client
Client.prototype.broadcast = function(msg, except) {
      for(var i in clients) {
          if(clients[i].sessionId !== except) {
             clients[i].send({message: msg});
          }
      }
}

So if you want to relay messages only to specific channels, just maintain a list of all the channels subscribed by the client. Here is a simple example (to just get you started) :

clients.push(client);


Client.prototype.subscribe = function(channel) {
      this.channel = channel;
}

Client.prototype.unsubscribe = function(channel) {
     this.channel = null;
}

Client.prototype.publish = function(channel, msg) {
      for(var i in clients) {
         if(clients[i].channel === channel) {
            clients[i].send({message: msg});
         }
      }
}

To make it even easier use EventEmitters. So in node-websocket-server/Socket.IO see where the messages are being received and parse the message to check the type (subscribe/unsubscribe/publish) and emit the event with the message depending on the type. Example:

Client.prototype._onMessage = function(message) {
       switch(message.type) {
         case 'subscribe':
             this.emit('subscribe', message.channel);
         case 'unsubscribe':
             this.emit('unsubscribe', message.channel);
         case 'publish':
             this.emit('publish', message.channel, message.data);
         default:

       }
}

Listen to the events emitted in your app's on('connection') :

client.on('subscribe', function(channel) {
     // do some checks here if u like
     client.subscribe(channel);
});
client.on('unsubscribe', function(channel) {
     client.unsubscribe(channel);
});
client.on('publish', function(channel, message) {
     client.publish(channel, message);
});

Hope this helps.

link|improve this answer
1  
That's awesome, thanks very much! If only I'd known when I started, I would have used Socket.IO from the beginning. – Sebastian Motraghi Dec 15 '10 at 10:38
1  
sure! glad i was of help :) – Shripad K Dec 15 '10 at 12:24
1  
Immensely helpful. Thank you! – Matt Dec 22 '10 at 4:51
Welcome and thanks for the upvote Matt. :) – Shripad K Dec 22 '10 at 7:34
is it good idea to just broadcast the message to all channels and clients, then we will do filter on the browser? – runrunforest May 7 '11 at 18:28
show 1 more comment
feedback

Shripad K's answer is very well structured. Good job (I can't upvote yet. lame.).

I think that solution will have some scaling issues though.

If you had 10,000 concurrent users in 500 chat rooms, then every time any user sent a message, you'd have to loop through all 10,000 clients. I suspect that it would be faster to store the list of clients in a given room in a structure in redis and just grab this list and send to those clients.

1) Not sure if that's actually faster. 2) Not sure what could be stored in redis that would then allow us to reference clients. Maybe there could be a hash of all clients in the server, by a unique id and in redis, we could just store a set of the user id's per chat room?

Does this seem any more scalable?

I've written a node chat server based on fzysqr's and need to make it scalable for multiple chats before we roll it out widely.

link|improve this answer
Starting your first answer with a negative comment about the reputation system isn't going to get you far here. Please respect the community and it's guidelines - read the FAQ if you haven't already. If you think the system is 'lame', you don't have to post here. :) – Ken White Mar 30 '11 at 23:09
@Sean: Even if you stored a list in redis you would still eventually have to loop to send the message to each client. However, since you mentioned Redis you should have a look at the pub/sub mechanism if you have scaling in mind. :) See the second link in my answer (Socket.IO-PubSub: Redis + Socket.IO) – Shripad K Apr 2 '11 at 8:18
1  
@rurunforst: I already have :) Launching multiple nodes is as simple as launching a copy of your code over different ports/IPs. You need to make sure that each process can function independently and needn't depend on the other process. Each can communicate via redis or 0mq. To load balance, use HAProxy. See my answer here: stackoverflow.com/questions/4360221/… – Shripad K May 8 '11 at 2:59
1  
Yes. You need to create multiple instances (example on Amazon EC2, each having its own elastic IP) and have another instance running HAProxy which load balances these instances. – Shripad K May 8 '11 at 4:56
1  
Well if you don't load balance then there is no way to proxy requests to those multiple nodes. So you just have nodes idling with no requests reaching them. – Shripad K May 8 '11 at 4:57
show 8 more comments
feedback

I'm not sure if rooms were a feature when the other answers were created, but in the documentation, they have a feature exactly what you are looking for. So go to that link and search for rooms.

Here is an example from the site:

var io = require('socket.io').listen(80);

io.sockets.on('connection', function (socket) {
  socket.join('justin bieber fans');
  socket.broadcast.to('justin bieber fans').emit('new fan');
  io.sockets.in('rammstein fans').emit('new non-fan');
});

Based on the other answers, it was more focused on scaling, I would love some insight if the built in version scales well as the proposed answers.

link|improve this answer
Thanks! Back when I posed this question, rooms were not a feature, but they've been in Socket IO for a while now. – Sebastian Motraghi Feb 20 at 20:07
feedback

Your Answer

 
or
required, but never shown

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