From a50806744a9554cca85f6b6c33db7278315a60b7 Mon Sep 17 00:00:00 2001 From: "zhenshan.cao" Date: Thu, 21 Nov 2024 12:05:43 +0800 Subject: [PATCH] Revert "enhance: [2.4] Enable `RemoteLoad` l0 forward policy by default (#37678) (#37713)" This reverts commit cdf703aabc2ec7e4addded68e808ba6add3ab2cb. Signed-off-by: zhenshan.cao --- 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 ea2dc4f7b2726..de101742d6d5a 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: RemoteLoad # delegator level zero deletion forward policy, possible option["FilterByBF", "RemoteLoad"] + levelZeroForwardPolicy: FilterByBF # 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 fff98823c0ce4..3040555bebb47 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: "RemoteLoad", + DefaultValue: "FilterByBF", Export: true, } p.LevelZeroForwardPolicy.Init(base.mgr)