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

tanxinyu pushed a change to branch fix_threadpool_metric_npe_cp
in repository https://gitbox.apache.org/repos/asf/iotdb.git


 discard 5a19fab8f52 fix concurrent bug
    omit c28b6cc62e5 Restruct procedure waiting strategy to fix NPE bug when 
completed procedures were cleaned before getting result (#14360)
     add 2599cb20e13 [To dev/1.3] WAL buffer queue memory control (#14379)
     add 2ee931acc6f Restruct procedure waiting strategy to fix NPE bug when 
completed procedures were cleaned before getting result (#14360) (#14381)
     add f6b0cf934eb [to dev/1.3] When deleting data for TsFileResource in 
COMPACTING status, the mod file metrics is not modified (#14376)
     new 56d6a25e0f8 fix concurrent bug

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5a19fab8f52)
            \
             N -- N -- N   refs/heads/fix_threadpool_metric_npe_cp (56d6a25e0f8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 22 +++---
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  | 22 +++---
 .../plan/planner/plan/node/write/InsertNode.java   | 10 +++
 .../iotdb/db/service/metrics/FileMetrics.java      |  5 ++
 .../iotdb/db/service/metrics/WritingMetrics.java   | 32 +++++++++
 .../db/service/metrics/file/ModsFileMetrics.java   |  2 +-
 .../storageengine/buffer/CacheHitRatioMonitor.java |  4 +-
 .../db/storageengine/dataregion/DataRegion.java    | 33 ++++-----
 .../dataregion/memtable/AbstractMemTable.java      |  1 -
 .../dataregion/wal/buffer/WALBuffer.java           |  6 +-
 .../dataregion/wal/buffer/WALEntry.java            |  2 +
 .../dataregion/wal/buffer/WALInfoEntry.java        | 29 ++++++++
 .../dataregion/wal/buffer/WALSignalEntry.java      |  5 ++
 .../storageengine/dataregion/wal/node/WALNode.java |  4 +-
 .../wal/utils/MemoryControlledWALEntryQueue.java   | 81 ++++++++++++++++++++++
 .../db/storageengine/rescon/memory/SystemInfo.java | 29 ++++++--
 .../buffer/CacheHitRatioMonitorTest.java           |  4 +-
 .../storageengine/dataregion/DataRegionTest.java   | 34 +++++++++
 .../conf/iotdb-system.properties.template          | 18 ++---
 .../iotdb/commons/service/metric/enums/Metric.java |  1 +
 20 files changed, 280 insertions(+), 64 deletions(-)
 create mode 100644 
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/wal/utils/MemoryControlledWALEntryQueue.java

Reply via email to