Skip to content

Commit 255ecb9

Browse files
committed
chore: ignore mmds perf tests for m7g and m8g
Both m7g and m8g show volatility on mmds tests (and those tests run in microseconds range). This makes A/B pipeline to fail all the time. Since volatility is not high enough to be something to worry about just add mmds tests to ignore list on these instances. Once volatility stops we can remove them from ignore list. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
1 parent a6e2026 commit 255ecb9

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

tools/ab_test.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,16 @@ def format_with_reduced_unit(value, unit):
151151
{"instance": instance, "performance_test": "test_network_latency"}
152152
for instance in ["m8g.metal-24xl", "m8g.metal-48xl"]
153153
],
154-
# MMDS metrics on m8i
154+
# MMDS metrics on m8i, m7g and m8g
155155
*[
156156
{"instance": instance, "performance_test": "test_mmds_performance"}
157-
for instance in ["m8i.metal-48xl", "m8i.metal-96xl"]
157+
for instance in [
158+
"m8i.metal-48xl",
159+
"m8i.metal-96xl",
160+
"m7g.metal",
161+
"m8g.metal-24xl",
162+
"m8g.metal-48xl",
163+
]
158164
],
159165
# block latencies if guest uses async request submission
160166
{"fio_engine": "libaio", "metric": "clat_read"},

0 commit comments

Comments
 (0)