com.clickhouse.client.config.ClickHouseHealthCheckMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-client Show documentation
Show all versions of clickhouse-client Show documentation
Unified Java client for ClickHouse
package com.clickhouse.client.config;
public enum ClickHouseHealthCheckMethod {
/**
* Ping is the protocol-specific approach for health check, which in general is
* faster.
*/
PING,
/**
* Issue query "select 1" for health check, slightly slower compare to ping but
* works the best with 3party tools.
*/
SELECT_ONE;
}