Skip to content

Commit

Permalink
[hotfix][checkpointing] Properly record amount of processed data
Browse files Browse the repository at this point in the history
  • Loading branch information
est08zw authored and zhaoxing committed Apr 22, 2021
1 parent 6fb073e commit 79dad1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public class PendingCheckpointStats extends AbstractCheckpointStats {
super(checkpointId, triggerTimestamp, props, totalSubtaskCount, taskStats);
this.trackerCallback = checkNotNull(trackerCallback);
this.currentStateSize = currentStateSize;
this.currentPersistedData = processedData;
this.currentProcessedData = processedData;
this.currentPersistedData = persistedData;
this.latestAcknowledgedSubtask = latestAcknowledgedSubtask;
this.currentNumAcknowledgedSubtasks = acknowledgedSubtaskCount;
Expand Down

0 comments on commit 79dad1a

Please sign in to comment.