mirror of https://github.com/milvus-io/milvus.git
enhance: Increase the buffer capacity of notifyIndexChan to support concurrency (#38957)
Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>pull/38977/head
parent
11bfc93683
commit
9672eee78a
|
@ -213,7 +213,7 @@ func CreateServer(ctx context.Context, factory dependency.Factory, opts ...Optio
|
|||
quitCh: make(chan struct{}),
|
||||
factory: factory,
|
||||
flushCh: make(chan UniqueID, 1024),
|
||||
notifyIndexChan: make(chan UniqueID),
|
||||
notifyIndexChan: make(chan UniqueID, 1024),
|
||||
dataNodeCreator: defaultDataNodeCreatorFunc,
|
||||
indexNodeCreator: defaultIndexNodeCreatorFunc,
|
||||
rootCoordClientCreator: defaultRootCoordCreatorFunc,
|
||||
|
|
Loading…
Reference in New Issue