YARN-1470. Add audience annotations to MiniYARNCluster. (Anubhav Dhoot via kasha)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1570708 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karthik Kambatla 2014-02-21 21:20:59 +00:00
parent d61d1c120d
commit 87dce7b2d2
2 changed files with 6 additions and 0 deletions

View File

@ -215,6 +215,9 @@ Release 2.4.0 - UNRELEASED
YARN-1171. Add default queue properties to Fair Scheduler documentation YARN-1171. Add default queue properties to Fair Scheduler documentation
(Naren Koneru via Sandy Ryza) (Naren Koneru via Sandy Ryza)
YARN-1470. Add audience annotations to MiniYARNCluster. (Anubhav Dhoot
via kasha)
OPTIMIZATIONS OPTIMIZATIONS
BUG FIXES BUG FIXES

View File

@ -29,6 +29,7 @@
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.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileContext; import org.apache.hadoop.fs.FileContext;
import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.Path;
@ -84,6 +85,8 @@
* the <code>hostname:port</code> of the namenodes. In such case, the AM must * the <code>hostname:port</code> of the namenodes. In such case, the AM must
* do resource request using <code>hostname:port</code> as the location. * do resource request using <code>hostname:port</code> as the location.
*/ */
@InterfaceAudience.Public
@InterfaceStability.Evolving
public class MiniYARNCluster extends CompositeService { public class MiniYARNCluster extends CompositeService {
private static final Log LOG = LogFactory.getLog(MiniYARNCluster.class); private static final Log LOG = LogFactory.getLog(MiniYARNCluster.class);