Skip to content

Commit

Permalink
fixed timeout in experiment example script
Browse files Browse the repository at this point in the history
  • Loading branch information
arcuri82 committed Nov 4, 2019
1 parent ab49e07 commit 72c31de
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions scripts/exp.py
Expand Up @@ -139,23 +139,22 @@
print("ERROR: target folder already exists")
exit(1)

### We might want to have different settings based on whether we are running the
### We need different settings based on whether we are running the
### scripts on cluster or locally.
if CLUSTER:

# To ge the SUTs, you need in EMB to run the script "scripts/dist.py" to
# generate a dist.zip file that you can upload on cluster.
# Note: the values after the SUT names is multiplicative factor for how long
# experiments should be run. For example, all SUTs have similar runtime, but
# proxyprint is roughly twice as slow.
# experiments should be run.
# Depending on what experiments you are running, might want to de-select some
# of the SUTs (eg, by comment them out)
# of the SUTs (eg, by commenting them out)

SUTS = [
("features-service", 1),
("scout-api", 1),
("scout-api", 2),
("proxyprint", 2),
("rest-ncs", 1),
("rest-ncs", 2),
("rest-scs", 1),
("rest-news", 1),
("catwatch", 1)
Expand Down

0 comments on commit 72c31de

Please sign in to comment.