From ddc0656d43cd193b0e44ab2c4c6da60ecd419912 Mon Sep 17 00:00:00 2001 From: Buqian Zheng Date: Tue, 28 Oct 2025 20:50:28 +0800 Subject: [PATCH] enhance: disable default json stats (#45133) issue: https://github.com/milvus-io/milvus/issues/44132 Signed-off-by: Buqian Zheng --- configs/milvus.yaml | 2 +- pkg/util/paramtable/component_param.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/milvus.yaml b/configs/milvus.yaml index 46a5fd778a..b98fec97ab 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -1022,7 +1022,7 @@ common: sync: taskPoolReleaseTimeoutSeconds: 60 # The maximum time to wait for the task to finish and release resources in the pool enabledOptimizeExpr: true # Indicates whether to enable optimize expr - enabledJSONKeyStats: true # Indicates sealedsegment whether to enable JSON key stats + enabledJSONKeyStats: false # Indicates sealedsegment whether to enable JSON key stats enabledGrowingSegmentJSONKeyStats: false # Indicates growingsegment whether to enable JSON key stats enableConfigParamTypeCheck: true # Indicates whether to enable config param type check enablePosixMode: false # Specifies whether to run in POSIX mode for enhanced file system compatibility diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 6a2e5acd7b..788f98c045 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -1220,7 +1220,7 @@ This helps Milvus-CDC synchronize incremental data`, p.EnabledJSONKeyStats = ParamItem{ Key: "common.enabledJSONKeyStats", Version: "2.5.5", - DefaultValue: "true", + DefaultValue: "false", Doc: "Indicates sealedsegment whether to enable JSON key stats", Export: true, }