Kudu source connector
Used to read data from Kudu.
The tested kudu version is 1.11.1.
name | type | required | default value |
---|---|---|---|
kudu_master | string | yes | - |
kudu_table | string | yes | - |
columnsList | string | yes | - |
common-options | no | - |
kudu_master
The address of kudu master,such as '192.168.88.110:7051'.
kudu_table
The name of kudu table..
columnsList
Specifies the column names of the table.
Source plugin common parameters, please refer to Source Common Options for details.
source {
Kudu {
result_table_name = "studentlyh2"
kudu_master = "192.168.88.110:7051"
kudu_table = "studentlyh2"
columnsList = "id,name,age,sex"
}
}
- Add Kudu Source Connector
- Change plugin name from
KuduSource
toKudu
3432