You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2022/04/11 13:57:54 UTC

[skywalking] branch banyandb-mata updated: * Support BanyanDB global index for entities. Log and Segment record entities declare this new feature.

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch banyandb-mata
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/banyandb-mata by this push:
     new 383f6af992 * Support BanyanDB global index for entities. Log and Segment record entities declare this new feature.
383f6af992 is described below

commit 383f6af992a4b22b3173a45dc243af3f1ed39283
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Mon Apr 11 21:57:47 2022 +0800

    * Support BanyanDB global index for entities. Log and Segment record entities declare this new feature.
---
 docs/en/changes/changes.md                                       | 9 +++++++--
 .../oap/server/core/analysis/manual/log/AbstractLogRecord.java   | 1 +
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md
index 05812ca036..86c352e3be 100644
--- a/docs/en/changes/changes.md
+++ b/docs/en/changes/changes.md
@@ -1,18 +1,23 @@
 ## 9.1.0
 
 #### Project
+
 * Upgrade zipkin to 2.23.16.
 
 #### OAP Server
+
 * Add component definition(ID=127) for `Apache ShenYu (incubating)`.
-* Fix Zipkin receiver: Decode spans error, missing `Layer` for V9 and wrong time bucket for generate Service and Endpoint.
+* Fix Zipkin receiver: Decode spans error, missing `Layer` for V9 and wrong time bucket for generate Service and
+  Endpoint.
+* [Refactor] Move ElasticSearch and BanyanDB specific configurations out of column.
+* Support BanyanDB global index for entities. Log and Segment record entities declare this new feature.
 
 #### UI
+
 * General service instance: move `Thread Pool` from JVM to Overview, fix `JVM GC Count` calculation.
 * Add Apache ShenYu (incubating) component LOGO.
 
 #### Documentation
 
-
 All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/128?closed=1)
 
diff --git a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/manual/log/AbstractLogRecord.java b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/manual/log/AbstractLogRecord.java
index bc59aef887..0ea0ee01ee 100644
--- a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/manual/log/AbstractLogRecord.java
+++ b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/manual/log/AbstractLogRecord.java
@@ -65,6 +65,7 @@ public abstract class AbstractLogRecord extends Record {
     @Setter
     @Getter
     @Column(columnName = TRACE_ID, length = 150)
+    @BanyanDBGlobalIndex(extraFields = {})
     private String traceId;
     @Setter
     @Getter