diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/placement/SingleConstraintAppPlacementAllocator.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/placement/SingleConstraintAppPlacementAllocator.java index 9e7d71cfaa..b02cb00312 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/placement/SingleConstraintAppPlacementAllocator.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/placement/SingleConstraintAppPlacementAllocator.java @@ -334,14 +334,15 @@ private void validateAndSetSchedulingRequest(SchedulingRequest newSchedulingRequ targetAllocationTags = new HashSet<>( targetExpression.getTargetValues()); - if (targetExpression.getTargetKey() == null || !targetExpression + if (targetExpression.getTargetKey() != null && !targetExpression .getTargetKey().equals(APPLICATION_LABEL_INTRA_APPLICATION)) { throwExceptionWithMetaInfo( "As of now, the only accepted target key for targetKey of " + "allocation_tag target expression is: [" + APPLICATION_LABEL_INTRA_APPLICATION + "]. Please make changes to placement constraints " - + "accordingly."); + + "accordingly. If this is null, it will be set to " + + APPLICATION_LABEL_INTRA_APPLICATION + " by default."); } } }