Class RocksDBRestoreResult
- java.lang.Object
-
- org.apache.flink.contrib.streaming.state.restore.RocksDBRestoreResult
-
public class RocksDBRestoreResult extends Object
Entity holding result of RocksDB instance restore.
-
-
Constructor Summary
Constructors Constructor Description RocksDBRestoreResult(org.rocksdb.RocksDB db, org.rocksdb.ColumnFamilyHandle defaultColumnFamilyHandle, RocksDBNativeMetricMonitor nativeMetricMonitor, long lastCompletedCheckpointId, UUID backendUID, SortedMap<Long,Collection<org.apache.flink.runtime.state.IncrementalKeyedStateHandle.HandleAndLocalPath>> restoredSstFiles)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUIDgetBackendUID()org.rocksdb.RocksDBgetDb()org.rocksdb.ColumnFamilyHandlegetDefaultColumnFamilyHandle()longgetLastCompletedCheckpointId()RocksDBNativeMetricMonitorgetNativeMetricMonitor()SortedMap<Long,Collection<org.apache.flink.runtime.state.IncrementalKeyedStateHandle.HandleAndLocalPath>>getRestoredSstFiles()
-
-
-
Constructor Detail
-
RocksDBRestoreResult
public RocksDBRestoreResult(org.rocksdb.RocksDB db, org.rocksdb.ColumnFamilyHandle defaultColumnFamilyHandle, RocksDBNativeMetricMonitor nativeMetricMonitor, long lastCompletedCheckpointId, UUID backendUID, SortedMap<Long,Collection<org.apache.flink.runtime.state.IncrementalKeyedStateHandle.HandleAndLocalPath>> restoredSstFiles)
-
-
Method Detail
-
getDb
public org.rocksdb.RocksDB getDb()
-
getLastCompletedCheckpointId
public long getLastCompletedCheckpointId()
-
getBackendUID
public UUID getBackendUID()
-
getRestoredSstFiles
public SortedMap<Long,Collection<org.apache.flink.runtime.state.IncrementalKeyedStateHandle.HandleAndLocalPath>> getRestoredSstFiles()
-
getDefaultColumnFamilyHandle
public org.rocksdb.ColumnFamilyHandle getDefaultColumnFamilyHandle()
-
getNativeMetricMonitor
public RocksDBNativeMetricMonitor getNativeMetricMonitor()
-
-