メインコンテンツへスキップ
メインコンテンツへスキップ

system.moves

このテーブルには、MergeTree テーブルにおける進行中の データパーツの移動 に関する情報が含まれます。各データパーツの移動は 1 行で表されます。

列:

  • database (String) — データベース名。
  • table (String) — 移動中のデータパーツを含むテーブル名。
  • elapsed (Float64) — データパーツの移動開始からの経過時間(秒)。
  • target_disk_name (String) — データパーツの移動先ディスク名。
  • target_disk_path (String) — ファイルシステム内におけるディスクのマウントポイントのパス。
  • 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 │
└──────────┴───────┴─────────────┴──────────────────┴──────────────────┴───────────┴───────────┴───────────┘

関連項目