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

65 lines
4.1 KiB
Markdown
Raw Normal View History

2020-04-04 09:15:31 +00:00
---
machine_translated: true
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
2020-04-04 09:15:31 +00:00
toc_priority: 54
toc_title: "Query\u30D7\u30ED\u30D5\u30A1\u30A4\u30EA\u30F3\u30B0"
---
# サンプリングクロファイラ {#sampling-query-profiler}
2020-04-04 09:15:31 +00:00
ClickHouse運転サンプリングプロファイラでの分析クエリを実行します。 Profilerを使用すると、クエリの実行中に最も頻繁に使用されるソースコードルーチンを検索できます。 CPU時間とアイドル時間を含む壁時計時間をトレースできます。
2020-04-04 09:15:31 +00:00
Profilerを使用するには:
2020-04-04 09:15:31 +00:00
2020-10-13 17:23:29 +00:00
- セットアップ [trace_log](../server-configuration-parameters/settings.md#server_configuration_parameters-trace_log) サーバー構成のセクション。
2020-04-04 09:15:31 +00:00
2020-10-13 17:23:29 +00:00
このセクションでは、 [trace_log](../../operations/system-tables.md#system_tables-trace_log) プロファイラ機能の結果を含むシステムテーブル。 これは既定で構成されています。 この表のデータは、実行中のサーバーに対してのみ有効です。 後、サーバを再起動ClickHouseないクリーンのテーブルに格納された仮想メモリアドレスが無効になります。
2020-04-04 09:15:31 +00:00
2020-10-13 17:23:29 +00:00
- セットアップ [query_profiler_cpu_time_period_ns](../settings/settings.md#query_profiler_cpu_time_period_ns) または [query_profiler_real_time_period_ns](../settings/settings.md#query_profiler_real_time_period_ns) 設定。 両方の設定を同時に使用できます。
2020-04-04 09:15:31 +00:00
これらの設定を許可する設定プロファイラータイマー. これらはセッション設定であるため、サーバー全体、個々のユーザーまたはユーザープロファイル、対話式セッション、および個々のクエリごとに異なるサンプリング周波数
2020-04-04 09:15:31 +00:00
デフォルトのサンプリング周波数はサンプルや、CPU、リアルタイマーが有効になっています。 この頻度により、ClickHouse clusterに関する十分な情報を収集できます。 同時に、この頻度で作業すると、profilerはClickHouse serverのパフォーマンスには影響しません。 が必要な場合にプロファイル毎に個別のクエリを利用するようにして高サンプリング周波数です。
2020-04-04 09:15:31 +00:00
分析するには `trace_log` システム表:
2020-04-04 09:15:31 +00:00
- インストール `clickhouse-common-static-dbg` パッケージ。 見る [DEBパッケージから](../../getting-started/install.md#install-from-deb-packages).
2020-04-04 09:15:31 +00:00
2020-10-13 17:23:29 +00:00
- によるイントロスペクション関数を許可する。 [allow_introspection_functions](../settings/settings.md#settings-allow_introspection_functions) 設定。
2020-04-04 09:15:31 +00:00
セキュリティ上の理由から、introspection関数は既定で無効になっています。
2020-04-04 09:15:31 +00:00
- 使用する `addressToLine`, `addressToSymbol``demangle` [内観関数](../../sql-reference/functions/introspection.md) ClickHouseコードで関数名とその位置を取得するには。 いくつかのクエリのプロファイルを取得するには、 `trace_log` テーブル。 個々の関数またはスタックトレース全体でデータを集計できます。
2020-04-04 09:15:31 +00:00
視覚化する必要がある場合 `trace_log` 情報、試して [フラメグラフ](../../interfaces/third-party/gui/#clickhouse-flamegraph) と [スピードスコープ](https://github.com/laplab/clickhouse-speedscope).
2020-04-04 09:15:31 +00:00
## 例 {#example}
2020-04-04 09:15:31 +00:00
この例では、:
- フィルタ処理 `trace_log` クエリ識別子と現在の日付によるデータ。
2020-04-04 09:15:31 +00:00
- スタックトレースによる集計。
- イントロスペクション関数を使用して、我々はのレポートを取得します:
2020-04-04 09:15:31 +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
```
``` text
{% include "examples/sampling_query_profiler_result.txt" %}
2020-04-04 09:15:31 +00:00
```