diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.java index 6e5a1a48fed..060cfbdc39f 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.java @@ -526,7 +526,14 @@ private void collectFileSummary(String path, HdfsFileStatus file, Result res, } else { out.print('.'); } - if (res.totalFiles % 100 == 0) { out.println(); out.flush(); } + if (res.totalFiles % 100 == 0) { + out.println(); + // checkError here will attempt to flush the stream, or report an error + // if the stream has encountered an error or been closed by the client + if (out.checkError()) { + throw new IOException("fsck encountered an error in its output stream"); + } + } } private void collectBlocksSummary(String parent, HdfsFileStatus file,