test: fix ES disk insufficient in test (#11406)
This commit is contained in:
parent
90f723ef03
commit
0bbdd376b2
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue