MAPREDUCE-6565. Configuration to use host name in delegation token service is not read from job.xml during MapReduce job execution. Contributed by Li Lu.
This commit is contained in:
parent
6d8b4f6c27
commit
8f6e14399a
@ -78,6 +78,8 @@ public static void main(String[] args) throws Throwable {
|
|||||||
// Initing with our JobConf allows us to avoid loading confs twice
|
// Initing with our JobConf allows us to avoid loading confs twice
|
||||||
Limits.init(job);
|
Limits.init(job);
|
||||||
UserGroupInformation.setConfiguration(job);
|
UserGroupInformation.setConfiguration(job);
|
||||||
|
// MAPREDUCE-6565: need to set configuration for SecurityUtil.
|
||||||
|
SecurityUtil.setConfiguration(job);
|
||||||
|
|
||||||
String host = args[0];
|
String host = args[0];
|
||||||
int port = Integer.parseInt(args[1]);
|
int port = Integer.parseInt(args[1]);
|
||||||
|
@ -123,6 +123,7 @@
|
|||||||
import org.apache.hadoop.mapreduce.v2.util.MRWebAppUtil;
|
import org.apache.hadoop.mapreduce.v2.util.MRWebAppUtil;
|
||||||
import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
|
import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
|
||||||
import org.apache.hadoop.security.Credentials;
|
import org.apache.hadoop.security.Credentials;
|
||||||
|
import org.apache.hadoop.security.SecurityUtil;
|
||||||
import org.apache.hadoop.security.UserGroupInformation;
|
import org.apache.hadoop.security.UserGroupInformation;
|
||||||
import org.apache.hadoop.security.token.Token;
|
import org.apache.hadoop.security.token.Token;
|
||||||
import org.apache.hadoop.service.AbstractService;
|
import org.apache.hadoop.service.AbstractService;
|
||||||
@ -1690,6 +1691,8 @@ protected static void initAndStartAppMaster(final MRAppMaster appMaster,
|
|||||||
final JobConf conf, String jobUserName) throws IOException,
|
final JobConf conf, String jobUserName) throws IOException,
|
||||||
InterruptedException {
|
InterruptedException {
|
||||||
UserGroupInformation.setConfiguration(conf);
|
UserGroupInformation.setConfiguration(conf);
|
||||||
|
// MAPREDUCE-6565: need to set configuration for SecurityUtil.
|
||||||
|
SecurityUtil.setConfiguration(conf);
|
||||||
// Security framework already loaded the tokens into current UGI, just use
|
// Security framework already loaded the tokens into current UGI, just use
|
||||||
// them
|
// them
|
||||||
Credentials credentials =
|
Credentials credentials =
|
||||||
|
Loading…
Reference in New Issue
Block a user