Skip to content

Commit

Permalink
Disable 1gheap for release benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmitterdorfer committed Jul 3, 2017
1 parent 0f46df9 commit edd16f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion night_rally.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ def runnable(self, track, challenge, car):
# cannot run "sorted" challenges - it's a 6.0+ feature
if int(self.distribution_version[0]) < 6:
return "sorted" not in challenge
# Do not run 1g benchmarks at all at the moment. Earlier versions of ES OOM.
if car == "1gheap":
return False
return True

def command_line(self, track, challenge, car):
Expand All @@ -256,7 +259,7 @@ def __init__(self, effective_start_date, target_host, root_dir, distribution_ver
self.distribution_version = distribution_version.replace("Docker ", "")

def runnable(self, track, challenge, car):
if car in ["two_nodes", "verbose_iw"]:
if car in ["two_nodes", "verbose_iw", "1gheap"]:
return False
# cannot run "sorted" challenges - it's a 6.0+ feature
if int(self.distribution_version[0]) < 6:
Expand Down

0 comments on commit edd16f7

Please sign in to comment.