未验证 提交 4f66bcbb 编写于 作者: X XuanYang-cn 提交者: GitHub

Fix DataNode processes event out of order (#17440)

The probability is low so very unlikly to reproduce

See also: #15966
Signed-off-by: Nyangxuan <xuan.yang@zilliz.com>
上级 a0854210
......@@ -259,7 +259,8 @@ func (node *DataNode) StartWatchChannels(ctx context.Context) {
return
}
for _, evt := range event.Events {
go node.handleChannelEvt(evt)
// We need to stay in order until events enqueued
node.handleChannelEvt(evt)
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册