diff --git a/configs/milvus.yaml b/configs/milvus.yaml index 2bce0ec119..3830df98aa 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -1023,7 +1023,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 - enabledJSONShredding: true # Indicates sealedsegment whether to enable JSON key stats + enabledJSONShredding: false # Indicates sealedsegment whether to enable JSON key stats enabledGrowingSegmentJSONShredding: 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 c414da5df5..247e006ef8 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -1221,7 +1221,7 @@ This helps Milvus-CDC synchronize incremental data`, p.EnabledJSONKeyStats = ParamItem{ Key: "common.enabledJSONShredding", Version: "2.6.5", - DefaultValue: "true", + DefaultValue: "false", Doc: "Indicates sealedsegment whether to enable JSON key stats", FallbackKeys: []string{"common.enabledJSONKeyStats"}, Export: true,