Skip to content

Commit

Permalink
Experiment configuration fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Oct 8, 2023
1 parent 32333d7 commit faffd5d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/brad/admin/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ async def control_impl(args) -> None:
if blueprint.aurora_provisioning().num_nodes() > 0:
if directory.aurora_writer().status() != RdsStatus.Stopped:
logger.warning(
"Aurora instance %s is not stopped. Not issuing a start command."
"Aurora instance %s is not stopped. Not issuing a start command.",
config.aurora_cluster_id,
)
else:
futures.append(
Expand All @@ -73,7 +74,8 @@ async def control_impl(args) -> None:
!= RedshiftAvailabilityStatus.Paused
):
logger.warning(
"Redshift cluster %s is not paused. Not issuing a resume command."
"Redshift cluster %s is not paused. Not issuing a resume command.",
config.redshift_cluster_id,
)
else:
futures.append(
Expand Down
2 changes: 1 addition & 1 deletion tools/calibration/transactions/imdb_extended/COND
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ NUM_CLIENTS = {
"r6g_4xlarge": [1, 2, 4, 8, 16, 32, 64, 128, 256],
}

INSTANCES = ["t4g_large", "r6g_large", "r6g_xlarge", "r6g_2xlarge", "r6g_4xlarge"]
INSTANCES = ["t4g_medium", "r6g_large", "r6g_xlarge", "r6g_2xlarge", "r6g_4xlarge"]

SCHEMA_SCALE_FACTORS = {
"imdb_extended": 1,
Expand Down
Empty file.

0 comments on commit faffd5d

Please sign in to comment.