Skip to content

Commit

Permalink
Add additional Aurora configs for resource scaling model data collection
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Dec 1, 2023
1 parent 9484c07 commit b08de0c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tools/calibration/load/aurora/COND
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,24 @@ for instance in INSTANCE_TYPES:
for clients, query_idx in product(NUM_CLIENTS, range(NUM_QUERIES))
],
)

for instance in ["r6g_4xlarge", "r6g_8xlarge"]:
run_experiment_group(
name=f"{instance}-imdb_extended_100g",
run="python3 -m brad.calibration.measure_load",
experiments=[
ExperimentInstance(
name=f"{instance}-imdb_extended_100g-1-q{query_idx}",
options={
"num-clients": 1,
"specific-query-idx": query_idx,
"run-for-s": RUN_FOR_S,
"avg-gap-s": AVG_GAP_S,
"wait-before-start": WAIT_BEFORE_START,
"query-file": "../../../../workloads/IMDB_100GB/scaling_20/queries.sql",
"engine": "aurora",
},
)
for query_idx in range(NUM_QUERIES)
],
)

0 comments on commit b08de0c

Please sign in to comment.