-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Run TPC-H SF10 during PR benchmarks #9822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,9 +28,10 @@ jobs: | |
| cd benchmarks | ||
| mkdir data | ||
|
|
||
| # Setup the TPC-H data set with a scale factor of 10 | ||
| # Setup the TPC-H data sets for scale factors 1 and 10 | ||
| ./bench.sh data tpch | ||
|
|
||
| ./bench.sh data tpch10 | ||
|
|
||
| - name: Generate unique result names | ||
| run: | | ||
| echo "HEAD_LONG_SHA=$(git log -1 --format='%H')" >> "$GITHUB_ENV" | ||
|
|
@@ -44,6 +45,9 @@ jobs: | |
| cd benchmarks | ||
|
|
||
| ./bench.sh run tpch | ||
| ./bench.sh run tpch_mem | ||
| ./bench.sh run tpch10 | ||
| ./bench.sh run tpch_mem10 | ||
|
|
||
| # For some reason this step doesn't seem to propagate the env var down into the script | ||
| if [ -d "results/HEAD" ]; then | ||
|
|
@@ -64,6 +68,9 @@ jobs: | |
| cd benchmarks | ||
|
|
||
| ./bench.sh run tpch | ||
| ./bench.sh run tpch_mem | ||
| ./bench.sh run tpch10 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps we could run
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I can add tpch10_mem as well.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok I've added both |
||
| ./bench.sh run tpch_mem10 | ||
|
|
||
| echo ${{ github.event.issue.number }} > pr | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it make sense to do SF=1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair point; I guess it can be beneficial to detect minor systemic/non-linear regressions that are larger than the noise level, but smaller then the sensitivity of SF 10?