Make proxy process data definition requests concurrently (#20503)

Signed-off-by: yah01 <yang.cen@zilliz.com>

Signed-off-by: yah01 <yang.cen@zilliz.com>
This commit is contained in:
yah01 2022-11-14 16:03:07 +08:00 committed by GitHub
parent 7325b3e1c3
commit 911921d5a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -482,7 +482,7 @@ func (sched *taskScheduler) definitionLoop() {
case <-sched.ddQueue.utChan():
if !sched.ddQueue.utEmpty() {
t := sched.scheduleDdTask()
sched.processTask(t, sched.ddQueue)
go sched.processTask(t, sched.ddQueue)
}
}
}