@@ -12,6 +12,9 @@ Release 2.7.6 - UNRELEASED
BUG FIXES
+ HDFS-12881. Output streams closed with IOUtils suppressing write errors.
+ (Ajay Kumar via jlowe)
+
Release 2.7.5 - UNRELEASED
INCOMPATIBLE CHANGES
@@ -995,8 +995,10 @@ class FsDatasetImpl implements FsDatasetSpi<FsVolumeImpl> {
// calculate and write the last crc
checksum.calculateChunkedSums(data, 0, offset, crcs, 0);
metaOut.write(crcs, 0, 4);
+ metaOut.close();
+ metaOut = null;
} finally {
- IOUtils.cleanup(LOG, metaOut);
+ IOUtils.closeStream(metaOut);
}
@@ -106,6 +106,8 @@ public abstract class FSImageTestUtil {
try {
raf.seek(IMAGE_TXID_POS);
raf.writeLong(0);
+ raf.close();
+ raf = null;
IOUtils.closeStream(raf);
@@ -517,9 +519,11 @@ public abstract class FSImageTestUtil {
out = new FileOutputStream(versionFile);
props.store(out, null);
-
+ out.close();
+ out = null;
- IOUtils.cleanup(null, fis, out);
+ IOUtils.closeStream(fis);
+ IOUtils.closeStream(out);
@@ -207,9 +207,11 @@ public class TestOfflineImageViewer {
in = new FileInputStream(src);
out = new FileOutputStream(dest);
in.getChannel().transferTo(0, MAX_BYTES, out.getChannel());
- IOUtils.cleanup(null, in);
- IOUtils.cleanup(null, out);
+ IOUtils.closeStream(in);