Using External ClickHouse
The easiest way to run SigNoz is to use SigNoz Cloud - no installation, maintenance, or scaling needed.
New users get 30 days of unlimited access to all features. Click here to sign up.
It is recommended to use the ClickHouse instance that is deployed along with Signoz. However, if you want to use an external ClickHouse instance, you can do so by relevant instructions below.
Prerequisites
- Must have at least one Zookeeper instance
- Distributed cluster named
cluster
set up required: clickhouse-cluster.xml - User credentaials passed must have enough privileges to create/manage databases and tables
- Secure connection is not supported between Signoz and ClickHouse yet
- (Optional) UDF script and histogram quantile binary required: custom-function.xml and histogramQuantile binary
The name of the cluster must be cluster
as it is hardcoded in the SigNoz OtelCollector
migration files due to the limitations of golang-migrate
library.
Setting up ClickHouse
- Run at least an instance of Zookeeper.
- Create configuration for distributed cluster named
cluster
as described in clickhouse-cluster.xml and include it in/etc/clickhouse-server/config.d/
. - Include Zookeeper information in above clickhouse-cluster.xml file as well.
- (Optional) Below steps are only required if you want to use histogram quantile
functions using Query Builder.
- Include custom function configuration in the
/etc/clickhouse-server/
directory. - Include histogram quantile binary in the
/var/lib/clickhouse/user_scripts/
directory.
- Include custom function configuration in the
- Run at least an instance of ClickHouse with the above configuration.
For Docker and Docker Swarm Users
In Docker and Docker Swarm, we will be modifying the docker-compose.yml
file to use an
external ClickHouse.
- Comment out
clickhouse
andzookeeper
services indocker-compose.yml
. - Comment out
x-clickhouse-defaults
andx-clickhouse-depend
sections indocker-compose.yml
. - Replace
clickhouse:9000
with relavant ClickHouse endpoint and TCP port in the files below:docker-compose.yaml
otel-collector-config.yaml
prometheus-config.yml
- Start SigNoz using relevant instructions.
For Kubernetes Users
In Kubernetes, we will update override-values.yaml
file to use an external ClickHouse.
At first, we will disable the default ClickHouse instance by setting clickhouse.enabled
to false
.
Then, we will include the external ClickHouse information in the externalClickhouse
section.
override-values.yaml
clickhouse:
enabled: false
externalClickhouse:
host: <clickhouse-endpoint>
httpPort: 8123
tcpPort: 9000
cluster: cluster
secure: false
user: <ch-user>
password: <ch-password>
To install SigNoz using the above configuration, run the following command:
kubectl create namespace platform
helm --namespace platform install my-release signoz/signoz -f override-values.yaml