Skip to content

Commit 42dc545

Browse files
author
Paultagoras
committed
Update BenchmarkRunner.java
1 parent cce00fb commit 42dc545

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

performance/src/test/com/clickhouse/benchmark/BenchmarkRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ public static void main(String[] args) throws Exception {
4949
// .include(MixedWorkload.class.getName())
5050
// .include(DataTypes.class.getName())
5151
.include(JDBCQuery.class.getName())
52-
// .include(JDBCInsert.class.getName())
52+
.include(JDBCInsert.class.getName())
5353
.forks(1) // must be a fork. No fork only for debugging
5454
.mode(Mode.SampleTime)
5555
.timeUnit(TimeUnit.MILLISECONDS)
5656
.addProfiler(GCProfiler.class)
5757
.addProfiler(MemPoolProfiler.class)
5858
.warmupIterations(1)
5959
.warmupTime(TimeValue.seconds(5))
60-
.measurementIterations(5)
60+
.measurementIterations(10)
6161
.jvmArgs("-Xms8g", "-Xmx8g")
6262
.measurementTime(TimeValue.seconds(isCloud() ? 30 : 10))
6363
.resultFormat(ResultFormatType.JSON)

0 commit comments

Comments
 (0)