All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickhouse.client.config.ClickHouseHealthCheckMethod Maven / Gradle / Ivy

There is a newer version: 0.6.5
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy