Package org.elasticsearch.index.store
Class Store.RecoveryDiff
- java.lang.Object
-
- org.elasticsearch.index.store.Store.RecoveryDiff
-
- Enclosing class:
- Store
public static final class Store.RecoveryDiff extends java.lang.Object
A class representing the diff between a recovery source and recovery target
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<StoreFileMetaData>
different
Files that exist in both snapshots but their they are not identicaljava.util.List<StoreFileMetaData>
identical
Files that exist in both snapshots and they can be considered the same ie.java.util.List<StoreFileMetaData>
missing
Files that exist in the source but not in the target
-
-
-
Field Detail
-
identical
public final java.util.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 java.util.List<StoreFileMetaData> different
Files that exist in both snapshots but their they are not identical
-
missing
public final java.util.List<StoreFileMetaData> missing
Files that exist in the source but not in the target
-
-