From bb32bda423d3f127995832a5728f6fc4d240a6ed Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 17 Jan 2025 12:07:02 +0800 Subject: [PATCH] enhance: [2.5] Sync multipleChunkEnabled default value & milvus yaml (#39373) Cherry-pick from master pr: #39372 The default value and yaml have different values which may cause confusion when upgrading from older version. Signed-off-by: Congqi Xia --- pkg/util/paramtable/component_param.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index c61f00207d..0c7feaabac 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2693,7 +2693,7 @@ This defaults to true, indicating that Milvus creates temporary index for growin p.MultipleChunkedEnable = ParamItem{ Key: "queryNode.segcore.multipleChunkedEnable", Version: "2.0.0", - DefaultValue: "false", + DefaultValue: "true", Doc: "Enable multiple chunked search", Export: true, }