Codota Logo
CompletedCheckpointStore.getAllCheckpoints
Code IndexAdd Codota to your IDE (free)

How to use
getAllCheckpoints
method
in
org.apache.flink.runtime.checkpoint.CompletedCheckpointStore

Best Java code snippets using org.apache.flink.runtime.checkpoint.CompletedCheckpointStore.getAllCheckpoints (Showing top 9 results out of 315)

  • Common ways to obtain CompletedCheckpointStore
private void myMethod () {
CompletedCheckpointStore c =
  • Codota Iconnew StandaloneCompletedCheckpointStore(maxNumberOfCheckpointsToRetain)
  • Smart code suggestions by Codota
}
origin: org.apache.flink/flink-runtime_2.11

public List<CompletedCheckpoint> getSuccessfulCheckpoints() throws Exception {
  synchronized (lock) {
    return completedCheckpointStore.getAllCheckpoints();
  }
}
origin: org.apache.flink/flink-runtime

public List<CompletedCheckpoint> getSuccessfulCheckpoints() throws Exception {
  synchronized (lock) {
    return completedCheckpointStore.getAllCheckpoints();
  }
}
origin: org.apache.flink/flink-runtime_2.10

public List<CompletedCheckpoint> getSuccessfulCheckpoints() throws Exception {
  synchronized (lock) {
    return completedCheckpointStore.getAllCheckpoints();
  }
}
origin: com.alibaba.blink/flink-runtime

public List<CompletedCheckpoint> getSuccessfulCheckpoints() throws Exception {
  synchronized (lock) {
    return completedCheckpointStore.getAllCheckpoints();
  }
}
origin: com.alibaba.blink/flink-runtime

for (CompletedCheckpoint completedCheckpoint : completedCheckpointStore.getAllCheckpoints()) {
  completedCheckpoint.registerSharedStatesAfterRestored(sharedStateRegistry);
origin: org.apache.flink/flink-runtime

for (CompletedCheckpoint completedCheckpoint : completedCheckpointStore.getAllCheckpoints()) {
  completedCheckpoint.registerSharedStatesAfterRestored(sharedStateRegistry);
origin: org.apache.flink/flink-runtime_2.11

for (CompletedCheckpoint completedCheckpoint : completedCheckpointStore.getAllCheckpoints()) {
  completedCheckpoint.registerSharedStatesAfterRestored(sharedStateRegistry);
origin: com.alibaba.blink/flink-runtime

for (CompletedCheckpoint completedCheckpoint : completedCheckpointStore.getAllCheckpoints()) {
  completedCheckpoint.registerSharedStatesAfterRestored(sharedStateRegistry);
origin: org.apache.flink/flink-runtime_2.10

for (CompletedCheckpoint completedCheckpoint : completedCheckpointStore.getAllCheckpoints()) {
  completedCheckpoint.registerSharedStatesAfterRestored(sharedStateRegistry);
org.apache.flink.runtime.checkpointCompletedCheckpointStoregetAllCheckpoints

Javadoc

Returns all CompletedCheckpoint instances.

Returns an empty list if no checkpoint has been added yet.

Popular methods of CompletedCheckpointStore

  • addCheckpoint
    Adds a CompletedCheckpoint instance to the list of completed checkpoints.Only a bounded number of ch
  • getLatestCheckpoint
    Returns the latest CompletedCheckpoint instance or null if none was added.
  • getNumberOfRetainedCheckpoints
    Returns the current number of retained checkpoints.
  • recover
    Recover available CompletedCheckpoint instances.After a call to this method, #getLatestCheckpoint()
  • shutdown
    Shuts down the store.The job status is forwarded and used to decide whether state should actually be

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
  • notifyDataSetChanged (ArrayAdapter)
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Option (scala)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now