mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 04:42:37 +00:00
86 lines
6.0 KiB
Markdown
86 lines
6.0 KiB
Markdown
|
---
|
||
|
slug: /ja/operations/system-tables/part_log
|
||
|
---
|
||
|
# part_log
|
||
|
|
||
|
`system.part_log`テーブルは、[part_log](../../operations/server-configuration-parameters/settings.md#part-log)サーバー設定が指定されている場合のみ作成されます。
|
||
|
|
||
|
このテーブルは、データを追加したりマージするなど、[MergeTree](../../engines/table-engines/mergetree-family/mergetree.md)ファミリーのテーブルで[データパーツ](../../engines/table-engines/mergetree-family/custom-partitioning-key.md)に発生したイベントに関する情報を含んでいます。
|
||
|
|
||
|
`system.part_log`テーブルには次のカラムが含まれています:
|
||
|
|
||
|
- `hostname` ([LowCardinality(String)](../../sql-reference/data-types/string.md)) — クエリを実行しているサーバーのホスト名。
|
||
|
- `query_id` ([String](../../sql-reference/data-types/string.md)) — このデータパーツを作成した`INSERT`クエリの識別子。
|
||
|
- `event_type` ([Enum8](../../sql-reference/data-types/enum.md)) — データパーツに発生したイベントのタイプ。次のいずれかの値を持つことができます:
|
||
|
- `NewPart` — 新しいデータパーツの挿入。
|
||
|
- `MergePartsStart` — データパーツのマージが開始された。
|
||
|
- `MergeParts` — データパーツのマージが完了した。
|
||
|
- `DownloadPart` — データパーツのダウンロード。
|
||
|
- `RemovePart` — [DETACH PARTITION](../../sql-reference/statements/alter/partition.md#alter_detach-partition)を使用したデータパーツの削除またはデタッチ。
|
||
|
- `MutatePartStart` — データパーツの変異が開始された。
|
||
|
- `MutatePart` — データパーツの変異が完了した。
|
||
|
- `MovePart` — データパーツをあるディスクから別のディスクに移動する。
|
||
|
- `merge_reason` ([Enum8](../../sql-reference/data-types/enum.md)) — `MERGE_PARTS`タイプのイベントの理由。次のいずれかの値を持つことができます:
|
||
|
- `NotAMerge` — 現在のイベントは`MERGE_PARTS`以外のタイプです。
|
||
|
- `RegularMerge` — 通常のマージ。
|
||
|
- `TTLDeleteMerge` — 有効期限切れデータのクリーンアップ。
|
||
|
- `TTLRecompressMerge` — データパーツの再圧縮。
|
||
|
- `merge_algorithm` ([Enum8](../../sql-reference/data-types/enum.md)) — `MERGE_PARTS`タイプのイベントのマージアルゴリズム。次のいずれかの値を持つことができます:
|
||
|
- `Undecided`
|
||
|
- `Horizontal`
|
||
|
- `Vertical`
|
||
|
- `event_date` ([Date](../../sql-reference/data-types/date.md)) — イベントの日付。
|
||
|
- `event_time` ([DateTime](../../sql-reference/data-types/datetime.md)) — イベントの時刻。
|
||
|
- `event_time_microseconds` ([DateTime64](../../sql-reference/data-types/datetime64.md)) — マイクロ秒単位の精度でのイベントの時刻。
|
||
|
- `duration_ms` ([UInt64](../../sql-reference/data-types/int-uint.md)) — 所要時間。
|
||
|
- `database` ([String](../../sql-reference/data-types/string.md)) — データパーツが存在するデータベースの名前。
|
||
|
- `table` ([String](../../sql-reference/data-types/string.md)) — データパーツが存在するテーブルの名前。
|
||
|
- `part_name` ([String](../../sql-reference/data-types/string.md)) — データパーツの名前。
|
||
|
- `partition_id` ([String](../../sql-reference/data-types/string.md)) — データパーツが挿入されたパーティションのID。パーティショニングが`tuple()`の場合、このカラムは`all`の値を取ります。
|
||
|
- `path_on_disk` ([String](../../sql-reference/data-types/string.md)) — データパーツファイルを含むフォルダーへの絶対パス。
|
||
|
- `rows` ([UInt64](../../sql-reference/data-types/int-uint.md)) — データパーツ内の行数。
|
||
|
- `size_in_bytes` ([UInt64](../../sql-reference/data-types/int-uint.md)) — データパーツのバイト単位のサイズ。
|
||
|
- `merged_from` ([Array(String)](../../sql-reference/data-types/array.md)) — 現在のパーツがマージ後に作られた元のパーツの名前の配列。
|
||
|
- `bytes_uncompressed` ([UInt64](../../sql-reference/data-types/int-uint.md)) — 非圧縮バイトのサイズ。
|
||
|
- `read_rows` ([UInt64](../../sql-reference/data-types/int-uint.md)) — マージ中に読み取られた行数。
|
||
|
- `read_bytes` ([UInt64](../../sql-reference/data-types/int-uint.md)) — マージ中に読み取られたバイト数。
|
||
|
- `peak_memory_usage` ([Int64](../../sql-reference/data-types/int-uint.md)) — このスレッドのコンテキストでの割り当てられたメモリと解放されたメモリの差の最大値。
|
||
|
- `error` ([UInt16](../../sql-reference/data-types/int-uint.md)) — 発生したエラーのコード番号。
|
||
|
- `exception` ([String](../../sql-reference/data-types/string.md)) — 発生したエラーのテキストメッセージ。
|
||
|
|
||
|
`system.part_log`テーブルは、最初のデータが`MergeTree`テーブルに挿入された後に作成されます。
|
||
|
|
||
|
**例**
|
||
|
|
||
|
``` sql
|
||
|
SELECT * FROM system.part_log LIMIT 1 FORMAT Vertical;
|
||
|
```
|
||
|
|
||
|
``` text
|
||
|
Row 1:
|
||
|
──────
|
||
|
hostname: clickhouse.eu-central1.internal
|
||
|
query_id: 983ad9c7-28d5-4ae1-844e-603116b7de31
|
||
|
event_type: NewPart
|
||
|
merge_reason: NotAMerge
|
||
|
merge_algorithm: Undecided
|
||
|
event_date: 2021-02-02
|
||
|
event_time: 2021-02-02 11:14:28
|
||
|
event_time_microseconds: 2021-02-02 11:14:28.861919
|
||
|
duration_ms: 35
|
||
|
database: default
|
||
|
table: log_mt_2
|
||
|
part_name: all_1_1_0
|
||
|
partition_id: all
|
||
|
path_on_disk: db/data/default/log_mt_2/all_1_1_0/
|
||
|
rows: 115418
|
||
|
size_in_bytes: 1074311
|
||
|
merged_from: []
|
||
|
bytes_uncompressed: 0
|
||
|
read_rows: 0
|
||
|
read_bytes: 0
|
||
|
peak_memory_usage: 0
|
||
|
error: 0
|
||
|
exception:
|
||
|
```
|