mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-26 15:36:33 -06:00
updated cycle_rate to be less strict for lower powered CI systems
This commit is contained in:
parent
8001c1fdc6
commit
2ccabf1c3f
@ -110,7 +110,7 @@ public class AsyncScriptIntegrationTests {
|
||||
String digits = m.group(1);
|
||||
assertThat(digits).isNotEmpty();
|
||||
double rate = Double.valueOf(digits);
|
||||
assertThat(rate).isCloseTo(10000.0D, Offset.offset(1000D));
|
||||
assertThat(rate).isCloseTo(5000.0D, Offset.offset(500D));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -18,11 +18,11 @@
|
||||
stride_rate = {
|
||||
"alias" : "stride_rate",
|
||||
"type" : "diag",
|
||||
"cycles" : "0..50000",
|
||||
"cycles" : "0..500000",
|
||||
"stride" : "1",
|
||||
"threads" : "10",
|
||||
"striderate" : "10000",
|
||||
"interval" : "2000",
|
||||
"threads" : "5",
|
||||
"striderate" : "5000",
|
||||
"interval" : "1000",
|
||||
"async" : 1000
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user