YARN-3760. FSDataOutputStream leak in AggregatedLogFormat.LogWriter.close(). Contributed by Haibo Chen.

(cherry picked from commit c26ccf1adb3a72df3f68e1150b86b813c691203a)
(cherry picked from commit 9d9087a67a)
(cherry picked from commit d77cada182)
This commit is contained in:
Junping Du 2017-04-12 09:34:34 -07:00
parent 9eebbcf459
commit c43ee00587
1 changed files with 7 additions and 6 deletions

View File

@ -473,14 +473,15 @@ public class AggregatedLogFormat {
@Override
public void close() {
if (writer != null) {
try {
this.writer.close();
} catch (IOException e) {
LOG.warn("Exception closing writer", e);
try {
if (writer != null) {
writer.close();
}
} catch (Exception e) {
LOG.warn("Exception closing writer", e);
} finally {
IOUtils.closeStream(this.fsDataOStream);
}
IOUtils.closeStream(fsDataOStream);
}
}