From edd16f7947108e8af3e38cd5c0def46d529b92fe Mon Sep 17 00:00:00 2001 From: Daniel Mitterdorfer Date: Mon, 3 Jul 2017 09:13:07 +0200 Subject: [PATCH] Disable 1gheap for release benchmarks --- night_rally.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/night_rally.py b/night_rally.py index a9582d5f6cadd..23c315b551239 100644 --- a/night_rally.py +++ b/night_rally.py @@ -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): @@ -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: