TDengine sink connector

Description

Used to write data to TDengine. You need to create stable before running seatunnel task

Key features

Options

name type required default value
url string yes -
username string yes -
password string yes -
database string yes
stable string yes -
timezone string no UTC

url [string]

the url of the TDengine when you select the TDengine

e.g.

  1. jdbc:TAOS-RS://localhost:6041/

username [string]

the username of the TDengine when you select

password [string]

the password of the TDengine when you select

database [string]

the database of the TDengine when you select

stable [string]

the stable of the TDengine when you select

timezone [string]

the timeznoe of the TDengine sever, it’s important to the ts field

Example

sink

  1. sink {
  2. TDengine {
  3. url : "jdbc:TAOS-RS://localhost:6041/"
  4. username : "root"
  5. password : "taosdata"
  6. database : "power2"
  7. stable : "meters2"
  8. timezone: UTC
  9. }
  10. }