跳至主要内容

disks

包含在服务器配置中定义的磁盘信息。

  • 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.