YARN-8072. RM log is getting flooded with MemoryPlacementConstraintManager info logs. (Zian Chen via wangda)
Change-Id: I2567f4669ad868e13c4301fe44c4bde85bb92c37
This commit is contained in:
parent
9eef19b2ad
commit
24bc5e0e4d
@ -184,8 +184,10 @@ public Map<Set<String>, PlacementConstraint> getConstraints(
|
||||
try {
|
||||
readLock.lock();
|
||||
if (appConstraints.get(appId) == null) {
|
||||
LOG.info("Application {} is not registered in the Placement "
|
||||
+ "Constraint Manager.", appId);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Application {} is not registered in the Placement "
|
||||
+ "Constraint Manager.", appId);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -213,8 +215,10 @@ public PlacementConstraint getConstraint(ApplicationId appId,
|
||||
try {
|
||||
readLock.lock();
|
||||
if (appConstraints.get(appId) == null) {
|
||||
LOG.info("Application {} is not registered in the Placement "
|
||||
+ "Constraint Manager.", appId);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Application {} is not registered in the Placement "
|
||||
+ "Constraint Manager.", appId);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
// TODO: Merge this constraint with the global one for this tag, if one
|
||||
|
Loading…
Reference in New Issue
Block a user