YARN-4294. [JDK8] Fix javadoc errors caused by wrong reference and illegal tag. (aajisaka)

This commit is contained in:
Akira Ajisaka 2015-10-24 11:54:42 +09:00
parent 86c92227fc
commit 7781fe1b9e
6 changed files with 12 additions and 7 deletions

View File

@ -983,6 +983,9 @@ Release 2.8.0 - UNRELEASED
YARN-4256. YARN fair scheduler vcores with decimal values. (Jun Gong via zxu) YARN-4256. YARN fair scheduler vcores with decimal values. (Jun Gong via zxu)
YARN-4294. [JDK8] Fix javadoc errors caused by wrong reference and illegal
tag. (aajisaka)
Release 2.7.2 - UNRELEASED Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -59,16 +59,15 @@
import org.apache.hadoop.yarn.api.protocolrecords.SignalContainerResponse; import org.apache.hadoop.yarn.api.protocolrecords.SignalContainerResponse;
import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationRequest; import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationRequest;
import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationResponse; import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationResponse;
import org.apache.hadoop.yarn.api.records.ApplicationAttemptId;
import org.apache.hadoop.yarn.api.records.ApplicationId; import org.apache.hadoop.yarn.api.records.ApplicationId;
import org.apache.hadoop.yarn.api.records.ApplicationSubmissionContext; import org.apache.hadoop.yarn.api.records.ApplicationSubmissionContext;
import org.apache.hadoop.yarn.api.records.ContainerLaunchContext; import org.apache.hadoop.yarn.api.records.ContainerLaunchContext;
import org.apache.hadoop.yarn.api.records.NodeReport; import org.apache.hadoop.yarn.api.records.NodeReport;
import org.apache.hadoop.yarn.api.records.ReservationId; import org.apache.hadoop.yarn.api.records.ReservationId;
import org.apache.hadoop.yarn.api.records.Resource; import org.apache.hadoop.yarn.api.records.Resource;
import org.apache.hadoop.yarn.api.records.ResourceRequest;
import org.apache.hadoop.yarn.api.records.YarnClusterMetrics; import org.apache.hadoop.yarn.api.records.YarnClusterMetrics;
import org.apache.hadoop.yarn.exceptions.ApplicationNotFoundException; import org.apache.hadoop.yarn.exceptions.ApplicationNotFoundException;
import org.apache.hadoop.yarn.exceptions.InvalidResourceRequestException;
import org.apache.hadoop.yarn.exceptions.YarnException; import org.apache.hadoop.yarn.exceptions.YarnException;
/** /**

View File

@ -20,6 +20,7 @@
import org.apache.hadoop.classification.InterfaceAudience.Public; import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Stable; import org.apache.hadoop.classification.InterfaceStability.Stable;
import org.apache.hadoop.yarn.api.ApplicationClientProtocol;
import org.apache.hadoop.yarn.api.records.ApplicationAttemptId; import org.apache.hadoop.yarn.api.records.ApplicationAttemptId;
import org.apache.hadoop.yarn.util.Records; import org.apache.hadoop.yarn.util.Records;

View File

@ -22,6 +22,7 @@
import org.apache.hadoop.classification.InterfaceAudience.Public; import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Stable; import org.apache.hadoop.classification.InterfaceStability.Stable;
import org.apache.hadoop.classification.InterfaceStability.Unstable; import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.yarn.api.ApplicationClientProtocol;
import org.apache.hadoop.yarn.util.Records; import org.apache.hadoop.yarn.util.Records;
/** /**

View File

@ -39,11 +39,11 @@
import com.google.common.annotations.VisibleForTesting; import com.google.common.annotations.VisibleForTesting;
/** /**
* Update nodes labels map for Resource Manager periodically. It collects * Update nodes labels map for ResourceManager periodically. It collects
* nodes labels from {@link RMNodeLabelsMappingProvider} and updates the * nodes labels from {@link RMNodeLabelsMappingProvider} and updates the
* nodes -> labels map via {@link RMNodeLabelsManager}. This service is * nodes {@literal ->} labels map via {@link RMNodeLabelsManager}.
* enabled when configuration "yarn.node-labels.configuration-type" is * This service is enabled when configuration
* set to "delegated-centralized". * "yarn.node-labels.configuration-type" is set to "delegated-centralized".
*/ */
public class RMDelegatedNodeLabelsUpdater extends CompositeService { public class RMDelegatedNodeLabelsUpdater extends CompositeService {

View File

@ -26,7 +26,8 @@
import org.apache.hadoop.yarn.api.records.NodeLabel; import org.apache.hadoop.yarn.api.records.NodeLabel;
/** /**
* Interface which is responsible for providing the node -> labels map. * Interface which is responsible for providing
* the node {@literal ->} labels map.
*/ */
public abstract class RMNodeLabelsMappingProvider extends AbstractService { public abstract class RMNodeLabelsMappingProvider extends AbstractService {