类 CheckpointsBroker
- java.lang.Object
-
- org.apache.flink.iteration.checkpoint.CheckpointsBroker
-
public class CheckpointsBroker extends Object
Hand offs theCheckpointsfrom the head operator to the tail operator so that the tail operator could decrease the reference count of the raw state when checkpoints are aborted. We could not count on the head operator since it would be blocked on closing the raw state when aborting the checkpoint. It also looks like a bug.
-
-
构造器概要
构造器 构造器 说明 CheckpointsBroker()
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 static CheckpointsBrokerget()<V> Checkpoints<V>getCheckpoints(org.apache.flink.statefun.flink.core.feedback.SubtaskFeedbackKey<V> key)<V> voidsetCheckpoints(org.apache.flink.statefun.flink.core.feedback.SubtaskFeedbackKey<V> key, Checkpoints<V> checkpoints)
-
-
-
方法详细资料
-
get
public static CheckpointsBroker get()
-
setCheckpoints
public <V> void setCheckpoints(org.apache.flink.statefun.flink.core.feedback.SubtaskFeedbackKey<V> key, Checkpoints<V> checkpoints)
-
getCheckpoints
public <V> Checkpoints<V> getCheckpoints(org.apache.flink.statefun.flink.core.feedback.SubtaskFeedbackKey<V> key)
-
-