enhance: open mmap on standalone-kafka in ci-e2e (#36688)

Signed-off-by: nico <cheng.yuan@zilliz.com>
pull/36628/head
nico 2024-10-09 19:03:19 +08:00 committed by GitHub
parent efb10d3b86
commit e1b511a219
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
@Library('jenkins-shared-library@v0.53.0') _
@Library('jenkins-shared-library@v0.57.0') _
def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
def milvus_helm_chart_version = '4.2.8'
@ -72,7 +72,7 @@ pipeline {
axes {
axis {
name 'milvus_deployment_option'
values 'standalone', 'distributed', 'standalone-kafka', 'distributed-streaming-service'
values 'standalone', 'distributed', 'standalone-kafka-mmap', 'distributed-streaming-service'
}
}
stages {

View File

@ -253,6 +253,11 @@ queryNode:
requests:
cpu: "0.5"
memory: 500Mi
mmap:
vectorField: true
vectorIndex: true
scalarField: true
scalarIndex: true
rootCoordinator:
resources:
limits:

View File

@ -31,7 +31,7 @@ function milvus_ci_release_name(){
elif [[ "${MILVUS_SERVER_TYPE:-}" == "distributed-kafka" ]]; then
# Distributed kafka mode
name+="dk"
elif [[ "${MILVUS_SERVER_TYPE:-}" == "standalone-kafka" ]]; then
elif [[ "${MILVUS_SERVER_TYPE:-}" == "standalone-kafka-mmap" ]]; then
# Standalone kafka mode
name+="sk"
elif [[ "${MILVUS_SERVER_TYPE:-}" == "distributed" ]]; then