scale-clojure-web-app
scale-clojure-web-app copied to clipboard
Show how many concurrent connections can be handled by http-kit
I tried the following: ``` sudo sysctl -w net.inet.ip.portrange.first=1025 sudo sysctl -w kern.maxfiles=4999999 sudo sysctl -w kern.maxfilesperproc=4999999 for i in `seq 200 230`; do sudo ifconfig lo0 alias 192.168.1.$i ;...
I was wondering if there was a community mailing list (google group?). I wanted to ask if CSP (core.async) works with http-kit, and whether long-running processes are workable as well?...
OS: CentOS6.2 Kernel: 2.6.32-279.14.1.el6.x86_64 RAM: 32GB ECC CPU: Xeon E5645 @2.40GHz \* 2 JDK: 1.6.0_31 首先第一次按照http://http-kit.org/600k-concurrent-connection-http-kit.html 的设置 客户端基本正常: ``` ... time 200s, concurrency: 547579, total requests: 2560038, thoughput: 26.39M/s, 12786.00...
Hi, shenfeng. I think you can understand what I'm speaking in Chinese, if not, tell me. 我尝试了你的这个例子(包括blog上面所说的各种对系统的限制的调整方法),可从是无法达到600k。总是到60k+的时候,就开始缓慢增长,接着就不断出现这样的异常了: java.net.ConnectException: 连接超时 at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:692) at ConcurrencyBench.finishConnect(ConcurrencyBench.java:241) at ConcurrencyBench.main(ConcurrencyBench.java:150) 我用你的例子对yaws进行测试,也是同样的现象(60k+);我该怎样调整,才能突破这个限制呢? Ubuntu...
This is really not an issue, but I am so wondering what the performance will be if you try with https connections ? Also, what is the memory consumption per...