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

JoinSelection Rule to choose physical join implementation: HashJoin(Partitioned or CollectLeft) or SortMergeJoin base on Stats #4139

Closed
mingmwang opened this issue Nov 8, 2022 · 3 comments · Fixed by #4219
Labels
enhancement New feature or request

Comments

@mingmwang
Copy link
Contributor

Is your feature request related to a problem or challenge? Please describe what you are trying to do.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
(This section helps Arrow developers understand the context and why for this feature, in addition to the what)

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

@mingmwang mingmwang added the enhancement New feature or request label Nov 8, 2022
@mingmwang
Copy link
Contributor Author

@alamb @andygrove @isidentical @Dandandan @yahoNanJing
I plan to add a new physical rule for physical join implementation selection based on stats.

The basic idea is if one of side(left or right) is small enough(threshold on size or row count, for example 10M), will choose HashJoin:CollectLeft.
Else if either side exceed that threshold but still smaller than hash join threshold(estimated_size/partition_count <= 128M for example), will choose HashJoin: Partitioned.
Otherwise choose SortMergeJoin.

Please share your thoughts.

@Dandandan
Copy link
Contributor

Sounds like a good plan.

For hash join, probably needs some benchmarking to figure out good defaults and avoid performance degradation. CollectLeft limits the amount of parellization on the left side: building the hash table is relatively expensive and is done (at least currently) in a single thread. In quite a few cases it might be more beneficial to do a (local) hash repartitioning which is relatively cheap.
It also depends on the size of the probe/right side: if that's e.g. >100x as big as the left side it might be beneficial to avoid the hash repartitioning on the right side by switching to CollectLeft.

@alamb
Copy link
Contributor

alamb commented Nov 8, 2022

I agree with @Dandandan that doing some benchmarking on sort merge join is likely a good idea. I don't think we have much at the moment as it is never used.

What I think would be an ideal solution, though maybe harder to implement, is to NOT decide between has or sort merge join at plan time, but to decide at runtime

So that would involve starting out using HashJoin but if the hash table spilled (or exceeded some size threshold) sort/spill it and then switch to sort-merge-join

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
3 participants