|
@@ -41,6 +41,7 @@ import org.apache.hadoop.yarn.api.records.ResourceRequest;
|
|
|
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
|
|
import org.apache.hadoop.yarn.event.EventHandler;
|
|
|
import org.apache.hadoop.yarn.exceptions.InvalidResourceRequestException;
|
|
|
+import org.apache.hadoop.yarn.exceptions.InvalidLabelResourceRequestException;
|
|
|
import org.apache.hadoop.yarn.exceptions.YarnException;
|
|
|
import org.apache.hadoop.yarn.ipc.RPCUtil;
|
|
|
import org.apache.hadoop.yarn.security.AccessRequest;
|
|
@@ -63,6 +64,7 @@ import org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerUtils;
|
|
|
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.YarnScheduler;
|
|
|
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CSQueue;
|
|
|
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler;
|
|
|
+import org.apache.hadoop.yarn.server.resourcemanager.nodelabels.RMNodeLabelsManager;
|
|
|
import org.apache.hadoop.yarn.server.security.ApplicationACLsManager;
|
|
|
import org.apache.hadoop.yarn.server.utils.BuilderUtils;
|
|
|
|
|
@@ -336,6 +338,34 @@ public class RMAppManager implements EventHandler<RMAppManagerEvent>,
|
|
|
createAndPopulateNewRMApp(appContext, appState.getSubmitTime(),
|
|
|
appState.getUser(), true, appState.getStartTime());
|
|
|
|
|
|
+ // If null amReq has been returned, check if it is the case that
|
|
|
+ // application has specified node label expression while node label
|
|
|
+ // has been disabled. Reject the recovery of this application if it
|
|
|
+ // is true and give clear message so that user can react properly.
|
|
|
+ if (!appContext.getUnmanagedAM() &&
|
|
|
+ application.getAMResourceRequest() == null &&
|
|
|
+ !YarnConfiguration.areNodeLabelsEnabled(this.conf)) {
|
|
|
+ // check application submission context and see if am resource request
|
|
|
+ // or application itself contains any node label expression.
|
|
|
+ ResourceRequest amReqFromAppContext =
|
|
|
+ appContext.getAMContainerResourceRequest();
|
|
|
+ String labelExp = (amReqFromAppContext != null) ?
|
|
|
+ amReqFromAppContext.getNodeLabelExpression() : null;
|
|
|
+ if (labelExp == null) {
|
|
|
+ labelExp = appContext.getNodeLabelExpression();
|
|
|
+ }
|
|
|
+ if (labelExp != null &&
|
|
|
+ !labelExp.equals(RMNodeLabelsManager.NO_LABEL)) {
|
|
|
+ String message = "Failed to recover application " + appId
|
|
|
+ + ". NodeLabel is not enabled in cluster, but AM resource request "
|
|
|
+ + "contains a label expression.";
|
|
|
+ LOG.warn(message);
|
|
|
+ application.handle(
|
|
|
+ new RMAppEvent(appId, RMAppEventType.APP_REJECTED, message));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
application.handle(new RMAppRecoverEvent(appId, rmState));
|
|
|
}
|
|
|
|
|
@@ -355,8 +385,28 @@ public class RMAppManager implements EventHandler<RMAppManagerEvent>,
|
|
|
}
|
|
|
|
|
|
ApplicationId applicationId = submissionContext.getApplicationId();
|
|
|
- ResourceRequest amReq =
|
|
|
- validateAndCreateResourceRequest(submissionContext, isRecovery);
|
|
|
+ ResourceRequest amReq = null;
|
|
|
+ try {
|
|
|
+ amReq = validateAndCreateResourceRequest(submissionContext, isRecovery);
|
|
|
+ } catch (InvalidLabelResourceRequestException e) {
|
|
|
+ // This can happen if the application had been submitted and run
|
|
|
+ // with Node Label enabled but recover with Node Label disabled.
|
|
|
+ // Thus there might be node label expression in the application's
|
|
|
+ // resource requests. If this is the case, create RmAppImpl with
|
|
|
+ // null amReq and reject the application later with clear error
|
|
|
+ // message. So that the application can still be tracked by RM
|
|
|
+ // after recovery and user can see what's going on and react accordingly.
|
|
|
+ if (isRecovery &&
|
|
|
+ !YarnConfiguration.areNodeLabelsEnabled(this.conf)) {
|
|
|
+ if (LOG.isDebugEnabled()) {
|
|
|
+ LOG.debug("AMResourceRequest is not created for " + applicationId
|
|
|
+ + ". NodeLabel is not enabled in cluster, but AM resource "
|
|
|
+ + "request contains a label expression.");
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ throw e;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
// Verify and get the update application priority and set back to
|
|
|
// submissionContext
|