Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created on
10-21-2024
03:19 AM
- last edited on
04-20-2026
11:24 PM
by
GrazittiAPI
Hello,
Trying to configure Datanode balancer network bandwidth to 4 GB since we have a good 25 GBPS network dedicated to the cluster. However, when set via Cloudera Manager, I get an alert stating max allowed in 1 GB.
Is it something hard coded and cannot be increased beyond 1 GB via CM? OR there is a different way to do that?
Thanks
snm1523
Created 10-22-2024 05:23 AM
Hi @snm1523
It is a CM restriction to change the dfs.datanode.balance.bandwidthPerSec more than 1 GB but can be achieved from CLI
Example -
nohup hdfs balancer -Ddfs.datanode.balance.bandwidthPerSec=4294967296 > /tmp/balance_log.out &
Created 10-22-2024 05:23 AM
Hi @snm1523
It is a CM restriction to change the dfs.datanode.balance.bandwidthPerSec more than 1 GB but can be achieved from CLI
Example -
nohup hdfs balancer -Ddfs.datanode.balance.bandwidthPerSec=4294967296 > /tmp/balance_log.out &
Created 10-23-2024 07:58 AM
Thank you for the help, Shubham.
Thanks
Snm1523