メインコンテンツまでスキップ
メインコンテンツまでスキップ

system.moves

このテーブルには、進行中の data part moves に関する情報が含まれています。これは MergeTree テーブルのデータパーツの移動を表しており、各データパートの移動は1行で表現されます。

列:

  • database (String) — データベースの名前。

  • table (String) — 移動中のデータパートを含むテーブルの名前。

  • elapsed (Float64) — データパートの移動が開始してからの経過時間(秒)。

  • target_disk_name (String) — データパートが移動する disk の名前。

  • target_disk_path (String) — ファイルシステム内の disk のマウントポイントへのパス。

  • 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 │
└──────────┴───────┴─────────────┴──────────────────┴──────────────────┴───────────┴───────────┴───────────┘

関連情報