Skip to main content
Version: 2.3.1

Kudu

Kudu source connector

Description

Used to read data from Kudu.

The tested kudu version is 1.11.1.

Key features

Options

nametyperequireddefault value
kudu_masterstringyes-
kudu_tablestringyes-
columnsListstringyes-
common-optionsno-

kudu_master [string]

kudu_master The address of kudu master,such as '192.168.88.110:7051'.

kudu_table [string]

kudu_table The name of kudu table..

columnsList [string]

columnsList Specifies the column names of the table.

common options

Source plugin common parameters, please refer to Source Common Options for details.

Examples

source {
Kudu {
result_table_name = "studentlyh2"
kudu_master = "192.168.88.110:7051"
kudu_table = "studentlyh2"
columnsList = "id,name,age,sex"
}

}

Changelog

2.2.0-beta 2022-09-26

  • Add Kudu Source Connector

Next Version

  • Change plugin name from KuduSource to Kudu 3432