kubeless/benchmark/benchmark.sh

78 lines
2.5 KiB
Bash
Raw Normal View History

2019-04-02 22:18:13 +02:00
#!/bin/bash
2019-04-03 00:10:38 +02:00
functions=(hello)
2019-04-02 23:22:28 +02:00
connections=(2 5 10 20 50 100 200 400 500 1000)
2019-04-02 23:41:53 +02:00
times=(10s 30s 1m 5m 15m)
2019-04-03 00:10:38 +02:00
data=(isprime)
2019-04-02 22:46:20 +02:00
kuberhost="node1:32764"
2019-04-02 23:42:11 +02:00
2019-04-02 23:01:26 +02:00
WRK_INSTALLED=$(which wrk)
2019-04-02 23:11:40 +02:00
if [ "$WRK_INSTALLED" = "" ]
2019-04-02 23:01:26 +02:00
then
2019-04-03 00:53:48 +02:00
apt-get install build-essential libssl-dev git -y
2019-04-02 23:04:16 +02:00
git clone https://github.com/wg/wrk.git wrk
cd wrk
make
2019-04-02 23:06:01 +02:00
cp wrk /usr/local/bin
2019-04-02 23:01:26 +02:00
fi
HEY_INSTALLED=$(which hey)
2019-04-02 23:11:40 +02:00
if [ "$HEY_INSTALLED" = "" ]
2019-04-02 23:01:26 +02:00
then
apt update
2019-04-02 23:04:16 +02:00
apt install -y golang
go get -u github.com/rakyll/hey
2019-04-02 23:08:21 +02:00
cp $HOME/go/bin/hey /usr/local/bin
2019-04-02 23:01:26 +02:00
fi
2019-04-02 22:18:13 +02:00
2019-04-03 00:27:58 +02:00
echo -e "Benchmarking GET functions\n"
2019-04-02 22:18:13 +02:00
for function in "${functions[@]}"
do
echo -e "Benchmarking $function\n"
2019-04-02 23:15:53 +02:00
echo -e "Output of $function is:\n"
2019-04-02 23:17:39 +02:00
curl --header "Host: $function.kubeless" --header "Content-Type:application/json" http://$kuberhost/$function
2019-04-02 23:19:46 +02:00
echo -e "\n"
2019-04-02 22:18:13 +02:00
for connection in "${connections[@]}"
do
2019-04-02 23:22:28 +02:00
if [[ $connection -lt 41 ]]
2019-04-02 22:18:13 +02:00
then
threads=$(($connection-1))
else
2019-04-02 23:22:28 +02:00
threads=40
2019-04-02 22:18:13 +02:00
fi
echo -e "Threads: $threads Connections $connection\n"
2019-04-02 23:27:08 +02:00
for time in "${times[@]}"
do
2019-04-02 23:41:53 +02:00
echo -e "Time: $time\n"
2019-04-02 23:30:35 +02:00
wrk -t$threads -d$time -c$connection -H"Host: $function.kubeless" -H"Content-Type:application/json" --latency http://$kuberhost/$function > ./$function.$connection.$time.txt 2>&1
2019-04-02 23:27:08 +02:00
done
hey -n 100000000 -c $connection -o csv -m GET -host "$function.kubeless" -T "application/json" http://$kuberhost/$function > $function.$connection.csv
2019-04-02 22:18:13 +02:00
done
2019-04-02 22:42:30 +02:00
done
2019-04-03 00:10:38 +02:00
2019-04-03 00:27:58 +02:00
echo -e "Benchmarking POST functions\n"
2019-04-03 00:10:38 +02:00
for function in "${data[@]}"
do
echo -e "Benchmarking $function\n"
echo -e "Output of $function is:\n"
2019-04-03 00:39:59 +02:00
perl -pi -e 'chomp if eof' $function.body
curl --data-binary "@$function.body" --header "Host: $function.kubeless" --header "Content-Type:application/json" http://$kuberhost/$function
2019-04-03 00:10:38 +02:00
echo -e "\n"
for connection in "${connections[@]}"
do
if [[ $connection -lt 41 ]]
then
threads=$(($connection-1))
else
threads=40
fi
echo -e "Threads: $threads Connections $connection\n"
for time in "${times[@]}"
do
echo -e "Time: $time\n"
2019-04-03 00:39:59 +02:00
wrk -t$threads -d$time -c$connection -s$function.wrk -H"Host: $function.kubeless" -H"Content-Type:application/json" --latency http://$kuberhost/$function > ./$function.$connection.$time.txt 2>&1
2019-04-03 00:10:38 +02:00
done
2019-04-03 00:39:59 +02:00
hey -n 100000000 -c $connection -o csv -m POST -host "$function.kubeless" -T "application/json" -D $function.body http://$kuberhost/$function > $function.$connection.csv
2019-04-03 00:10:38 +02:00
done
done