mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
2.5 KiB
2.5 KiB
slug |
---|
/ja/operations/system-tables/zookeeper_connection |
zookeeper_connection
ZooKeeperが設定されていない場合、このテーブルは存在しません。system.zookeeper_connection
テーブルは、ZooKeeper(補助ZooKeeperを含む)への現在の接続を表示します。各行は1つの接続に関する情報を示します。
カラム:
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 │
└─────────┴───────────┴──────┴───────┴─────────────────────┴────────────────────────────────┴────────────┴────────────────────┴───────────┘