Skip to content

Commit

Permalink
enhance: Revert default l0 forward policy to FilterByBF
Browse files Browse the repository at this point in the history
Related to milvus-io#37767

Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia committed Nov 21, 2024
1 parent 5f3601a commit 05623e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configs/milvus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,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:
Expand Down Expand Up @@ -748,7 +748,7 @@ msgChannel:
log:
# Milvus log level. Option: debug, info, warn, error, panic, and fatal.
# It is recommended to use debug level under test and development environments, and info level in production environment.
level: info
level: debug
file:
# Root path to the log files.
# The default value is set empty, indicating to output log files to standard output (stdout) and standard error (stderr).
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 @@ -3023,7 +3023,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)
Expand Down

0 comments on commit 05623e2

Please sign in to comment.