Clickhouse

Connect to a Clickhouse database

Setup

The following credentials keys are accepted:

  • host (required) -> The hostname / ip of the instance

  • user (required) -> he username to access the instance

  • database (required) -> The database name of the instance

  • schema (optional) -> The default schema to use

  • password (optional) -> The password to access the instance

  • port (optional) -> The port of the instance. Default is 9000.

Here is an example of setting a connection named CLICKHOUSE:

# URL format
export CLICKHOUSE="clickhouse://myuser:mypass@host.ip:9000/mydatabase"

# YAML format
export CLICKHOUSE="{type: clickhouse, host: <host>, user:<user>, database:<database>, password:<password>, port:<port>}"

Last updated