Uh oh!
There was an error while loading. Please reload this page.
[SPARK-9860][SQL] Join: Determine the join strategy (broadcast join or shuffle join) at runtime - #13028
Closed
lianhuiwang wants to merge 9 commits into
Closed
[SPARK-9860][SQL] Join: Determine the join strategy (broadcast join or shuffle join) at runtime#13028lianhuiwang wants to merge 9 commits into
lianhuiwang wants to merge 9 commits into
Conversation
SparkQA
commented
May 10, 2016
Test build #58239 has finished for PR 13028 at commit
|
SparkQA
commented
May 10, 2016
Test build #58240 has finished for PR 13028 at commit
|
SparkQA
commented
May 10, 2016
Test build #58241 has finished for PR 13028 at commit
|
SparkQA
commented
May 11, 2016
Test build #58376 has finished for PR 13028 at commit
|
SparkQA
commented
May 11, 2016
Test build #58378 has finished for PR 13028 at commit
|
lianhuiwang
commented
May 12, 2016
ContributorAuthor
SparkQA
commented
May 12, 2016
Test build #58481 has finished for PR 13028 at commit
|
sameeragarwal
commented
Jun 16, 2017
Member
@lianhuiwang could this regress performance for existing queries? Can you please share some benchmarks with us (if any)? |
gatorsmile
commented
Jun 27, 2017
Member
We are closing it due to inactivity. please do reopen if you want to push it forward. Thanks! |
meteorchenwu
commented
Feb 15, 2019
It is great for BI scene. Why not continue? |
zifeif2 pushed a commit
to zifeif2/spark
that referenced
this pull request
Nov 22, 2025
## What changes were proposed in this pull request? This PR proposes to close stale PRs, mostly the same instances with apache#18017 I believe the author in apache#14807 removed his account. Closesapache#7075Closesapache#8927Closesapache#9202Closesapache#9366Closesapache#10861Closesapache#11420Closesapache#12356Closesapache#13028Closesapache#13506Closesapache#14191Closesapache#14198Closesapache#14330Closesapache#14807Closesapache#15839Closesapache#16225Closesapache#16685Closesapache#16692Closesapache#16995Closesapache#17181Closesapache#17211Closesapache#17235Closesapache#17237Closesapache#17248Closesapache#17341Closesapache#17708Closesapache#17716Closesapache#17721Closesapache#17937 Added: Closesapache#14739Closesapache#17139Closesapache#17445Closesapache#18042Closesapache#18359 Added: Closesapache#16450Closesapache#16525Closesapache#17738 Added: Closesapache#16458Closesapache#16508Closesapache#17714 Added: Closesapache#17830Closesapache#14742 ## How was this patch tested? N/A Author: hyukjinkwon <gurwls223@gmail.com> Closesapache#18417 from HyukjinKwon/close-stale-pr.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes were proposed in this pull request?
if size of one exchange is less than autoBroadcastJoinThreshold, it transforms sort merge join to broadcast join.
I will support optimization for skew join in another PR.
How was this patch tested?
unit tests