Uh oh!
There was an error while loading. Please reload this page.
Added a TaskSetManager unit test. - #1024
Closed
kayousterhout wants to merge 1 commit into
Closed
Conversation
This test ensures that (as an optimization), when there are no alive executors that satisfy a particular locality level, the TaskSetManager doesn't ever use that as the maximum allowed locality level (this optimization ensures that a job doesn't wait extra time in an attempt to satisfy a scheduling locality level that is impossible).
AmplabJenkins
commented
Jun 9, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 9, 2014
Merged build started. |
AmplabJenkins
commented
Jun 9, 2014
Merged build finished. |
AmplabJenkins
commented
Jun 9, 2014
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/15570/ |
kayousterhout
commented
Jun 9, 2014
ContributorAuthor
Jenkins, retest this please |
AmplabJenkins
commented
Jun 9, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 9, 2014
Merged build started. |
mateiz
commented
Jun 9, 2014
Contributor
Thanks for adding this, Kay. Please merge it assuming it passes Jenkins. |
AmplabJenkins
commented
Jun 9, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
Jun 9, 2014
All automated tests passed. |
kayousterhout
commented
Jun 9, 2014
ContributorAuthor
I've merged this into master. |
pdeyhim pushed a commit
to pdeyhim/spark-1
that referenced
this pull request
Jun 25, 2014
This test ensures that when there are no alive executors that satisfy a particular locality level, the TaskSetManager doesn't ever use that as the maximum allowed locality level (this optimization ensures that a job doesn't wait extra time in an attempt to satisfy a scheduling locality level that is impossible). @mateiz and @lirui-intel this unit test illustrates an issue with apache#892 (it fails with that patch). Author: Kay Ousterhout <kayousterhout@gmail.com> Closesapache#1024 from kayousterhout/scheduler_unit_test and squashes the following commits: de6a08f [Kay Ousterhout] Added a TaskSetManager unit test.
xiliu82 pushed a commit
to xiliu82/spark
that referenced
this pull request
Sep 4, 2014
This test ensures that when there are no alive executors that satisfy a particular locality level, the TaskSetManager doesn't ever use that as the maximum allowed locality level (this optimization ensures that a job doesn't wait extra time in an attempt to satisfy a scheduling locality level that is impossible). @mateiz and @lirui-intel this unit test illustrates an issue with apache#892 (it fails with that patch). Author: Kay Ousterhout <kayousterhout@gmail.com> Closesapache#1024 from kayousterhout/scheduler_unit_test and squashes the following commits: de6a08f [Kay Ousterhout] Added a TaskSetManager unit test.
flyrain pushed a commit
to flyrain/spark
that referenced
this pull request
Sep 21, 2021
* upgrade spark call home 0.2.8 * fix the brace issue
flyrain pushed a commit
to flyrain/spark
that referenced
this pull request
Sep 21, 2021
This reverts commit 8c6a5f1.
wangyum added a commit
that referenced
this pull request
May 26, 2023
udaynpusa pushed a commit
to mapr/spark
that referenced
this pull request
Jan 30, 2024
…2.0 (apache#1024) Co-authored-by: Egor Krivokon <>
mapr-devops pushed a commit
to mapr/spark
that referenced
this pull request
May 8, 2025
…2.0 (apache#1024) Co-authored-by: Egor Krivokon <>
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.
This test ensures that when there are no
alive executors that satisfy a particular locality level,
the TaskSetManager doesn't ever use that as the maximum
allowed locality level (this optimization ensures that a
job doesn't wait extra time in an attempt to satisfy
a scheduling locality level that is impossible).
@mateiz and @lirui-intel this unit test illustrates an issue
with #892 (it fails with that patch).