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: docs/en/setup/backend/storages/banyandb.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,17 @@
2
2
3
3
[BanyanDB](https://github.com/apache/skywalking-banyandb) is a dedicated storage implementation developed by the SkyWalking Team and the community. Activate BanyanDB as the storage by setting the storage provider to **banyandb**.
4
4
5
-
The OAP requires BanyanDB version **0.8** or later. From this version onwards, BanyanDB provides general compatibility.
5
+
The BanyanDB server compatibility relies on API and release versions, which are defined in `bydb.dependencies.properties`
6
+
```shell
7
+
# BanyanDB version is the version number of BanyanDB Server release.
8
+
# This is the bundled and tested BanyanDB release version
9
+
bydb.version=x.y
10
+
# BanyanDB API version is the version number of the BanyanDB query APIs
11
+
# OAP server has bundled implementation of BanyanDB Java client.
12
+
# Please check BanyanDB documentation for the API version compatibility.
13
+
# Each `bydb.api.version` could have multiple compatible release version(`bydb.version`).
14
+
bydb.api.version=x.y
15
+
```
6
16
7
17
### Configuration
8
18
@@ -87,13 +97,16 @@ BanyanDB Server supports two installation modes:
87
97
88
98
Use the docker mode to run BanyanDB containerized.
89
99
```shell
90
-
docker pull apache/skywalking-banyandb:latest
100
+
# The compatible version number could be found in /config/bydb.dependencies.properties
0 commit comments