You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/storage/annotation/BanyanDB.java
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -106,16 +106,12 @@ enum IndexType {
106
106
* It's suitable for most tag indexing due to a better memory usage ratio and query performance.
107
107
*/
108
108
INVERTED,
109
-
/**
110
-
* The `TREE` index could be better when there are high cardinalities, such as the `ID` tag and numeric duration tag.
111
-
* In these cases, it saves much memory space.
112
-
*/
113
-
TREE;
114
109
}
115
110
}
116
111
117
112
/**
118
-
* timestampColumn is to identify which column in {@link Record} is providing the timestamp(millisecond) for BanyanDB.
113
+
* timestampColumn is to identify which column in {@link Record} is providing the timestamp(millisecond) for
114
+
* BanyanDB.
119
115
* BanyanDB stream requires a timestamp in milliseconds.
Copy file name to clipboardExpand all lines: oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/storage/model/BanyanDBExtension.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,13 @@ public class BanyanDBExtension {
51
51
* indexType is the type of index built for a {@link ModelColumn} in BanyanDB.
52
52
*
53
53
* @since 9.3.0
54
+
* @deprecated since 10.2. Only support {@link BanyanDB.IndexRule.IndexType#INVERTED} now. There was IndexType#TREE,
0 commit comments