hailin0 commented on code in PR #6977: URL: https://github.com/apache/seatunnel/pull/6977#discussion_r1637585517
########## seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/task/flow/SourceFlowLifeCycle.java: ########## @@ -310,6 +310,13 @@ public void triggerBarrier(Barrier barrier) throws Exception { "lock checkpoint[{}] waiting for complete..., phase: [{}]", barrier.getId(), schemaChangePhase.get().getPhase()); + } else if (prepareClose) { + TaskLocation taskLocation = runningTask.getTaskLocation(); + log.info( + "Task[{}]({}/{}) prepare close", + taskLocation.getTaskID(), + taskLocation.getPipelineId(), + taskLocation.getJobId()); Review Comment: ```suggestion } else { log.debug("Ignore schema-change checkpoint[{}], phase: [{}]", barrier.getId(), checkpointType); ``` -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org