This is an automated email from the ASF dual-hosted git repository.
xingtanzjr 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 3623ca006c change default cross performer and inner unseq performer to
FAST (#9004)
3623ca006c is described below
commit 3623ca006c2b9fa55aafc8cb396a108f63c1acb1
Author: 周沛辰 <[email protected]>
AuthorDate: Thu Feb 9 11:12:24 2023 +0800
change default cross performer and inner unseq performer to FAST (#9004)
---
node-commons/src/assembly/resources/conf/iotdb-common.properties | 4 ++--
server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/node-commons/src/assembly/resources/conf/iotdb-common.properties
b/node-commons/src/assembly/resources/conf/iotdb-common.properties
index e3949fa96b..1ca8968dd3 100644
--- a/node-commons/src/assembly/resources/conf/iotdb-common.properties
+++ b/node-commons/src/assembly/resources/conf/iotdb-common.properties
@@ -541,7 +541,7 @@ cluster_name=defaultCluster
# the compaction performer of cross space compaction task
# Options: read_point, fast (under test)
-# cross_performer=read_point
+# cross_performer=fast
# the selector of inner sequence space compaction task
# Options: size_tiered
@@ -557,7 +557,7 @@ cluster_name=defaultCluster
# the performer of inner unsequence space compaction task
# Options: read_point, fast (under test)
-# inner_unseq_performer=read_point
+# inner_unseq_performer=fast
# The priority of compaction execution
# INNER_CROSS: prioritize inner space compaction, reduce the number of files
first
diff --git a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
index 8670548342..32f68e5002 100644
--- a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
+++ b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
@@ -410,7 +410,7 @@ public class IoTDBConfig {
InnerUnsequenceCompactionSelector.SIZE_TIERED;
private InnerUnseqCompactionPerformer innerUnseqCompactionPerformer =
- InnerUnseqCompactionPerformer.READ_POINT;
+ InnerUnseqCompactionPerformer.FAST;
/**
* The strategy of cross space compaction task. There are just one cross
space compaction strategy
@@ -418,7 +418,7 @@ public class IoTDBConfig {
*/
private CrossCompactionSelector crossCompactionSelector =
CrossCompactionSelector.REWRITE;
- private CrossCompactionPerformer crossCompactionPerformer =
CrossCompactionPerformer.READ_POINT;
+ private CrossCompactionPerformer crossCompactionPerformer =
CrossCompactionPerformer.FAST;
/**
* The priority of compaction task execution. There are three priority
strategy INNER_CROSS: