YARN-4581. AHS writer thread leak makes RM crash while RM is recovering. Contributed by sandflee.
(cherry picked from commit fc6d3a3b234efff2b0b646c31a4e6ff0a5118ef9) Conflicts: hadoop-yarn-project/CHANGES.txt (cherry picked from commit e09222306f65227d14fe1e656102d225b232409c) Conflicts: hadoop-yarn-project/CHANGES.txt
This commit is contained in:
parent
d01362f10f
commit
f7d3870034
@ -63,6 +63,9 @@ Release 2.7.3 - UNRELEASED
|
||||
YARN-4121. Fix typos in capacity scheduler documentation.
|
||||
(Kai Sasaki via vvasudev)
|
||||
|
||||
YARN-4581. AHS writer thread leak makes RM crash while RM is recovering.
|
||||
(sandflee via junping_du)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -734,12 +734,17 @@ public HistoryFileWriter(Path historyFile) throws IOException {
|
||||
} else {
|
||||
fsdos = fs.create(historyFile);
|
||||
}
|
||||
fs.setPermission(historyFile, HISTORY_FILE_UMASK);
|
||||
writer =
|
||||
new TFile.Writer(fsdos, MIN_BLOCK_SIZE, getConfig().get(
|
||||
YarnConfiguration.FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE,
|
||||
YarnConfiguration.DEFAULT_FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE), null,
|
||||
getConfig());
|
||||
try {
|
||||
fs.setPermission(historyFile, HISTORY_FILE_UMASK);
|
||||
writer =
|
||||
new TFile.Writer(fsdos, MIN_BLOCK_SIZE, getConfig().get(
|
||||
YarnConfiguration.FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE,
|
||||
YarnConfiguration.DEFAULT_FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE), null,
|
||||
getConfig());
|
||||
} catch (IOException e) {
|
||||
IOUtils.cleanup(LOG, fsdos);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
public synchronized void close() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user