From cda44c09f97ff230b1f052151af8cad3614c9998 Mon Sep 17 00:00:00 2001 From: yah01 Date: Tue, 16 Jan 2024 11:54:52 +0800 Subject: [PATCH] enhance: adjust the GPU pool size (#29937) according to benchmark, the GPU pool size with 6 performs best Signed-off-by: yah01 --- pkg/util/paramtable/component_param.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 67262948bc..33c5570a04 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -2009,9 +2009,9 @@ Max read concurrency must greater than or equal to 1, and less than or equal to p.MaxReadConcurrency.Init(base.mgr) p.MaxGpuReadConcurrency = ParamItem{ - Key: "queryNode.scheduler.maGpuReadConcurrency", + Key: "queryNode.scheduler.maxGpuReadConcurrency", Version: "2.0.0", - DefaultValue: "8", + DefaultValue: "6", } p.MaxGpuReadConcurrency.Init(base.mgr)