You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by je...@apache.org on 2016/06/12 13:35:52 UTC

tez git commit: TEZ-3296. Tez fails to compile against hadoop 2.8 after MAPREDUCE-5870 (jeagles)

Repository: tez
Updated Branches:
  refs/heads/master 89859698c -> 1d11ad275


TEZ-3296. Tez fails to compile against hadoop 2.8 after MAPREDUCE-5870 (jeagles)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/1d11ad27
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/1d11ad27
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/1d11ad27

Branch: refs/heads/master
Commit: 1d11ad275548031c68b2b360f2b8b7111ecd91fd
Parents: 8985969
Author: Jonathan Eagles <je...@yahoo-inc.com>
Authored: Sun Jun 12 08:35:30 2016 -0500
Committer: Jonathan Eagles <je...@yahoo-inc.com>
Committed: Sun Jun 12 08:35:30 2016 -0500

----------------------------------------------------------------------
 CHANGES.txt                                                    | 3 +++
 .../main/java/org/apache/tez/mapreduce/client/YARNRunner.java  | 6 ++++++
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/1d11ad27/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 0798faf..2229708 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES
 
 ALL CHANGES:
 
+  TEZ-3296. Tez fails to compile against hadoop 2.8 after MAPREDUCE-5870
   TEZ-3295. TestOrderedWordCount should handle relative input/output paths.
   TEZ-3290. Set full task attempt id string in MRInput configuration object.
   TEZ-2846. Flaky test: TestCommit.testVertexCommit_OnDAGSuccess.
@@ -57,6 +58,7 @@ INCOMPATIBLE CHANGES
 
 ALL CHANGES:
 
+  TEZ-3296. Tez fails to compile against hadoop 2.8 after MAPREDUCE-5870
   TEZ-3290. Set full task attempt id string in MRInput configuration object.
   TEZ-3280. LOG MRInputHelpers split generation message as INFO
   TEZ-3257. Fix flaky test TestUnorderedPartitionedKVWriter.
@@ -504,6 +506,7 @@ INCOMPATIBLE CHANGES
 
 ALL CHANGES:
 
+  TEZ-3296. Tez fails to compile against hadoop 2.8 after MAPREDUCE-5870
   TEZ-3280. LOG MRInputHelpers split generation message as INFO
   TEZ-3257. Fix flaky test TestUnorderedPartitionedKVWriter.
   TEZ-3237. Corrupted shuffle transfers to disk are not detected during transfer

http://git-wip-us.apache.org/repos/asf/tez/blob/1d11ad27/tez-mapreduce/src/main/java/org/apache/tez/mapreduce/client/YARNRunner.java
----------------------------------------------------------------------
diff --git a/tez-mapreduce/src/main/java/org/apache/tez/mapreduce/client/YARNRunner.java b/tez-mapreduce/src/main/java/org/apache/tez/mapreduce/client/YARNRunner.java
index 93a9b87..1bea781 100644
--- a/tez-mapreduce/src/main/java/org/apache/tez/mapreduce/client/YARNRunner.java
+++ b/tez-mapreduce/src/main/java/org/apache/tez/mapreduce/client/YARNRunner.java
@@ -50,6 +50,7 @@ import org.apache.hadoop.mapreduce.ClusterMetrics;
 import org.apache.hadoop.mapreduce.Counters;
 import org.apache.hadoop.mapreduce.JobContext;
 import org.apache.hadoop.mapreduce.JobID;
+import org.apache.hadoop.mapreduce.JobPriority;
 import org.apache.hadoop.mapreduce.JobStatus;
 import org.apache.hadoop.mapreduce.QueueAclsInfo;
 import org.apache.hadoop.mapreduce.QueueInfo;
@@ -667,6 +668,11 @@ public class YARNRunner implements ClientProtocol {
     resMgrDelegate.setJobPriority(arg0, arg1);
   }
 
+  public JobPriority getJobPriority(JobID jobid) throws IOException,
+      InterruptedException {
+    throw new UnsupportedOperationException();
+  }
+
   @Override
   public long getProtocolVersion(String arg0, long arg1) throws IOException {
     return resMgrDelegate.getProtocolVersion(arg0, arg1);