Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Batching support for row-based bounded window functions #9973
Batching support for row-based bounded window functions #9973
Changes from 20 commits
ae3eec0
2aa3f5d
cb45866
c3cb1a4
1230fed
159dc62
392e7c6
5dbbdd2
d00747f
b5bd065
94d9bc4
60245fe
682afdc
4767080
fa5ab16
3f50224
e08cfa2
e0581c0
0ba8be6
b5fda09
f9de13a
31896e3
4a5f5c5
4246cbb
5d475ca
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
We need to have withRetry put in here somewhere. The hard part is making sure that we can roll back any of the caching.
We can calculate/get the
inputRowCount
,noMoreInput
andnumUnprocessedInCache
without needing to get the input batch frominputCbSpillable
so that might make it simpler to add in the retry logic.I am fine if this is a follow on issue, but we need it fixed at some point.
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.
I'll have to address this in a follow-up. I'm still trying to sort out the missing rows problem.
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.
#10046 will address the
withRetry
part of the problem.