-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sample end-to-end benchmarking flow + cleanup (#117)
* cleanup * removing in favour of byte size experiment * provide a sample experiment * sample benchmarking flow update * update root of directory
- Loading branch information
1 parent
b90ee0b
commit 52ab2a3
Showing
25 changed files
with
11,043 additions
and
360 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 |
---|---|---|
|
@@ -11,7 +11,6 @@ install/ | |
|
||
# e2e benchmarking flow | ||
out/ | ||
*.csv | ||
|
||
# Miscellaneous | ||
.vscode/ | ||
|
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,21 @@ | ||
# Benchmarking Sample | ||
|
||
## Files provided: | ||
|
||
- `data/sample/sample_seed.csv`: Sample DB seed file | ||
- `data/sample/sample_operations.csv`: Sample operations file | ||
|
||
## Running the benchmark | ||
|
||
```bash | ||
# Create a venv and install the SDK if not done | ||
ORTOA/ortoa-tee/ $ python3 -m venv .venv # If you don't have a venv ready | ||
ORTOA/ortoa-tee/ $ . .venv/bin/activate | ||
ORTOA/ortoa-tee/ $ pip install -e extras/ | ||
|
||
# Source script library | ||
ORTOA/ortoa-tee/ $ source scripts/ortoa-lib.sh | ||
|
||
# Run the benchmark | ||
ORTOA/ortoa-tee/ $ ortoa-benchmark -e data/sample/sample_experiment.yaml | ||
``` |
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,16 @@ | ||
name: Sample Experiment | ||
|
||
output_directory: sample_experiment/ | ||
|
||
metadata: | ||
description: A sample experiment to help demonstrate the benchmarking flow. | ||
|
||
client_config: | ||
data: | ||
data_type: seed | ||
seed: ortoa-tee/data/sample/sample_seed.csv | ||
operations: ortoa-tee/data/sample/sample_operations.csv | ||
|
||
flags: | ||
- name: nthreads | ||
value: 32 |
Oops, something went wrong.