ClickHouse/docs/ja/operations/system-tables/disks.md
2024-11-18 11:58:58 +09:00

1.9 KiB

slug
/ja/operations/system-tables/disks

disk

サーバー設定で定義されたディスクの情報を含みます。

カラム:

  • name (String) — サーバー設定内のディスクの名前。
  • path (String) — ファイルシステム内のマウントポイントへのパス。
  • free_space (UInt64) — ディスク上の空き容量(バイト単位)。
  • total_space (UInt64) — ディスク容量(バイト単位)。
  • unreserved_space (UInt64) — 予約されていない空き容量。(free_spaceから、現在実行中のマージやインサート及びその他のディスク書き込み操作によって取られている予約サイズを引いた値。)
  • keep_free_space (UInt64) — ディスク上で常に空けておくべきディスク容量(バイト単位)。ディスク設定のkeep_free_space_bytesパラメーターで定義。

SELECT * FROM system.disks;
┌─name────┬─path─────────────────┬───free_space─┬──total_space─┬─keep_free_space─┐
│ default │ /var/lib/clickhouse/ │ 276392587264 │ 490652508160 │               0 │
└─────────┴──────────────────────┴──────────────┴──────────────┴─────────────────┘

1 rows in set. Elapsed: 0.001 sec.