Tabnine Logo
CompletedCheckpointStore.getNumberOfRetainedCheckpoints
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.apache.flink/flink-runtime_2.11

public int getNumberOfRetainedSuccessfulCheckpoints() {
  synchronized (lock) {
    return completedCheckpointStore.getNumberOfRetainedCheckpoints();
  }
}
origin: com.alibaba.blink/flink-runtime

public int getNumberOfRetainedSuccessfulCheckpoints() {
  synchronized (lock) {
    return completedCheckpointStore.getNumberOfRetainedCheckpoints();
  }
}
origin: org.apache.flink/flink-runtime_2.10

public int getNumberOfRetainedSuccessfulCheckpoints() {
  synchronized (lock) {
    return completedCheckpointStore.getNumberOfRetainedCheckpoints();
  }
}
origin: org.apache.flink/flink-runtime

public int getNumberOfRetainedSuccessfulCheckpoints() {
  synchronized (lock) {
    return completedCheckpointStore.getNumberOfRetainedCheckpoints();
  }
}
org.apache.flink.runtime.checkpointCompletedCheckpointStoregetNumberOfRetainedCheckpoints

Javadoc

Returns the current number of retained checkpoints.

Popular methods of CompletedCheckpointStore

  • addCheckpoint
    Adds a CompletedCheckpoint instance to the list of completed checkpoints.Only a bounded number of ch
  • getAllCheckpoints
    Returns all CompletedCheckpoint instances.Returns an empty list if no checkpoint has been added yet.
  • getLatestCheckpoint
    Returns the latest CompletedCheckpoint instance or null if none was added.
  • 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

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • runOnUiThread (Activity)
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Kernel (java.awt.image)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now