ClickHouse/docs/ja/operations/system-tables/zookeeper_connection.md
2024-11-18 11:58:58 +09:00

32 lines
2.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
slug: /ja/operations/system-tables/zookeeper_connection
---
# zookeeper_connection
ZooKeeperが設定されていない場合、このテーブルは存在しません。`system.zookeeper_connection`テーブルは、ZooKeeper補助ZooKeeperを含むへの現在の接続を表示します。各行は1つの接続に関する情報を示します。
カラム:
- `name` ([String](../../sql-reference/data-types/string.md)) — ZooKeeperクラスタの名前。
- `host` ([String](../../sql-reference/data-types/string.md)) — ClickHouseが接続したZooKeeperードのホスト名/IP。
- `port` ([String](../../sql-reference/data-types/string.md)) — ClickHouseが接続したZooKeeperードのポート。
- `index` ([UInt8](../../sql-reference/data-types/int-uint.md)) — ClickHouseが接続したZooKeeperードのインデックス。インデックスはZooKeeperの設定からのものです。
- `connected_time` ([DateTime](../../sql-reference/data-types/datetime.md)) — 接続が確立された時間。
- `session_uptime_elapsed_seconds` ([UInt64](../../sql-reference/data-types/int-uint.md)) — 接続が確立されてから経過した秒数。
- `is_expired` ([UInt8](../../sql-reference/data-types/int-uint.md)) — 現在の接続が期限切れかどうか。
- `keeper_api_version` ([String](../../sql-reference/data-types/string.md)) — Keeper APIのバージョン。
- `client_id` ([UInt64](../../sql-reference/data-types/int-uint.md)) — 接続のセッションID。
- `xid` ([Int32](../../sql-reference/data-types/int-uint.md)) — 現在のセッションのXid。
例:
``` sql
SELECT * FROM system.zookeeper_connection;
```
``` text
┌─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 │
└─────────┴───────────┴──────┴───────┴─────────────────────┴────────────────────────────────┴────────────┴────────────────────┴───────────┘
```