mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
add notes for improvements
This commit is contained in:
parent
4e9963ab17
commit
3346cd2624
@ -77,6 +77,8 @@ public class NBCommandAssembly {
|
|||||||
throw new BasicError("Found zero commands for spec;" + cmd);
|
throw new BasicError("Found zero commands for spec;" + cmd);
|
||||||
}
|
}
|
||||||
String containerName = cmd.getTargetContext();
|
String containerName = cmd.getTargetContext();
|
||||||
|
|
||||||
|
// TODO, make this unnecessary by moving the impl out of the map to a dedicated cmd structure
|
||||||
params.remove("_impl");
|
params.remove("_impl");
|
||||||
parameterizedInvocations.add(new CommandInvocation(command, params, containerName));
|
parameterizedInvocations.add(new CommandInvocation(command, params, containerName));
|
||||||
}
|
}
|
||||||
|
@ -155,6 +155,9 @@ public class StabilityDetector implements Runnable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Add a check for when stddev is lower than some fixed value, or when both
|
||||||
|
// (or all) windows are below some small threshold
|
||||||
|
// and perhaps add auto-correlation checks for (any of) style unblocking
|
||||||
private void updateAndAwait() {
|
private void updateAndAwait() {
|
||||||
int interval = (int) (this.timeSliceSeconds * 1000);
|
int interval = (int) (this.timeSliceSeconds * 1000);
|
||||||
startedAt = System.currentTimeMillis();
|
startedAt = System.currentTimeMillis();
|
||||||
|
Loading…
Reference in New Issue
Block a user