MAPREDUCE-7372 MapReduce set permission too late in copyJar method (#4026). Contributed by Zhang Dongsheng.
Reviewed-by: Steve Loughran <stevel@apache.org> Signed-off-by: Chris Nauroth <cnauroth@apache.org>
This commit is contained in:
parent
6ba2c53720
commit
9fe96238d2
@ -783,9 +783,11 @@ private URI useSharedCache(URI sourceFile, String resourceName,
|
||||
void copyJar(Path originalJarPath, Path submitJarFile,
|
||||
short replication) throws IOException {
|
||||
jtFs.copyFromLocalFile(originalJarPath, submitJarFile);
|
||||
jtFs.setReplication(submitJarFile, replication);
|
||||
// The operation of setReplication requires certain permissions
|
||||
// so we need to make sure it has enough permissions
|
||||
jtFs.setPermission(submitJarFile, new FsPermission(
|
||||
JobSubmissionFiles.JOB_FILE_PERMISSION));
|
||||
jtFs.setReplication(submitJarFile, replication);
|
||||
}
|
||||
|
||||
private void addLog4jToDistributedCache(Job job, Path jobSubmitDir)
|
||||
|
Loading…
Reference in New Issue
Block a user