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

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


The following commit(s) were added to refs/heads/resource_debug by this push:
     new b7a54f0  Print times in tablet
b7a54f0 is described below

commit b7a54f0100b2b7c30d725bebb286cd959cca0bdb
Author: HTHou <[email protected]>
AuthorDate: Thu Jul 15 17:42:18 2021 +0800

    Print times in tablet
---
 .../apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java   | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java
 
b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java
index 7d0e5ad..acf5331 100755
--- 
a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java
+++ 
b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/StorageGroupProcessor.java
@@ -891,7 +891,10 @@ public class StorageGroupProcessor {
 
     try {
       if (!config.isEnablePartition() && start != 0) {
-        logger.error("start index in InsertTabletPlan != 0");
+        logger.error("start index in InsertTabletPlan != 0, start index={}", 
start);
+        for (long time : insertTabletPlan.getTimes()) {
+          logger.error("Time: {}", time);
+        }
         System.exit(1);
       }
       tsFileProcessor.insertTablet(insertTabletPlan, start, end, results);

Reply via email to