You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/01/30 10:52:01 UTC

[iotdb] branch rel/1.0 updated: [To rel/1.0][IOTDB-5426] Cannot trigger flush for sequence file when timed flush enabled (#8925)

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

haonan pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new dd43fb29cb [To rel/1.0][IOTDB-5426] Cannot trigger flush for sequence file when timed flush enabled (#8925)
dd43fb29cb is described below

commit dd43fb29cb66afe42e95d889b0a47520d836492e
Author: Alan Choo <43...@users.noreply.github.com>
AuthorDate: Mon Jan 30 18:51:56 2023 +0800

    [To rel/1.0][IOTDB-5426] Cannot trigger flush for sequence file when timed flush enabled (#8925)
---
 server/src/main/java/org/apache/iotdb/db/rescon/SystemInfo.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/rescon/SystemInfo.java b/server/src/main/java/org/apache/iotdb/db/rescon/SystemInfo.java
index fd0214b519..67736cb56f 100644
--- a/server/src/main/java/org/apache/iotdb/db/rescon/SystemInfo.java
+++ b/server/src/main/java/org/apache/iotdb/db/rescon/SystemInfo.java
@@ -132,7 +132,6 @@ public class SystemInfo {
     if (reportedStorageGroupMemCostMap.containsKey(dataRegionInfo)) {
       delta = reportedStorageGroupMemCostMap.get(dataRegionInfo) - dataRegionInfo.getMemCost();
       this.totalStorageGroupMemCost -= delta;
-      dataRegionInfo.setLastReportedSize(dataRegionInfo.getMemCost());
       reportedStorageGroupMemCostMap.put(dataRegionInfo, dataRegionInfo.getMemCost());
     }