]> source.dussan.org Git - sonarqube.git/commitdiff
Fix expected timeouts of server-benchmarks after change of hardware
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 8 Jan 2015 11:29:09 +0000 (12:29 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 8 Jan 2015 11:30:20 +0000 (12:30 +0100)
server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/IssueIndexBenchmarkTest.java
server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/SourceIndexBenchmarkTest.java

index b2823138a454b18c096db621c93bbca65f922514..50cee518445c38a3a89a4db2405a1dd73ae2597b 100644 (file)
@@ -112,7 +112,7 @@ public class IssueIndexBenchmarkTest {
     long period = System.currentTimeMillis() - start;
     long throughputPerSecond = 1000 * issues.count.get() / period;
     LOGGER.info(String.format("%d issues indexed in %d ms (%d docs/second)", issues.count.get(), period, throughputPerSecond));
-    benchmark.expectBetween("Throughput to index issues", throughputPerSecond, 2300L, 2800L);
+    benchmark.expectBetween("Throughput to index issues", throughputPerSecond, 3200, 3600);
 
     // be sure that physical files do not evolve during estimation of size
     tester.get(EsClient.class).prepareOptimize("issues").get();
index 8f01022927485270417322c29c83443b9b66113d..313b407ffbc73703dbb62a7d224bff7e3c9ce504 100644 (file)
@@ -88,7 +88,7 @@ public class SourceIndexBenchmarkTest {
     long nbLines = files.count.get() * LINES_PER_FILE;
     long throughputPerSecond = 1000L * nbLines / period;
     LOGGER.info(String.format("%d lines indexed in %d ms (%d docs/second)", nbLines, period, throughputPerSecond));
-    benchmark.expectBetween("Throughput to index source lines", throughputPerSecond, 6000L, 6400L);
+    benchmark.expectBetween("Throughput to index source lines", throughputPerSecond, 7200, 7600);
 
     // be sure that physical files do not evolve during estimation of size
     tester.get(EsClient.class).prepareOptimize(SourceLineIndexDefinition.INDEX).get();