|
5 | 5 | import com.clickhouse.benchmark.clients.ConcurrentQueryClient; |
6 | 6 | import com.clickhouse.benchmark.clients.Deserializers; |
7 | 7 | import com.clickhouse.benchmark.clients.InsertClient; |
| 8 | +import com.clickhouse.benchmark.clients.JDBCInsert; |
| 9 | +import com.clickhouse.benchmark.clients.JDBCQuery; |
8 | 10 | import com.clickhouse.benchmark.clients.MixedWorkload; |
9 | 11 | import com.clickhouse.benchmark.clients.QueryClient; |
10 | 12 | import com.clickhouse.benchmark.clients.Serializers; |
@@ -36,14 +38,16 @@ public static void main(String[] args) throws Exception { |
36 | 38 | Map<String, String> argMap = parseArguments(args); |
37 | 39 |
|
38 | 40 | Options opt = new OptionsBuilder() |
39 | | - .include(QueryClient.class.getSimpleName()) |
40 | | - .include(InsertClient.class.getSimpleName()) |
41 | | - .include(ConcurrentInsertClient.class.getSimpleName()) |
42 | | - .include(ConcurrentQueryClient.class.getSimpleName()) |
43 | | - .include(Compression.class.getSimpleName()) |
44 | | - .include(Serializers.class.getSimpleName()) |
45 | | - .include(Deserializers.class.getSimpleName()) |
46 | | - .include(MixedWorkload.class.getSimpleName()) |
| 41 | + .include(QueryClient.class.getName()) |
| 42 | + .include(InsertClient.class.getName()) |
| 43 | + .include(ConcurrentInsertClient.class.getName()) |
| 44 | + .include(ConcurrentQueryClient.class.getName()) |
| 45 | + .include(Compression.class.getName()) |
| 46 | + .include(Serializers.class.getName()) |
| 47 | + .include(Deserializers.class.getName()) |
| 48 | + .include(MixedWorkload.class.getName()) |
| 49 | + .include(JDBCQuery.class.getName()) |
| 50 | + .include(JDBCInsert.class.getName()) |
47 | 51 | .forks(1) // must be a fork. No fork only for debugging |
48 | 52 | .mode(Mode.SampleTime) |
49 | 53 | .timeUnit(TimeUnit.MILLISECONDS) |
|
0 commit comments