-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
PCP: Vectorize the merge join executor #14216
Labels
help wanted
Denotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.
type/enhancement
The issue or PR belongs to an enhancement.
Comments
/pick-up-challenge |
@catror pick up issue success |
Hi @catror , thanks for your contribution! |
55 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
help wanted
Denotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.
type/enhancement
The issue or PR belongs to an enhancement.
Description
Currently, the merge join executor in TiDB is row-based, which compares and joins data from its children row by row.
We can vectorize it to let it do the processing group by group like what we do in the stream aggregation executor.
You can use the
vecGroupChecker
to find the next group.Difficulty
Score
Mentor(s)
Recommended Skills
The text was updated successfully, but these errors were encountered: