Uh oh!
There was an error while loading. Please reload this page.
[Hotfix] Use the old Job API to support old Hadoop versions - #6095
Closed
zsxwing wants to merge 1 commit into
Closed
[Hotfix] Use the old Job API to support old Hadoop versions#6095zsxwing wants to merge 1 commit into
zsxwing wants to merge 1 commit into
Conversation
AmplabJenkins
commented
May 12, 2015
Merged build triggered. |
AmplabJenkins
commented
May 12, 2015
Merged build started. |
SparkQA
commented
May 12, 2015
Test build #32532 has started for PR 6095 at commit |
srowen
commented
May 12, 2015
Member
I think that's right. |
SparkQA
commented
May 12, 2015
Test build #32532 has finished for PR 6095 at commit
|
AmplabJenkins
commented
May 12, 2015
Merged build finished. Test PASSed. |
AmplabJenkins
commented
May 12, 2015
Test PASSed. |
liancheng
commented
May 13, 2015
Contributor
LGTM. Thanks for fixing this, merging to master and branch-1.4. |
asfgit pushed a commit
that referenced
this pull request
May 13, 2015
#5526 uses `Job.getInstance`, which does not exist in the old Hadoop versions. Just use `new Job` to replace it. cc liancheng Author: zsxwing <zsxwing@gmail.com> Closes#6095 from zsxwing/hotfix and squashes the following commits: b0c2049 [zsxwing] Use the old Job API to support old Hadoop versions (cherry picked from commit 247b703) Signed-off-by: Cheng Lian <lian@databricks.com>
jeanlyn pushed a commit
to jeanlyn/spark
that referenced
this pull request
May 28, 2015
apache#5526 uses `Job.getInstance`, which does not exist in the old Hadoop versions. Just use `new Job` to replace it. cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6095 from zsxwing/hotfix and squashes the following commits: b0c2049 [zsxwing] Use the old Job API to support old Hadoop versions
jeanlyn pushed a commit
to jeanlyn/spark
that referenced
this pull request
May 28, 2015
Same issue as apache#6095 cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6136 from zsxwing/hotfix and squashes the following commits: 4beea54 [zsxwing] Use 'new Job' in fsBasedParquet.scala
jeanlyn pushed a commit
to jeanlyn/spark
that referenced
this pull request
Jun 12, 2015
apache#5526 uses `Job.getInstance`, which does not exist in the old Hadoop versions. Just use `new Job` to replace it. cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6095 from zsxwing/hotfix and squashes the following commits: b0c2049 [zsxwing] Use the old Job API to support old Hadoop versions
jeanlyn pushed a commit
to jeanlyn/spark
that referenced
this pull request
Jun 12, 2015
Same issue as apache#6095 cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6136 from zsxwing/hotfix and squashes the following commits: 4beea54 [zsxwing] Use 'new Job' in fsBasedParquet.scala
nemccarthy pushed a commit
to nemccarthy/spark
that referenced
this pull request
Jun 19, 2015
apache#5526 uses `Job.getInstance`, which does not exist in the old Hadoop versions. Just use `new Job` to replace it. cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6095 from zsxwing/hotfix and squashes the following commits: b0c2049 [zsxwing] Use the old Job API to support old Hadoop versions
nemccarthy pushed a commit
to nemccarthy/spark
that referenced
this pull request
Jun 19, 2015
Same issue as apache#6095 cc liancheng Author: zsxwing <zsxwing@gmail.com> Closesapache#6136 from zsxwing/hotfix and squashes the following commits: 4beea54 [zsxwing] Use 'new Job' in fsBasedParquet.scala
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.
#5526 uses
Job.getInstance, which does not exist in the old Hadoop versions. Just usenew Jobto replace it.cc @liancheng