2024-06-06 14:33:52 +08:00
|
|
|
package io
|
2022-10-19 18:23:27 +08:00
|
|
|
|
|
|
|
import (
|
2024-06-14 11:37:56 +08:00
|
|
|
"strconv"
|
2022-10-19 18:23:27 +08:00
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2024-06-14 11:37:56 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/config"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/conc"
|
2024-06-14 11:37:56 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/hardware"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
2022-10-19 18:23:27 +08:00
|
|
|
)
|
|
|
|
|
2024-06-06 14:33:52 +08:00
|
|
|
func TestGetOrCreateIOPool(t *testing.T) {
|
|
|
|
paramtable.Init()
|
|
|
|
ioConcurrency := paramtable.Get().DataNodeCfg.IOConcurrency.GetValue()
|
|
|
|
paramtable.Get().Save(paramtable.Get().DataNodeCfg.IOConcurrency.Key, "64")
|
|
|
|
defer func() { paramtable.Get().Save(paramtable.Get().DataNodeCfg.IOConcurrency.Key, ioConcurrency) }()
|
2022-10-19 18:23:27 +08:00
|
|
|
nP := 10
|
|
|
|
nTask := 10
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
for i := 0; i < nP; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
2024-06-06 14:33:52 +08:00
|
|
|
p := GetOrCreateIOPool()
|
2023-02-28 14:19:47 +08:00
|
|
|
futures := make([]*conc.Future[any], 0, nTask)
|
2022-10-19 18:23:27 +08:00
|
|
|
for j := 0; j < nTask; j++ {
|
|
|
|
future := p.Submit(func() (interface{}, error) {
|
|
|
|
return nil, nil
|
|
|
|
})
|
|
|
|
futures = append(futures, future)
|
|
|
|
}
|
2023-02-28 14:19:47 +08:00
|
|
|
err := conc.AwaitAll(futures...)
|
2022-10-19 18:23:27 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
2024-06-14 11:37:56 +08:00
|
|
|
|
|
|
|
func TestResizePools(t *testing.T) {
|
|
|
|
paramtable.Init()
|
|
|
|
pt := paramtable.Get()
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
pt.Reset(pt.QueryNodeCfg.BloomFilterApplyParallelFactor.Key)
|
|
|
|
}()
|
|
|
|
|
|
|
|
t.Run("BfApplyPool", func(t *testing.T) {
|
|
|
|
expectedCap := hardware.GetCPUNum() * pt.DataNodeCfg.BloomFilterApplyParallelFactor.GetAsInt()
|
|
|
|
|
|
|
|
ResizeBFApplyPool(&config.Event{
|
|
|
|
HasUpdated: true,
|
|
|
|
})
|
|
|
|
assert.Equal(t, expectedCap, GetBFApplyPool().Cap())
|
|
|
|
|
|
|
|
pt.Save(pt.DataNodeCfg.BloomFilterApplyParallelFactor.Key, strconv.FormatFloat(pt.DataNodeCfg.BloomFilterApplyParallelFactor.GetAsFloat()*2, 'f', 10, 64))
|
|
|
|
ResizeBFApplyPool(&config.Event{
|
|
|
|
HasUpdated: true,
|
|
|
|
})
|
|
|
|
assert.Equal(t, expectedCap, GetBFApplyPool().Cap())
|
|
|
|
|
|
|
|
pt.Save(pt.DataNodeCfg.BloomFilterApplyParallelFactor.Key, "0")
|
|
|
|
ResizeBFApplyPool(&config.Event{
|
|
|
|
HasUpdated: true,
|
|
|
|
})
|
|
|
|
assert.Equal(t, expectedCap, GetBFApplyPool().Cap())
|
|
|
|
})
|
|
|
|
}
|