Class FsCheckpointStateToolset
- java.lang.Object
-
- org.apache.flink.runtime.state.filesystem.FsCheckpointStateToolset
-
- All Implemented Interfaces:
CheckpointStateToolset
public class FsCheckpointStateToolset extends Object implements CheckpointStateToolset
An implementation ofCheckpointStateToolsetthat does file based duplicating with asPathsCopyingFileSystem.
-
-
Constructor Summary
Constructors Constructor Description FsCheckpointStateToolset(org.apache.flink.core.fs.Path basePath, org.apache.flink.core.fs.PathsCopyingFileSystem fs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanFastDuplicate(StreamStateHandle stateHandle)Tells if we can duplicate the givenStreamStateHandle.List<StreamStateHandle>duplicate(List<StreamStateHandle> stateHandles)DuplicatesStreamStateHandlesinto the path embedded inside of the class.
-
-
-
Method Detail
-
canFastDuplicate
public boolean canFastDuplicate(StreamStateHandle stateHandle) throws IOException
Description copied from interface:CheckpointStateToolsetTells if we can duplicate the givenStreamStateHandle.This should be a rather cheap operation, preferably not involving any remote accesses.
- Specified by:
canFastDuplicatein interfaceCheckpointStateToolset- Parameters:
stateHandle- The handle to duplicate- Returns:
- true, if we can perform the duplication
- Throws:
IOException
-
duplicate
public List<StreamStateHandle> duplicate(List<StreamStateHandle> stateHandles) throws IOException
Description copied from interface:CheckpointStateToolsetDuplicatesStreamStateHandlesinto the path embedded inside of the class.You should first check if you can duplicate with
CheckpointStateToolset.canFastDuplicate(StreamStateHandle).- Specified by:
duplicatein interfaceCheckpointStateToolset- Parameters:
stateHandles- The handles to duplicate- Returns:
- The duplicated handles
- Throws:
IOException
-
-