From 66bf254437c1ebe11d8d8a002ff264a1be23fb90 Mon Sep 17 00:00:00 2001 From: congqixia Date: Fri, 15 Nov 2024 10:22:30 +0800 Subject: [PATCH] enhance: Enable `RemoteLoad` l0 forward policy by default (#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 03fcbc294f28d..88817e4de03a6 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -465,7 +465,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 88d42806229ea..a1f0ed6897642 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2997,7 +2997,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)