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

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

commit 3d45967386ec2b32c8b55a648add182030525e71
Author: JackieTien97 <[email protected]>
AuthorDate: Tue Jul 22 12:07:24 2025 +0800

    fix compilation
---
 .../datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
index 2493ad221ce..a5dcb8e02f5 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java
@@ -73,7 +73,6 @@ import static 
org.apache.iotdb.commons.conf.IoTDBConstant.CONSENSUS_FOLDER_NAME;
 import static org.apache.iotdb.commons.conf.IoTDBConstant.DELETION_FOLDER_NAME;
 import static org.apache.iotdb.commons.conf.IoTDBConstant.OBJECT_STORAGE_DIR;
 import static org.apache.iotdb.commons.conf.IoTDBConstant.PIPE_FOLDER_NAME;
-import static 
org.apache.iotdb.db.conf.IoTDBDescriptor.calculateDefaultSortBufferSize;
 import static org.apache.tsfile.common.constant.TsFileConstant.PATH_SEPARATOR;
 
 public class IoTDBConfig {
@@ -416,8 +415,7 @@ public class IoTDBConfig {
   private volatile boolean enableAutoRepairCompaction = true;
 
   /** The buffer for sort operation */
-  private long sortBufferSize =
-      
calculateDefaultSortBufferSize(IoTDBDescriptor.getInstance().getMemoryConfig());
+  private long sortBufferSize = 32 * 1024 * 1024L;
 
   /**
    * The strategy of inner space compaction task. There are just one inner 
space compaction strategy

Reply via email to