Clickhouse source connector
Used to read data from Clickhouse.
supports query SQL and can achieve projection effect.
:::tip
Reading data from Clickhouse can also be done using JDBC
:::
name | type | required | default value |
---|---|---|---|
host | string | yes | - |
database | string | yes | - |
sql | string | yes | - |
username | string | yes | - |
password | string | yes | - |
common-options | no | - |
ClickHouse
cluster address, the format is host:port
, allowing multiple hosts
to be specified. Such as "host1:8123,host2:8123"
.
The ClickHouse
database
The query sql used to search data though Clickhouse server
ClickHouse
user username
ClickHouse
user password
Source plugin common parameters, please refer to Source Common Options for details
source {
Clickhouse {
host = "localhost:8123"
database = "default"
sql = "select * from test where age = 20 limit 100"
username = "default"
password = ""
result_table_name = "test"
}
}
- Add ClickHouse Source Connector
- [Improve] Clickhouse Source random use host when config multi-host (3108)