test: fix ES disk insufficient in test (#11406)

This commit is contained in:
kezhenxu94 2023-10-13 19:42:48 +08:00 committed by GitHub
parent 90f723ef03
commit 0bbdd376b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 24 deletions

View File

@ -539,26 +539,26 @@ jobs:
- name: Kafka Log
config: test/e2e-v2/cases/kafka/log/e2e.yaml
# - name: Istio Metrics Service 1.15.0
# config: test/e2e-v2/cases/istio/metrics/e2e.yaml
# env: |
# ISTIO_VERSION=1.15.0
# KUBERNETES_VERSION=25
# - name: Istio Metrics Service 1.16.0
# config: test/e2e-v2/cases/istio/metrics/e2e.yaml
# env: |
# ISTIO_VERSION=1.16.0
# KUBERNETES_VERSION=25
# - name: Istio Metrics Service 1.17.0
# config: test/e2e-v2/cases/istio/metrics/e2e.yaml
# env: |
# ISTIO_VERSION=1.17.0
# KUBERNETES_VERSION=25
# - name: Istio Metrics Service 1.18.0
# config: test/e2e-v2/cases/istio/metrics/e2e.yaml
# env: |
# ISTIO_VERSION=1.18.0
# KUBERNETES_VERSION=25
- name: Istio Metrics Service 1.15.0
config: test/e2e-v2/cases/istio/metrics/e2e.yaml
env: |
ISTIO_VERSION=1.15.0
KUBERNETES_VERSION=25
- name: Istio Metrics Service 1.16.0
config: test/e2e-v2/cases/istio/metrics/e2e.yaml
env: |
ISTIO_VERSION=1.16.0
KUBERNETES_VERSION=25
- name: Istio Metrics Service 1.17.0
config: test/e2e-v2/cases/istio/metrics/e2e.yaml
env: |
ISTIO_VERSION=1.17.0
KUBERNETES_VERSION=25
- name: Istio Metrics Service 1.18.0
config: test/e2e-v2/cases/istio/metrics/e2e.yaml
env: |
ISTIO_VERSION=1.18.0
KUBERNETES_VERSION=25
- name: Rover with Istio Process 1.15.0
config: test/e2e-v2/cases/rover/process/istio/e2e.yaml

View File

@ -37,7 +37,7 @@ import org.apache.skywalking.oap.server.core.storage.type.StorageBuilder;
import java.util.List;
import static org.apache.skywalking.oap.server.core.analysis.record.Record.TIME_BUCKET;
import static org.apache.skywalking.oap.server.core.storage.StorageData.TIME_BUCKET;
@SuperDataset
@Stream(name = SegmentRecord.INDEX_NAME, scopeId = DefaultScopeDefine.SEGMENT, builder = SegmentRecord.Builder.class, processor = RecordStreamProcessor.class)

View File

@ -22,6 +22,11 @@ oap:
elasticsearch:
esConfig:
elasticsearch.yml: |
cluster.routing.allocation.disk.watermark.low: 90%
cluster.routing.allocation.disk.watermark.high: 99%
cluster.routing.allocation.disk.watermark.flood_stage: 99%
cluster.routing.allocation.disk.threshold_enabled: false
volumeClaimTemplate:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 2Gi
persistence:
enabled: true