Skip to main content
Version: Next

InfluxDB

InfluxDB source connector

Support Those Engines

Spark
Flink
SeaTunnel Zeta

Description

Read data from InfluxDB 1.x by using an InfluxQL query. The connector supports a normal single query and an optional parallel scan mode that splits one query by an integer column range.

Key Features

Data Type Mapping

SeaTunnel Data TypeNotes
BOOLEANParsed from the returned InfluxDB value.
SMALLINTParsed from the returned InfluxDB value.
INTParsed from the returned InfluxDB value.
BIGINTParsed from the returned InfluxDB value.
FLOATInfluxDB returns numbers as double values; the connector converts them to FLOAT.
DOUBLEUses the returned numeric value.
STRINGUses the returned value as a string.

Other SeaTunnel types are not supported by the current InfluxDB source converter.

Source Options

nametyperequireddefault valuedescription
urlstringyes-InfluxDB server URL, for example http://influxdb-host:8086.
sqlstringyes-InfluxQL query used to read data.
schemaconfigyes-Output schema returned by the source.
databasestringyes-InfluxDB database name.
usernamestringno-InfluxDB username. It must be configured together with password.
passwordstringno-InfluxDB password. It must be configured together with username.
lower_boundintno-Lower bound of split_column when parallel scan is enabled.
upper_boundintno-Upper bound of split_column when parallel scan is enabled.
partition_numintno0Number of query splits. 0 means the source runs the original sql as one split.
split_columnstringno-Integer column used to split the query when parallel scan is enabled.
wherestringno-Reserved source option. The current split logic reads the lowercase where keyword from sql directly.
epochstringnonTime precision returned by InfluxDB. For example: H, m, s, MS, u, n.
connect_timeout_mslongno15000Timeout for connecting to InfluxDB, in milliseconds.
query_timeout_secintno3Timeout for querying InfluxDB, in seconds.
common-optionsconfigno-Source plugin common options. See Source Common Options.

url [string]

The URL to connect to InfluxDB, for example http://influxdb-host:8086.

sql [string]

The InfluxQL query used to read data. For example:

select name, age from test

schema [config]

The output schema of the source. See Schema Feature for the full grammar. For example:

schema {
fields {
name = string
age = int
}
}

database [string]

The InfluxDB database name.

username [string]

InfluxDB username used to authenticate the connection. Configure it together with password.

password [string]

InfluxDB password used to authenticate the connection. Configure it together with username.

split_column [string]

The integer column used to split one query into multiple range queries when parallel scan is enabled.

Tips:

  • InfluxDB tags cannot be used as a split column because tags only support the string type.
  • InfluxDB time cannot be used as a split column because the time field cannot participate in mathematical calculations.
  • split_column currently only supports integer columns; float, string, date, and other types are not supported.
  • split_column, lower_bound, upper_bound, and partition_num must be configured together.
  • If the split query has a filter, write the filter with a lowercase where directly inside sql (for example select * from test where age > 0). The current split parser is case-sensitive.
  • where is part of the option validation rule but the split logic reads the filter from sql. Put the filter in sql instead of configuring a separate where value.

upper_bound [int]

Upper bound of the split_column column when parallel scan is enabled.

lower_bound [int]

Lower bound of the split_column column when parallel scan is enabled.

The split column range is divided into partition_num parts. If partition_num = 1, the connector uses the whole range. If partition_num is less than upper_bound - lower_bound, the connector uses (upper_bound - lower_bound) partitions.

For example, with lower_bound = 1, upper_bound = 10, partition_num = 2, and sql = "select * from test where age > 0 and age < 10", the connector splits the query into:

split 1: select * from test where ($split_column >= 1 and $split_column < 6)  and (  age > 0 and age < 10 )
split 2: select * from test where ($split_column >= 6 and $split_column < 11) and ( age > 0 and age < 10 )

partition_num [int]

Number of query splits. Configure it together with lower_bound, upper_bound, and split_column. Make sure upper_bound - lower_bound is divisible by partition_num; otherwise the query results overlap.

epoch [string]

Time precision returned by InfluxDB. Valid values include H, m, s, MS, u, and n. The default value is n.

query_timeout_sec [int]

Query timeout for the InfluxDB client, in seconds.

connect_timeout_ms [long]

Connection timeout for the InfluxDB client, in milliseconds.

common options

Source plugin common parameters, please refer to Source Common Options for details.

Task Example

Read With Parallel Range Splits

env {
parallelism = 1
job.mode = "BATCH"
}

source {
InfluxDB {
url = "http://influxdb-host:8086"
sql = "select label, c_string, c_double, c_bigint, c_float, c_int, c_smallint, c_boolean from source"
database = "test"
upper_bound = 99
lower_bound = 0
partition_num = 4
split_column = "c_int"
schema {
fields {
label = STRING
c_string = STRING
c_double = DOUBLE
c_bigint = BIGINT
c_float = FLOAT
c_int = INT
c_smallint = SMALLINT
c_boolean = BOOLEAN
time = BIGINT
}
}
}
}

sink {
Console {}
}

Read Without Parallel Range Splits

env {
parallelism = 1
job.mode = "BATCH"
}

source {
InfluxDB {
url = "http://influxdb-host:8086"
sql = "select label, c_string, c_double, c_bigint, c_float, c_int, c_smallint, c_boolean from source"
database = "test"
schema {
fields {
label = STRING
c_string = STRING
c_double = DOUBLE
c_bigint = BIGINT
c_float = FLOAT
c_int = INT
c_smallint = SMALLINT
c_boolean = BOOLEAN
time = BIGINT
}
}
}
}

sink {
Console {}
}

Read With InfluxQL Time Zone

env {
parallelism = 1
job.mode = "BATCH"
}

source {
InfluxDB {
url = "http://influxdb-host:8086"
sql = "select label, c_string, c_double, c_bigint, c_float, c_int, c_smallint, c_boolean from source tz('Asia/Shanghai')"
database = "test"
schema {
fields {
label = STRING
c_string = STRING
c_double = DOUBLE
c_bigint = BIGINT
c_float = FLOAT
c_int = INT
c_smallint = SMALLINT
c_boolean = BOOLEAN
time = BIGINT
}
}
}
}

sink {
Console {}
}

Changelog

Change Log
ChangeCommitVersion
[Feature][Checkpoint] Add check script for source/sink state class serialVersionUID missing (#9118)https://github.com/apache/seatunnel/commit/4f5adeb1c72.3.11
[Improve] influxdb options (#8966)https://github.com/apache/seatunnel/commit/9f498b81332.3.10
[Improve] restruct connector common options (#8634)https://github.com/apache/seatunnel/commit/f3499a6eeb2.3.10
[Improve][dist]add shade check rule (#8136)https://github.com/apache/seatunnel/commit/51ef8000162.3.9
[Feature][Restapi] Allow metrics information to be associated to logical plan nodes (#7786)https://github.com/apache/seatunnel/commit/6b7c53d03c2.3.9
[Improve] Improve some connectors prepare check error message (#7465)https://github.com/apache/seatunnel/commit/6930a25edd2.3.8
[Improve][Connector] Add multi-table sink option check (#7360)https://github.com/apache/seatunnel/commit/2489f6446b2.3.7
[Feature][Core] Support using upstream table placeholders in sink options and auto replacement (#7131)https://github.com/apache/seatunnel/commit/c4ca74122c2.3.6
Support multi-table sink feature for influxdb (#6278)https://github.com/apache/seatunnel/commit/56f13e920d2.3.5
[Improve][Zeta] Add classloader cache mode to fix metaspace leak (#6355)https://github.com/apache/seatunnel/commit/9c3c2f183d2.3.5
[Test][E2E] Add thread leak check for connector (#5773)https://github.com/apache/seatunnel/commit/1f2f3fc5f02.3.4
[BugFix][InfluxDBSource] Resolve invalid SQL in initColumnsIndex method caused by direct QUERY_LIMIT appendage with 'tz' function. (#4829)https://github.com/apache/seatunnel/commit/deed9c62c32.3.4
[Improve][Common] Introduce new error define rule (#5793)https://github.com/apache/seatunnel/commit/9d1b2582b22.3.4
[Improve] Remove use SeaTunnelSink::getConsumedType method and mark it as deprecated (#5755)https://github.com/apache/seatunnel/commit/8de74081002.3.4
Support config column/primaryKey/constraintKey in schema (#5564)https://github.com/apache/seatunnel/commit/eac76b4e502.3.4
[Improve][Connector-V2] Remove scheduler in InfluxDB sink (#5271)https://github.com/apache/seatunnel/commit/f459f500cb2.3.4
[Improve][CheckStyle] Remove useless 'SuppressWarnings' annotation of checkstyle. (#5260)https://github.com/apache/seatunnel/commit/51c0d709ba2.3.4
Merge branch 'dev' into merge/cdchttps://github.com/apache/seatunnel/commit/4324ee19122.3.1
[Improve][Project] Code format with spotless plugin.https://github.com/apache/seatunnel/commit/423b5830382.3.1
[improve][api] Refactoring schema parse (#4157)https://github.com/apache/seatunnel/commit/b2f573a13e2.3.1
[Improve][build] Give the maven module a human readable name (#4114)https://github.com/apache/seatunnel/commit/d7cd6010512.3.1
[Improve][Project] Code format with spotless plugin. (#4101)https://github.com/apache/seatunnel/commit/a2ab1665612.3.1
[Improve][SourceConnector] Unifie InfluxDB source fields to schema (#3897)https://github.com/apache/seatunnel/commit/85a984a64f2.3.1
[Feature][Connector] add get source method to all source connector (#3846)https://github.com/apache/seatunnel/commit/417178fb842.3.1
[Feature][API &amp; Connector &amp; Doc] add parallelism and column projection interface (#3829)https://github.com/apache/seatunnel/commit/b9164b8ba12.3.1
[Hotfix][OptionRule] Fix option rule about all connectors (#3592)https://github.com/apache/seatunnel/commit/226dc6a1192.3.0
[Improve][Connector-V2][Influxdb] Unified exception for influxdb source & sink connector (#3558)https://github.com/apache/seatunnel/commit/4686f35d682.3.0
[Feature][Connector][influx] Expose configurable options in influx db (#3392)https://github.com/apache/seatunnel/commit/b247ff0aef2.3.0
[Feature][Connector-V2] influxdb sink connector (#3174)https://github.com/apache/seatunnel/commit/630e8847912.3.0
[Feature][Connector-V2] Add influxDB connector source (#2697)https://github.com/apache/seatunnel/commit/1d70ea30842.3.0-beta