-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_all.sh
executable file
·45 lines (35 loc) · 1.13 KB
/
bench_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
run_wrk='wrk -t12 -c1000 -d60s'
for name in `ls -d *-app`
do
echo $name |tee -a ./artifacts/results.log
cd $name
if [ -f "runIt" ]; then
. runIt
else
lein clean
lein uberjar
java -jar ./target/uberjar/$name.jar &
fi
cd ..
sleep 10
echo "Warm up..."
eval $run_wrk http://localhost:8080/?delay=0
sleep 5
eval $run_wrk http://localhost:8080/?delay=1
for factor in 0 0.2 0.4 0.6 0.8 1 1.5 2 3 4
do
sleep 5
delay=`echo $factor*100/1 | bc`
echo "benchmark [$delay ms]:"| tee -a ./artifacts/results.log
eval TITLE=$name DELAY=$delay $run_wrk \
-s ./report.lua \
http://localhost:8080/?delay=$delay | tee -a ./artifacts/results.log
echo "------------------------------------------"| tee -a ./artifacts/results.log
echo | tee -a ./artifacts/results.log
done;
for x in `jobs -p`; do kill -9 $x; done
echo "=========================================="| tee -a ./artifacts/results.log
echo | tee -a ./artifacts/results.log
echo | tee -a ./artifacts/results.log
done;