HDFS-14171. Performance improvement in Tailing EditLog. Contributed by Kenneth Yang.
(cherry picked from commit e9a005dfcf
)
This commit is contained in:
parent
9bfea98746
commit
c48640ffbd
|
@ -567,7 +567,12 @@ class BlockManagerSafeMode {
|
||||||
*/
|
*/
|
||||||
private boolean areThresholdsMet() {
|
private boolean areThresholdsMet() {
|
||||||
assert namesystem.hasWriteLock();
|
assert namesystem.hasWriteLock();
|
||||||
int datanodeNum = blockManager.getDatanodeManager().getNumLiveDataNodes();
|
// Calculating the number of live datanodes is time-consuming
|
||||||
|
// in large clusters. Skip it when datanodeThreshold is zero.
|
||||||
|
int datanodeNum = 0;
|
||||||
|
if (datanodeThreshold > 0) {
|
||||||
|
datanodeNum = blockManager.getDatanodeManager().getNumLiveDataNodes();
|
||||||
|
}
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
return blockSafe >= blockThreshold && datanodeNum >= datanodeThreshold;
|
return blockSafe >= blockThreshold && datanodeNum >= datanodeThreshold;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue