Merge 'Bring back TPC-H benchmarks' from Pekka Enberg
Some checks are pending
Rust Benchmarks+Nyrkiö / bench (push) Waiting to run
Build and push limbo-sim image / deploy (push) Waiting to run
Go Tests / test (push) Waiting to run
Java Tests / test (push) Waiting to run
Run long fuzz tests on Btree / run-long-tests (push) Waiting to run
Run long fuzz tests on Btree / simple-stress-test (push) Waiting to run
JavaScript / stable - aarch64-apple-darwin - node@20 (push) Waiting to run
JavaScript / stable - x86_64-apple-darwin - node@20 (push) Waiting to run
JavaScript / stable - x86_64-pc-windows-msvc - node@20 (push) Waiting to run
JavaScript / stable - x86_64-unknown-linux-gnu - node@20 (push) Waiting to run
JavaScript / Test bindings on x86_64-apple-darwin - node@20 (push) Blocked by required conditions
JavaScript / Test bindings on Linux-x64-gnu - node@20 (push) Blocked by required conditions
JavaScript / Build universal macOS binary (push) Blocked by required conditions
JavaScript / Publish (push) Blocked by required conditions
Python / configure-strategy (push) Waiting to run
Python / test (push) Blocked by required conditions
Python / lint (push) Waiting to run
Python / linux (x86_64) (push) Waiting to run
Python / macos-x86_64 (x86_64) (push) Waiting to run
Python / macos-arm64 (aarch64) (push) Waiting to run
Python / sdist (push) Waiting to run
Python / Release (push) Blocked by required conditions
Rust / cargo-fmt-check (push) Waiting to run
Rust / build-native (blacksmith-4vcpu-ubuntu-2404) (push) Waiting to run
Rust / build-native (macos-latest) (push) Waiting to run
Rust / build-native (windows-latest) (push) Waiting to run
Rust / clippy (push) Waiting to run
Rust / build-wasm (push) Waiting to run
Rust / test-limbo (push) Waiting to run
Rust / test-sqlite (push) Waiting to run
Rust Benchmarks+Nyrkiö / clickbench (push) Waiting to run
Rust Benchmarks+Nyrkiö / tpc-h-criterion (push) Waiting to run
Rust Benchmarks+Nyrkiö / tpc-h (push) Waiting to run

Closes #1836
This commit is contained in:
Pekka Enberg 2025-06-26 11:38:05 +03:00
commit d5b06b96ef
2 changed files with 62 additions and 62 deletions

View file

@ -100,63 +100,63 @@ jobs:
never-fail: true
nyrkio-public: true
# tpc-h-criterion:
# runs-on: blacksmith-4vcpu-ubuntu-2404
# env:
# DB_FILE: "perf/tpc-h/TPC-H.db"
# steps:
# - uses: actions/checkout@v3
# - uses: useblacksmith/rust-cache@v3
# with:
# prefix-key: "v1-rust" # can be updated if we need to reset caches due to non-trivial change in the dependencies (for example, custom env var were set for single workspace project)
#
# - name: Cache TPC-H
# id: cache-primes
# uses: useblacksmith/cache@v5
# with:
# path: ${{ env.DB_FILE }}
# key: tpc-h
# - name: Download TPC-H
# if: steps.cache-primes.outputs.cache-hit != 'true'
# env:
# DB_URL: "https://github.com/lovasoa/TPCH-sqlite/releases/download/v1.0/TPC-H.db"
# run: wget -O $DB_FILE --no-verbose $DB_URL
#
# - name: Bench
# run: cargo bench --bench tpc_h_benchmark 2>&1 | tee output.txt
# - name: Analyze benchmark result with Nyrkiö
# uses: nyrkio/change-detection@HEAD
# with:
# name: tpc-h
# tool: criterion
# output-file-path: output.txt
#
# # What to do if a change is immediately detected by Nyrkiö.
# # Note that smaller changes are only detected with delay, usually after a change
# # persisted over 2-7 commits. Go to nyrkiö.com to view those or configure alerts.
# # Note that Nyrkiö will find all changes, also improvements. This means fail-on-alert
# # on pull events isn't compatible with this workflow being required to pass branch protection.
# fail-on-alert: false
# comment-on-alert: true
# comment-always: false
# # Nyrkiö configuration
# # Get yours from https://nyrkio.com/docs/getting-started
# nyrkio-token: ${{ secrets.NYRKIO_JWT_TOKEN }}
# # HTTP requests will fail for all non-core contributors that don't have their own token.
# # Don't want that to spoil the build, so:
# never-fail: true
# # Make results and change points public, so that any oss contributor can see them
# nyrkio-public: true
#
# # parameters of the algorithm. Note: These are global, so we only set them once and for all.
# # Smaller p-value = less change points found. Larger p-value = more, but also more false positives.
# nyrkio-settings-pvalue: 0.0001
# # Ignore changes smaller than this.
# nyrkio-settings-threshold: 0%
#
# tpc-h:
# runs-on: blacksmith-4vcpu-ubuntu-2404
# steps:
# - uses: actions/checkout@v3
# - name: TPC-H
# run: ./perf/tpc-h/benchmark.sh
tpc-h-criterion:
runs-on: blacksmith-4vcpu-ubuntu-2404
env:
DB_FILE: "perf/tpc-h/TPC-H.db"
steps:
- uses: actions/checkout@v3
- uses: useblacksmith/rust-cache@v3
with:
prefix-key: "v1-rust" # can be updated if we need to reset caches due to non-trivial change in the dependencies (for example, custom env var were set for single workspace project)
- name: Cache TPC-H
id: cache-primes
uses: useblacksmith/cache@v5
with:
path: ${{ env.DB_FILE }}
key: tpc-h
- name: Download TPC-H
if: steps.cache-primes.outputs.cache-hit != 'true'
env:
DB_URL: "https://github.com/lovasoa/TPCH-sqlite/releases/download/v1.0/TPC-H.db"
run: wget -O $DB_FILE --no-verbose $DB_URL
- name: Bench
run: cargo bench --bench tpc_h_benchmark 2>&1 | tee output.txt
- name: Analyze benchmark result with Nyrkiö
uses: nyrkio/change-detection@HEAD
with:
name: tpc-h
tool: criterion
output-file-path: output.txt
# What to do if a change is immediately detected by Nyrkiö.
# Note that smaller changes are only detected with delay, usually after a change
# persisted over 2-7 commits. Go to nyrkiö.com to view those or configure alerts.
# Note that Nyrkiö will find all changes, also improvements. This means fail-on-alert
# on pull events isn't compatible with this workflow being required to pass branch protection.
fail-on-alert: false
comment-on-alert: true
comment-always: false
# Nyrkiö configuration
# Get yours from https://nyrkio.com/docs/getting-started
nyrkio-token: ${{ secrets.NYRKIO_JWT_TOKEN }}
# HTTP requests will fail for all non-core contributors that don't have their own token.
# Don't want that to spoil the build, so:
never-fail: true
# Make results and change points public, so that any oss contributor can see them
nyrkio-public: true
# parameters of the algorithm. Note: These are global, so we only set them once and for all.
# Smaller p-value = less change points found. Larger p-value = more, but also more false positives.
nyrkio-settings-pvalue: 0.0001
# Ignore changes smaller than this.
nyrkio-settings-threshold: 0%
tpc-h:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v3
- name: TPC-H
run: ./perf/tpc-h/benchmark.sh

View file

@ -66,7 +66,7 @@ for query_file in $(ls "$QUERIES_DIR"/*.sql | sort -V); do
# Clear caches before Limbo run
clear_caches
# Run Limbo
limbo_output=$( { time -p "$LIMBO_BIN" "$DB_FILE" --quiet --output-mode list "$(cat $query_file)" 2>&1; } 2>&1)
limbo_output=$( { time -p "$LIMBO_BIN" "$DB_FILE" --experimental-indexes --quiet --output-mode list "$(cat $query_file)" 2>&1; } 2>&1)
limbo_non_time_lines=$(echo "$limbo_output" | grep -v -e "^real" -e "^user" -e "^sys")
limbo_real_time=$(echo "$limbo_output" | grep "^real" | awk '{print $2}')
echo "Running $query_name with SQLite3..." >&2
@ -95,4 +95,4 @@ for query_file in $(ls "$QUERIES_DIR"/*.sql | sort -V); do
done
echo "-----------------------------------------------------------"
echo "TPC-H query timing comparison completed."
echo "TPC-H query timing comparison completed."