SteveYurongSu commented on code in PR #14717:
URL: https://github.com/apache/iotdb/pull/14717#discussion_r1952451966


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/scheduler/load/LoadTsFileScheduler.java:
##########
@@ -270,9 +269,18 @@ public void start() {
       if (isLoadSuccess) {
         stateMachine.transitionToFinished();
       } else {
+        final StringBuilder failedTsFiles = new StringBuilder();
+        for (int i : failedTsFileNodeIndexes) {
+          failedTsFiles
+              
.append(tsFileNodeList.get(i).getTsFileResource().getTsFilePath())
+              .append(", ");
+        }
         final long startTime = System.nanoTime();
         try {
           // if failed to load some TsFiles, then try to convert the TsFiles 
to Tablets
+          LOGGER.info(
+              "Load TsFile failed, will try to convert to tablets and insert. 
Failed TsFiles: [{}]",

Review Comment:
   ```suggestion
                 "Load TsFile(s) failed, will try to convert to tablets and 
insert. Failed TsFiles: {}",
   ```



-- 
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