From ec7455558f690fa5afb4e9f762a77ddaa51212f7 Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 19 Dec 2012 15:27:21 -0800 Subject: [PATCH] benchmark: Set ephemeral ports properly on sunos --- benchmark/http-flamegraph.sh | 12 ++++++++++-- benchmark/http.sh | 19 ++++++++++++++++--- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/benchmark/http-flamegraph.sh b/benchmark/http-flamegraph.sh index 41aa5046f0a..b5b69129bcd 100644 --- a/benchmark/http-flamegraph.sh +++ b/benchmark/http-flamegraph.sh @@ -6,12 +6,20 @@ node=${NODE:-./node} name=${NAME:-stacks} if type sysctl &>/dev/null; then + # darwin and linux sudo sysctl -w net.inet.ip.portrange.first=12000 sudo sysctl -w net.inet.tcp.msl=1000 sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000 +elif type /usr/sbin/ndd &>/dev/null; then + # sunos + /usr/sbin/ndd -set /dev/tcp tcp_smallest_anon_port 12000 + /usr/sbin/ndd -set /dev/tcp tcp_largest_anon_port 65535 + /usr/sbin/ndd -set /dev/tcp tcp_max_buf 2097152 + /usr/sbin/ndd -set /dev/tcp tcp_xmit_hiwat 1048576 + /usr/sbin/ndd -set /dev/tcp tcp_recv_hiwat 1048576 fi -ulimit -n 100000 +ulimit -n 100000 $node benchmark/http_simple.js & nodepid=$! echo "node pid = $nodepid" @@ -45,7 +53,7 @@ test () { echo 'Keep going until dtrace stops listening...' while pargs $dtracepid &>/dev/null; do - test 100 bytes 1 -k + test 100 bytes ${LENGTH:-1} -k done kill $nodepid diff --git a/benchmark/http.sh b/benchmark/http.sh index b5c5388add4..c83d9e99c27 100755 --- a/benchmark/http.sh +++ b/benchmark/http.sh @@ -1,8 +1,20 @@ #!/bin/bash cd "$(dirname "$(dirname $0)")" -sudo sysctl -w net.inet.ip.portrange.first=12000 -sudo sysctl -w net.inet.tcp.msl=1000 -sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000 + +if type sysctl &>/dev/null; then + # darwin and linux + sudo sysctl -w net.inet.ip.portrange.first=12000 + sudo sysctl -w net.inet.tcp.msl=1000 + sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000 +elif type /usr/sbin/ndd &>/dev/null; then + # sunos + /usr/sbin/ndd -set /dev/tcp tcp_smallest_anon_port 12000 + /usr/sbin/ndd -set /dev/tcp tcp_largest_anon_port 65535 + /usr/sbin/ndd -set /dev/tcp tcp_max_buf 2097152 + /usr/sbin/ndd -set /dev/tcp tcp_xmit_hiwat 1048576 + /usr/sbin/ndd -set /dev/tcp tcp_recv_hiwat 1048576 +fi + ulimit -n 100000 k=${KEEPALIVE} @@ -15,6 +27,7 @@ node=${NODE:-./node} $node benchmark/http_simple.js & npid=$! + sleep 1 if [ "$k" = "-k" ]; then