Class ForStRestoreResult
- java.lang.Object
-
- org.apache.flink.state.forst.restore.ForStRestoreResult
-
public class ForStRestoreResult extends Object
Entity holding result of ForSt instance restore.
-
-
Constructor Summary
Constructors Constructor Description ForStRestoreResult(org.forstdb.RocksDB db, org.forstdb.ColumnFamilyHandle defaultColumnFamilyHandle, ForStNativeMetricMonitor nativeMetricMonitor, long lastCompletedCheckpointId, UUID backendUID, SortedMap<Long,Collection<IncrementalKeyedStateHandle.HandleAndLocalPath>> restoredSstFiles)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUID
getBackendUID()
org.forstdb.RocksDB
getDb()
org.forstdb.ColumnFamilyHandle
getDefaultColumnFamilyHandle()
long
getLastCompletedCheckpointId()
ForStNativeMetricMonitor
getNativeMetricMonitor()
SortedMap<Long,Collection<IncrementalKeyedStateHandle.HandleAndLocalPath>>
getRestoredSstFiles()
-
-
-
Constructor Detail
-
ForStRestoreResult
public ForStRestoreResult(org.forstdb.RocksDB db, org.forstdb.ColumnFamilyHandle defaultColumnFamilyHandle, @Nullable ForStNativeMetricMonitor nativeMetricMonitor, long lastCompletedCheckpointId, UUID backendUID, SortedMap<Long,Collection<IncrementalKeyedStateHandle.HandleAndLocalPath>> restoredSstFiles)
-
-
Method Detail
-
getDb
public org.forstdb.RocksDB getDb()
-
getLastCompletedCheckpointId
public long getLastCompletedCheckpointId()
-
getBackendUID
public UUID getBackendUID()
-
getRestoredSstFiles
public SortedMap<Long,Collection<IncrementalKeyedStateHandle.HandleAndLocalPath>> getRestoredSstFiles()
-
getDefaultColumnFamilyHandle
public org.forstdb.ColumnFamilyHandle getDefaultColumnFamilyHandle()
-
getNativeMetricMonitor
@Nullable public ForStNativeMetricMonitor getNativeMetricMonitor()
-
-