Jdbc
Input plugin : Jdbcâ
- Author: InterestingLab
- Homepage: https://interestinglab.github.io/seatunnel-docs
- Version: 1.1.2
Descriptionâ
Read data from an external data source via JDBC.
Optionsâ
name | type | required | default value |
---|---|---|---|
driver | string | yes | - |
password | string | yes | - |
table | string | yes | - |
table_name | string | yes | - |
url | string | yes | - |
user | string | yes | - |
driver [string]â
Class name of jdbc driver.
password [string]â
Password.
table [string]â
Table name.
table_name [string]â
Registered table name of input data.
url [string]â
The url of JDBC. For example: jdbc:postgresql://localhost/test
user [string]â
Username.
Exampleâ
jdbc {
driver = "com.mysql.jdbc.Driver"
url = "jdbc:mysql://localhost:3306/info"
table = "access"
table_name = "access_log"
user = "username"
password = "password"
}
Read data from MySQL with jdbc.