Live data from Hacker News

600K concurrent HTTP connections with Clojure and http-kit

http-kit.org

21–28 of 28 posts

Re: 600K concurrent HTTP connections with Clojure and http-kit

#21

So? Not really impressed. WhatsApp are getting over 2M concurrent HTTP connections with Erlang in a production system. And this was 1 year ago. http://blog.whatsapp.com/index.php/2012/01/1-million-is-so-2...

The Whatsapp 2 million connection result was on a 24 core box with a ton of RAM. The Clojure benchmark was pulled off on a 4-core desktop. Also, Whatsapp connections are mostly idle, only a small fraction of users would be sending a message in any given second. Edit: It looks like the test was run only on localhost, which also means that it artificially removes much of the processing and actual network I/O factors fr…

Except that Whatsapp connections are actually doing something, while in this meaningless test most of them are idle.

Re: 600K concurrent HTTP connections with Clojure and http-kit

#22

Does anyone know how they managed to not only bypass the C10k limit, but bypass it by a factor of 60?

10k isnt really a limit. In linux you should consider it being about 100 for every 1MB of ram (10%) of fs.file-max. 1 million isn't really hard nowadays

Re: 600K concurrent HTTP connections with Clojure and http-kit

#23

So? Not really impressed. WhatsApp are getting over 2M concurrent HTTP connections with Erlang in a production system. And this was 1 year ago. http://blog.whatsapp.com/index.php/2012/01/1-million-is-so-2...

The Whatsapp 2 million connection result was on a 24 core box with a ton of RAM. The Clojure benchmark was pulled off on a 4-core desktop. Also, Whatsapp connections are mostly idle, only a small fraction of users would be sending a message in any given second. Edit: It looks like the test was run only on localhost, which also means that it artificially removes much of the processing and actual network I/O factors fr…

This is a good point, the exact hardware comparison is as follows:

       | Clojure | WhatsApp
  ---------------------------
  CPU  | i7-2600 | Xeon X5675
  Clock| 3.4GHz  | 3.07GHz
  Cores| 4       | 24
  RAM  | 16G     | 96G
  Conns| 600,000 | 2,000,000

It seems pretty clear that the performance increase is line with the better hardware specs.

Re: 600K concurrent HTTP connections with Clojure and http-kit

#24
post #8
post #5

Earlier quoted context omitted.

Its based on netty which surpassed c10k long ago. More generally modern socket concurrency is pretty high using epoll

It's not based on netty: > {:dependencies [[org.clojure/clojure "1.5.1"]]} netty is in the dev dependencies, but for benchmarking only I would guess. [edit] This project is one of the best thing that happened in the web area in clojure recently imho. Not only it is a game changer in performance/resource use, but it makes websocket and async in general trivial to use and actually production ready (same goes for its cl…

Some would also mention Aleph, too.

https://github.com/ztellman/aleph

Re: 600K concurrent HTTP connections with Clojure and http-kit

#25
post #8
post #5

Earlier quoted context omitted.

Its based on netty which surpassed c10k long ago. More generally modern socket concurrency is pretty high using epoll

It's not based on netty: > {:dependencies [[org.clojure/clojure "1.5.1"]]} netty is in the dev dependencies, but for benchmarking only I would guess. [edit] This project is one of the best thing that happened in the web area in clojure recently imho. Not only it is a game changer in performance/resource use, but it makes websocket and async in general trivial to use and actually production ready (same goes for its cl…

Well, aleph already exists, but candidly http-kit has a simpler API for most tasks

edit upon review, not a huge diff between the two actually.

Re: 600K concurrent HTTP connections with Clojure and http-kit

#26

So? Not really impressed. WhatsApp are getting over 2M concurrent HTTP connections with Erlang in a production system. And this was 1 year ago. http://blog.whatsapp.com/index.php/2012/01/1-million-is-so-2...

The Whatsapp 2 million connection result was on a 24 core box with a ton of RAM. The Clojure benchmark was pulled off on a 4-core desktop. Also, Whatsapp connections are mostly idle, only a small fraction of users would be sending a message in any given second. Edit: It looks like the test was run only on localhost, which also means that it artificially removes much of the processing and actual network I/O factors fr…

Then what are we really measuring? Is it how many connections we get can get on as small a machine as possible? If so then I am sure I can get 600K connections with Erlang in a smaller system. At least running a benchmark.

There is one very significant difference and that is that the Clojure benchmark was just a benchmark while for WhatsApp it was their actual system doing something real. They have mentioned to me that they have managed to push their system to 3M connections but not in production.

Re: 600K concurrent HTTP connections with Clojure and http-kit

#27

Does anyone know how they managed to not only bypass the C10k limit, but bypass it by a factor of 60?

From what I understand C10K was mostly a RAM limitation. As system ram got bigger the limit has naturally risen. Here are some guys hitting a million in Erlang. http://blog.whatsapp.com/index.php/2011/09/one-million/ HN discussion for the above link. https://news.ycombinator.com/item?id=3028547

From my understanding, the C10K concept is more a thread problem than a RAM limitation. It happens when each request create its own thread on server (as in Apache or IIS). Computer have problem to run 10,000 threads in same times: too much time is consumed by the OS to find the one thread that is not blocked/locked or waiting for datadabase results.

Node.JS solve this problem by doing all in Asynchronous way (in only one thread). GO solve this pb by doing clever threads (goroutine). Functional programming seems to be very good on this issue (no need of lock mecanism and light thread).

Re: 600K concurrent HTTP connections with Clojure and http-kit

#28

Earlier quoted context omitted.

From what I understand C10K was mostly a RAM limitation. As system ram got bigger the limit has naturally risen. Here are some guys hitting a million in Erlang. http://blog.whatsapp.com/index.php/2011/09/one-million/ HN discussion for the above link. https://news.ycombinator.com/item?id=3028547

From my understanding, the C10K concept is more a thread problem than a RAM limitation. It happens when each request create its own thread on server (as in Apache or IIS). Computer have problem to run 10,000 threads in same times: too much time is consumed by the OS to find the one thread that is not blocked/locked or waiting for datadabase results. Node.JS solve this problem by doing all in Asynchronous way (in only…

[deleted]
Post reply on HN