Merge -r 1240409:1240410 from trunk to branch. FIXES: MAPREDUCE-3727
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1240411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c03b3291fe
commit
2c20d0a547
|
@ -625,6 +625,9 @@ Release 0.23.1 - Unreleased
|
|||
MAPREDUCE-3708. Metrics: Incorrect Apps Submitted Count (Bhallamudi via
|
||||
mahadev)
|
||||
|
||||
MAPREDUCE-3727. jobtoken location property in jobconf refers to wrong
|
||||
jobtoken file (tucu)
|
||||
|
||||
Release 0.23.0 - 2011-11-01
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -369,6 +369,12 @@ class JobSubmitter {
|
|||
conf.set(toFullPropertyName(queue,
|
||||
QueueACL.ADMINISTER_JOBS.getAclName()), acl.getAclString());
|
||||
|
||||
// removing jobtoken referrals before copying the jobconf to HDFS
|
||||
// as the tasks don't need this setting, actually they may break
|
||||
// because of it if present as the referral will point to a
|
||||
// different job.
|
||||
TokenCache.cleanUpTokenReferral(conf);
|
||||
|
||||
// Write job file to submit dir
|
||||
writeConf(conf, submitJobFile);
|
||||
|
||||
|
|
|
@ -79,7 +79,17 @@ public class TokenCache {
|
|||
}
|
||||
obtainTokensForNamenodesInternal(credentials, ps, conf);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Remove jobtoken referrals which don't make sense in the context
|
||||
* of the task execution.
|
||||
*
|
||||
* @param conf
|
||||
*/
|
||||
public static void cleanUpTokenReferral(Configuration conf) {
|
||||
conf.unset(MRJobConfig.MAPREDUCE_JOB_CREDENTIALS_BINARY);
|
||||
}
|
||||
|
||||
static void obtainTokensForNamenodesInternal(Credentials credentials,
|
||||
Path[] ps, Configuration conf) throws IOException {
|
||||
for(Path p: ps) {
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
package org.apache.hadoop.mapreduce.security;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNull;
|
||||
import static org.mockito.Matchers.any;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.times;
|
||||
|
@ -33,6 +35,7 @@ import org.apache.hadoop.conf.Configuration;
|
|||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.io.Text;
|
||||
import org.apache.hadoop.mapred.Master;
|
||||
import org.apache.hadoop.mapreduce.MRJobConfig;
|
||||
import org.apache.hadoop.security.Credentials;
|
||||
import org.apache.hadoop.security.token.Token;
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
|
@ -158,4 +161,13 @@ public class TestTokenCache {
|
|||
|
||||
return mockFs;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCleanUpTokenReferral() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
conf.set(MRJobConfig.MAPREDUCE_JOB_CREDENTIALS_BINARY, "foo");
|
||||
TokenCache.cleanUpTokenReferral(conf);
|
||||
assertNull(conf.get(MRJobConfig.MAPREDUCE_JOB_CREDENTIALS_BINARY));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue