mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
2.5 KiB
2.5 KiB
slug |
---|
/ja/operations/system-tables/moves |
moves
このテーブルには、MergeTree テーブルの進行中のデータパート移動に関する情報が格納されています。各データパートの移動は単一の行で表現されます。
カラム:
-
database
(String) — データベースの名前。 -
table
(String) — データパートが移動中のテーブルの名前。 -
elapsed
(Float64) — データパートの移動が始まってから経過した時間(秒)。 -
part_name
(String) — 移動中のデータパートの名前。 -
part_size
(UInt64) — データパートのサイズ。 -
thread_id
(UInt64) — 移動を行っているスレッドの識別子。
例
SELECT * FROM system.moves
┌─database─┬─table─┬─────elapsed─┬─target_disk_name─┬─target_disk_path─┬─part_name─┬─part_size─┬─thread_id─┐
│ default │ test2 │ 1.668056039 │ s3 │ ./disks/s3/ │ all_3_3_0 │ 136 │ 296146 │
└──────────┴───────┴─────────────┴──────────────────┴──────────────────┴───────────┴───────────┴───────────┘
関連項目
- MergeTree テーブルエンジン
- データストレージのための複数のブロックデバイスの使用
- ALTER TABLE ... MOVE PART コマンド