Skip to content

Commit

Permalink
enhance: refine misleading param name for bloom filter parallel factor
Browse files Browse the repository at this point in the history
Signed-off-by: Wei Liu <[email protected]>
  • Loading branch information
weiliu1031 committed Jul 3, 2024
1 parent 8c42f13 commit 63ff3c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/util/paramtable/component_param.go
Original file line number Diff line number Diff line change
Expand Up @@ -2819,7 +2819,8 @@ user-task-polling:
p.QueryStreamBatchSize.Init(base.mgr)

p.BloomFilterApplyParallelFactor = ParamItem{
Key: "queryNode.bloomFilterApplyBatchSize",
Key: "queryNode.bloomFilterApplyParallelFactor",
FallbackKeys: []string{"queryNode.bloomFilterApplyBatchSize"},
Version: "2.4.5",
DefaultValue: "4",
Doc: "parallel factor when to apply pk to bloom filter, default to 4*CPU_CORE_NUM",
Expand Down Expand Up @@ -4081,7 +4082,8 @@ if this parameter <= 0, will set it as 10`,
p.ClusteringCompactionWorkerPoolSize.Init(base.mgr)

p.BloomFilterApplyParallelFactor = ParamItem{
Key: "dataNode.bloomFilterApplyBatchSize",
Key: "datanode.bloomFilterApplyParallelFactor",
FallbackKeys: []string{"datanode.bloomFilterApplyBatchSize"},
Version: "2.4.5",
DefaultValue: "4",
Doc: "parallel factor when to apply pk to bloom filter, default to 4*CPU_CORE_NUM",
Expand Down

0 comments on commit 63ff3c3

Please sign in to comment.