UserGroupInformation ugi = UserGroupInformation.createRemoteUser("root");
ugi.doAs(new PrivilegedExceptionAction<Void>() {
//implement run() method here - generally we submit the job in this block
public Void run(){
//submit the job in this block
}
});
1条答案
按热度按时间oprakyz71#
我尝试让hadoop以不同的用户身份执行mapreduce作业。
你可以试试类似的。。。