You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/03/26 01:13:41 UTC

[iotdb] branch master updated: Fix alter context for max_degree_of_index_node default-value. (#2910)

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

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new be1d6a6  Fix alter context for max_degree_of_index_node default-value. (#2910)
be1d6a6 is described below

commit be1d6a6582bf331f8c4cbb36d06d90f3af160a7e
Author: wangchao316 <66...@users.noreply.github.com>
AuthorDate: Fri Mar 26 09:13:24 2021 +0800

    Fix alter context for max_degree_of_index_node default-value. (#2910)
---
 docs/SystemDesign/TsFile/Format.md              | 2 +-
 docs/zh/SystemDesign/StorageEngine/FileLists.md | 2 +-
 docs/zh/SystemDesign/TsFile/Format.md           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/SystemDesign/TsFile/Format.md b/docs/SystemDesign/TsFile/Format.md
index ba9cfa9..8189151 100644
--- a/docs/SystemDesign/TsFile/Format.md
+++ b/docs/SystemDesign/TsFile/Format.md
@@ -210,7 +210,7 @@ All MetadataIndexNode forms a **metadata index tree**, which consists of no more
 
 To describe the structure of metadata index tree more clearly, we will give four examples here in details.
 
-The max degree of the metadata index tree (that is, the max number of each node's children) could be configured by users, and is 1024 by default. In the examples below, we assume `max_degree_of_index_node = 10` in the following examples.
+The max degree of the metadata index tree (that is, the max number of each node's children) could be configured by users, and is 256 by default. In the examples below, we assume `max_degree_of_index_node = 10` in the following examples.
 
 <img style="width:100%; max-width:800px; max-height:600px; margin-left:auto; margin-right:auto; display:block;" src="https://user-images.githubusercontent.com/19167280/81935219-de3fd080-9622-11ea-9aa1-a59bef1c0001.png">
 
diff --git a/docs/zh/SystemDesign/StorageEngine/FileLists.md b/docs/zh/SystemDesign/StorageEngine/FileLists.md
index 0803a04..2b24a61 100644
--- a/docs/zh/SystemDesign/StorageEngine/FileLists.md
+++ b/docs/zh/SystemDesign/StorageEngine/FileLists.md
@@ -34,7 +34,7 @@
 	timestamp_precision=ms
 	tsfile_storage_fs=LOCAL
 	enable_partition=false
-	max_degree_of_index_node=1024
+	max_degree_of_index_node=256
 	tag_attribute_total_size=700
 	iotdb_version=UNKNOWN
 	```
diff --git a/docs/zh/SystemDesign/TsFile/Format.md b/docs/zh/SystemDesign/TsFile/Format.md
index dba7cc3..607fcc5 100644
--- a/docs/zh/SystemDesign/TsFile/Format.md
+++ b/docs/zh/SystemDesign/TsFile/Format.md
@@ -210,7 +210,7 @@ PageHeader 结构
 
 为了更清楚的说明元数据索引树的结构,这里我们使用四个例子来加以详细说明。
 
-元数据索引树的最大度(即每个节点的最大子节点个数)是可以由用户进行配置的,配置项为`max_degree_of_index_node`,其默认值为1024。在以下例子中,为了简化,我们假定 `max_degree_of_index_node = 10`。
+元数据索引树的最大度(即每个节点的最大子节点个数)是可以由用户进行配置的,配置项为`max_degree_of_index_node`,其默认值为256。在以下例子中,为了简化,我们假定 `max_degree_of_index_node = 10`。
 
 <img style="width:100%; max-width:800px; max-height:600px; margin-left:auto; margin-right:auto; display:block;" src="https://user-images.githubusercontent.com/19167280/81935219-de3fd080-9622-11ea-9aa1-a59bef1c0001.png">