-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds benchmarking using cmd/bbolt's bench, inspired on what it's used in kube-state-matrics. Co-authored-by: Manuel Rüger <[email protected]> Signed-off-by: Ivan Valdes <[email protected]> wip Signed-off-by: Ivan Valdes <[email protected]>
- Loading branch information
Showing
3 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
name: Benchmarks on AMD64 | ||
permissions: read-all | ||
on: [pull_request] | ||
jobs: | ||
benchmark-pull-request: | ||
runs-on: ubuntu-latest-8-cores | ||
steps: | ||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
with: | ||
fetch-depth: 0 | ||
- id: goversion | ||
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" | ||
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | ||
with: | ||
go-version: ${{ steps.goversion.outputs.goversion }} | ||
- name: Run Benchmarks | ||
run: | | ||
BENCHSTAT_OUTPUT_FILE=result.txt make test-benchmark-compare REF=${{ github.event.pull_request.base.sha }} | ||
- run: | | ||
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY" | ||
cat result.txt >> "$GITHUB_STEP_SUMMARY" | ||
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY" | ||
cat <<EOL >> "$GITHUB_STEP_SUMMARY" | ||
<hr /> | ||
The table shows the median and 90% confidence interval (CI) summaries for each benchmark comparing the HEAD and the BASE of the pull request, and an A/B comparison under "vs base". The last column shows the statistical p-value with ten runs (n=10). | ||
The last row has the Geometric Mean (geomean) for the given rows in the table. | ||
Refer to [benchstat's documentation](https://pkg.go.dev/golang.org/x/perf/cmd/benchstat) for more help. | ||
EOL | ||
- name: Validate results under acceptable limit | ||
run: | | ||
export MAX_ACCEPTABLE_DIFFERENCE=5 | ||
while IFS= read -r line; do | ||
# Get fourth value, which is the comparison with the base. | ||
value="$(echo "$line" | awk '{print $4}')" | ||
if [[ "$value" = +* ]] || [[ "$value" = -* ]]; then | ||
if (( $(echo "${value//[^0-9.]/}"'>'"$MAX_ACCEPTABLE_DIFFERENCE" | bc -l) )); then | ||
echo "::error::$value is above the maximum acceptable difference ($MAX_ACCEPTABLE_DIFFERENCE)" | ||
exit 1 | ||
fi | ||
fi | ||
done < <(grep geomean result.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#!/usr/bin/env bash | ||
# https://github.com/kubernetes/kube-state-metrics/blob/main/tests/compare_benchmarks.sh (originally written by mxinden) | ||
|
||
# exit immediately when a command fails | ||
set -e | ||
# only exit with zero if all commands of the pipeline exit successfully | ||
set -o pipefail | ||
# error on unset variables | ||
set -u | ||
|
||
[[ "$#" -eq 1 ]] || echo "One argument required, $# provided." | ||
|
||
REF_CURRENT="$(git rev-parse --abbrev-ref HEAD)" | ||
BASE_TO_COMPARE=$1 | ||
|
||
RESULT_CURRENT="$(mktemp)-${REF_CURRENT}" | ||
RESULT_TO_COMPARE="$(mktemp)-${BASE_TO_COMPARE}" | ||
|
||
BENCH_COUNT=${BENCH_COUNT:-10} | ||
BENCHSTAT_CONFIDENCE_LEVEL=${BENCHSTAT_CONFIDENCE_LEVEL:-0.9} | ||
BENCHSTAT_FORMAT=${BENCHSTAT_FORMAT:-"text"} | ||
BENCH_PARAMETERS=${BENCH_PARAMETERS:-"-count 2000000 -batch-size 10000"} | ||
|
||
if [[ "${BENCHSTAT_FORMAT}" == "csv" ]] && [[ -z "${BENCHSTAT_OUTPUT_FILE}" ]]; then | ||
echo "BENCHSTAT_FORMAT is set to csv, but BENCHSTAT_OUTPUT_FILE is not set." | ||
exit 1 | ||
fi | ||
|
||
function bench() { | ||
local output_file | ||
output_file="$1" | ||
make build | ||
|
||
for _ in $(seq "$BENCH_COUNT"); do | ||
echo ./bin/bbolt bench -gobench-output -profile-mode n ${BENCH_PARAMETERS} | ||
# shellcheck disable=SC2086 | ||
./bin/bbolt bench -gobench-output -profile-mode n ${BENCH_PARAMETERS} >> "${output_file}" | ||
done | ||
} | ||
|
||
function main() { | ||
echo "### Benchmarking PR ${REF_CURRENT}" | ||
bench "${RESULT_CURRENT}" | ||
echo "" | ||
echo "### Done benchmarking ${REF_CURRENT}" | ||
|
||
echo "### Benchmarking base ${BASE_TO_COMPARE}" | ||
git checkout "${BASE_TO_COMPARE}" | ||
bench "${RESULT_TO_COMPARE}" | ||
echo "" | ||
echo "### Done benchmarking ${BASE_TO_COMPARE}" | ||
|
||
git checkout - | ||
|
||
echo "" | ||
echo "### Result" | ||
echo "BASE=${BASE_TO_COMPARE} HEAD=${REF_CURRENT}" | ||
|
||
if [[ "${BENCHSTAT_FORMAT}" == "csv" ]]; then | ||
benchstat -format=csv -confidence="${BENCHSTAT_CONFIDENCE_LEVEL}" BASE="${RESULT_TO_COMPARE}" HEAD="${RESULT_CURRENT}" 2>/dev/null 1>"${BENCHSTAT_OUTPUT_FILE}" | ||
else | ||
if [[ -z "${BENCHSTAT_OUTPUT_FILE}" ]]; then | ||
benchstat -confidence="${BENCHSTAT_CONFIDENCE_LEVEL}" BASE="${RESULT_TO_COMPARE}" HEAD="${RESULT_CURRENT}" | ||
else | ||
benchstat -confidence="${BENCHSTAT_CONFIDENCE_LEVEL}" BASE="${RESULT_TO_COMPARE}" HEAD="${RESULT_CURRENT}" 1>"${BENCHSTAT_OUTPUT_FILE}" | ||
fi | ||
fi | ||
} | ||
|
||
main |