blob: fb9ab5e631201a34919a033a4bd6e1d6afddeed9 [file] [log] [blame]
#!/bin/sh
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -e
currentDir="$(cd "$(dirname "$0")"; pwd)"
# Host to use. Needs to include the protocol.
host=$1
# Credentials to use for the test. USER:PASS format.
credentials=$2
# Path to action src
action_src=$3
# concurrency level of the throughput test: How many requests should
# open in parallel.
concurrency=$4
# Action concurrency setting (how many concurrent activations does action allow?)
action_concurrency=${5:-1}
# How many threads to utilize, directly correlates to the number
# of CPU cores
threads=${6:-4}
# How long to run the test
duration=${7:-30s}
# Use the filename (without extension) of the action_src as the name of the action
action="$(basename $action_src | cut -f 1 -d '.')_$action_concurrency"
"$currentDir/../preparation/create.sh" "$host" "$credentials" "$action" "$action_src" "$action_concurrency"
# run throughput tests
encodedAuth=$(echo "$credentials" | tr -d '\n' | base64 | tr -d '\n')
docker run --pid=host --userns=host --rm -v "$currentDir":/data williamyeh/wrk \
--threads "$threads" \
--connections "$concurrency" \
--duration "$duration" \
--header "Authorization: basic $encodedAuth" \
--header "X-Request-ID: throughput-$action" \
"$host/api/v1/namespaces/_/actions/$action?blocking=true" \
--latency \
--timeout 10s \
--script post.lua