mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
1.9 KiB
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.