MySQL
Output plugin : Mysql
- Author: InterestingLab
- Homepage: https://interestinglab.github.io/seatunnel-docs
- Version: 1.0.0
Description
Write Rows to MySQL.
Options
name | type | required | default value |
---|---|---|---|
password | string | yes | - |
save_mode | string | no | append |
table | string | yes | - |
url | string | yes | - |
user | string | yes | - |
password [string]
Password.
save_mode [string]
Save mode, supports overwrite
, append
, ignore
and error
. The detail of save_mode see save-modes.
table [string]
Table name.
url [string]
The url of JDBC. For example: jdbc:mysql://localhose:3306/info
user [string]
Username.
Example
mysql {
url = "jdbc:mysql://localhost:3306/info"
table = "access"
user = "username"
password = "password"
save_mode = "append"
}