Uses of Interface
org.apache.flink.runtime.state.CheckpointStorage
-
-
Uses of CheckpointStorage in org.apache.flink.runtime.checkpoint
Methods in org.apache.flink.runtime.checkpoint that return CheckpointStorage Modifier and Type Method Description static CheckpointStorageCheckpoints. loadCheckpointStorage(org.apache.flink.configuration.Configuration configuration, ClassLoader classLoader, org.slf4j.Logger logger)Methods in org.apache.flink.runtime.checkpoint with parameters of type CheckpointStorage Modifier and Type Method Description static voidCheckpoints. disposeSavepoint(String pointer, CheckpointStorage checkpointStorage, ClassLoader classLoader)Constructors in org.apache.flink.runtime.checkpoint with parameters of type CheckpointStorage Constructor Description CheckpointCoordinator(org.apache.flink.api.common.JobID job, CheckpointCoordinatorConfiguration chkConfig, Collection<OperatorCoordinatorCheckpointContext> coordinatorsToCheckpoint, CheckpointIDCounter checkpointIDCounter, CompletedCheckpointStore completedCheckpointStore, CheckpointStorage checkpointStorage, Executor executor, CheckpointsCleaner checkpointsCleaner, org.apache.flink.util.concurrent.ScheduledExecutor timer, CheckpointFailureManager failureManager, CheckpointPlanCalculator checkpointPlanCalculator, CheckpointStatsTracker statsTracker)CheckpointCoordinator(org.apache.flink.api.common.JobID job, CheckpointCoordinatorConfiguration chkConfig, Collection<OperatorCoordinatorCheckpointContext> coordinatorsToCheckpoint, CheckpointIDCounter checkpointIDCounter, CompletedCheckpointStore completedCheckpointStore, CheckpointStorage checkpointStorage, Executor executor, CheckpointsCleaner checkpointsCleaner, org.apache.flink.util.concurrent.ScheduledExecutor timer, CheckpointFailureManager failureManager, CheckpointPlanCalculator checkpointPlanCalculator, org.apache.flink.util.clock.Clock clock, CheckpointStatsTracker statsTracker, java.util.function.BiFunction<Set<ExecutionJobVertex>,Map<OperatorID,OperatorState>,VertexFinishedStateChecker> vertexFinishedStateCheckerFactory) -
Uses of CheckpointStorage in org.apache.flink.runtime.checkpoint.channel
Methods in org.apache.flink.runtime.checkpoint.channel with parameters of type CheckpointStorage Modifier and Type Method Description org.apache.flink.runtime.checkpoint.channel.ChannelStateWriteRequestExecutorChannelStateWriteRequestExecutorFactory. getOrCreateExecutor(JobVertexID jobVertexID, int subtaskIndex, CheckpointStorage checkpointStorage, int maxSubtasksPerChannelStateFile)Constructors in org.apache.flink.runtime.checkpoint.channel with parameters of type CheckpointStorage Constructor Description ChannelStateWriterImpl(JobVertexID jobVertexID, String taskName, int subtaskIndex, CheckpointStorage checkpointStorage, ChannelStateWriteRequestExecutorFactory channelStateExecutorFactory, int maxSubtasksPerChannelStateFile)Creates aChannelStateWriterImplwithChannelStateWriterImpl.DEFAULT_MAX_CHECKPOINTSasChannelStateWriterImpl.maxCheckpoints. -
Uses of CheckpointStorage in org.apache.flink.runtime.executiongraph
Methods in org.apache.flink.runtime.executiongraph with parameters of type CheckpointStorage Modifier and Type Method Description voidDefaultExecutionGraph. enableCheckpointing(CheckpointCoordinatorConfiguration chkConfig, List<MasterTriggerRestoreHook<?>> masterHooks, CheckpointIDCounter checkpointIDCounter, CompletedCheckpointStore checkpointStore, StateBackend checkpointStateBackend, CheckpointStorage checkpointStorage, CheckpointStatsTracker statsTracker, CheckpointsCleaner checkpointsCleaner, String changelogStorageName)voidExecutionGraph. enableCheckpointing(CheckpointCoordinatorConfiguration chkConfig, List<MasterTriggerRestoreHook<?>> masterHooks, CheckpointIDCounter checkpointIDCounter, CompletedCheckpointStore checkpointStore, StateBackend checkpointStateBackend, CheckpointStorage checkpointStorage, CheckpointStatsTracker statsTracker, CheckpointsCleaner checkpointsCleaner, String changelogStorage) -
Uses of CheckpointStorage in org.apache.flink.runtime.jobgraph.tasks
Methods in org.apache.flink.runtime.jobgraph.tasks that return types with arguments of type CheckpointStorage Modifier and Type Method Description org.apache.flink.util.SerializedValue<CheckpointStorage>JobCheckpointingSettings. getDefaultCheckpointStorage() -
Uses of CheckpointStorage in org.apache.flink.runtime.state
Classes in org.apache.flink.runtime.state with type parameters of type CheckpointStorage Modifier and Type Interface Description interfaceCheckpointStorageFactory<T extends CheckpointStorage>A factory to create a specificCheckpointStorage.Subinterfaces of CheckpointStorage in org.apache.flink.runtime.state Modifier and Type Interface Description interfaceConfigurableCheckpointStorageAn interface for checkpoint storage types that pick up additional parameters from a configuration.Methods in org.apache.flink.runtime.state that return CheckpointStorage Modifier and Type Method Description CheckpointStorageConfigurableCheckpointStorage. configure(org.apache.flink.configuration.ReadableConfig config, ClassLoader classLoader)Creates a variant of the checkpoint storage that applies additional configuration parameters.static CheckpointStorageCheckpointStorageLoader. load(CheckpointStorage fromApplication, org.apache.flink.core.fs.Path defaultSavepointDirectory, StateBackend configuredStateBackend, org.apache.flink.configuration.Configuration config, ClassLoader classLoader, org.slf4j.Logger logger)Loads the configuredCheckpointStoragefor the job based on the following precedent rules:Methods in org.apache.flink.runtime.state that return types with arguments of type CheckpointStorage Modifier and Type Method Description static Optional<CheckpointStorage>CheckpointStorageLoader. fromConfig(org.apache.flink.configuration.ReadableConfig config, ClassLoader classLoader, org.slf4j.Logger logger)Loads the checkpoint storage from the configuration, from the parameter 'state.checkpoint-storage', as defined inCheckpointingOptions.CHECKPOINT_STORAGE.Methods in org.apache.flink.runtime.state with parameters of type CheckpointStorage Modifier and Type Method Description static CheckpointStorageCheckpointStorageLoader. load(CheckpointStorage fromApplication, org.apache.flink.core.fs.Path defaultSavepointDirectory, StateBackend configuredStateBackend, org.apache.flink.configuration.Configuration config, ClassLoader classLoader, org.slf4j.Logger logger)Loads the configuredCheckpointStoragefor the job based on the following precedent rules: -
Uses of CheckpointStorage in org.apache.flink.runtime.state.filesystem
Classes in org.apache.flink.runtime.state.filesystem that implement CheckpointStorage Modifier and Type Class Description classAbstractFileStateBackendDeprecated.State backends should no longer implementCheckpointStoragefunctionality.classFsStateBackendDeprecated. -
Uses of CheckpointStorage in org.apache.flink.runtime.state.memory
Classes in org.apache.flink.runtime.state.memory that implement CheckpointStorage Modifier and Type Class Description classMemoryStateBackendDeprecated. -
Uses of CheckpointStorage in org.apache.flink.runtime.state.storage
Classes in org.apache.flink.runtime.state.storage that implement CheckpointStorage Modifier and Type Class Description classFileSystemCheckpointStorageFileSystemCheckpointStoragecheckpoints state as files to a file system.classJobManagerCheckpointStorageTheCheckpointStoragecheckpoints state directly to the JobManager's memory (hence the name), but savepoints will be persisted to a file system.
-