How to output send logs level traces to file using the clickhouse-client
Question
How do I output the send_logs_level output to a file using the ClickHouse Client for multiple statements and multiple lines?
Profiling ClickHouse with LLVM's XRay
Types of profilers
LLVM already includes a tool that instruments the code that allows us to do instrumentation profiling. As opposed to sampling or statistical profiling, it's very precise without losing any calls, at the expense of needing to instrument the code and be more resource expensive.
Kafka and the JSON Data Type
With the introduction of the new JSON
data type, ClickHouse is now a good choice of database for doing JSON analytics.
In this guide, we're going to learn how to load JSON messages from Apache Kafka directly into a single JSON
column in ClickHouse.
How to connect to ClickHouse using SSH Keys
Question
How can I connect to ClickHouse using SSH Key Authentication?
Mapping of metrics used in system.dashboards to Prometheus metrics in system.custom_metrics
The table below provides the mapping for the metrics used in system.dashboards
to Prometheus metrics in system.custom_metrics
.
This is useful for customers who want to monitor for the same metrics found in system.dashboards
.
ODBC authentication failed error when using the Power BI ClickHouse connector
Question
When trying to connect from PowerBI to ClickHouse using the connector, you receive a authentication error.
How to create a table that can query multiple remote clusters
Question
How do I create a table that can query other clusters or instances?
Tips and tricks on optimizing basic data types in ClickHouse
Question
What data types should I use in ClickHouse to optimize my queries for speed and storage?
How to use array join to extract and query varying attributes using map keys and values
Question
If I have varying attributes in a column using map types, how can I extract them and use them in queries?