ClickHouse/docs/zh/operations/system-tables/clusters.md

28 lines
1.6 KiB
Markdown
Raw Normal View History

2021-06-24 12:47:02 +00:00
# system.clusters{#system-clusters}
2020-06-22 08:45:22 +00:00
包含有关配置文件中可用的集群及其中的服务器的信息。
列:
2021-06-24 12:47:02 +00:00
- `cluster` (String) — 集群名。
2021-07-29 15:20:55 +00:00
- `shard_num` (UInt32) — 集群中的分片数从1开始。
2021-06-24 12:47:02 +00:00
- `shard_weight` (UInt32) — 写数据时该分片的相对权重。
2021-07-29 15:20:55 +00:00
- `replica_num` (UInt32) — 分片的副本数量从1开始。
- `host_name` (String) — 配置中指定的主机名。
2021-06-24 12:47:02 +00:00
- `host_address` (String) — 从DNS获取的主机IP地址。
2021-07-29 15:20:55 +00:00
- `port` (UInt16) — 连接到服务器的端口。
- `user` (String) — 连接到服务器的用户名。
2021-06-24 12:47:02 +00:00
- `errors_count` (UInt32) - 此主机无法访问副本的次数。
- `slowdowns_count` (UInt32) - 与对冲请求建立连接时导致更改副本的减速次数。
- `estimated_recovery_time` (UInt32) - 剩下的秒数,直到副本错误计数归零并被视为恢复正常。
2020-06-22 08:45:22 +00:00
请注意 `errors_count` 每个查询集群更新一次,但 `estimated_recovery_time` 按需重新计算。 所以有可能是非零的情况 `errors_count` 和零 `estimated_recovery_time`,下一个查询将为零 `errors_count` 并尝试使用副本,就好像它没有错误。
**另请参阅**
- [表引擎分布式](../../engines/table-engines/special/distributed.md)
2020-10-13 17:23:29 +00:00
- [distributed_replica_error_cap设置](../../operations/settings/settings.md#settings-distributed_replica_error_cap)
- [distributed_replica_error_half_life设置](../../operations/settings/settings.md#settings-distributed_replica_error_half_life)
2021-06-24 12:47:02 +00:00
[原文](https://clickhouse.tech/docs/zh/operations/system-tables/clusters) <!--hide-->