mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
enhance: Increase the buffer capacity of notifyIndexChan to support concurrency (#38957)
Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
This commit is contained in:
parent
11bfc93683
commit
9672eee78a
@ -213,7 +213,7 @@ func CreateServer(ctx context.Context, factory dependency.Factory, opts ...Optio
|
|||||||
quitCh: make(chan struct{}),
|
quitCh: make(chan struct{}),
|
||||||
factory: factory,
|
factory: factory,
|
||||||
flushCh: make(chan UniqueID, 1024),
|
flushCh: make(chan UniqueID, 1024),
|
||||||
notifyIndexChan: make(chan UniqueID),
|
notifyIndexChan: make(chan UniqueID, 1024),
|
||||||
dataNodeCreator: defaultDataNodeCreatorFunc,
|
dataNodeCreator: defaultDataNodeCreatorFunc,
|
||||||
indexNodeCreator: defaultIndexNodeCreatorFunc,
|
indexNodeCreator: defaultIndexNodeCreatorFunc,
|
||||||
rootCoordClientCreator: defaultRootCoordCreatorFunc,
|
rootCoordClientCreator: defaultRootCoordCreatorFunc,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user