mirror of https://github.com/milvus-io/milvus.git
Make proxy process data definition requests concurrently (#20503)
Signed-off-by: yah01 <yang.cen@zilliz.com> Signed-off-by: yah01 <yang.cen@zilliz.com>pull/20566/head
parent
7325b3e1c3
commit
911921d5a7
|
@ -482,7 +482,7 @@ func (sched *taskScheduler) definitionLoop() {
|
||||||
case <-sched.ddQueue.utChan():
|
case <-sched.ddQueue.utChan():
|
||||||
if !sched.ddQueue.utEmpty() {
|
if !sched.ddQueue.utEmpty() {
|
||||||
t := sched.scheduleDdTask()
|
t := sched.scheduleDdTask()
|
||||||
sched.processTask(t, sched.ddQueue)
|
go sched.processTask(t, sched.ddQueue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue