forked from LesnyRumcajs/grpc_bench
-
Notifications
You must be signed in to change notification settings - Fork 2
/
bench.sh
executable file
·152 lines (135 loc) · 4.55 KB
/
bench.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/bin/bash
## The list of benchmarks to run
BENCHMARKS_TO_RUN="${@}"
## ...or use all the *_bench dirs by default
BENCHMARKS_TO_RUN="${BENCHMARKS_TO_RUN:-$(find . -maxdepth 1 -name '*_bench' -type d | sort)}"
RESULTS_DIR="results/$(date '+%y%m%dT%H%M%S')"
export GRPC_BENCHMARK_DURATION=${GRPC_BENCHMARK_DURATION:-"20s"}
export GRPC_BENCHMARK_WARMUP=${GRPC_BENCHMARK_WARMUP:-"5s"}
export GRPC_SERVER_CPUS=${GRPC_SERVER_CPUS:-"1"}
export GRPC_SERVER_RAM=${GRPC_SERVER_RAM:-"512m"}
export GRPC_CLIENT_CONNECTIONS=${GRPC_CLIENT_CONNECTIONS:-"50"}
export GRPC_CLIENT_CONCURRENCY=${GRPC_CLIENT_CONCURRENCY:-"1000"}
export GRPC_CLIENT_QPS=${GRPC_CLIENT_QPS:-"0"}
export GRPC_CLIENT_QPS=$(( GRPC_CLIENT_QPS / GRPC_CLIENT_CONCURRENCY ))
export GRPC_CLIENT_CPUS=${GRPC_CLIENT_CPUS:-"1"}
export GRPC_REQUEST_SCENARIO=${GRPC_REQUEST_SCENARIO:-"complex_proto"}
export GRPC_IMAGE_NAME="${GRPC_IMAGE_NAME:-grpc_bench}"
export GRPC_GHZ_TAG="${GRPC_GHZ_TAG:-0.114.0}"
export GRPC_USE_CLIENT_STREAMING=${GRPC_USE_CLIENT_STREAMING:-"false"}
# Let containers know how many CPUs they will be running on
# Additionally export other vars for further analysis script.
# export GRPC_SERVER_CPUS
# export GRPC_CLIENT_CPUS
# export GRPC_BENCHMARK_DURATION
# export GRPC_BENCHMARK_WARMUP
# export GRPC_CLIENT_CONNECTIONS
# export GRPC_CLIENT_CONCURRENCY
# export GRPC_CLIENT_QPS
wait_on_tcp50051() {
for ((i=1;i<=10*30;i++)); do
nc -z localhost 50051 && return 0
sleep .1
done
return 1
}
# Loop over benchs
for benchmark in ${BENCHMARKS_TO_RUN}; do
NAME="${benchmark##*/}"
echo "==> Running benchmark for ${NAME}..."
mkdir -p "${RESULTS_DIR}"
# Setup the chosen scenario
if ! sh setup_scenario.sh $GRPC_REQUEST_SCENARIO true; then
echo "Scenario setup fiascoed."
exit 1
fi
# Start the gRPC Server container
docker run \
--name "${NAME}" \
--rm \
--cpus "${GRPC_SERVER_CPUS}" \
--memory "${GRPC_SERVER_RAM}" \
-e GRPC_SERVER_CPUS \
-e GRPC_SERVER_RAM \
-p 50051:50051 \
--detach \
--tty \
"$GRPC_IMAGE_NAME:${NAME}-$GRPC_REQUEST_SCENARIO" >/dev/null
printf 'Waiting for server to come up... '
if ! wait_on_tcp50051; then
echo 'server unresponsive!'
exit 1
fi
echo 'ready.'
# Warm up the service
if [[ "${GRPC_BENCHMARK_WARMUP}" != "0s" ]]; then
echo -n "Warming up the service for ${GRPC_BENCHMARK_WARMUP}... "
docker run --name ghz --rm --network=host -v "${PWD}/proto:/proto:ro" \
-v "${PWD}/payload:/payload:ro" \
--cpus $GRPC_CLIENT_CPUS \
ghcr.io/bojand/ghz:"${GRPC_GHZ_TAG}" \
--proto=/proto/helloworld/helloworld.proto \
--call=helloworld.Greeter.SayHello \
--disable-template-functions \
--disable-template-data \
--insecure \
--concurrency="${GRPC_CLIENT_CONCURRENCY}" \
--connections="${GRPC_CLIENT_CONNECTIONS}" \
--rps="${GRPC_CLIENT_QPS}" \
--duration "${GRPC_BENCHMARK_WARMUP}" \
--data-file /payload/payload \
127.0.0.1:50051 > /dev/null
echo "done."
else
echo "gRPC Server Warmup skipped."
fi
# Actual benchmark
echo "Benchmarking now... "
# Start collecting stats
./collect_stats.sh "${NAME}" "${RESULTS_DIR}" &
# Start the gRPC Client
if [[ "${GRPC_USE_CLIENT_STREAMING}" != "false" ]]; then
proto="/proto2/streaming/stream.proto"
call="streaming.Stream.ClientStreaming"
else
proto="/proto/helloworld/helloworld.proto"
call="helloworld.Greeter.SayHello"
fi
docker run --name ghz --rm --network=host -v "${PWD}/proto:/proto:ro" -v "${PWD}/proto2:/proto2:ro" \
-v "${PWD}/payload:/payload:ro" \
--cpus $GRPC_CLIENT_CPUS \
ghcr.io/bojand/ghz:"${GRPC_GHZ_TAG}" \
--proto=/proto/helloworld/helloworld.proto \
--call=helloworld.Greeter.SayHello \
--disable-template-functions \
--disable-template-data \
--insecure \
--concurrency="${GRPC_CLIENT_CONCURRENCY}" \
--connections="${GRPC_CLIENT_CONNECTIONS}" \
--rps="${GRPC_CLIENT_QPS}" \
--duration "${GRPC_BENCHMARK_DURATION}" \
--data-file /payload/payload \
127.0.0.1:50051 >"${RESULTS_DIR}/${NAME}".report
# Show quick summary (reqs/sec)
cat << EOF
done.
Results:
$(cat "${RESULTS_DIR}/${NAME}".report | grep "Requests/sec" | sed -E 's/^ +/ /')
EOF
kill -INT %1 2>/dev/null
docker container stop "${NAME}" >/dev/null
done
if sh analyze.sh $RESULTS_DIR; then
cat ${RESULTS_DIR}/bench.params
echo "All done."
else
echo "Analysis fiascoed."
ls -lha $RESULTS_DIR
for f in $RESULTS_DIR/*; do
echo
echo
echo "$f"
cat "$f"
done
exit 1
fi