From 4c49295c3d74cede220d7193d1ce11dedc7df253 Mon Sep 17 00:00:00 2001 From: zhagnlu Date: Tue, 30 Sep 2025 12:11:53 +0800 Subject: [PATCH] Revert "enhance: enable default json stats (#44559)" (#44644) This reverts commit 1b5191974c71eee342e4f7a8c804e1d95cfd094b. #44132 Signed-off-by: luzhang Co-authored-by: luzhang --- 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 8ad7e30f25..9ec9991ea0 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -1035,7 +1035,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 18f56b2ea6..5a1523de63 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, }