TDengine source connector
Read external data source data through TDengine.
supports query SQL and can achieve projection effect.
name | type | required | default value |
---|---|---|---|
url | string | yes | - |
username | string | yes | - |
password | string | yes | - |
database | string | yes | |
stable | string | yes | - |
lower_bound | long | yes | - |
upper_bound | long | yes | - |
the url of the TDengine when you select the TDengine
e.g.
jdbc:TAOS-RS://localhost:6041/
the username of the TDengine when you select
the password of the TDengine when you select
the database of the TDengine when you select
the stable of the TDengine when you select
the lower_bound of the migration period
the upper_bound of the migration period
source {
TDengine {
url : "jdbc:TAOS-RS://localhost:6041/"
username : "root"
password : "taosdata"
database : "power"
stable : "meters"
lower_bound : "2018-10-03 14:38:05.000"
upper_bound : "2018-10-03 14:38:16.800"
result_table_name = "tdengine_result"
}
}