增加Ubuntu下的Max Connections? (Tsung并发测试)

时间:2011-01-04 22:00:59

标签: node.js tsung

我正在测试NodeJ,尤其是并发性。我正在使用Tsung。 不幸的是,Tsung似乎无法产生足够的用户。我只有大约30K的同时连接,虽然~2GB的RAM仍未使用。 (Check the charts

XML-Config文件如下:

<tsung loglevel="notice" version="1.0">
<!-- Client side setup -->
−
<clients>
<client host="localhost" use_controller_vm="false"/>
<client host="localhost" use_controller_vm="false"/>
</clients>
<!-- Server side setup -->
−
<servers>
<server host="localhost" port="8000" type="tcp"/>
</servers>
−
<!--
 to start os monitoring (cpu, network, memory). Use an erlang
  agent on the remote machine or SNMP. erlang is the default 
-->
−
<monitoring>
<monitor host="localhost" type="erlang"/>
</monitoring>
−
<load>
−    
<arrivalphase phase="1" duration="50" unit="minute">
<users interarrival="0.000000001" unit="second"/>
</arrivalphase>
</load>
−
<sessions>
−
<session name="nodeJS" probability="100" type="ts_http">
−
<for from="0" to="40" incr="1" var="counter">
−
<request>
<http url="http://localhost:8000/" version="1.1" method="GET"/>
</request>
<thinktime random="false" value="300"/>
</for>
</session>
</sessions>
</tsung>

那么如何增加用户,以便使用所有的RAM ???

2 个答案:

答案 0 :(得分:3)

我解决了这个问题!我只需要增加端口范围。凭借4GB RAM,我几乎达到了最大可能的端口范围。正好61980个同时连接。伟大的NodeJs!

答案 1 :(得分:0)

根据您的CPU架构,节点可能仅支持1GB的RAM:http://code.google.com/p/v8/issues/detail?id=847

要解决此问题,您可以运行多个节点实例(并在需要时让它们相互通信)。像多节点这样的库可以帮助解决这个问题:https://github.com/kriszyp/multi-node

否则,您需要调整服务器以获取大量长时间运行的连接 - 除了我的专业知识,但有很多人在考虑这个问题。以下是来自nodejs Google Group的关于支持100k连接的帖子:https://groups.google.com/d/topic/nodejs/0Z34PH_R88o/discussion