YARN-8672. TestContainerManager#testLocalingResourceWhileContainerRunning occasionally times out. Contributed by Chandni Singh and Jim Brennan.

This commit is contained in:
Eric Badger 2020-01-08 19:55:25 +00:00
parent a110024fcc
commit cba0bbe98c
13 changed files with 62 additions and 49 deletions

View File

@ -77,6 +77,7 @@ public abstract class ContainerExecutor implements Configurable {
private static final Logger LOG = private static final Logger LOG =
LoggerFactory.getLogger(ContainerExecutor.class); LoggerFactory.getLogger(ContainerExecutor.class);
protected static final String WILDCARD = "*"; protected static final String WILDCARD = "*";
public static final String TOKEN_FILE_NAME_FMT = "%s.tokens";
/** /**
* The permissions to use when creating the launch script. * The permissions to use when creating the launch script.

View File

@ -159,8 +159,7 @@ public class DefaultContainerExecutor extends ContainerExecutor {
// randomly choose the local directory // randomly choose the local directory
Path appStorageDir = getWorkingDir(localDirs, user, appId); Path appStorageDir = getWorkingDir(localDirs, user, appId);
String tokenFn = String tokenFn = String.format(TOKEN_FILE_NAME_FMT, locId);
String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, locId);
Path tokenDst = new Path(appStorageDir, tokenFn); Path tokenDst = new Path(appStorageDir, tokenFn);
copyFile(nmPrivateContainerTokensPath, tokenDst, user); copyFile(nmPrivateContainerTokensPath, tokenDst, user);
LOG.info("Copying from " + nmPrivateContainerTokensPath LOG.info("Copying from " + nmPrivateContainerTokensPath
@ -175,7 +174,8 @@ public class DefaultContainerExecutor extends ContainerExecutor {
+ localizerFc.getWorkingDirectory()); + localizerFc.getWorkingDirectory());
ContainerLocalizer localizer = ContainerLocalizer localizer =
createContainerLocalizer(user, appId, locId, localDirs, localizerFc); createContainerLocalizer(user, appId, locId, tokenFn, localDirs,
localizerFc);
// TODO: DO it over RPC for maintaining similarity? // TODO: DO it over RPC for maintaining similarity?
localizer.runLocalization(nmAddr); localizer.runLocalization(nmAddr);
} }
@ -199,10 +199,10 @@ public class DefaultContainerExecutor extends ContainerExecutor {
@Private @Private
@VisibleForTesting @VisibleForTesting
protected ContainerLocalizer createContainerLocalizer(String user, protected ContainerLocalizer createContainerLocalizer(String user,
String appId, String locId, List<String> localDirs, String appId, String locId, String tokenFileName, List<String> localDirs,
FileContext localizerFc) throws IOException { FileContext localizerFc) throws IOException {
ContainerLocalizer localizer = ContainerLocalizer localizer =
new ContainerLocalizer(localizerFc, user, appId, locId, new ContainerLocalizer(localizerFc, user, appId, locId, tokenFileName,
getPaths(localDirs), getPaths(localDirs),
RecordFactoryProvider.getRecordFactory(getConf())); RecordFactoryProvider.getRecordFactory(getConf()));
return localizer; return localizer;

View File

@ -388,8 +388,8 @@ public class LinuxContainerExecutor extends ContainerExecutor {
List<String> localizerArgs = new ArrayList<>(); List<String> localizerArgs = new ArrayList<>();
buildMainArgs(localizerArgs, user, appId, locId, nmAddr, localDirs); buildMainArgs(localizerArgs, user, appId, locId, nmAddr,
nmPrivateContainerTokensPath.getName(), localDirs);
Path containerLogDir = getContainerLogDir(dirsHandler, appId, locId); Path containerLogDir = getContainerLogDir(dirsHandler, appId, locId);
localizerArgs = replaceWithContainerLogDir(localizerArgs, containerLogDir); localizerArgs = replaceWithContainerLogDir(localizerArgs, containerLogDir);
@ -447,9 +447,10 @@ public class LinuxContainerExecutor extends ContainerExecutor {
*/ */
@VisibleForTesting @VisibleForTesting
public void buildMainArgs(List<String> command, String user, String appId, public void buildMainArgs(List<String> command, String user, String appId,
String locId, InetSocketAddress nmAddr, List<String> localDirs) { String locId, InetSocketAddress nmAddr, String tokenFileName,
List<String> localDirs) {
ContainerLocalizer.buildMainArgs(command, user, appId, locId, nmAddr, ContainerLocalizer.buildMainArgs(command, user, appId, locId, nmAddr,
localDirs, super.getConf()); tokenFileName, localDirs, super.getConf());
} }
@Override @Override

View File

@ -663,8 +663,8 @@ public class WindowsSecureContainerExecutor extends DefaultContainerExecutor {
Path appStorageDir = getWorkingDir(localDirs, user, appId); Path appStorageDir = getWorkingDir(localDirs, user, appId);
String tokenFn = String.format( String tokenFn = String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
ContainerLocalizer.TOKEN_FILE_NAME_FMT, locId); locId);
Path tokenDst = new Path(appStorageDir, tokenFn); Path tokenDst = new Path(appStorageDir, tokenFn);
copyFile(nmPrivateContainerTokensPath, tokenDst, user); copyFile(nmPrivateContainerTokensPath, tokenDst, user);
@ -702,7 +702,7 @@ public class WindowsSecureContainerExecutor extends DefaultContainerExecutor {
command.addAll(ContainerLocalizer.getJavaOpts(getConf())); command.addAll(ContainerLocalizer.getJavaOpts(getConf()));
ContainerLocalizer.buildMainArgs(command, user, appId, locId, nmAddr, ContainerLocalizer.buildMainArgs(command, user, appId, locId, nmAddr,
localDirs, super.getConf()); tokenFn, localDirs, super.getConf());
String cmdLine = StringUtils.join(command, " "); String cmdLine = StringUtils.join(command, " ");

View File

@ -20,6 +20,7 @@ package org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher;
import static org.apache.hadoop.fs.CreateFlag.CREATE; import static org.apache.hadoop.fs.CreateFlag.CREATE;
import static org.apache.hadoop.fs.CreateFlag.OVERWRITE; import static org.apache.hadoop.fs.CreateFlag.OVERWRITE;
import static org.apache.hadoop.yarn.server.nodemanager.ContainerExecutor.TOKEN_FILE_NAME_FMT;
import org.apache.hadoop.yarn.server.nodemanager.executor.DeletionAsUserContext; import org.apache.hadoop.yarn.server.nodemanager.executor.DeletionAsUserContext;
import org.slf4j.Logger; import org.slf4j.Logger;
@ -239,8 +240,7 @@ public class ContainerLaunch implements Callable<Integer> {
+ CONTAINER_SCRIPT); + CONTAINER_SCRIPT);
Path nmPrivateTokensPath = dirsHandler.getLocalPathForWrite( Path nmPrivateTokensPath = dirsHandler.getLocalPathForWrite(
getContainerPrivateDir(appIdStr, containerIdStr) + Path.SEPARATOR getContainerPrivateDir(appIdStr, containerIdStr) + Path.SEPARATOR
+ String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, + String.format(TOKEN_FILE_NAME_FMT, containerIdStr));
containerIdStr));
Path nmPrivateClasspathJarDir = dirsHandler.getLocalPathForWrite( Path nmPrivateClasspathJarDir = dirsHandler.getLocalPathForWrite(
getContainerPrivateDir(appIdStr, containerIdStr)); getContainerPrivateDir(appIdStr, containerIdStr));

View File

@ -32,7 +32,6 @@ import org.apache.hadoop.yarn.server.nodemanager.containermanager.application.Ap
import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.Container; import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.Container;
import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ContainerEventType; import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ContainerEventType;
import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ContainerExitEvent; import org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ContainerExitEvent;
import org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.ContainerLocalizer;
import org.apache.hadoop.yarn.server.nodemanager.executor.ContainerStartContext; import org.apache.hadoop.yarn.server.nodemanager.executor.ContainerStartContext;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -170,7 +169,7 @@ public class ContainerRelaunch extends ContainerLaunch {
String containerIdStr) throws IOException { String containerIdStr) throws IOException {
return dirsHandler.getLocalPathForRead( return dirsHandler.getLocalPathForRead(
getContainerPrivateDir(appIdStr, containerIdStr) + Path.SEPARATOR getContainerPrivateDir(appIdStr, containerIdStr) + Path.SEPARATOR
+ String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, + String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
containerIdStr)); containerIdStr));
} }

View File

@ -18,6 +18,8 @@
package org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer; package org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer;
import static org.apache.hadoop.util.Shell.getAllShells; import static org.apache.hadoop.util.Shell.getAllShells;
import com.google.common.base.Preconditions;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -93,9 +95,6 @@ public class ContainerLocalizer {
public static final String FILECACHE = "filecache"; public static final String FILECACHE = "filecache";
public static final String APPCACHE = "appcache"; public static final String APPCACHE = "appcache";
public static final String USERCACHE = "usercache"; public static final String USERCACHE = "usercache";
public static final String OUTPUTDIR = "output";
public static final String TOKEN_FILE_NAME_FMT = "%s.tokens";
public static final String WORKDIR = "work";
private static final String APPCACHE_CTXT_FMT = "%s.app.cache.dirs"; private static final String APPCACHE_CTXT_FMT = "%s.app.cache.dirs";
private static final String USERCACHE_CTXT_FMT = "%s.user.cache.dirs"; private static final String USERCACHE_CTXT_FMT = "%s.user.cache.dirs";
private static final FsPermission FILECACHE_PERMS = private static final FsPermission FILECACHE_PERMS =
@ -116,9 +115,10 @@ public class ContainerLocalizer {
private Set<Thread> localizingThreads = private Set<Thread> localizingThreads =
Collections.synchronizedSet(new HashSet<>()); Collections.synchronizedSet(new HashSet<>());
private final String tokenFileName;
public ContainerLocalizer(FileContext lfs, String user, String appId, public ContainerLocalizer(FileContext lfs, String user, String appId,
String localizerId, List<Path> localDirs, String localizerId, String tokenFileName, List<Path> localDirs,
RecordFactory recordFactory) throws IOException { RecordFactory recordFactory) throws IOException {
if (null == user) { if (null == user) {
throw new IOException("Cannot initialize for null user"); throw new IOException("Cannot initialize for null user");
@ -140,6 +140,8 @@ public class ContainerLocalizer {
" is loaded."); " is loaded.");
this.appCacheDirContextName = String.format(APPCACHE_CTXT_FMT, appId); this.appCacheDirContextName = String.format(APPCACHE_CTXT_FMT, appId);
this.pendingResources = new HashMap<LocalResource,Future<Path>>(); this.pendingResources = new HashMap<LocalResource,Future<Path>>();
this.tokenFileName = Preconditions.checkNotNull(tokenFileName,
"token file name cannot be null");
} }
@VisibleForTesting @VisibleForTesting
@ -166,8 +168,7 @@ public class ContainerLocalizer {
try { try {
// assume credentials in cwd // assume credentials in cwd
// TODO: Fix // TODO: Fix
Path tokenPath = Path tokenPath = new Path(tokenFileName);
new Path(String.format(TOKEN_FILE_NAME_FMT, localizerId));
credFile = lfs.open(tokenPath); credFile = lfs.open(tokenPath);
creds.readTokenStorageStream(credFile); creds.readTokenStorageStream(credFile);
// Explicitly deleting token file. // Explicitly deleting token file.
@ -416,7 +417,9 @@ public class ContainerLocalizer {
*/ */
public static void buildMainArgs(List<String> command, public static void buildMainArgs(List<String> command,
String user, String appId, String locId, String user, String appId, String locId,
InetSocketAddress nmAddr, List<String> localDirs, Configuration conf) { InetSocketAddress nmAddr,
String tokenFileName,
List<String> localDirs, Configuration conf) {
String logLevel = conf.get(YarnConfiguration. String logLevel = conf.get(YarnConfiguration.
NM_CONTAINER_LOCALIZER_LOG_LEVEL, NM_CONTAINER_LOCALIZER_LOG_LEVEL,
@ -428,6 +431,7 @@ public class ContainerLocalizer {
command.add(locId); command.add(locId);
command.add(nmAddr.getHostName()); command.add(nmAddr.getHostName());
command.add(Integer.toString(nmAddr.getPort())); command.add(Integer.toString(nmAddr.getPort()));
command.add(tokenFileName);
for(String dir : localDirs) { for(String dir : localDirs) {
command.add(dir); command.add(dir);
} }
@ -458,8 +462,9 @@ public class ContainerLocalizer {
String locId = argv[2]; String locId = argv[2];
InetSocketAddress nmAddr = InetSocketAddress nmAddr =
new InetSocketAddress(argv[3], Integer.parseInt(argv[4])); new InetSocketAddress(argv[3], Integer.parseInt(argv[4]));
String[] sLocaldirs = Arrays.copyOfRange(argv, 5, argv.length); String tokenFileName = argv[5];
ArrayList<Path> localDirs = new ArrayList<Path>(sLocaldirs.length); String[] sLocaldirs = Arrays.copyOfRange(argv, 6, argv.length);
ArrayList<Path> localDirs = new ArrayList<>(sLocaldirs.length);
for (String sLocaldir : sLocaldirs) { for (String sLocaldir : sLocaldirs) {
localDirs.add(new Path(sLocaldir)); localDirs.add(new Path(sLocaldir));
} }
@ -471,12 +476,11 @@ public class ContainerLocalizer {
LOG.warn("Localization running as " + uid + " not " + user); LOG.warn("Localization running as " + uid + " not " + user);
} }
ContainerLocalizer localizer = ContainerLocalizer localizer = new ContainerLocalizer(
new ContainerLocalizer(FileContext.getLocalFSFileContext(), user, FileContext.getLocalFSFileContext(), user,
appId, locId, localDirs, appId, locId, tokenFileName, localDirs,
RecordFactoryProvider.getRecordFactory(null)); RecordFactoryProvider.getRecordFactory(null));
localizer.runLocalization(nmAddr); localizer.runLocalization(nmAddr);
return;
} catch (Throwable e) { } catch (Throwable e) {
// Print traces to stdout so that they can be logged by the NM address // Print traces to stdout so that they can be logged by the NM address
// space in both DefaultCE and LCE cases // space in both DefaultCE and LCE cases

View File

@ -1033,6 +1033,8 @@ public class ResourceLocalizationService extends CompositeService
private final RecordFactory recordFactory = private final RecordFactory recordFactory =
RecordFactoryProvider.getRecordFactory(getConfig()); RecordFactoryProvider.getRecordFactory(getConfig());
private final String tokenFileName;
LocalizerRunner(LocalizerContext context, String localizerId) { LocalizerRunner(LocalizerContext context, String localizerId) {
super("LocalizerRunner for " + localizerId); super("LocalizerRunner for " + localizerId);
this.context = context; this.context = context;
@ -1040,8 +1042,9 @@ public class ResourceLocalizationService extends CompositeService
this.pending = this.pending =
Collections Collections
.synchronizedList(new ArrayList<LocalizerResourceRequestEvent>()); .synchronizedList(new ArrayList<LocalizerResourceRequestEvent>());
this.scheduled = this.scheduled = new HashMap<>();
new HashMap<LocalResourceRequest, LocalizerResourceRequestEvent>(); tokenFileName = String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
localizerId + Long.toHexString(System.currentTimeMillis()));
} }
public void addResource(LocalizerResourceRequestEvent request) { public void addResource(LocalizerResourceRequestEvent request) {
@ -1236,11 +1239,8 @@ public class ResourceLocalizationService extends CompositeService
Throwable exception = null; Throwable exception = null;
try { try {
// Get nmPrivateDir // Get nmPrivateDir
nmPrivateCTokensPath = nmPrivateCTokensPath = dirsHandler.getLocalPathForWrite(
dirsHandler.getLocalPathForWrite( NM_PRIVATE_DIR + Path.SEPARATOR + tokenFileName);
NM_PRIVATE_DIR + Path.SEPARATOR
+ String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT,
localizerId));
// 0) init queue, etc. // 0) init queue, etc.
// 1) write credentials to private dir // 1) write credentials to private dir

View File

@ -412,14 +412,15 @@ public class TestDefaultContainerExecutor {
spy(new DefaultContainerExecutor(mockLfs) { spy(new DefaultContainerExecutor(mockLfs) {
@Override @Override
public ContainerLocalizer createContainerLocalizer(String user, public ContainerLocalizer createContainerLocalizer(String user,
String appId, String locId, List<String> localDirs, String appId, String locId, String tokenFileName,
FileContext localizerFc) throws IOException { List<String> localDirs, FileContext localizerFc)
throws IOException {
// Spy on the localizer and make it return valid heart-beat // Spy on the localizer and make it return valid heart-beat
// responses even though there is no real NodeManager. // responses even though there is no real NodeManager.
ContainerLocalizer localizer = ContainerLocalizer localizer =
super.createContainerLocalizer(user, appId, locId, localDirs, super.createContainerLocalizer(user, appId, locId,
localizerFc); tokenFileName, localDirs, localizerFc);
ContainerLocalizer spyLocalizer = spy(localizer); ContainerLocalizer spyLocalizer = spy(localizer);
LocalizationProtocol nmProxy = mock(LocalizationProtocol.class); LocalizationProtocol nmProxy = mock(LocalizationProtocol.class);
try { try {

View File

@ -361,7 +361,7 @@ public class TestLinuxContainerExecutor {
dirsHandler dirsHandler
.getLocalPathForWrite(ResourceLocalizationService.NM_PRIVATE_DIR .getLocalPathForWrite(ResourceLocalizationService.NM_PRIVATE_DIR
+ Path.SEPARATOR + Path.SEPARATOR
+ String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, locId)); + String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT, locId));
files.create(nmPrivateContainerTokensPath, EnumSet.of(CREATE, OVERWRITE)); files.create(nmPrivateContainerTokensPath, EnumSet.of(CREATE, OVERWRITE));
Configuration config = new YarnConfiguration(conf); Configuration config = new YarnConfiguration(conf);
InetSocketAddress nmAddr = InetSocketAddress nmAddr =
@ -374,7 +374,7 @@ public class TestLinuxContainerExecutor {
@Override @Override
public void buildMainArgs(List<String> command, String user, public void buildMainArgs(List<String> command, String user,
String appId, String locId, InetSocketAddress nmAddr, String appId, String locId, InetSocketAddress nmAddr,
List<String> localDirs) { String tokenFileName, List<String> localDirs) {
MockContainerLocalizer.buildMainArgs(command, user, appId, locId, MockContainerLocalizer.buildMainArgs(command, user, appId, locId,
nmAddr, localDirs); nmAddr, localDirs);
} }
@ -395,7 +395,7 @@ public class TestLinuxContainerExecutor {
dirsHandler dirsHandler
.getLocalPathForWrite(ResourceLocalizationService.NM_PRIVATE_DIR .getLocalPathForWrite(ResourceLocalizationService.NM_PRIVATE_DIR
+ Path.SEPARATOR + Path.SEPARATOR
+ String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, locId2)); + String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT, locId2));
files.create(nmPrivateContainerTokensPath2, EnumSet.of(CREATE, OVERWRITE)); files.create(nmPrivateContainerTokensPath2, EnumSet.of(CREATE, OVERWRITE));
exec.startLocalizer(new LocalizerStartContext.Builder() exec.startLocalizer(new LocalizerStartContext.Builder()
.setNmPrivateContainerTokens(nmPrivateContainerTokensPath2) .setNmPrivateContainerTokens(nmPrivateContainerTokensPath2)

View File

@ -270,7 +270,7 @@ public class TestLinuxContainerExecutorWithMocks {
.build()); .build());
List<String> result=readMockParams(); List<String> result=readMockParams();
Assert.assertEquals(result.size(), 25); Assert.assertEquals(result.size(), 26);
Assert.assertEquals(result.get(0), YarnConfiguration.DEFAULT_NM_NONSECURE_MODE_LOCAL_USER); Assert.assertEquals(result.get(0), YarnConfiguration.DEFAULT_NM_NONSECURE_MODE_LOCAL_USER);
Assert.assertEquals(result.get(1), "test"); Assert.assertEquals(result.get(1), "test");
Assert.assertEquals(result.get(2), "0" ); Assert.assertEquals(result.get(2), "0" );
@ -296,6 +296,7 @@ public class TestLinuxContainerExecutorWithMocks {
Assert.assertEquals(result.get(21), "12345"); Assert.assertEquals(result.get(21), "12345");
Assert.assertEquals(result.get(22), "localhost"); Assert.assertEquals(result.get(22), "localhost");
Assert.assertEquals(result.get(23), "8040"); Assert.assertEquals(result.get(23), "8040");
Assert.assertEquals(result.get(24), "nmPrivateCTokensPath");
} catch (InterruptedException e) { } catch (InterruptedException e) {
LOG.error("Error:"+e.getMessage(),e); LOG.error("Error:"+e.getMessage(),e);

View File

@ -1201,7 +1201,7 @@ public class TestContainerManager extends BaseContainerManagerTest {
// While the container is running, localize new resources. // While the container is running, localize new resources.
// Verify the symlink is created properly // Verify the symlink is created properly
@Test @Test
public void testLocalingResourceWhileContainerRunning() throws Exception { public void testLocalizingResourceWhileContainerRunning() throws Exception {
// Real del service // Real del service
delSrvc = new DeletionService(exec); delSrvc = new DeletionService(exec);
delSrvc.init(conf); delSrvc.init(conf);

View File

@ -37,6 +37,8 @@ import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.times; import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when; import static org.mockito.Mockito.when;
import org.apache.hadoop.yarn.server.nodemanager.ContainerExecutor;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -251,7 +253,8 @@ public class TestContainerLocalizer {
RecordFactory recordFactory = mock(RecordFactory.class); RecordFactory recordFactory = mock(RecordFactory.class);
ContainerLocalizer localizer = new ContainerLocalizer(lfs, ContainerLocalizer localizer = new ContainerLocalizer(lfs,
UserGroupInformation.getCurrentUser().getUserName(), "application_01", UserGroupInformation.getCurrentUser().getUserName(), "application_01",
"container_01", new ArrayList<>(), recordFactory) { "container_01", String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
"container_01"), new ArrayList<Path>(), recordFactory) {
@Override @Override
Configuration initConfiguration() { Configuration initConfiguration() {
return conf; return conf;
@ -475,7 +478,9 @@ public class TestContainerLocalizer {
FakeContainerLocalizer(FileContext lfs, String user, String appId, FakeContainerLocalizer(FileContext lfs, String user, String appId,
String localizerId, List<Path> localDirs, String localizerId, List<Path> localDirs,
RecordFactory recordFactory) throws IOException { RecordFactory recordFactory) throws IOException {
super(lfs, user, appId, localizerId, localDirs, recordFactory); super(lfs, user, appId, localizerId,
String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT, containerId),
localDirs, recordFactory);
} }
FakeLongDownload getDownloader() { FakeLongDownload getDownloader() {
@ -551,7 +556,7 @@ public class TestContainerLocalizer {
DataInputBuffer appTokens = createFakeCredentials(random, 10); DataInputBuffer appTokens = createFakeCredentials(random, 10);
tokenPath = tokenPath =
lfs.makeQualified(new Path( lfs.makeQualified(new Path(
String.format(ContainerLocalizer.TOKEN_FILE_NAME_FMT, String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
containerId))); containerId)));
doReturn(new FSDataInputStream(new FakeFSDataInputStream(appTokens)) doReturn(new FSDataInputStream(new FakeFSDataInputStream(appTokens))
).when(spylfs).open(tokenPath); ).when(spylfs).open(tokenPath);
@ -683,7 +688,8 @@ static DataInputBuffer createFakeCredentials(Random r, int nTok)
RecordFactory recordFactory = mock(RecordFactory.class); RecordFactory recordFactory = mock(RecordFactory.class);
ContainerLocalizer localizer = new ContainerLocalizer(lfs, ContainerLocalizer localizer = new ContainerLocalizer(lfs,
UserGroupInformation.getCurrentUser().getUserName(), "application_01", UserGroupInformation.getCurrentUser().getUserName(), "application_01",
"container_01", new ArrayList<Path>(), recordFactory); "container_01", String.format(ContainerExecutor.TOKEN_FILE_NAME_FMT,
"container_01"), new ArrayList<Path>(), recordFactory);
LocalResource rsrc = mock(LocalResource.class); LocalResource rsrc = mock(LocalResource.class);
when(rsrc.getVisibility()).thenReturn(LocalResourceVisibility.PRIVATE); when(rsrc.getVisibility()).thenReturn(LocalResourceVisibility.PRIVATE);
Path destDirPath = new Path(fileCacheDir, "0/0/85"); Path destDirPath = new Path(fileCacheDir, "0/0/85");