com.datamountaineer.streamreactor.connect.influx.config.InfluxConfigConstants.scala Maven / Gradle / Ivy
/*
* Copyright 2017 Datamountaineer.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datamountaineer.streamreactor.connect.influx.config
import com.datamountaineer.streamreactor.connect.config.base.const.TraitConfigConst._
object InfluxConfigConstants {
val CONNECTOR_PREFIX = "connect.influx"
val INFLUX_URL_CONFIG = s"$CONNECTOR_PREFIX.$URL_SUFFIX"
val INFLUX_URL_DOC = "The InfluxDB database url."
val INFLUX_DATABASE_CONFIG = s"$CONNECTOR_PREFIX.$DATABASE_PROP_SUFFIX"
val INFLUX_DATABASE_DOC = "The database to store the values to."
val INFLUX_CONNECTION_USER_CONFIG = s"$CONNECTOR_PREFIX.$USERNAME_SUFFIX"
val INFLUX_CONNECTION_USER_DOC = "The user to connect to the influx database"
val INFLUX_CONNECTION_PASSWORD_CONFIG = s"$CONNECTOR_PREFIX.$PASSWORD_SUFFIX"
val INFLUX_CONNECTION_PASSWORD_DOC = "The password for the influxdb user."
val RETENTION_POLICY_CONFIG = s"$CONNECTOR_PREFIX.retention.policy"
val RETENTION_POLICY_DOC: String =
"""
|Determines how long InfluxDB keeps the data - the options for specifying the duration of the retention policy are listed below.
|Note that the minimum retention period is one hour.
|DURATION determines how long InfluxDB keeps the data - the options for specifying the duration of the retention policy are listed below. Note that the minimum retention period is one hour.
|m minutes
|h hours
|d days
|w weeks
|INF infinite
|
|Default retention is `autogen` from 1.0 onwards or `default` for any previous version
""".stripMargin
val RETENTION_POLICY_DEFAULT = "autogen"
val KCQL_CONFIG = s"$CONNECTOR_PREFIX.$KCQL_PROP_SUFFIX"
val KCQL_DOC = "KCQL expression describing field selection and target measurements."
val KCQL_DISPLAY = "Kafka Connect Query Language"
val ERROR_POLICY_CONFIG = s"$CONNECTOR_PREFIX.$ERROR_POLICY_PROP_SUFFIX"
val ERROR_POLICY_DOC: String =
"""Specifies the action to be taken if an error occurs while inserting the data.
|There are two available options:
|NOOP - the error is swallowed
|THROW - the error is allowed to propagate.
|RETRY - The exception causes the Connect framework to retry the message. The number of retries is based on
|The error will be logged automatically""".stripMargin
val ERROR_POLICY_DEFAULT = "THROW"
val ERROR_RETRY_INTERVAL_CONFIG = s"$CONNECTOR_PREFIX.$RETRY_INTERVAL_PROP_SUFFIX"
val ERROR_RETRY_INTERVAL_DOC = "The time in milliseconds between retries."
val ERROR_RETRY_INTERVAL_DEFAULT = "60000"
val NBR_OF_RETRIES_CONFIG = s"$CONNECTOR_PREFIX.$MAX_RETRIES_PROP_SUFFIX"
val NBR_OF_RETRIES_DOC = "The maximum number of times to try the write again."
val NBR_OF_RETIRES_DEFAULT = 20
val CONSISTENCY_CONFIG = s"$CONNECTOR_PREFIX.consistency.level"
val CONSISTENCY_DOC = "Specifies the write consistency. If any write operations do not meet the configured consistency guarantees, an error will occur and the data will not be indexed. The default consistency-level is ALL."
val CONSISTENCY_DEFAULT = "ALL"
val CONSISTENCY_DISPLAY = "Consistency Level"
val PROGRESS_COUNTER_ENABLED = PROGRESS_ENABLED_CONST
val PROGRESS_COUNTER_ENABLED_DOC = "Enables the output for how many records have been processed by the connector"
val PROGRESS_COUNTER_ENABLED_DEFAULT = false
val PROGRESS_COUNTER_ENABLED_DISPLAY = "Enable progress counter"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy