From f62eca09a03803f614b28efbedd0aaa28f30c38a Mon Sep 17 00:00:00 2001 From: Gao Date: Mon, 20 Jan 2025 19:55:04 +0800 Subject: [PATCH] enhance: set materializedView.enabled default to true (#39450) pr: #39449 Signed-off-by: chasingegg --- 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 0c7feaabac..c62536f88c 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -517,7 +517,7 @@ This configuration is only used by querynode and indexnode, it selects CPU instr p.EnableMaterializedView = ParamItem{ Key: "common.materializedView.enabled", Version: "2.4.6", - DefaultValue: "false", + DefaultValue: "true", // 2.5.4 version becomes default true } p.EnableMaterializedView.Init(base.mgr)