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

benchmarkk: add a "parallel-processing" variant to stream-consume

parent 07566f80
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,15 @@
default = true
args = [ "--no-unbundle-progress" ]
[hg-perf-ext.variants.dimensions.parallel-processing.default]
default = true
[hg-perf-ext.variants.dimensions.parallel-processing.yes]
args = [ "--config", "worker.parallel-stream-bundle-processing=yes" ]
[hg-perf-ext.variants.dimensions.parallel-processing.no]
args = [ "--config", "worker.parallel-stream-bundle-processing=no" ]
[hg-perf-ext.variants.dimensions.read-from-memory.yes]
args = [ "--in-memory-bundle" ]
......
......@@ -38,6 +38,20 @@
["no"] { args { "--no-unbundle-progress" } }
}
}
["parallel-processing"] {
default_key = "default"
cases {
["default"] {}
for (value in List("yes","no")) {
[value] {
args {
"--config"
"worker.parallel-stream-bundle-processing=\(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