YARN-4581. AHS writer thread leak makes RM crash while RM is recovering. Contributed by sandflee.
(cherry picked from commitfc6d3a3b23
) Conflicts: hadoop-yarn-project/CHANGES.txt (cherry picked from commite09222306f
) 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.
|
YARN-4121. Fix typos in capacity scheduler documentation.
|
||||||
(Kai Sasaki via vvasudev)
|
(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
|
Release 2.7.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -734,12 +734,17 @@ public class FileSystemApplicationHistoryStore extends AbstractService
|
||||||
} else {
|
} else {
|
||||||
fsdos = fs.create(historyFile);
|
fsdos = fs.create(historyFile);
|
||||||
}
|
}
|
||||||
fs.setPermission(historyFile, HISTORY_FILE_UMASK);
|
try {
|
||||||
writer =
|
fs.setPermission(historyFile, HISTORY_FILE_UMASK);
|
||||||
new TFile.Writer(fsdos, MIN_BLOCK_SIZE, getConfig().get(
|
writer =
|
||||||
YarnConfiguration.FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE,
|
new TFile.Writer(fsdos, MIN_BLOCK_SIZE, getConfig().get(
|
||||||
YarnConfiguration.DEFAULT_FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE), null,
|
YarnConfiguration.FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE,
|
||||||
getConfig());
|
YarnConfiguration.DEFAULT_FS_APPLICATION_HISTORY_STORE_COMPRESSION_TYPE), null,
|
||||||
|
getConfig());
|
||||||
|
} catch (IOException e) {
|
||||||
|
IOUtils.cleanup(LOG, fsdos);
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void close() {
|
public synchronized void close() {
|
||||||
|
|
Loading…
Reference in New Issue