[SPARK-10008] Ensure shuffle locality doesn't take precedence over narrow deps#8220
Closed
mateiz wants to merge 2 commits intoapache:masterfrom
Closed
[SPARK-10008] Ensure shuffle locality doesn't take precedence over narrow deps#8220mateiz wants to merge 2 commits intoapache:masterfrom
mateiz wants to merge 2 commits intoapache:masterfrom
Conversation
The shuffle locality patch made the DAGScheduler aware of shuffle data, but for RDDs that have both narrow and shuffle dependencies, it can cause them to place tasks based on the shuffle dependency instead of the narrow one. This case is common in iterative join-based algorithms like PageRank and ALS, where one RDD is hash-partitioned and one isn't.
Contributor
Author
|
@shivaram here it is.. we should merge this into branch-1.5 too if it's good. |
|
Test build #40941 has finished for PR 8220 at commit
|
Contributor
|
Jenkins, retest this please |
|
Test build #40946 has finished for PR 8220 at commit
|
Contributor
|
LGTM. I think we should merge this into |
Contributor
|
Jenkins, retest this please |
Contributor
Author
|
Sounds good.. I'll merge it once tests pass. |
|
Test build #1626 has finished for PR 8220 at commit
|
asfgit
pushed a commit
that referenced
this pull request
Aug 16, 2015
…rrow deps The shuffle locality patch made the DAGScheduler aware of shuffle data, but for RDDs that have both narrow and shuffle dependencies, it can cause them to place tasks based on the shuffle dependency instead of the narrow one. This case is common in iterative join-based algorithms like PageRank and ALS, where one RDD is hash-partitioned and one isn't. Author: Matei Zaharia <matei@databricks.com> Closes #8220 from mateiz/shuffle-loc-fix. (cherry picked from commit cf01607) Signed-off-by: Matei Zaharia <matei@databricks.com>
CodingCat
pushed a commit
to CodingCat/spark
that referenced
this pull request
Aug 17, 2015
…rrow deps The shuffle locality patch made the DAGScheduler aware of shuffle data, but for RDDs that have both narrow and shuffle dependencies, it can cause them to place tasks based on the shuffle dependency instead of the narrow one. This case is common in iterative join-based algorithms like PageRank and ALS, where one RDD is hash-partitioned and one isn't. Author: Matei Zaharia <matei@databricks.com> Closes apache#8220 from mateiz/shuffle-loc-fix.
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 free
to 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.
The shuffle locality patch made the DAGScheduler aware of shuffle data,
but for RDDs that have both narrow and shuffle dependencies, it can
cause them to place tasks based on the shuffle dependency instead of the
narrow one. This case is common in iterative join-based algorithms like
PageRank and ALS, where one RDD is hash-partitioned and one isn't.