You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by li...@apache.org on 2019/06/11 03:21:44 UTC

[incubator-iotdb] branch feature_async_close_overflow_log created (now 71b45da)

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

liurui pushed a change to branch feature_async_close_overflow_log
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at 71b45da  add log for overflow data

This branch includes the following new commits:

     new 71b45da  add log for overflow data

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.



[incubator-iotdb] 01/01: add log for overflow data

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

liurui pushed a commit to branch feature_async_close_overflow_log
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit 71b45da85e4842007549af6364f8ddd77e739884
Author: liuruiyiyang <24...@qq.com>
AuthorDate: Tue Jun 11 11:21:26 2019 +0800

    add log for overflow data
---
 .../main/java/org/apache/iotdb/db/engine/filenode/FileNodeManager.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iotdb/src/main/java/org/apache/iotdb/db/engine/filenode/FileNodeManager.java b/iotdb/src/main/java/org/apache/iotdb/db/engine/filenode/FileNodeManager.java
index 2b1f8ce..fdebccd 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/engine/filenode/FileNodeManager.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/engine/filenode/FileNodeManager.java
@@ -318,6 +318,7 @@ public class FileNodeManager implements IStatistic, IService {
     try {
       long lastUpdateTime = fileNodeProcessor.getFlushLastUpdateTime(deviceId);
       if (timestamp < lastUpdateTime) {
+        LOGGER.info("{} insert overflow, timestamp: {}, deviceId: {}, lastUpdateTime: {}", fileNodeProcessor.getProcessorName(), timestamp, deviceId, lastUpdateTime);
         insertOverflow(fileNodeProcessor, timestamp, tsRecord, isMonitor, deviceId);
         insertType = 1;
       } else {