This is an automated email from the ASF dual-hosted git repository. upthewaterspout pushed a commit to branch feature/fast_benchmarks in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git
commit 49c9773cfcd29605272ee3f0927e4ea0d32aa4d2 Author: Dan Smith <[email protected]> AuthorDate: Fri Nov 30 12:23:08 2018 -0800 Reducing benchmark time to a few seconds --- .../org/apache/geode/benchmark/parameters/BenchmarkParameters.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/BenchmarkParameters.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/BenchmarkParameters.java index a3c3d3d..9cb8cb3 100644 --- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/BenchmarkParameters.java +++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/BenchmarkParameters.java @@ -38,12 +38,12 @@ public class BenchmarkParameters { /** * Warm up time for the benchmark running on the default runner */ - public static final int WARM_UP_TIME = 60; + public static final int WARM_UP_TIME = 3; /** * Total duration for which the benchmark will run on the default runner */ - public static final int BENCHMARK_DURATION = 240; + public static final int BENCHMARK_DURATION = 5; /** * String key for the server cache attribute in the TestContext's attributeTree
