mirror of https://github.com/milvus-io/milvus.git
enhance: open mmap on standalone-kafka in ci-e2e (#36688)
Signed-off-by: nico <cheng.yuan@zilliz.com>pull/36628/head
parent
efb10d3b86
commit
e1b511a219
|
@ -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 {
|
||||
|
|
|
@ -253,6 +253,11 @@ queryNode:
|
|||
requests:
|
||||
cpu: "0.5"
|
||||
memory: 500Mi
|
||||
mmap:
|
||||
vectorField: true
|
||||
vectorIndex: true
|
||||
scalarField: true
|
||||
scalarIndex: true
|
||||
rootCoordinator:
|
||||
resources:
|
||||
limits:
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue