Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds initial configuration and documentation to run this repo’s benchmarks via an external “benchmarker” tool, covering both JS and Rust backends.
Changes:
- Introduces benchmark runner YAML configs for ScyllaDB JS driver, DataStax/Cassandra JS driver, and the Rust driver.
- Adds wrapper scripts to adapt benchmark runner arguments/environment to existing benchmark entrypoints.
- Expands
benchmark/README.mdwith usage instructions and ignores generated benchmark artifacts.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
benchmark/runner-config/config.yml |
Defines default benchmark runner parameters and starting steps per benchmark. |
benchmark/runner-config/scylladb-driver/config.yml |
Adds backend config for running JS benchmarks against scylladb-driver-alpha. |
benchmark/runner-config/cassandra-driver/config.yml |
Adds backend config for running JS benchmarks against cassandra-driver. |
benchmark/runner-config/rust-driver/config.yml |
Adds backend config for building/running Rust benchmark binaries. |
benchmark/runner-config/run-js-benchmark.sh |
Wrapper to run JS benchmark entrypoints with (driver, N) arguments. |
benchmark/runner-config/run-rust-benchmark.sh |
Wrapper to run Rust benchmark binaries with CNT env set from N. |
benchmark/README.md |
Documents the new benchmarker-based workflow and plotting. |
.gitignore |
Ignores benchmark output artifacts (.db, .svg). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
wprzytula
requested changes
Mar 16, 2026
This commit introduces configuration files for the benchmark runner (an internal tool we created for benchmarking different drivers). This configuration reflect the current configuration present in the existing python runner.
wprzytula
approved these changes
Mar 18, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds configuration for the benchmarker, alongside some simple documentation how to use it in the case of this driver