YARN-3716. Node-label-expression should be included by ResourceRequestPBImpl.toString. (Xianyin Xin via wangda)
This commit is contained in:
parent
9acd24fec4
commit
788bfa0359
|
@ -461,6 +461,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
YARN-3632. Ordering policy should be allowed to reorder an application when
|
YARN-3632. Ordering policy should be allowed to reorder an application when
|
||||||
demand changes. (Craig Welch via jianhe)
|
demand changes. (Craig Welch via jianhe)
|
||||||
|
|
||||||
|
YARN-3716. Node-label-expression should be included by
|
||||||
|
ResourceRequestPBImpl.toString. (Xianyin Xin via wangda)
|
||||||
|
|
||||||
Release 2.7.1 - UNRELEASED
|
Release 2.7.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -184,7 +184,8 @@ public class ResourceRequestPBImpl extends ResourceRequest {
|
||||||
return "{Priority: " + getPriority() + ", Capability: " + getCapability()
|
return "{Priority: " + getPriority() + ", Capability: " + getCapability()
|
||||||
+ ", # Containers: " + getNumContainers()
|
+ ", # Containers: " + getNumContainers()
|
||||||
+ ", Location: " + getResourceName()
|
+ ", Location: " + getResourceName()
|
||||||
+ ", Relax Locality: " + getRelaxLocality() + "}";
|
+ ", Relax Locality: " + getRelaxLocality()
|
||||||
|
+ ", Node Label Expression: " + getNodeLabelExpression() + "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue