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:
Vinod Kumar Vavilapalli 2012-09-04 21:01:58 +00:00
parent 54ca8b837c
commit 8d66c65130
3 changed files with 11 additions and 6 deletions

View File

@ -8,6 +8,8 @@ Trunk (unreleased changes)
IMPROVEMENTS IMPROVEMENTS
OPTIMAZATIONS
BUG FIXES BUG FIXES
Branch-2 ( Unreleased changes ) Branch-2 ( Unreleased changes )
@ -18,6 +20,8 @@ Branch-2 ( Unreleased changes )
IMPROVEMENTS IMPROVEMENTS
OPTIMAZATIONS
BUG FIXES BUG FIXES
YARN-13. Fix pom versions for YARN in branch-2 (todd) 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-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 BUG FIXES
YARN-12. Fix findbugs warnings in FairScheduler. (Junping Du via acmurthy) YARN-12. Fix findbugs warnings in FairScheduler. (Junping Du via acmurthy)
@ -55,6 +64,8 @@ Release 0.23.3 - Unreleased
IMPROVEMENTS IMPROVEMENTS
OPTIMAZATIONS
BUG FIXES BUG FIXES
YARN-14. Symlinks to peer distributed cache files no longer work YARN-14. Symlinks to peer distributed cache files no longer work

View File

@ -60,11 +60,6 @@
<artifactId>hadoop-yarn-server-common</artifactId> <artifactId>hadoop-yarn-server-common</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-mapreduce-client-core</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.apache.hadoop</groupId> <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-yarn-server-tests</artifactId> <artifactId>hadoop-yarn-server-tests</artifactId>

View File

@ -28,7 +28,6 @@
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.util.JarFinder; import org.apache.hadoop.util.JarFinder;
import org.apache.hadoop.yarn.conf.YarnConfiguration; import org.apache.hadoop.yarn.conf.YarnConfiguration;
import org.apache.hadoop.yarn.server.MiniYARNCluster; import org.apache.hadoop.yarn.server.MiniYARNCluster;