Member since
09-20-2017
2
Posts
0
Kudos Received
0
Solutions
09-20-2017
08:01 PM
@Piyali Gupta
Here are the steps to increase HDFS Balancer network bandwidth for faster balancing of data between nodes Article hdfs dfsadmin -setBalancerBandwidth 100000000 on all the DN and the client we ran the command below hdfs balancer -Dfs.defaultFS=hdfs://<NN_HOSTNAME>:8020 -Ddfs.balancer.movedWinWidth=5400000 -Ddfs.balancer.moverThreads=1000 -Ddfs.balancer.dispatcherThreads=200 -Ddfs.datanode.balance.max.concurrent.moves=5 -Ddfs.balance.bandwidthPerSec=100000000 -Ddfs.balancer.max-size-to-move=10737418240 -threshold 5 This will faster balance your HDFS data between datanodes and do this when the cluster is not heavily used. Couple of links to article : https://community.hortonworks.com/articles/51935/how-to-increase-hdfs-balancer-network-bandwidth-fo.html https://community.hortonworks.com/articles/43849/hdfs-balancer-2-configurations-cli-options.html Hope this helps you.
... View more