diff --git a/docs-2.0/2.quick-start/4.nebula-graph-crud.md b/docs-2.0/2.quick-start/4.nebula-graph-crud.md index 7d1e9531621..1ea34c45a7e 100644 --- a/docs-2.0/2.quick-start/4.nebula-graph-crud.md +++ b/docs-2.0/2.quick-start/4.nebula-graph-crud.md @@ -62,13 +62,13 @@ Storage 服务加入集群后,可以执行命令`SHOW HOSTS`查看机器状态 ```ngql nebula> SHOW HOSTS; -+------------------+------+----------+--------------+----------------------+------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+------------------+------+----------+--------------+----------------------+------------------------+---------+ -| "192.168.10.100" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.101" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.102" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -+------------------+------+----------+--------------+----------------------+------------------------+---------+ ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ +| "192.168.10.100" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.101" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.102" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ ``` 在返回结果中,查看 **Status** 列,可以看到所有 Storage 服务都在线。 @@ -138,13 +138,13 @@ nebula> SHOW HOSTS; ```ngql nebula> SHOW HOSTS; - +-------------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ - | Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | - +-------------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ - | "storaged0" | 9779 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.0.0" | - | "storaged1" | 9779 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.0.0" | - | "storaged2" | 9779 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.0.0" | - +-------------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ + +-------------+-----------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ + | Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | + +-------------+-----------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ + | "storaged0" | 9779 | 19669 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.1.0" | + | "storaged1" | 9779 | 19669 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.1.0" | + | "storaged2" | 9779 | 19669 | "ONLINE" | 5 | "basketballplayer:5" | "basketballplayer:5" | "3.1.0" | + +-------------+-----------+-----------+-----------+--------------+----------------------------------+------------------------+---------+ ``` 如果** Leader distribution **分布不均匀,请执行命令`BALANCE LEADER`重新分配。更多信息,请参见 [Storage 负载均衡](../8.service-tuning/load-balance.md)。 diff --git a/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md index fbdd474d985..12edf58a37a 100644 --- a/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md +++ b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md @@ -1,6 +1,6 @@ # SHOW HOSTS -`SHOW HOSTS`语句可以显示 Graph、Storage、Meta 服务主机信息、版本信息。 +`SHOW HOSTS`语句可以显示集群信息,包括端口、状态、leader、分片、版本等信息,或者指定显示 Graph、Storage、Meta 服务主机信息。 ## 语法 @@ -16,38 +16,38 @@ SHOW HOSTS [GRAPH | STORAGE | META]; ```ngql nebula> SHOW HOSTS; -+-------------+-------+----------+--------------+----------------------------------+------------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+-------------+-------+----------+--------------+----------------------------------+------------------------------+---------+ -| "storaged0" | 9779 | "ONLINE" | 8 | "docs:5, basketballplayer:3" | "docs:5, basketballplayer:3" | "3.0.0" | -| "storaged1" | 9779 | "ONLINE" | 9 | "basketballplayer:4, docs:5" | "docs:5, basketballplayer:4" | "3.0.0" | -| "storaged2" | 9779 | "ONLINE" | 8 | "basketballplayer:3, docs:5" | "docs:5, basketballplayer:3" | "3.0.0" | -+-------------+-------+----------+--------------+----------------------------------+------------------------------+---------+ ++-------------+-------+-----------+----------+--------------+----------------------------------+------------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++-------------+-------+-----------+----------+--------------+----------------------------------+------------------------------+---------+ +| "storaged0" | 9779 | 19669 | "ONLINE" | 8 | "docs:5, basketballplayer:3" | "docs:5, basketballplayer:3" | "3.1.0" | +| "storaged1" | 9779 | 19669 | "ONLINE" | 9 | "basketballplayer:4, docs:5" | "docs:5, basketballplayer:4" | "3.1.0" | +| "storaged2" | 9779 | 19669 | "ONLINE" | 8 | "basketballplayer:3, docs:5" | "docs:5, basketballplayer:3" | "3.1.0" | ++-------------+-------+-----------+----------+--------------+----------------------------------+------------------------------+---------+ nebula> SHOW HOSTS GRAPH; +-----------+------+----------+---------+--------------+---------+ | Host | Port | Status | Role | Git Info Sha | Version | +-----------+------+----------+---------+--------------+---------+ -| "graphd" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.0.0" | -| "graphd1" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.0.0" | -| "graphd2" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.0.0" | +| "graphd" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.1.0" | +| "graphd1" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.1.0" | +| "graphd2" | 9669 | "ONLINE" | "GRAPH" | "3ba41bd" | "3.1.0" | +-----------+------+----------+---------+--------------+---------+ nebula> SHOW HOSTS STORAGE; +-------------+------+----------+-----------+--------------+---------+ | Host | Port | Status | Role | Git Info Sha | Version | +-------------+------+----------+-----------+--------------+---------+ -| "storaged0" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.0.0" | -| "storaged1" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.0.0" | -| "storaged2" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.0.0" | +| "storaged0" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.1.0" | +| "storaged1" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.1.0" | +| "storaged2" | 9779 | "ONLINE" | "STORAGE" | "3ba41bd" | "3.1.0" | +-------------+------+----------+-----------+--------------+---------+ nebula> SHOW HOSTS META; +----------+------+----------+--------+--------------+---------+ | Host | Port | Status | Role | Git Info Sha | Version | +----------+------+----------+--------+--------------+---------+ -| "metad2" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.0.0" | -| "metad0" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.0.0" | -| "metad1" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.0.0" | +| "metad2" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.1.0" | +| "metad0" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.1.0" | +| "metad1" | 9559 | "ONLINE" | "META" | "3ba41bd" | "3.1.0" | +----------+------+----------+--------+--------------+---------+ ``` diff --git a/docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md b/docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md index 5a802d9f2d7..6ae695c87b7 100644 --- a/docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md +++ b/docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md @@ -95,13 +95,13 @@ nebula> SHOW CREATE SPACE my_space_4; ```ngql nebula> SHOW HOSTS; -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ -| "storaged0" | 9779 | "ONLINE" | 8 | "basketballplayer:3, test:5" | "basketballplayer:10, test:10" | "3.0.0" | -| "storaged1" | 9779 | "ONLINE" | 9 | "basketballplayer:4, test:5" | "basketballplayer:10, test:10" | "3.0.0" | -| "storaged2" | 9779 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:10, test:10" | "3.0.0" | -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ +| "storaged0" | 9779 | 19669 | "ONLINE" | 8 | "basketballplayer:3, test:5" | "basketballplayer:10, test:10" | "3.1.0" | +| "storaged1" | 9779 | 19669 | "ONLINE" | 9 | "basketballplayer:4, test:5" | "basketballplayer:10, test:10" | "3.1.0" | +| "storaged2" | 9779 | 19669 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:10, test:10" | "3.1.0" | ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ ``` 如果需要均衡负载,请执行如下命令: @@ -109,11 +109,11 @@ nebula> SHOW HOSTS; ```ngql nebula> BALANCE LEADER; nebula> SHOW HOSTS; -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ -| "storaged0" | 9779 | "ONLINE" | 7 | "basketballplayer:3, test:4" | "basketballplayer:10, test:10" | "3.0.0" | -| "storaged1" | 9779 | "ONLINE" | 7 | "basketballplayer:4, test:3" | "basketballplayer:10, test:10" | "3.0.0" | -| "storaged2" | 9779 | "ONLINE" | 6 | "basketballplayer:3, test:3" | "basketballplayer:10, test:10" | "3.0.0" | -+-------------+------+----------+--------------+--------------------------------+--------------------------------+---------+ ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ +| "storaged0" | 9779 | 19669 | "ONLINE" | 7 | "basketballplayer:3, test:4" | "basketballplayer:10, test:10" | "3.1.0" | +| "storaged1" | 9779 | 19669 | "ONLINE" | 7 | "basketballplayer:4, test:3" | "basketballplayer:10, test:10" | "3.1.0" | +| "storaged2" | 9779 | 19669 | "ONLINE" | 6 | "basketballplayer:3, test:3" | "basketballplayer:10, test:10" | "3.1.0" | ++-------------+------+-----------+----------+--------------+--------------------------------+--------------------------------+---------+ ``` diff --git a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md index 12dac2e3c6e..3b729e6298f 100644 --- a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md +++ b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md @@ -100,13 +100,13 @@ nebula> ADD HOSTS "storaged0":9779,"storaged1":9779,"storaged2":9779; nebula> SHOW HOSTS; - +-------------+------+----------+--------------+----------------------+------------------------+---------+ - | Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | - +-------------+------+----------+--------------+----------------------+------------------------+---------+ - | "storaged0" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | - | "storaged1" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | - | "storaged2" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | - +-------------+------+----------+--------------+----------------------+------------------------+---------+ + +-------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ + | Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | + +-------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ + | "storaged0" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + | "storaged1" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + | "storaged2" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + +-------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ ``` !!! Note 从 3.0 开始,上报到 metad 的 `nebula-storaged` 服务需要人为 `ADD HOSTS` 之后才可以被使用。 diff --git a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md index 15000cae183..73cef6f074f 100644 --- a/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md +++ b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md @@ -291,13 +291,13 @@ $ ./nebula-console --addr 192.168.10.111 --port 9669 -u root -p nebula Welcome to Nebula Graph! > SHOW HOSTS; -+------------------+------+----------+--------------+----------------------+------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+------------------+------+----------+--------------+----------------------+------------------------+---------+ -| "192.168.10.111" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.112" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.113" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.114" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -| "192.168.10.115" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.0.0" | -+------------------+------+----------+--------------+----------------------+------------------------+---------+ ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ +| "192.168.10.111" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.112" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.113" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.114" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | +| "192.168.10.115" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | ++------------------+------+-----------+----------+--------------+----------------------+------------------------+---------+ ``` diff --git a/docs-2.0/8.service-tuning/load-balance.md b/docs-2.0/8.service-tuning/load-balance.md index d84dbb8ad9e..6169ef4d437 100644 --- a/docs-2.0/8.service-tuning/load-balance.md +++ b/docs-2.0/8.service-tuning/load-balance.md @@ -29,16 +29,16 @@ ```ngql nebual> SHOW HOSTS; - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ - | Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ - | "192.168.10.100" | 9779 | "ONLINE" | 4 | "basketballplayer:4" | "basketballplayer:15" | "3.1.0" | - | "192.168.10.101" | 9779 | "ONLINE" | 8 | "basketballplayer:8" | "basketballplayer:15" | "3.1.0" | - | "192.168.10.102" | 9779 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:15" | "3.1.0" | - | "192.168.10.103" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | - | "192.168.10.104" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | - | "192.168.10.105" | 9779 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ + | Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ + | "192.168.10.100" | 9779 | 19669 | "ONLINE" | 4 | "basketballplayer:4" | "basketballplayer:15" | "3.1.0" | + | "192.168.10.101" | 9779 | 19669 | "ONLINE" | 8 | "basketballplayer:8" | "basketballplayer:15" | "3.1.0" | + | "192.168.10.102" | 9779 | 19669 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:15" | "3.1.0" | + | "192.168.10.103" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + | "192.168.10.104" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + | "192.168.10.105" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "No valid partition" | "3.1.0" | + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ ``` 3. 执行命令`BALANCE IN ZONE`将当前图空间内每个 Zone 内部的分片均衡分布。 @@ -76,16 +76,16 @@ ```ngql nebula> SHOW HOSTS; - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ - | Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ - | "192.168.10.100" | 9779 | "ONLINE" | 4 | "basketballplayer:4" | "basketballplayer:8" | "3.1.0" | - | "192.168.10.101" | 9779 | "ONLINE" | 8 | "basketballplayer:8" | "basketballplayer:8" | "3.1.0" | - | "192.168.10.102" | 9779 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:8" | "3.1.0" | - | "192.168.10.103" | 9779 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | - | "192.168.10.104" | 9779 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | - | "192.168.10.105" | 9779 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | - +------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ + | Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ + | "192.168.10.100" | 9779 | 19669 | "ONLINE" | 4 | "basketballplayer:4" | "basketballplayer:8" | "3.1.0" | + | "192.168.10.101" | 9779 | 19669 | "ONLINE" | 8 | "basketballplayer:8" | "basketballplayer:8" | "3.1.0" | + | "192.168.10.102" | 9779 | 19669 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:8" | "3.1.0" | + | "192.168.10.103" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | + | "192.168.10.104" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | + | "192.168.10.105" | 9779 | 19669 | "ONLINE" | 0 | "No valid partition" | "basketballplayer:7" | "3.1.0" | + +------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ ``` 如果有子任务失败,请重启作业,详情参见[作业管理](../3.ngql-guide/18.operation-and-maintenance-statements/4.job-statements.md)。如果重做负载均衡仍然不能解决问题,请到 [Nebula Graph 社区](https://discuss.nebula-graph.com.cn/)寻求帮助。 @@ -145,16 +145,16 @@ nebula> BALANCE LEADER; ```ngql nebula> SHOW HOSTS; -+------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ -| Host | Port | Status | Leader count | Leader distribution | Partition distribution | Version | -+------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ -| "192.168.10.100" | 9779 | "ONLINE" | 4 | "basketballplayer:3" | "basketballplayer:8" | "3.0.0" | -| "192.168.10.101" | 9779 | "ONLINE" | 8 | "basketballplayer:3" | "basketballplayer:8" | "3.0.0" | -| "192.168.10.102" | 9779 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:8" | "3.0.0" | -| "192.168.10.103" | 9779 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.0.0" | -| "192.168.10.104" | 9779 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.0.0" | -| "192.168.10.105" | 9779 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.0.0" | -+------------------+------+----------+--------------+-----------------------------------+------------------------+---------+ ++------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ +| Host | Port | HTTP port | Status | Leader count | Leader distribution | Partition distribution | Version | ++------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ +| "192.168.10.100" | 9779 | 19669 | "ONLINE" | 4 | "basketballplayer:3" | "basketballplayer:8" | "3.1.0" | +| "192.168.10.101" | 9779 | 19669 | "ONLINE" | 8 | "basketballplayer:3" | "basketballplayer:8" | "3.1.0" | +| "192.168.10.102" | 9779 | 19669 | "ONLINE" | 3 | "basketballplayer:3" | "basketballplayer:8" | "3.1.0" | +| "192.168.10.103" | 9779 | 19669 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.1.0" | +| "192.168.10.104" | 9779 | 19669 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.1.0" | +| "192.168.10.105" | 9779 | 19669 | "ONLINE" | 0 | "basketballplayer:2" | "basketballplayer:7" | "3.1.0" | ++------------------+------+-----------+----------+--------------+-----------------------------------+------------------------+---------+ ``` !!! caution