From 31f9657076abcf239de04d079eaa5b603b13c520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Wed, 3 Apr 2019 00:10:38 +0200 Subject: [PATCH] Update benchmark.sh --- benchmark/benchmark.sh | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/benchmark/benchmark.sh b/benchmark/benchmark.sh index 7755196..87039ec 100644 --- a/benchmark/benchmark.sh +++ b/benchmark/benchmark.sh @@ -1,8 +1,9 @@ #!/bin/bash -functions=(hello matrix) +functions=(hello) connections=(2 5 10 20 50 100 200 400 500 1000) times=(10s 30s 1m 5m 15m) +data=(isprime) kuberhost="node1:32764" WRK_INSTALLED=$(which wrk) @@ -47,3 +48,27 @@ do hey -n 100000000 -c $connection -o csv -m GET -host "$function.kubeless" -T "application/json" http://$kuberhost/$function > $function.$connection.csv done done + +for function in "${data[@]}" +do + echo -e "Benchmarking $function\n" + echo -e "Output of $function is:\n" + curl --header "Host: $function.kubeless" --header "Content-Type:application/json" http://$kuberhost/$function + 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" + 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 + done + hey -n 100000000 -c $connection -o csv -m POST -host "$function.kubeless" -T "application/json" -D $function.body.txt http://$kuberhost/$function > $function.$connection.csv + done +done