Skip to content

Commit 6273cb2

Browse files
authored
Bump up BanyanDB dependency to 0.9 (#13174)
1 parent 96632ee commit 6273cb2

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/workflows/skywalking.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ jobs:
490490
base: test/e2e-v2/cases/profiling/ebpf/offcpu/
491491
file: Dockerfile.file
492492
name: test/offcpu:test
493-
runs-on: ubuntu-20.04
493+
runs-on: ubuntu-24.04
494494

495495
- name: eBPF Profiling Network BanyanDB
496496
config: test/e2e-v2/cases/profiling/ebpf/network/banyandb/e2e.yaml
@@ -576,7 +576,7 @@ jobs:
576576
- name: Rover with Istio Process 1.15.0
577577
config: test/e2e-v2/cases/rover/process/istio/e2e.yaml
578578
env: ISTIO_VERSION=1.15.0
579-
runs-on: ubuntu-20.04
579+
runs-on: ubuntu-24.04
580580

581581
- name: Satellite
582582
config: test/e2e-v2/cases/satellite/native-protocols/e2e.yaml
@@ -758,7 +758,7 @@ jobs:
758758
((github.event_name == 'schedule' && github.repository == 'apache/skywalking') || needs.changes.outputs.oap == 'true')
759759
name: E2E test
760760
needs: [docker]
761-
runs-on: ubuntu-20.04
761+
runs-on: ubuntu-24.04
762762
timeout-minutes: 60
763763
strategy:
764764
fail-fast: false

docs/en/changes/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#### Project
44

5+
* Bump up BanyanDB dependency version(server and java-client) to 0.9.0.
6+
57
#### OAP Server
68

79
* BanyanDB: Support `hot/warm/cold` stages configuration.

oap-server-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<httpcore.version>4.4.16</httpcore.version>
7373
<httpasyncclient.version>4.1.5</httpasyncclient.version>
7474
<commons-compress.version>1.21</commons-compress.version>
75-
<banyandb-java-client.version>0.8.0</banyandb-java-client.version>
75+
<banyandb-java-client.version>0.9.0-rc0</banyandb-java-client.version>
7676
<kafka-clients.version>3.4.0</kafka-clients.version>
7777
<spring-kafka-test.version>2.4.6.RELEASE</spring-kafka-test.version>
7878
<consul.client.version>1.5.3</consul.client.version>

oap-server/server-starter/src/main/resources/bydb.dependencies.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
# BanyanDB version is the version number of BanyanDB Server release.
1717
# This is the bundled and tested BanyanDB release version
18-
bydb.version=0.8
18+
bydb.version=0.9
1919
# BanyanDB API version is the version number of the BanyanDB query APIs
2020
# OAP server has bundled implementation of BanyanDB Java client.
2121
# Please check BanyanDB documentation for the API version compatibility.
2222
# https://skywalking.apache.org/docs/skywalking-banyandb/next/installation/versions
2323
# Each `bydb.api.version` could have multiple compatible release version(`bydb.version`).
24-
bydb.api.version=0.8
24+
bydb.api.version=0.9

oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/BanyanDBStorageClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
*/
6363
@Slf4j
6464
public class BanyanDBStorageClient implements Client, HealthCheckable {
65-
private static final String[] COMPATIBLE_SERVER_API_VERSIONS = {"0.8"};
65+
private static final String[] COMPATIBLE_SERVER_API_VERSIONS = {"0.9"};
6666
final BanyanDBClient client;
6767
private final DelegatedHealthChecker healthChecker = new DelegatedHealthChecker();
6868
private final int flushTimeout;

test/e2e-v2/script/env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SW_AGENT_CLIENT_JS_COMMIT=af0565a67d382b683c1dbd94c379b7080db61449
2323
SW_AGENT_CLIENT_JS_TEST_COMMIT=4f1eb1dcdbde3ec4a38534bf01dded4ab5d2f016
2424
SW_KUBERNETES_COMMIT_SHA=6fe5e6f0d3b7686c6be0457733e825ee68cb9b35
2525
SW_ROVER_COMMIT=4c0cb8429a96f190ea30eac1807008d523c749c3
26-
SW_BANYANDB_COMMIT=53b3be42d162e2f4ef0c667dc30f25e42ff17d70
26+
SW_BANYANDB_COMMIT=458041a561b0acc1f2ed37690df2ce753b791283
2727
SW_AGENT_PHP_COMMIT=3192c553002707d344bd6774cfab5bc61f67a1d3
2828
SW_PREDICTOR_COMMIT=54a0197654a3781a6f73ce35146c712af297c994
2929

0 commit comments

Comments
 (0)