diff --git a/ci/jenkins/Nightly.groovy b/ci/jenkins/Nightly.groovy index 1aeb34f2c1..e6ba99b7e2 100644 --- a/ci/jenkins/Nightly.groovy +++ b/ci/jenkins/Nightly.groovy @@ -103,13 +103,17 @@ pipeline { script { sh 'printenv' def clusterEnabled = "false" + def mysqlEnabled = "false" // def setMemoryResourceLimitArgs="--set standalone.resources.limits.memory=4Gi" def mqMode='pulsar' // default using is pulsar + def mysql_architecture = "standalone" if ("${MILVUS_SERVER_TYPE}" == "distributed-pulsar") { clusterEnabled = "true" } else if ("${MILVUS_SERVER_TYPE}" == "distributed-kafka") { clusterEnabled = "true" + mysqlEnabled = "true" mqMode='kafka' + mysql_architecture = "replication" } if ("${MILVUS_CLIENT}" == "pymilvus") { if ("${imageTag}"==''){ @@ -141,6 +145,8 @@ pipeline { --set queryNode.replicas=2 \ --set indexNode.replicas=2 \ --set dataNode.replicas=2 \ + --set mysql.enabled=${mysqlEnabled} \ + --set mysql.architecture=${mysql_architecture} \ --set dataCoordinator.gc.missingTolerance=86400 \ --set dataCoordinator.gc.dropTolerance=86400 \ --set indexCoordinator.gc.interval=1 \ @@ -156,6 +162,7 @@ pipeline { --set standalone.disk.enabled=true \ --version ${chart_version} \ -f values/${mqMode}.yaml \ + -f values/mysql.yaml \ -f values/ci/nightly.yaml " """ } diff --git a/tests/scripts/values/mysql.yaml b/tests/scripts/values/mysql.yaml index 70df9e41e3..74fee9c419 100644 --- a/tests/scripts/values/mysql.yaml +++ b/tests/scripts/values/mysql.yaml @@ -174,7 +174,7 @@ mysql: index_build_id BIGINT, enable_index BOOL NOT NULL, create_time bigint unsigned, - index_file_paths VARCHAR(4096), + index_file_keys VARCHAR(4096), index_size BIGINT UNSIGNED, `version` INT UNSIGNED, is_deleted BOOL DEFAULT FALSE COMMENT 'as mark_deleted',