YARN-10. Fix DistributedShell module to not have a dependency on hadoomapreduce-client-core. Contributed by Hitesh Shah.
svn merge --ignore-ancestry -c 1380879 ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1380887 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
54ca8b837c
commit
8d66c65130
|
@ -8,6 +8,8 @@ Trunk (unreleased changes)
|
|||
|
||||
IMPROVEMENTS
|
||||
|
||||
OPTIMAZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
||||
Branch-2 ( Unreleased changes )
|
||||
|
@ -18,6 +20,8 @@ Branch-2 ( Unreleased changes )
|
|||
|
||||
IMPROVEMENTS
|
||||
|
||||
OPTIMAZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
||||
YARN-13. Fix pom versions for YARN in branch-2 (todd)
|
||||
|
@ -37,6 +41,11 @@ Release 2.1.0-alpha - Unreleased
|
|||
|
||||
YARN-29. Add a yarn-client module. (Vinod Kumar Vavilapalli via sseth)
|
||||
|
||||
YARN-10. Fix DistributedShell module to not have a dependency on
|
||||
hadoop-mapreduce-client-core. (Hitesh Shah via vinodkv)
|
||||
|
||||
OPTIMAZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
||||
YARN-12. Fix findbugs warnings in FairScheduler. (Junping Du via acmurthy)
|
||||
|
@ -55,6 +64,8 @@ Release 0.23.3 - Unreleased
|
|||
|
||||
IMPROVEMENTS
|
||||
|
||||
OPTIMAZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
||||
YARN-14. Symlinks to peer distributed cache files no longer work
|
||||
|
|
|
@ -60,11 +60,6 @@
|
|||
<artifactId>hadoop-yarn-server-common</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<artifactId>hadoop-mapreduce-client-core</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<artifactId>hadoop-yarn-server-tests</artifactId>
|
||||
|
|
|
@ -28,7 +28,6 @@ import junit.framework.Assert;
|
|||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.mapred.JobConf;
|
||||
import org.apache.hadoop.util.JarFinder;
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
import org.apache.hadoop.yarn.server.MiniYARNCluster;
|
||||
|
|
Loading…
Reference in New Issue