Uses of Interface
org.apache.flink.runtime.state.CheckpointStorage
Packages that use CheckpointStorage
Package
Description
-
Uses of CheckpointStorage in org.apache.flink.runtime.checkpoint
Methods in org.apache.flink.runtime.checkpoint that return CheckpointStorageModifier and TypeMethodDescriptionstatic CheckpointStorageCheckpoints.loadCheckpointStorage(org.apache.flink.configuration.Configuration jobConfig, org.apache.flink.configuration.Configuration clusterConfig, ClassLoader classLoader, org.slf4j.Logger logger) Methods in org.apache.flink.runtime.checkpoint with parameters of type CheckpointStorageModifier and TypeMethodDescriptionstatic voidCheckpoints.disposeSavepoint(String pointer, CheckpointStorage checkpointStorage, ClassLoader classLoader) Constructors in org.apache.flink.runtime.checkpoint with parameters of type CheckpointStorageModifierConstructorDescriptionCheckpointCoordinator(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, BiFunction<Set<ExecutionJobVertex>, Map<OperatorID, OperatorState>, VertexFinishedStateChecker> vertexFinishedStateCheckerFactory) -
Uses of CheckpointStorage in org.apache.flink.runtime.executiongraph
Methods in org.apache.flink.runtime.executiongraph with parameters of type CheckpointStorageModifier and TypeMethodDescriptionvoidDefaultExecutionGraph.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 CheckpointStorageModifier and TypeMethodDescriptionorg.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 CheckpointStorageModifier and TypeInterfaceDescriptioninterfaceCheckpointStorageFactory<T extends CheckpointStorage>A factory to create a specificCheckpointStorage.Subinterfaces of CheckpointStorage in org.apache.flink.runtime.stateModifier and TypeInterfaceDescriptioninterfaceAn interface for checkpoint storage types that pick up additional parameters from a configuration.Methods in org.apache.flink.runtime.state that return CheckpointStorageModifier and TypeMethodDescriptionConfigurableCheckpointStorage.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, StateBackend configuredStateBackend, org.apache.flink.configuration.Configuration jobConfig, org.apache.flink.configuration.Configuration clusterConfig, 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 CheckpointStorageModifier and TypeMethodDescriptionstatic 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 'execution.checkpointing.storage', as defined inCheckpointingOptions.CHECKPOINT_STORAGE.Methods in org.apache.flink.runtime.state with parameters of type CheckpointStorageModifier and TypeMethodDescriptionstatic CheckpointStorageCheckpointStorageLoader.load(CheckpointStorage fromApplication, StateBackend configuredStateBackend, org.apache.flink.configuration.Configuration jobConfig, org.apache.flink.configuration.Configuration clusterConfig, 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 -
Uses of CheckpointStorage in org.apache.flink.runtime.state.storage
Classes in org.apache.flink.runtime.state.storage that implement CheckpointStorageModifier and TypeClassDescriptionclassFileSystemCheckpointStoragecheckpoints state as files to a file system.classTheCheckpointStoragecheckpoints state directly to the JobManager's memory (hence the name), but savepoints will be persisted to a file system. -
Uses of CheckpointStorage in org.apache.flink.streaming.api.graph
Methods in org.apache.flink.streaming.api.graph that return CheckpointStorageMethods in org.apache.flink.streaming.api.graph with parameters of type CheckpointStorageModifier and TypeMethodDescriptionvoidStreamConfig.setCheckpointStorage(CheckpointStorage storage) voidStreamGraph.setCheckpointStorage(CheckpointStorage checkpointStorage) Method parameters in org.apache.flink.streaming.api.graph with type arguments of type CheckpointStorageModifier and TypeMethodDescriptionvoidStreamConfig.setSerializedCheckpointStorage(org.apache.flink.util.SerializedValue<CheckpointStorage> serializedCheckpointStorage) -
Uses of CheckpointStorage in org.apache.flink.streaming.api.operators.sorted.state
Classes in org.apache.flink.streaming.api.operators.sorted.state that implement CheckpointStorageModifier and TypeClassDescriptionclassA simpleCheckpointStoragewhich is used in a BATCH style execution. -
Uses of CheckpointStorage in org.apache.flink.streaming.runtime.tasks
Fields in org.apache.flink.streaming.runtime.tasks declared as CheckpointStorageModifier and TypeFieldDescriptionprotected final CheckpointStorageStreamTask.checkpointStorageOur checkpoint storage.
CheckpointStoragefunctionality.