ClickHouse/docs/zh/operations/system-tables/disks.md
2021-12-23 20:34:52 +08:00

1.6 KiB

system.disks

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

列:

  • name (字符串) — 服务器配置中的磁盘名称.
  • path (字符串) — 文件系统中挂载点的路径Path to the mount point in the file system.
  • free_space (UInt64) — 磁盘上的可用空间,以字节为单位.
  • total_space (UInt64) — 磁盘容量,以字节为单位。
  • 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.

原文