tech.clickhouse.benchmark.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-benchmark Show documentation
Show all versions of clickhouse-benchmark Show documentation
Benchmarks for ClickHouse clients
The newest version!
package tech.clickhouse.benchmark;
/**
* Constant interface.
*/
public interface Constants {
public static final String CLICKHOUSE_DRIVER = "clickhouse-jdbc";
public static final String DEFAULT_HOST = "127.0.0.1";
public static final String DEFAULT_DB = "system";
public static final String DEFAULT_USER = "default";
public static final String DEFAULT_PASSWD = "";
public static final int GRPC_PORT = 9100;
public static final int HTTP_PORT = 8123;
public static final int MYSQL_PORT = 3307;
public static final int NATIVE_PORT = 9000;
public static final String NORMAL_STATEMENT = "normal";
public static final String PREPARED_STATEMENT = "prepared";
}