OS X 10.7.1上的httperf分段错误错误

当我尝试使用高请求率的httperf执行负载testing时,出现以下错误:

» httperf --client=0/1 --server=www.xxxxx.com --port=80 --uri=/ --send-buffer=4096 --recv-buffer=16384 --num-conns=200 --rate=30 httperf --client=0/1 --server=staging.truecar.com --port=80 --uri=/ --rate=30 --send-buffer=4096 --recv-buffer=16384 --num-conns=200 --num-calls=1 httperf: warning: open file limit > FD_SETSIZE; limiting max. # of open files to FD_SETSIZE **Segmentation fault: 11** 

当“比率”> 15时,错误就会上升

版本:

httperf 0.9.0

OS X 10.7.1

正如警告所述,与http服务器的连接数超过了允许的最大打开文件描述符数。 即使httperf正在将值限制为FD_SETSIZE,您可能会超出该限制。

你可以用ulimit -a来检查极限值

 $ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory (kbytes, -l) unlimited max memory size (kbytes, -m) unlimited open files (-n) 256 pipe size (512 bytes, -p) 1 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 709 virtual memory (kbytes, -v) unlimited 

尝试使用ulimit -n <n>增加限制

 $ ulimit -n 2048 $ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory (kbytes, -l) unlimited max memory size (kbytes, -m) unlimited open files (-n) 2048 pipe size (512 bytes, -p) 1 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 709 virtual memory (kbytes, -v) unlimited 

这是大型Web服务器等的常见做法,因为套接字基本上只是一个打开的文件描述符。

尝试使用gdb并使用如下所示:

 $ gdb httperf --client=0/1 --server=staging.truecar.com \ --port=80 --uri=/ --rate=30 --send-buffer=4096 \ --recv-buffer=16384 --num-conns=200 --num-calls=1 

这将调用gdb ,你应该看到一个(gdb)提示符。

然后: run并进入。

如果它会崩溃,请inputbt (backtrace)。 在这里调查和/或分享。

kshbash使用ulimitcsh使用limit命令。