We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49941fd commit b73200bCopy full SHA for b73200b
server/src/main/java/org/opensearch/index/remote/RemoteStoreDataEnums.java
@@ -20,6 +20,9 @@
20
*/
21
public class RemoteStoreDataEnums {
22
23
+ /**
24
+ * Categories of the data in Remote store.
25
+ */
26
public enum DataCategory {
27
SEGMENTS("segments", Set.of(DataType.values())),
28
TRANSLOG("translog", Set.of(DATA, METADATA));
@@ -41,6 +44,9 @@ public String getName() {
41
44
}
42
45
43
46
47
48
+ * Types of data in remote store.
49
50
public enum DataType {
51
DATA("data"),
52
METADATA("metadata"),
0 commit comments