HDFS-11344. The default value of the setting dfs.disk.balancer.block.tolerance.percent is different. Contributed by Yiqun Lin.

This commit is contained in:
Anu Engineer 2017-01-13 22:38:46 -08:00
parent 1cde954a4f
commit 2604e82eba
1 changed files with 1 additions and 1 deletions

View File

@ -1034,7 +1034,7 @@ public class DFSConfigKeys extends CommonConfigurationKeys {
public static final String DFS_DISK_BALANCER_BLOCK_TOLERANCE =
"dfs.disk.balancer.block.tolerance.percent";
public static final int DFS_DISK_BALANCER_BLOCK_TOLERANCE_DEFAULT = 5;
public static final int DFS_DISK_BALANCER_BLOCK_TOLERANCE_DEFAULT = 10;
public static final String DFS_DISK_BALANCER_PLAN_THRESHOLD =
"dfs.disk.balancer.plan.threshold.percent";