YARN-10. Fix DistributedShell module to not have a dependency on hadoop-mapreduce-client-core. Contributed by Hitesh Shah.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1380879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vinod Kumar Vavilapalli 2012-09-04 20:56:53 +00:00
parent ab986d7cf6
commit b1632b4a77
3 changed files with 11 additions and 6 deletions

View File

@ -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
MAPREDUCE-2374. "Text File Busy" errors launching MR tasks. (Andy Isaacson
@ -35,6 +39,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)
@ -53,6 +62,8 @@ Release 0.23.3 - Unreleased
IMPROVEMENTS
OPTIMAZATIONS
BUG FIXES
YARN-14. Symlinks to peer distributed cache files no longer work

View File

@ -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>

View File

@ -28,7 +28,6 @@
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;