benchmark script done

This commit is contained in:
Torma Kristóf 2019-04-02 22:18:13 +02:00
parent 4d500ef688
commit a29c097a5c
1 changed files with 24 additions and 0 deletions

24
functions/benchmark.sh Normal file
View File

@ -0,0 +1,24 @@
#!/bin/bash
functions=(helloget matrix)
connections=(2 5 10 20 21 50 100 200 400 500 1000)
kuberhost=""
for function in "${functions[@]}"
do
echo -e "Benchmarking $function\n"
for connection in "${connections[@]}"
do
if [[ $connection -lt 20 ]]
then
threads=$(($connection-1))
else
threads=20
fi
echo -e "Threads: $threads Connections $connection\n"
wrk -t$threads -d1m -c$connection -H"Host: $function.cucc" -H"Content-Type:application/json" --latency http://$kuberhost/$function > ./$function.$connection.txt 2>&1
hey -n 10000 -c $connection -o csv -m GET -host "$function.cucc" -T "application/json" http://$kuberhost/$function > $function.$connection.csv
done
done