Skip to content
Snippets Groups Projects
Commit 7dce71aa authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

benchmarkk: add a "memory" variant to stream-consume

parent 639d4953
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,24 @@
[hg-perf-ext.variants.dimensions.num-writer.32]
args = [ "--config", "worker.parallel-stream-bundle-processing.num-writer=32" ]
[hg-perf-ext.variants.dimensions.memory-target.default]
default = true
[hg-perf-ext.variants.dimensions.memory-target.unlimited]
args = [ "--config", "worker.parallel-stream-bundle-processing.memory-target=-1" ]
[hg-perf-ext.variants.dimensions.memory-target.10MB]
args = [ "--config", "worker.parallel-stream-bundle-processing.memory-target=10MB" ]
[hg-perf-ext.variants.dimensions.memory-target.100MB]
args = [ "--config", "worker.parallel-stream-bundle-processing.memory-target=100MB" ]
[hg-perf-ext.variants.dimensions.memory-target.1GB]
args = [ "--config", "worker.parallel-stream-bundle-processing.memory-target=1GB" ]
[hg-perf-ext.variants.dimensions.memory-target.4GB]
args = [ "--config", "worker.parallel-stream-bundle-processing.memory-target=4GB" ]
[hg-perf-ext.variants.dimensions.read-from-memory.yes]
args = [ "--in-memory-bundle" ]
......
......@@ -66,6 +66,26 @@
}
}
}
["memory-target"] {
default_key = "default"
cases {
["default"] {}
["unlimited"] {
args {
"--config"
"worker.parallel-stream-bundle-processing.memory-target=-1"
}
}
for (value in List("10MB", "100MB", "1GB", "4GB")) {
[value] {
args {
"--config"
"worker.parallel-stream-bundle-processing.memory-target=\(value)"
}
}
}
}
}
["read-from-memory"] {
default_key = "no"
cases {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment