ClickHouse/docs/en/operations/optimizing-performance/sampling-query-profiler.md

63 lines
3.5 KiB
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
sidebar_position: 54
sidebar_label: Query Profiling
2020-04-03 13:23:32 +00:00
---
2022-06-02 10:55:18 +00:00
# Sampling Query Profiler
2020-03-19 08:31:06 +00:00
ClickHouse runs sampling profiler that allows analyzing query execution. Using profiler you can find source code routines that used the most frequently during query execution. You can trace CPU time and wall-clock time spent including idle time.
To use profiler:
2020-10-13 17:23:29 +00:00
- Setup the [trace_log](../../operations/server-configuration-parameters/settings.md#server_configuration_parameters-trace_log) section of the server configuration.
2021-05-27 19:44:11 +00:00
This section configures the [trace_log](../../operations/system-tables/trace_log.md#system_tables-trace_log) system table containing the results of the profiler functioning. It is configured by default. Remember that data in this table is valid only for a running server. After the server restart, ClickHouse does not clean up the table and all the stored virtual memory address may become invalid.
2020-10-13 17:23:29 +00:00
- Setup the [query_profiler_cpu_time_period_ns](../../operations/settings/settings.md#query_profiler_cpu_time_period_ns) or [query_profiler_real_time_period_ns](../../operations/settings/settings.md#query_profiler_real_time_period_ns) settings. Both settings can be used simultaneously.
These settings allow you to configure profiler timers. As these are the session settings, you can get different sampling frequency for the whole server, individual users or user profiles, for your interactive session, and for each individual query.
2021-05-27 19:44:11 +00:00
The default sampling frequency is one sample per second and both CPU and real timers are enabled. This frequency allows collecting enough information about ClickHouse cluster. At the same time, working with this frequency, profiler does not affect ClickHouse servers performance. If you need to profile each individual query try to use higher sampling frequency.
2020-01-16 07:55:18 +00:00
To analyze the `trace_log` system table:
2022-04-11 05:01:34 +00:00
- Install the `clickhouse-common-static-dbg` package. See [Install from DEB Packages](../../getting-started/install.md#install-from-deb-packages).
2020-10-13 17:23:29 +00:00
- Allow introspection functions by the [allow_introspection_functions](../../operations/settings/settings.md#settings-allow_introspection_functions) setting.
2020-03-20 10:10:48 +00:00
For security reasons, introspection functions are disabled by default.
2022-01-08 12:21:39 +00:00
- Use the `addressToLine`, `addressToLineWithInlines`, `addressToSymbol` and `demangle` [introspection functions](../../sql-reference/functions/introspection.md) to get function names and their positions in ClickHouse code. To get a profile for some query, you need to aggregate data from the `trace_log` table. You can aggregate data by individual functions or by the whole stack traces.
2022-05-11 16:15:55 +00:00
If you need to visualize `trace_log` info, try [flamegraph](../../interfaces/third-party/gui.md#clickhouse-flamegraph-clickhouse-flamegraph) and [speedscope](https://github.com/laplab/clickhouse-speedscope).
2020-03-20 10:10:48 +00:00
## Example {#example}
2020-01-24 05:48:49 +00:00
In this example we:
- Filtering `trace_log` data by a query identifier and the current date.
2020-03-20 10:10:48 +00:00
- Aggregating by stack trace.
2020-03-20 10:10:48 +00:00
- Using introspection functions, we will get a report of:
- Names of symbols and corresponding source code functions.
- Source code locations of these functions.
2020-03-20 10:10:48 +00:00
<!-- -->
``` sql
SELECT
count(),
arrayStringConcat(arrayMap(x -> concat(demangle(addressToSymbol(x)), '\n ', addressToLine(x)), trace), '\n') AS sym
FROM system.trace_log
WHERE (query_id = 'ebca3574-ad0a-400a-9cbc-dca382f5998c') AND (event_date = today())
GROUP BY trace
ORDER BY count() DESC
LIMIT 10
```
2020-03-20 10:10:48 +00:00
``` text
{% include "examples/sampling_query_profiler_result.txt" %}
2020-03-20 10:10:48 +00:00
```