This is an automated email from the ASF dual-hosted git repository.
sodonnell pushed a commit to branch HDDS-5713
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/HDDS-5713 by this push:
new 5f09bde4f0 HDDS-10297. [Disk Balancer] Report command should default
to 25 nodes (#6169)
5f09bde4f0 is described below
commit 5f09bde4f0d4bceee3d99965ee35800d352cea38
Author: Stephen O'Donnell <[email protected]>
AuthorDate: Mon Feb 5 17:12:02 2024 +0000
HDDS-10297. [Disk Balancer] Report command should default to 25 nodes
(#6169)
---
.../hadoop/hdds/scm/cli/datanode/DiskBalancerReportSubcommand.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/hadoop-hdds/tools/src/main/java/org/apache/hadoop/hdds/scm/cli/datanode/DiskBalancerReportSubcommand.java
b/hadoop-hdds/tools/src/main/java/org/apache/hadoop/hdds/scm/cli/datanode/DiskBalancerReportSubcommand.java
index deb7b07043..516592776d 100644
---
a/hadoop-hdds/tools/src/main/java/org/apache/hadoop/hdds/scm/cli/datanode/DiskBalancerReportSubcommand.java
+++
b/hadoop-hdds/tools/src/main/java/org/apache/hadoop/hdds/scm/cli/datanode/DiskBalancerReportSubcommand.java
@@ -39,8 +39,8 @@ import java.util.List;
public class DiskBalancerReportSubcommand extends ScmSubcommand {
@Option(names = {"-c", "--count"},
description = "Result count to return. Sort by Volume Density " +
- "in descending order.")
- private int count;
+ "in descending order. Defaults to 25")
+ private int count = 25;
@Override
public void execute(ScmClient scmClient) throws IOException {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]