This is an automated email from the ASF dual-hosted git repository.

ayushsaxena pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 11f750e  HDFS-14616. Add the warn log when the volume available space 
isn't enough. Contributed by liying.
11f750e is described below

commit 11f750e6a77b905b20541f9ec510b1875ad91357
Author: Ayush Saxena <ayushsax...@apache.org>
AuthorDate: Thu Aug 8 00:49:58 2019 +0530

    HDFS-14616. Add the warn log when the volume available space isn't enough. 
Contributed by liying.
---
 .../server/datanode/fsdataset/RoundRobinVolumeChoosingPolicy.java     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/RoundRobinVolumeChoosingPolicy.java
 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/RoundRobinVolumeChoosingPolicy.java
index 2d924c0..0f23e47 100644
--- 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/RoundRobinVolumeChoosingPolicy.java
+++ 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/RoundRobinVolumeChoosingPolicy.java
@@ -96,6 +96,10 @@ public class RoundRobinVolumeChoosingPolicy<V extends 
FsVolumeSpi>
         throw new DiskOutOfSpaceException("Out of space: "
             + "The volume with the most available space (=" + maxAvailable
             + " B) is less than the block size (=" + blockSize + " B).");
+      } else {
+        LOG.warn("The volume[{}] with the available space (={} B) is "
+            + "less than the block size (={} B).", volume.getBaseURI(),
+            availableVolumeSize, blockSize);
       }
     }
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to