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

[iotdb] 01/01: change default comments for the parameters

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

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

commit 60e87bcfd1f9b51e2ca2cfdb0ac7479f16ce915d
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Tue Mar 21 14:58:31 2023 +0800

    change default comments for the parameters
---
 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..d8c765560f 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 (16MB).
 # 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 (10MB).
 # Datatype: long
 # wal_file_size_threshold_in_byte=31457280