Skip to content

Commit

Permalink
refine config
Browse files Browse the repository at this point in the history
Signed-off-by: Cai Zhang <[email protected]>
  • Loading branch information
xiaocai2333 committed Jan 9, 2025
1 parent c941d12 commit 9d0bd08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configs/milvus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,8 @@ dataCoord:
mixCompactionUsage: 8 # slot usage of mix compaction job.
l0DeleteCompactionUsage: 8 # slot usage of l0 compaction job.
indexTaskSlotUsage: 16 # slot usage of index task
statsTaskSlotUsage: 4 # slot usage of index task
analyzeTaskSlotUsage: 16 # slot usage of index task
statsTaskSlotUsage: 4 # slot usage of stats task
analyzeTaskSlotUsage: 16 # slot usage of analyze task
ip: # TCP/IP address of dataCoord. If not specified, use the first unicastable address
port: 13333 # TCP port of dataCoord
grpc:
Expand Down
4 changes: 2 additions & 2 deletions pkg/util/paramtable/component_param.go
Original file line number Diff line number Diff line change
Expand Up @@ -4273,7 +4273,7 @@ During compaction, the size of segment # of rows is able to exceed segment max #
p.StatsTaskSlotUsage = ParamItem{
Key: "dataCoord.slot.statsTaskSlotUsage",
Version: "2.5.3",
Doc: "slot usage of index task",
Doc: "slot usage of stats task",
DefaultValue: "4",
PanicIfEmpty: false,
Export: true,
Expand All @@ -4283,7 +4283,7 @@ During compaction, the size of segment # of rows is able to exceed segment max #
p.AnalyzeTaskSlotUsage = ParamItem{
Key: "dataCoord.slot.analyzeTaskSlotUsage",
Version: "2.5.3",
Doc: "slot usage of index task",
Doc: "slot usage of analyze task",
DefaultValue: "16",
PanicIfEmpty: false,
Export: true,
Expand Down

0 comments on commit 9d0bd08

Please sign in to comment.