You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by zy...@apache.org on 2023/03/21 12:37:43 UTC

[iotdb] 06/06: [TO rel/1.1][IOTDB-5704] fix default comments for previously changed parameters (#9397)

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

zyk pushed a commit to branch rc/1.1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit e62a9eec723612bcbae97cfbc7af649f07514291
Author: Zhang.Jinrui <xi...@gmail.com>
AuthorDate: Tue Mar 21 18:04:18 2023 +0800

    [TO rel/1.1][IOTDB-5704] fix default comments for previously changed parameters (#9397)
---
 node-commons/src/assembly/resources/conf/iotdb-common.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/node-commons/src/assembly/resources/conf/iotdb-common.properties b/node-commons/src/assembly/resources/conf/iotdb-common.properties
index d579e25189..0a61caa03c 100644
--- a/node-commons/src/assembly/resources/conf/iotdb-common.properties
+++ b/node-commons/src/assembly/resources/conf/iotdb-common.properties
@@ -657,12 +657,12 @@ cluster_name=defaultCluster
 
 # Duration a wal flush operation will wait before calling fsync
 # A duration greater than 0 batches multiple wal fsync calls into one. This is useful when disks are slow or WAL write contention exists.
-# Notice: this value affects write performance significantly, values in the range of 0ms-10ms are recommended.
+# Notice: this value affects write performance significantly, values in the range of 0ms-2000ms are recommended.
 # Datatype: long
 # fsync_wal_delay_in_ms=1000
 
 # Buffer size of each wal node
-# If it's a value smaller than 0, use the default value 16 * 1024 * 1024 bytes (16MB).
+# If it's a value smaller than 0, use the default value 32 * 1024 * 1024 bytes (32MB).
 # Datatype: int
 # wal_buffer_size_in_byte=33554432
 
@@ -672,7 +672,7 @@ cluster_name=defaultCluster
 
 # Size threshold of each wal file
 # When a wal file's size exceeds this, the wal file will be closed and a new wal file will be created.
-# If it's a value smaller than 0, use the default value 10 * 1024 * 1024 (10MB).
+# If it's a value smaller than 0, use the default value 30 * 1024 * 1024 (30MB).
 # Datatype: long
 # wal_file_size_threshold_in_byte=31457280