Skip to content

Commit

Permalink
HDDS-11367. Improve ozone balancing status command output
Browse files Browse the repository at this point in the history
  • Loading branch information
juncevich committed Sep 3, 2024
2 parents 774fbbc + b5e1a8b commit 00ad471
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,8 @@ private void checkIterationMoveResults() {
metrics.getNumContainerMovesCompletedInLatestIteration());
metrics.incrementNumContainerMovesTimeout(
metrics.getNumContainerMovesTimeoutInLatestIteration());
metrics.incrementDataSizeMovedGBInLatestIteration(
sizeActuallyMovedInLatestIteration / OzoneConsts.GB);
metrics.incrementDataSizeMovedInLatestIteration(
sizeActuallyMovedInLatestIteration);
metrics.incrementDataSizeMovedGB(
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<commons-cli.version>1.8.0</commons-cli.version>
<commons-codec.version>1.17.0</commons-codec.version>
<commons-collections.version>3.2.2</commons-collections.version>
<commons-compress.version>1.27.0</commons-compress.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-configuration2.version>2.10.1</commons-configuration2.version>
<zstd-jni.version>1.5.6-4</zstd-jni.version>
<commons-daemon.version>1.4.0</commons-daemon.version>
Expand Down Expand Up @@ -156,7 +156,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs

<!-- jersey version -->
<jersey.version>1.19.4</jersey.version>
<jersey2.version>2.44</jersey2.version>
<jersey2.version>2.45</jersey2.version>

<!-- jackson versions -->
<jackson1.version>1.9.13</jackson1.version>
Expand Down Expand Up @@ -268,7 +268,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<apache-rat-plugin.version>0.16.1</apache-rat-plugin.version>
<maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version>
<maven-deploy-plugin.version>3.1.3</maven-deploy-plugin.version>
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
<maven-dependency-plugin.version>3.7.1</maven-dependency-plugin.version>
<plexus-archiver.version>4.2.2</plexus-archiver.version>
Expand Down

0 comments on commit 00ad471

Please sign in to comment.