-
Notifications
You must be signed in to change notification settings - Fork 14.8k
MINOR: Update the delayed remote fetch purgatory cleanup comment #20721
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
Conversation
| // We only guarantee eventual cleanup via the next FETCH request for the same set of partitions or | ||
| // using reaper-thread. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, wrong place. Nice find!
| val fetchPartitionData = localReadResults.map { case (tp, result) => | ||
| val remoteFetchResult = remoteFetchResults.get(tp) | ||
| if (remoteFetchInfos.containsKey(tp) | ||
| if (remoteFetchResults.containsKey(tp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is minor one and required when enabling single-partition fetch. Let me know if you want to take this up in the next PR.
showuon
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
…che#20721) - Updated the delayed remote fetch purgatory cleanup comment Reviewers: Luke Chen <showuon@gmail.com>
…che#20721) - Updated the delayed remote fetch purgatory cleanup comment Reviewers: Luke Chen <showuon@gmail.com>
Reviewers: Luke Chen showuon@gmail.com