mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
32 lines
2.5 KiB
Markdown
32 lines
2.5 KiB
Markdown
---
|
||
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 │
|
||
└─────────┴───────────┴──────┴───────┴─────────────────────┴────────────────────────────────┴────────────┴────────────────────┴───────────┘
|
||
```
|