Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DataNode processes event out of order #17440

Merged
merged 1 commit into from
Jun 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix DataNode processes event out of order
The probability is low so very unlikly to reproduce

See also: #15966

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
  • Loading branch information
XuanYang-cn committed Jun 8, 2022
commit 622ae373c54d8c11ff0a9221372699ae3d59df3d
3 changes: 2 additions & 1 deletion internal/datanode/data_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
}
Expand Down