diff --git a/execution/README.md b/execution/README.md index f7df1a32ad8b7898ba34b792095957a8e1362fc8..56cc6dce6bad80facef5ffe9183cabe9ca8373b0 100644 --- a/execution/README.md +++ b/execution/README.md @@ -135,10 +135,10 @@ Depending on your setup, some additional adjustments may be necessary: # Execution -The `./run_loop.sh` is the entrypoint for all benchmark executions. Is has to be called as follows: +The `./theodolite.sh` is the entrypoint for all benchmark executions. Is has to be called as follows: ```sh -./run_loop.sh <use-case> <wl-values> <instances> <partitions> <cpu-limit> <memory-limit> <commit-interval> <duration> +./theodolite.sh <use-case> <wl-values> <instances> <partitions> <cpu-limit> <memory-limit> <commit-interval> <duration> ``` * `<use-case>`: Stream processing use case to be benchmarked. Has to be one of `1`, `2`, `3` or `4`. diff --git a/execution/run_uc1-new.sh b/execution/run_uc1.sh similarity index 100% rename from execution/run_uc1-new.sh rename to execution/run_uc1.sh diff --git a/execution/run_uc2-new.sh b/execution/run_uc2.sh similarity index 100% rename from execution/run_uc2-new.sh rename to execution/run_uc2.sh diff --git a/execution/run_uc3-new.sh b/execution/run_uc3.sh similarity index 100% rename from execution/run_uc3-new.sh rename to execution/run_uc3.sh diff --git a/execution/run_uc4-new.sh b/execution/run_uc4.sh similarity index 100% rename from execution/run_uc4-new.sh rename to execution/run_uc4.sh diff --git a/execution/run_loop.sh b/execution/theodolite.sh similarity index 88% rename from execution/run_loop.sh rename to execution/theodolite.sh index e63c0ecdfc54d27456afd720cc66303bfb143b28..196662ffcd968cd732d1e12ce79e7639cb12cd55 100755 --- a/execution/run_loop.sh +++ b/execution/theodolite.sh @@ -35,7 +35,7 @@ do do SUBEXPERIMENT_COUNTER=$((SUBEXPERIMENT_COUNTER+1)) echo "Run subexperiment $SUBEXPERIMENT_COUNTER/$SUBEXPERIMENTS with config: $DIM_VALUE $REPLICA" - ./run_uc$UC-new.sh $EXP_ID $DIM_VALUE $REPLICA $PARTITIONS $CPU_LIMIT $MEMORY_LIMIT $KAFKA_STREAMS_COMMIT_INTERVAL_MS $EXECUTION_MINUTES + ./run_uc$UC.sh $EXP_ID $DIM_VALUE $REPLICA $PARTITIONS $CPU_LIMIT $MEMORY_LIMIT $KAFKA_STREAMS_COMMIT_INTERVAL_MS $EXECUTION_MINUTES sleep 10s done done