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 15:49:52 UTC

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

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

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


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

commit 0a9c3668bd91910a4f1fb27d923cf5024c4878d7
Author: Alan Choo <43...@users.noreply.github.com>
AuthorDate: Mon Jan 30 23:49:45 2023 +0800

    [To rel/0.13][IOTDB-5426] Cannot trigger flush for sequence file when timed flush enabled  (#8926)
---
 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 8f3fa6c48e..aa7ada8b31 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
@@ -128,7 +128,6 @@ public class SystemInfo {
     if (reportedStorageGroupMemCostMap.containsKey(storageGroupInfo)) {
       delta = reportedStorageGroupMemCostMap.get(storageGroupInfo) - storageGroupInfo.getMemCost();
       this.totalStorageGroupMemCost -= delta;
-      storageGroupInfo.setLastReportedSize(storageGroupInfo.getMemCost());
       reportedStorageGroupMemCostMap.put(storageGroupInfo, storageGroupInfo.getMemCost());
     }