public class StandaloneCheckpointRecoveryFactory extends Object implements CheckpointRecoveryFactory
CheckpointCoordinator components in HighAvailabilityMode.NONE.| Constructor and Description |
|---|
StandaloneCheckpointRecoveryFactory() |
| Modifier and Type | Method and Description |
|---|---|
CheckpointIDCounter |
createCheckpointIDCounter(org.apache.flink.api.common.JobID ignored)
Creates a
CheckpointIDCounter instance for a job. |
CompletedCheckpointStore |
createRecoveredCompletedCheckpointStore(org.apache.flink.api.common.JobID jobId,
int maxNumberOfCheckpointsToRetain,
SharedStateRegistryFactory sharedStateRegistryFactory,
Executor ioExecutor,
RestoreMode restoreMode)
Creates a RECOVERED
CompletedCheckpointStore instance for a job. |
public CompletedCheckpointStore createRecoveredCompletedCheckpointStore(org.apache.flink.api.common.JobID jobId, int maxNumberOfCheckpointsToRetain, SharedStateRegistryFactory sharedStateRegistryFactory, Executor ioExecutor, RestoreMode restoreMode) throws Exception
CheckpointRecoveryFactoryCompletedCheckpointStore 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.createRecoveredCompletedCheckpointStore in interface CheckpointRecoveryFactoryjobId - Job ID to recover checkpoints formaxNumberOfCheckpointsToRetain - Maximum number of checkpoints to retainsharedStateRegistryFactory - Simple factory to produce SharedStateRegistry
objects.ioExecutor - Executor used to run (async) deletes.restoreMode - the restore mode with which the job is restoring.CompletedCheckpointStore instance for the jobExceptionpublic CheckpointIDCounter createCheckpointIDCounter(org.apache.flink.api.common.JobID ignored)
CheckpointRecoveryFactoryCheckpointIDCounter instance for a job.createCheckpointIDCounter in interface CheckpointRecoveryFactoryignored - Job ID to recover checkpoints forCheckpointIDCounter instance for the jobCopyright © 2014–2022 The Apache Software Foundation. All rights reserved.