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 ee136f10449 Fix typo for parameter dn_multi_dir_strategy (#12033)
ee136f10449 is described below
commit ee136f1044964d381aa6749fe68df9882cc5575b
Author: Potato <[email protected]>
AuthorDate: Tue Feb 6 19:04:14 2024 +0800
Fix typo for parameter dn_multi_dir_strategy (#12033)
Signed-off-by: OneSizeFitQuorum <[email protected]>
---
.../datanode/src/assembly/resources/conf/iotdb-datanode.properties | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/iotdb-core/datanode/src/assembly/resources/conf/iotdb-datanode.properties
b/iotdb-core/datanode/src/assembly/resources/conf/iotdb-datanode.properties
index e529154cbba..e6ee742796e 100644
--- a/iotdb-core/datanode/src/assembly/resources/conf/iotdb-datanode.properties
+++ b/iotdb-core/datanode/src/assembly/resources/conf/iotdb-datanode.properties
@@ -170,8 +170,8 @@ dn_seed_config_node=127.0.0.1:10710
# multi_dir_strategy
# The strategy is used to choose a directory from data_dirs for the system to
store a new tsfile.
-# System provides four strategies to choose from, or user can create his own
strategy by extending
org.apache.iotdb.db.conf.directories.strategy.DirectoryStrategy.
-# The info of the four strategies are as follows:
+# System provides two strategies to choose from, or user can create his own
strategy by extending
org.apache.iotdb.db.conf.directories.strategy.DirectoryStrategy.
+# The info of the two strategies are as follows:
# 1. SequenceStrategy: the system will choose the directory in sequence.
# 2. MaxDiskUsableSpaceFirstStrategy: the system will choose the directory
whose disk has the maximum space.
# Set SequenceStrategy or MaxDiskUsableSpaceFirstStrategy to apply the
corresponding strategy.