Skip to content

Commit

Permalink
enhance: Enable RemoteLoad l0 forward policy by default (milvus-io#…
Browse files Browse the repository at this point in the history
…37678)

Related to milvus-io#35303

Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia committed Nov 15, 2024
1 parent 1bd502b commit 8046699
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/milvus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/paramtable/component_param.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8046699

Please sign in to comment.