YARN-7807. Assume intra-app anti-affinity as default for scheduling request inside AppPlacementAllocator. (Wangda Tan via asuresh)
This commit is contained in:
parent
a4c539fcdb
commit
644afe5fd8
@ -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.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user