Skip to content

Commit

Permalink
[Improve] Reduce checkpoint completed log (#5916)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hisoka-X committed Nov 27, 2023
1 parent bbedb07 commit 9eed623
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,11 @@ private void allTaskReady() {
private void notifyCompleted(CompletedCheckpoint completedCheckpoint) {
if (completedCheckpoint != null) {
try {
LOG.info("start notify checkpoint completed, checkpoint:{}", completedCheckpoint);
LOG.info(
"start notify checkpoint completed, job id: {}, pipeline id: {}, checkpoint id:{}",
completedCheckpoint.getJobId(),
completedCheckpoint.getPipelineId(),
completedCheckpoint.getCheckpointId());
InvocationFuture<?>[] invocationFutures =
notifyCheckpointCompleted(completedCheckpoint);
CompletableFuture.allOf(invocationFutures).join();
Expand Down

0 comments on commit 9eed623

Please sign in to comment.