SpriCoder commented on code in PR #14710:
URL: https://github.com/apache/iotdb/pull/14710#discussion_r1981329928


##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/memory/MemoryManager.java:
##########
@@ -46,9 +46,15 @@ public class MemoryManager {
   /** Whether memory management is enabled */
   private final boolean enable;
 
+  /** The total allocate memory size in byte of memory manager */
+  private final long totalAllocatedMemorySizeInBytes;
+
   /** The total memory size in byte of memory manager */
   private long totalMemorySizeInBytes;
 
+  /** The static allocated memory size */
+  private long staticAllocatedMemorySizeInBytes = 0L;
+
   /** The allocated memory size */
   private long allocatedMemorySizeInBytes = 0L;

Review Comment:
   Fixed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to