HDFS-12932. Fix confusing LOG message for block replication. Contributed by Chao Sun.
This commit is contained in:
parent
d62932c3b2
commit
a78db99190
|
@ -414,9 +414,12 @@ public class FSDirAttrOp {
|
||||||
if (oldBR > targetReplication) {
|
if (oldBR > targetReplication) {
|
||||||
FSDirectory.LOG.info("Decreasing replication from {} to {} for {}",
|
FSDirectory.LOG.info("Decreasing replication from {} to {} for {}",
|
||||||
oldBR, targetReplication, iip.getPath());
|
oldBR, targetReplication, iip.getPath());
|
||||||
} else {
|
} else if (oldBR < targetReplication) {
|
||||||
FSDirectory.LOG.info("Increasing replication from {} to {} for {}",
|
FSDirectory.LOG.info("Increasing replication from {} to {} for {}",
|
||||||
oldBR, targetReplication, iip.getPath());
|
oldBR, targetReplication, iip.getPath());
|
||||||
|
} else {
|
||||||
|
FSDirectory.LOG.info("Replication remains unchanged at {} for {}",
|
||||||
|
oldBR, iip.getPath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return file.getBlocks();
|
return file.getBlocks();
|
||||||
|
|
Loading…
Reference in New Issue