Uh oh!
There was an error while loading. Please reload this page.
[SPARK-12275][SQL] No plan for BroadcastHint in some condition - 1.5 backport - #10291
Closed
yucai wants to merge 1 commit into
Closed
[SPARK-12275][SQL] No plan for BroadcastHint in some condition - 1.5 backport#10291yucai wants to merge 1 commit into
yucai wants to merge 1 commit into
Conversation
…backport backport apache#10265 to branch 1.5 When SparkStrategies.BasicOperators's "case BroadcastHint(child) => apply(child)" is hit, it only recursively invokes BasicOperators.apply with this "child". It makes many strategies have no change to process this plan, which probably leads to "No plan" issue, so we use planLater to go through all strategies. https://issues.apache.org/jira/browse/SPARK-12275
yucai
commented
Dec 14, 2015
Author
@yhuai could you help trigger testing again? |
cloud-fan
commented
Dec 14, 2015
Contributor
ok to test |
SparkQA
commented
Dec 14, 2015
Test build #47653 has finished for PR 10291 at commit
|
yhuai
commented
Dec 14, 2015
Contributor
LGTM. |
andrewor14
commented
Dec 14, 2015
Contributor
Merged into 1.5 |
asfgit pushed a commit
that referenced
this pull request
Dec 14, 2015
… backport backport #10265 to branch 1.5. When SparkStrategies.BasicOperators's "case BroadcastHint(child) => apply(child)" is hit, it only recursively invokes BasicOperators.apply with this "child". It makes many strategies have no change to process this plan, which probably leads to "No plan" issue, so we use planLater to go through all strategies. https://issues.apache.org/jira/browse/SPARK-12275 Author: yucai <yucai.yu@intel.com> Closes#10291 from yucai/backport_1.5_no_plan_for_broadcasthint and squashes the following commits: b09715c [yucai] [SPARK-12275][SQL] No plan for BroadcastHint in some condition - 1.5 backport
andrewor14
commented
Dec 14, 2015
Contributor
@yucai can you close this? It's already merged. |
yucai
commented
Dec 15, 2015
Author
Merged already, so close this, thanks all! |
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.
backport #10265 to branch 1.5.
When SparkStrategies.BasicOperators's "case BroadcastHint(child) => apply(child)" is hit,
it only recursively invokes BasicOperators.apply with this "child".
It makes many strategies have no change to process this plan,
which probably leads to "No plan" issue, so we use planLater to go through all strategies.
https://issues.apache.org/jira/browse/SPARK-12275