HDFS-9076. Log full path instead of inodeId in DFSClient#closeAllFilesBeingWritten() (Contributed by Surendra Singh Lilhore)

This commit is contained in:
Vinayakumar B 2015-09-24 17:43:23 +05:30
parent ead1b9e680
commit e52bc697f8
3 changed files with 12 additions and 2 deletions

View File

@ -1400,6 +1400,9 @@ Release 2.8.0 - UNRELEASED
TestSWebHdfsFileContextMainOperations fail due to invalid HDFS path on
Windows. (Chris Nauroth via wheat9)
HDFS-9076. Log full path instead of inodeId in DFSClient
#closeAllFilesBeingWritten() (Surendra Singh Lilhore via vinayakumarb)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -583,8 +583,8 @@ public void closeAllFilesBeingWritten(final boolean abort) {
out.close();
}
} catch(IOException ie) {
LOG.error("Failed to " + (abort? "abort": "close") +
" inode " + inodeId, ie);
LOG.error("Failed to " + (abort ? "abort" : "close") + " file: "
+ out.getSrc() + " with inode: " + inodeId, ie);
}
}
}

View File

@ -902,6 +902,13 @@ public long getFileId() {
return fileId;
}
/**
* Return the source of stream.
*/
String getSrc() {
return src;
}
/**
* Returns the data streamer object.
*/