Class StandaloneCheckpointRecoveryFactory
- java.lang.Object
-
- org.apache.flink.runtime.checkpoint.StandaloneCheckpointRecoveryFactory
-
- All Implemented Interfaces:
CheckpointRecoveryFactory
public class StandaloneCheckpointRecoveryFactory extends Object implements CheckpointRecoveryFactory
CheckpointCoordinator
components inHighAvailabilityMode.NONE
.
-
-
Constructor Summary
Constructors Constructor Description StandaloneCheckpointRecoveryFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CheckpointIDCounter
createCheckpointIDCounter(JobID ignored)
Creates aCheckpointIDCounter
instance for a job.CompletedCheckpointStore
createRecoveredCompletedCheckpointStore(JobID jobId, int maxNumberOfCheckpointsToRetain, SharedStateRegistryFactory sharedStateRegistryFactory, Executor ioExecutor, RecoveryClaimMode recoveryClaimMode)
Creates a RECOVEREDCompletedCheckpointStore
instance for a job.
-
-
-
Method Detail
-
createRecoveredCompletedCheckpointStore
public CompletedCheckpointStore createRecoveredCompletedCheckpointStore(JobID jobId, int maxNumberOfCheckpointsToRetain, SharedStateRegistryFactory sharedStateRegistryFactory, Executor ioExecutor, RecoveryClaimMode recoveryClaimMode) throws Exception
Description copied from interface:CheckpointRecoveryFactory
Creates a RECOVEREDCompletedCheckpointStore
instance for a job. In this context, RECOVERED means, that if we already have completed checkpoints from previous runs, we should use them as the initial state.- Specified by:
createRecoveredCompletedCheckpointStore
in interfaceCheckpointRecoveryFactory
- Parameters:
jobId
- Job ID to recover checkpoints formaxNumberOfCheckpointsToRetain
- Maximum number of checkpoints to retainsharedStateRegistryFactory
- Simple factory to produceSharedStateRegistry
objects.ioExecutor
- Executor used to run (async) deletes.recoveryClaimMode
- the claim mode with which the job is restoring.- Returns:
CompletedCheckpointStore
instance for the job- Throws:
Exception
-
createCheckpointIDCounter
public CheckpointIDCounter createCheckpointIDCounter(JobID ignored)
Description copied from interface:CheckpointRecoveryFactory
Creates aCheckpointIDCounter
instance for a job.- Specified by:
createCheckpointIDCounter
in interfaceCheckpointRecoveryFactory
- Parameters:
ignored
- Job ID to recover checkpoints for- Returns:
CheckpointIDCounter
instance for the job
-
-