You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2022/12/02 11:03:17 UTC

[iotdb] branch rel/1.0 updated: add confignode notice (#8309)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new 759fcaa8f0 add confignode notice (#8309)
759fcaa8f0 is described below

commit 759fcaa8f0ee84967aeadd64060b44c5fad07d66
Author: Jialin Qiao <qj...@mails.tsinghua.edu.cn>
AuthorDate: Fri Dec 2 19:03:10 2022 +0800

    add confignode notice (#8309)
---
 docs/UserGuide/Cluster/Cluster-Concept.md    | 2 ++
 docs/zh/UserGuide/Cluster/Cluster-Concept.md | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/docs/UserGuide/Cluster/Cluster-Concept.md b/docs/UserGuide/Cluster/Cluster-Concept.md
index f69aee3bcd..25773dd10b 100644
--- a/docs/UserGuide/Cluster/Cluster-Concept.md
+++ b/docs/UserGuide/Cluster/Cluster-Concept.md
@@ -31,6 +31,8 @@ An illustration of the cluster architecture:
 
 ConfigNode is the control node of the cluster, which manages the cluster's node status, partition information, etc. All ConfigNodes in the cluster form a highly available group, which is fully replicated.
 
+Notice:The replication factor of ConfigNode is all ConfigNodes that has joined the Cluster. Over half of the ConfigNodes is Running could the cluster work.
+
 DataNode stores the data and schema of the cluster, which manages multiple data regions and schema regions. Data is a time-value pair, and schema is the path and data type of each time series.
 
 Client could only connect to the DataNode for operation.
diff --git a/docs/zh/UserGuide/Cluster/Cluster-Concept.md b/docs/zh/UserGuide/Cluster/Cluster-Concept.md
index d0f63aa2c8..06bb272ee7 100644
--- a/docs/zh/UserGuide/Cluster/Cluster-Concept.md
+++ b/docs/zh/UserGuide/Cluster/Cluster-Concept.md
@@ -31,6 +31,8 @@ Apache IoTDB 集群版包含两种角色的节点,ConfigNode 和 DataNode,
 
 ConfigNode 是集群的控制节点,管理集群的节点状态、分区信息等,集群所有 ConfigNode 组成一个高可用组,数据全量备份。
 
+注意:ConfigNode 的副本数是集群当前加入的 ConfigNode 个数,一半以上的 ConfigNode 存活集群才能提供服务。
+
 DataNode 是集群的数据节点,管理多个数据分片、元数据分片,数据即时间序列中的时间戳和值,元数据为时间序列的路径信息、数据类型等。
 
 Client 只能通过 DataNode 进行数据读写。