Package org.elasticsearch.index.store
Class Store.RecoveryDiff
- java.lang.Object
-
- org.elasticsearch.index.store.Store.RecoveryDiff
-
-
Field Summary
Fields Modifier and Type Field Description List<StoreFileMetaData>differentFiles that exist in both snapshots but their they are not identicalList<StoreFileMetaData>identicalFiles that exist in both snapshots and they can be considered the same ie.List<StoreFileMetaData>missingFiles that exist in the source but not in the target
-
-
-
Field Detail
-
identical
public final List<StoreFileMetaData> identical
Files that exist in both snapshots and they can be considered the same ie. they don't need to be recovered
-
different
public final List<StoreFileMetaData> different
Files that exist in both snapshots but their they are not identical
-
missing
public final List<StoreFileMetaData> missing
Files that exist in the source but not in the target
-
-