Skip to content

Commit

Permalink
Additional experiment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Oct 8, 2023
1 parent faffd5d commit fe757ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ schema_name=$2
export BRAD_CONFIG_FILE=$config_file

function modify_instance_sync() {
local new_instance=$2
local new_instance=$1

>&2 echo "Ensuring Aurora is $new_type"
>&2 echo "Ensuring Aurora is $new_instance"

# N.B. This modification script is blocking.
brad admin --debug modify_blueprint \
Expand Down
6 changes: 5 additions & 1 deletion tools/calibration/transactions/imdb_extended/run_instance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ fi
sleep 10

>&2 echo "Retrieving metrics..."
python3 retrieve_metrics.py --out-file $COND_OUT/pi_metrics.csv --instance-id $BRAD_INSTANCE_ID
if [ -z $BRAD_CONFIG_FILE ]; then
python3 retrieve_metrics.py --out-file $COND_OUT/pi_metrics.csv --instance-id $BRAD_INSTANCE_ID
else
python3 retrieve_metrics.py --out-file $COND_OUT/pi_metrics.csv --config-file $BRAD_CONFIG_FILE
fi

0 comments on commit fe757ca

Please sign in to comment.