Bump up BanyanDB dependency to 0.9 (#13174)
This commit is contained in:
parent
96632eef3b
commit
6273cb2c16
|
|
@ -490,7 +490,7 @@ jobs:
|
||||||
base: test/e2e-v2/cases/profiling/ebpf/offcpu/
|
base: test/e2e-v2/cases/profiling/ebpf/offcpu/
|
||||||
file: Dockerfile.file
|
file: Dockerfile.file
|
||||||
name: test/offcpu:test
|
name: test/offcpu:test
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
- name: eBPF Profiling Network BanyanDB
|
- name: eBPF Profiling Network BanyanDB
|
||||||
config: test/e2e-v2/cases/profiling/ebpf/network/banyandb/e2e.yaml
|
config: test/e2e-v2/cases/profiling/ebpf/network/banyandb/e2e.yaml
|
||||||
|
|
@ -576,7 +576,7 @@ jobs:
|
||||||
- name: Rover with Istio Process 1.15.0
|
- name: Rover with Istio Process 1.15.0
|
||||||
config: test/e2e-v2/cases/rover/process/istio/e2e.yaml
|
config: test/e2e-v2/cases/rover/process/istio/e2e.yaml
|
||||||
env: ISTIO_VERSION=1.15.0
|
env: ISTIO_VERSION=1.15.0
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
- name: Satellite
|
- name: Satellite
|
||||||
config: test/e2e-v2/cases/satellite/native-protocols/e2e.yaml
|
config: test/e2e-v2/cases/satellite/native-protocols/e2e.yaml
|
||||||
|
|
@ -758,7 +758,7 @@ jobs:
|
||||||
((github.event_name == 'schedule' && github.repository == 'apache/skywalking') || needs.changes.outputs.oap == 'true')
|
((github.event_name == 'schedule' && github.repository == 'apache/skywalking') || needs.changes.outputs.oap == 'true')
|
||||||
name: E2E test
|
name: E2E test
|
||||||
needs: [docker]
|
needs: [docker]
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-24.04
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
#### Project
|
#### Project
|
||||||
|
|
||||||
|
* Bump up BanyanDB dependency version(server and java-client) to 0.9.0.
|
||||||
|
|
||||||
#### OAP Server
|
#### OAP Server
|
||||||
|
|
||||||
* BanyanDB: Support `hot/warm/cold` stages configuration.
|
* BanyanDB: Support `hot/warm/cold` stages configuration.
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
<httpcore.version>4.4.16</httpcore.version>
|
<httpcore.version>4.4.16</httpcore.version>
|
||||||
<httpasyncclient.version>4.1.5</httpasyncclient.version>
|
<httpasyncclient.version>4.1.5</httpasyncclient.version>
|
||||||
<commons-compress.version>1.21</commons-compress.version>
|
<commons-compress.version>1.21</commons-compress.version>
|
||||||
<banyandb-java-client.version>0.8.0</banyandb-java-client.version>
|
<banyandb-java-client.version>0.9.0-rc0</banyandb-java-client.version>
|
||||||
<kafka-clients.version>3.4.0</kafka-clients.version>
|
<kafka-clients.version>3.4.0</kafka-clients.version>
|
||||||
<spring-kafka-test.version>2.4.6.RELEASE</spring-kafka-test.version>
|
<spring-kafka-test.version>2.4.6.RELEASE</spring-kafka-test.version>
|
||||||
<consul.client.version>1.5.3</consul.client.version>
|
<consul.client.version>1.5.3</consul.client.version>
|
||||||
|
|
|
||||||
|
|
@ -15,10 +15,10 @@
|
||||||
|
|
||||||
# BanyanDB version is the version number of BanyanDB Server release.
|
# BanyanDB version is the version number of BanyanDB Server release.
|
||||||
# This is the bundled and tested BanyanDB release version
|
# This is the bundled and tested BanyanDB release version
|
||||||
bydb.version=0.8
|
bydb.version=0.9
|
||||||
# BanyanDB API version is the version number of the BanyanDB query APIs
|
# BanyanDB API version is the version number of the BanyanDB query APIs
|
||||||
# OAP server has bundled implementation of BanyanDB Java client.
|
# OAP server has bundled implementation of BanyanDB Java client.
|
||||||
# Please check BanyanDB documentation for the API version compatibility.
|
# Please check BanyanDB documentation for the API version compatibility.
|
||||||
# https://skywalking.apache.org/docs/skywalking-banyandb/next/installation/versions
|
# https://skywalking.apache.org/docs/skywalking-banyandb/next/installation/versions
|
||||||
# Each `bydb.api.version` could have multiple compatible release version(`bydb.version`).
|
# Each `bydb.api.version` could have multiple compatible release version(`bydb.version`).
|
||||||
bydb.api.version=0.8
|
bydb.api.version=0.9
|
||||||
|
|
@ -62,7 +62,7 @@ import org.apache.skywalking.oap.server.library.util.HealthChecker;
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class BanyanDBStorageClient implements Client, HealthCheckable {
|
public class BanyanDBStorageClient implements Client, HealthCheckable {
|
||||||
private static final String[] COMPATIBLE_SERVER_API_VERSIONS = {"0.8"};
|
private static final String[] COMPATIBLE_SERVER_API_VERSIONS = {"0.9"};
|
||||||
final BanyanDBClient client;
|
final BanyanDBClient client;
|
||||||
private final DelegatedHealthChecker healthChecker = new DelegatedHealthChecker();
|
private final DelegatedHealthChecker healthChecker = new DelegatedHealthChecker();
|
||||||
private final int flushTimeout;
|
private final int flushTimeout;
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ SW_AGENT_CLIENT_JS_COMMIT=af0565a67d382b683c1dbd94c379b7080db61449
|
||||||
SW_AGENT_CLIENT_JS_TEST_COMMIT=4f1eb1dcdbde3ec4a38534bf01dded4ab5d2f016
|
SW_AGENT_CLIENT_JS_TEST_COMMIT=4f1eb1dcdbde3ec4a38534bf01dded4ab5d2f016
|
||||||
SW_KUBERNETES_COMMIT_SHA=6fe5e6f0d3b7686c6be0457733e825ee68cb9b35
|
SW_KUBERNETES_COMMIT_SHA=6fe5e6f0d3b7686c6be0457733e825ee68cb9b35
|
||||||
SW_ROVER_COMMIT=4c0cb8429a96f190ea30eac1807008d523c749c3
|
SW_ROVER_COMMIT=4c0cb8429a96f190ea30eac1807008d523c749c3
|
||||||
SW_BANYANDB_COMMIT=53b3be42d162e2f4ef0c667dc30f25e42ff17d70
|
SW_BANYANDB_COMMIT=458041a561b0acc1f2ed37690df2ce753b791283
|
||||||
SW_AGENT_PHP_COMMIT=3192c553002707d344bd6774cfab5bc61f67a1d3
|
SW_AGENT_PHP_COMMIT=3192c553002707d344bd6774cfab5bc61f67a1d3
|
||||||
SW_PREDICTOR_COMMIT=54a0197654a3781a6f73ce35146c712af297c994
|
SW_PREDICTOR_COMMIT=54a0197654a3781a6f73ce35146c712af297c994
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue