MAPREDUCE-3537. Fix race condition in DefaultContainerExecutor which led to container localization occuring in wrong directories.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1213575 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2892b058e0
commit
f611e1d1b1
@ -273,6 +273,9 @@ Release 0.23.1 - Unreleased
|
|||||||
MAPREDUCE-3510. Capacity Scheduler inherited ACLs not displayed by mapred queue
|
MAPREDUCE-3510. Capacity Scheduler inherited ACLs not displayed by mapred queue
|
||||||
-showacls (Jonathan Eagles via mahadev)
|
-showacls (Jonathan Eagles via mahadev)
|
||||||
|
|
||||||
|
MAPREDUCE-3537. Fix race condition in DefaultContainerExecutor which led
|
||||||
|
to container localization occuring in wrong directories. (acmurthy)
|
||||||
|
|
||||||
Release 0.23.0 - 2011-11-01
|
Release 0.23.0 - 2011-11-01
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -75,7 +75,7 @@ public void init() throws IOException {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void startLocalizer(Path nmPrivateContainerTokensPath,
|
public synchronized void startLocalizer(Path nmPrivateContainerTokensPath,
|
||||||
InetSocketAddress nmAddr, String user, String appId, String locId,
|
InetSocketAddress nmAddr, String user, String appId, String locId,
|
||||||
List<String> localDirs, List<String> logDirs)
|
List<String> localDirs, List<String> logDirs)
|
||||||
throws IOException, InterruptedException {
|
throws IOException, InterruptedException {
|
||||||
|
Loading…
Reference in New Issue
Block a user