Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to implement push technology to push images from a server like 'LightBox Stream'
I have three choices to implement this: Periodic Ajax Pull, Comet or Long Polling or Reverse Ajax, and the latest html5 WebSockets.
What I want is to select any one of them. So I try to compare them using following resources:

  1. A research paper - It shows using reverse ajax will comes with a great load. Using periodic pull would be best if the request frequency = data update frequency of the server [But it now we have to deal with huge network traffic].
  2. Various Questions on SO: Q1, Q2, Q3
  3. WebSocket.org comparison between WebSockets and pull - A Shocking Result {enter image description here}
  4. W3 specification

Examples: trello.com (periodic pull), facebook.com (Comet)

I have to select only 1 method.

Confusions:

  1. How to select between Ajax and websocket. Web Socket is quite shocking in terms of its performance but it is not consistently supported among all the browsers (Also different devices). There are many libraries to get rid of this support issue like: jwebsocket.org, Kaazing . Don't know about their efficiency or reliability.
  2. If I select ajax then two more choices - Periodic Pull or Comet. Trello and facebook are two examples of these as mentioned above. As mentioned in websocket.org and in the research paper using comet means having great load on server CPU, then how FB handles it? Why trello don't select comet? Why they Choose periodic pull?
  3. How google implement gmail PUSH?
  4. Which one is better for pushing media like images and which one is better for pushing text?
  5. What is the effect on each with increasing users?
  6. What range of data each one can handle?
  7. If using ajax then which language to use? Any Source? Many suggested jquery plugin in 2009 but its site if offline now?
share|improve this question

1 Answer

First, let's try to put some order in the terminology used.

We might use one of the several umbrella terms to refer to the set of technologies available to asynchronously sent events from a web server to a web client (and vice versa). The "Push Technology" term has been used for fifteen years. Now, the "Web Streaming" term is gaining consensus among the analysts (see Gartner, "Cool Vendors in Application and Integration Platforms, 2012", by Massimo Pezzini and Jess Thompson, 11 April 2012).

The important thing here is that we are talking about Web-based communication, that is, leveraging Web protocols. There are tons of messaging protocols and technologies that are not web based (most of MOMs, for example), so they are not part of Push Technology (or Web Streaming).

Then, you can distinguish between two sub-categories of Push Technology (or Web Streaming):

  • HTTP based
  • WebSockets based

Both HTTP and WebSockets are Web protocols.

If you explode the HTTP-based push mechanisms, you can identify:

  • HTTP Streaming
  • HTTP Long Polling
  • HTTP Polling

Traditionnaly, the "Comet" term (coinded in 2006 by Alex Russell) has been referring to both HTTP Streaming and HTTP Polling (while now there is some debate and whether it should be a more general umbrella term or not).

Now, let's go to your questions:

1) The performance of WebSockets and HTTP Streaming, in terms of latency and bandwidth, are pretty identical. While Long Polling and Polling, as shown in the reported chart, can have important overheads, depending on the use case.

The problem with Web§Sockets is that they are not yet universally available, in terms of:

  • Browser support: There are still many browser versions not supporting WebSockets in their stable build (including IE and Safari, for example)
    • Intermediary support: There are still many proxies, firewalls, antivirus, NAT, load balancers, etc. not supporting WebSockets.

So, the best approach is to choose a solution that automatically chooses between WebSockets and HTTP (Streaming and Long Polling) based on the infrastructure. Several push solutions feature such automatic choice, though implemented in different ways and with different degrees of reliability. To the products you mentioned, I should obviously add Lightstreamer http://www.lightstreamer.com [of which I am the CTO].

2) If WebSockets fall back to HTTP, then you should go for HTTP Streaming. If you have to fall back again (due to some intermediaries blocking any form of streaming), you should got for HTTP Long Polling. HTTP Polling should be the last choice. Of course, this implies having a dedicated server that is able to scale with all these transports.

If you look at specific web sites, like those you mentioned, their choice mainly depends on their development history. They probably optimized their custom implementations, perhaps leading to a solution which is not theoretically the best but which works best for them.

3) Originally, they used HTTP Long Polling. I guess they are now introducing WebSockets.

4) As far as we are not talking about streaming video, all the approaches discussed above are fine for pushing images. The advantage of WebSockets is that they allow to push pure binary data as well, while HTTP in most cases requires some encoding.

5) It all depends on the servers, which must be able to scale. Consider that good Push servers can scale to million of users with low traffic. When the average message rates increases, the number of concurrent users per box decreases.

6) Didn't understand the question.

7) My suggestion: choose a good all-round solution, focusing on the server. Then you will check what client-side components and libraries are available.

share|improve this answer
The discussion goes on here: stackoverflow.com/questions/12078550/… – Alessandro Alinone Sep 3 '12 at 10:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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