跳至主要内容

zookeeper_connection

#zookeeper_connection

如果未配置 ZooKeeper,则此表不存在。'system.zookeeper_connection' 表显示当前与 ZooKeeper 的连接(包括辅助 ZooKeeper)。每一行显示有关一个连接的信息。

  • name (String) — ZooKeeper 集群的名称。
  • host (String) — ClickHouse 连接到的 ZooKeeper 节点的主机名/IP。
  • port (String) — ClickHouse 连接到的 ZooKeeper 节点的端口。
  • index (UInt8) — ClickHouse 连接到的 ZooKeeper 节点的索引。索引来自 ZooKeeper 配置。
  • connected_time (DateTime) — 建立连接的时间
  • session_uptime_elapsed_seconds (UInt64) — 建立连接后经过的秒数
  • is_expired (UInt8) — 当前连接是否已过期。
  • keeper_api_version (String) — Keeper API 版本。
  • client_id (UInt64) — 连接的会话 ID。
  • xid (Int32) — 当前会话的 Xid。

示例

SELECT * FROM system.zookeeper_connection;
┌─name────┬─host──────┬─port─┬─index─┬──────connected_time─┬─session_uptime_elapsed_seconds─┬─is_expired─┬─keeper_api_version─┬─client_id─┐
│ default │ 127.0.0.1 │ 9181 │ 0 │ 2023-06-15 14:36:01 │ 3058 │ 0 │ 3 │ 5 │
└─────────┴───────────┴──────┴───────┴─────────────────────┴────────────────────────────────┴────────────┴────────────────────┴───────────┘