InfluxDB source connector
Read external data source data through InfluxDB.
supports query SQL and can achieve projection effect.
name | type | required | default value |
---|---|---|---|
url | string | yes | - |
sql | string | yes | - |
schema | config | yes | - |
database | string | yes | |
username | string | no | - |
password | string | no | - |
lower_bound | long | no | - |
upper_bound | long | no | - |
partition_num | int | no | - |
split_column | string | no | - |
epoch | string | no | n |
connect_timeout_ms | long | no | 15000 |
query_timeout_sec | int | no | 3 |
common-options | config | no | - |
the url to connect to influxDB e.g.
http://influxdb-host:8086
The query sql used to search data
select name,age from test
The schema information of upstream data. e.g.
schema {
fields {
name = string
age = int
}
}
The influxDB
database
the username of the influxDB when you select
the password of the influxDB when you select
the split_column
of the influxDB when you select
Tips:
- influxDB tags is not supported as a segmented primary key because the type of tags can only be a string
- influxDB time is not supported as a segmented primary key because the time field cannot participate in mathematical calculation
- Currently,
split_column
only supports integer data segmentation, and does not supportfloat
,string
,date
and other types.
upper bound of the split_column
column
lower bound of the split_column
column
split the $split_column range into $partition_num parts
if partition_num is 1, use the whole `split_column` range
if partition_num < (upper_bound - lower_bound), use (upper_bound - lower_bound) partitions
eg: lower_bound = 1, upper_bound = 10, partition_num = 2
sql = "select * from test where age > 0 and age < 10"
split result
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 )
the partition_num
of the InfluxDB when you select
Tips: Ensure that
upper_bound
minuslower_bound
is dividedbypartition_num
, otherwise the query results will overlap
returned time precision
- Optional values: H, m, s, MS, u, n
- default value: n
the query_timeout
of the InfluxDB when you select, in seconds
the timeout for connecting to InfluxDB, in milliseconds
Source plugin common parameters, please refer to Source Common Options for details
Example of multi parallelism and multi partition scanning
source {
InfluxDB {
url = "http://influxdb-host:8086"
sql = "select label, value, rt, time from test"
database = "test"
upper_bound = 100
lower_bound = 1
partition_num = 4
split_column = "value"
schema {
fields {
label = STRING
value = INT
rt = STRING
time = BIGINT
}
}
}
Example of not using partition scan
source {
InfluxDB {
url = "http://influxdb-host:8086"
sql = "select label, value, rt, time from test"
database = "test"
schema {
fields {
label = STRING
value = INT
rt = STRING
time = BIGINT
}
}
}
- Add InfluxDB Source Connector