Clickhouse
ClickHouse connector allows querying ClickHouse databases.
Config Schema
Field | Type | Required | Description |
---|---|---|---|
host | string | no | Single host address |
hosts | string[] | no | Multiple hosts for cluster setup |
database | string | yes | Database name |
user | string | yes | Username |
password | string | yes | Password |
port | integer | yes | HTTP port (default 8123) |
secure | boolean | no | Use HTTPS instead of HTTP |
Config example:
host: localhost # Single host addresshosts: # Or multiple hosts for cluster setup - host1.example.com - host2.example.comdatabase: mydbuser: defaultpassword: secretport: 8123secure: false # Use HTTPS instead of HTTP