Github user senorcarbone commented on a diff in the pull request:
https://github.com/apache/flink/pull/747#discussion_r31325009
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/CheckpointCommittingOperator.java
---
@@ -18,7 +18,10 @@
package org.apache.flink.runtime.jobgraph.tasks;
+import org.apache.flink.runtime.state.StateHandle;
+import org.apache.flink.runtime.util.SerializedValue;
+
public interface CheckpointCommittingOperator {
- void confirmCheckpoint(long checkpointId, long timestamp) throws
Exception;
+ void confirmCheckpoint(long checkpointId,
SerializedValue<StateHandle<?>> state) throws Exception;
}
--- End diff --
Good point, we could potentially omit it but we kept it for now since it
will make testing easier to associate confirmations with specific checkpoints
at least.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---