Skip to content

Commit b1af7cf

Browse files
committed
fix: add TPCH Warmup repeats and records
1 parent 266f4bf commit b1af7cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/test/java/cn/edu/tsinghua/iginx/integration/warmup/SQLWarmupIT.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public class SQLWarmupIT implements AutoCloseable {
4040
private static Logger LOGGER = LoggerFactory.getLogger(SQLWarmupIT.class);
4141

4242
private static final String SQL = System.getProperty("iginx.warmup.sql", "warmup/warmup.sql");
43-
private static final int WARMUP = Integer.getInteger("iginx.warmup.repeat", 5);
44-
private static final int RECORD = Integer.getInteger("iginx.warmup.records", 10000);
43+
private static final int WARMUP = Integer.getInteger("iginx.warmup.repeat", 10);
44+
private static final int RECORD = Integer.getInteger("iginx.warmup.records", 20000);
4545
private static final String IP = System.getProperty("iginx.warmup.ip", "127.0.0.1");
4646
private static final int PORT = Integer.getInteger("iginx.warmup.port", 6888);
4747
private static final String USERNAME = System.getProperty("iginx.warmup.username", "root");

0 commit comments

Comments
 (0)