-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tpch_benchmark queries single-threaded in rayon pool (#463)
In #459 , we used an 8-thread pool and a single tokio runtime to run all of the queries in parallel. There was huge variability on the values returned by those benchmarks. This PR * Switches from using tokio global runtime for parallelism to using a Rayon pool * Each query executes in a current-thread tokio runtime, which should be a bit more apples-to-apples * Removed CSV measurements, and now have each query+format pair do 3 warmup runs, followed by 20 measured runs, then take the min over measurements * Fixed the coloration logic for table (oops) * A few small drive-bys
- Loading branch information
Showing
3 changed files
with
102 additions
and
57 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
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