milvus/internal/datanode/io_pool.go
Enwei Jiao 89b810a4db
Refactor all params into ParamItem (#20987)
Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>

Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
2022-12-07 18:01:19 +08:00

25 lines
496 B
Go

package datanode
import (
"sync"
"github.com/milvus-io/milvus/internal/util/concurrency"
)
var ioPool *concurrency.Pool
var ioPoolInitOnce sync.Once
func initIOPool() {
capacity := Params.DataNodeCfg.IOConcurrency.GetAsInt()
if capacity > 32 {
capacity = 32
}
// error only happens with negative expiry duration or with negative pre-alloc size.
ioPool, _ = concurrency.NewPool(capacity)
}
func getOrCreateIOPool() *concurrency.Pool {
ioPoolInitOnce.Do(initIOPool)
return ioPool
}