From cdf703aabc2ec7e4addded68e808ba6add3ab2cb Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 15 Nov 2024 18:28:31 +0800 Subject: [PATCH] enhance: [2.4] Enable `RemoteLoad` l0 forward policy by default (#37678) (#37713) Cherry-pick from master pr: #37678 Related to #35303 Signed-off-by: Congqi Xia --- 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 de101742d6..ea2dc4f7b2 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -457,7 +457,7 @@ queryNode: taskQueueExpire: 60 # Control how long (many seconds) that queue retains since queue is empty enableCrossUserGrouping: false # Enable Cross user grouping when using user-task-polling policy. (Disable it if user's task can not merge each other) maxPendingTaskPerUser: 1024 # Max pending task per user in scheduler - levelZeroForwardPolicy: FilterByBF # delegator level zero deletion forward policy, possible option["FilterByBF", "RemoteLoad"] + levelZeroForwardPolicy: RemoteLoad # delegator level zero deletion forward policy, possible option["FilterByBF", "RemoteLoad"] streamingDeltaForwardPolicy: FilterByBF # delegator streaming deletion forward policy, possible option["FilterByBF", "Direct"] dataSync: flowGraph: diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 3040555beb..fff98823c0 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2970,7 +2970,7 @@ Max read concurrency must greater than or equal to 1, and less than or equal to Key: "queryNode.levelZeroForwardPolicy", Version: "2.4.12", Doc: "delegator level zero deletion forward policy, possible option[\"FilterByBF\", \"RemoteLoad\"]", - DefaultValue: "FilterByBF", + DefaultValue: "RemoteLoad", Export: true, } p.LevelZeroForwardPolicy.Init(base.mgr)