当前位置: 首页>>代码示例>>Java>>正文


Java GetDelegationTokenResponse类代码示例

本文整理汇总了Java中org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse的典型用法代码示例。如果您正苦于以下问题:Java GetDelegationTokenResponse类的具体用法?Java GetDelegationTokenResponse怎么用?Java GetDelegationTokenResponse使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


GetDelegationTokenResponse类属于org.apache.hadoop.mapreduce.v2.api.protocolrecords包,在下文中一共展示了GetDelegationTokenResponse类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponseProto getDelegationToken(
    RpcController controller, GetDelegationTokenRequestProto proto)
    throws ServiceException {
  GetDelegationTokenRequest request = new GetDelegationTokenRequestPBImpl(proto);
  try {
    GetDelegationTokenResponse response = real.getDelegationToken(request);
    return ((GetDelegationTokenResponsePBImpl)response).getProto();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:13,代码来源:MRClientProtocolPBServiceImpl.java

示例2: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponse getDelegationToken(
    GetDelegationTokenRequest request) throws IOException {
  GetDelegationTokenRequestProto requestProto = ((GetDelegationTokenRequestPBImpl)
      request).getProto();
  try {
    return new GetDelegationTokenResponsePBImpl(proxy.getDelegationToken(
        null, requestProto));
  } catch (ServiceException e) {
    throw unwrapAndThrowException(e);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:13,代码来源:MRClientProtocolPBClientImpl.java

示例3: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponse getDelegationToken(
    GetDelegationTokenRequest request) throws IOException {

  UserGroupInformation ugi = UserGroupInformation.getCurrentUser();

  // Verify that the connection is kerberos authenticated
    if (!isAllowedDelegationTokenOp()) {
      throw new IOException(
          "Delegation Token can be issued only with kerberos authentication");
    }

  GetDelegationTokenResponse response = recordFactory.newRecordInstance(
      GetDelegationTokenResponse.class);

  String user = ugi.getUserName();
  Text owner = new Text(user);
  Text realUser = null;
  if (ugi.getRealUser() != null) {
    realUser = new Text(ugi.getRealUser().getUserName());
  }
  MRDelegationTokenIdentifier tokenIdentifier =
      new MRDelegationTokenIdentifier(owner, new Text(
        request.getRenewer()), realUser);
  Token<MRDelegationTokenIdentifier> realJHSToken =
      new Token<MRDelegationTokenIdentifier>(tokenIdentifier,
          jhsDTSecretManager);
  org.apache.hadoop.yarn.api.records.Token mrDToken =
      org.apache.hadoop.yarn.api.records.Token.newInstance(
        realJHSToken.getIdentifier(), realJHSToken.getKind().toString(),
        realJHSToken.getPassword(), realJHSToken.getService().toString());
  response.setDelegationToken(mrDToken);
  return response;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:35,代码来源:HistoryClientService.java

示例4: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponse getDelegationToken(
    GetDelegationTokenRequest request) throws IOException {
  throw new IOException("MR AM not authorized to issue delegation" +
  		" token");
}
 
开发者ID:naver,项目名称:hadoop,代码行数:7,代码来源:MRClientService.java

示例5: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponse getDelegationToken(
    GetDelegationTokenRequest request) throws IOException {
  /* Should not be invoked by anyone. */
  throw new NotImplementedException();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:7,代码来源:NotRunningJob.java

示例6: testHistoryServerToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Test(timeout=20000)
public void testHistoryServerToken() throws Exception {
  //Set the master principal in the config
  conf.set(YarnConfiguration.RM_PRINCIPAL,"[email protected]");

  final String masterPrincipal = Master.getMasterPrincipal(conf);

  final MRClientProtocol hsProxy = mock(MRClientProtocol.class);
  when(hsProxy.getDelegationToken(any(GetDelegationTokenRequest.class))).thenAnswer(
      new Answer<GetDelegationTokenResponse>() {
        public GetDelegationTokenResponse answer(InvocationOnMock invocation) {
          GetDelegationTokenRequest request =
              (GetDelegationTokenRequest)invocation.getArguments()[0];
          // check that the renewer matches the cluster's RM principal
          assertEquals(masterPrincipal, request.getRenewer() );

          org.apache.hadoop.yarn.api.records.Token token =
              recordFactory.newRecordInstance(org.apache.hadoop.yarn.api.records.Token.class);
          // none of these fields matter for the sake of the test
          token.setKind("");
          token.setService("");
          token.setIdentifier(ByteBuffer.allocate(0));
          token.setPassword(ByteBuffer.allocate(0));
          GetDelegationTokenResponse tokenResponse =
              recordFactory.newRecordInstance(GetDelegationTokenResponse.class);
          tokenResponse.setDelegationToken(token);
          return tokenResponse;
        }
      });
  
  UserGroupInformation.createRemoteUser("someone").doAs(
      new PrivilegedExceptionAction<Void>() {
        @Override
        public Void run() throws Exception {
          yarnRunner = new YARNRunner(conf, null, null);
          yarnRunner.getDelegationTokenFromHS(hsProxy);
          verify(hsProxy).
            getDelegationToken(any(GetDelegationTokenRequest.class));
          return null;
        }
      });
}
 
开发者ID:naver,项目名称:hadoop,代码行数:43,代码来源:TestYARNRunner.java

示例7: getDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Override
public GetDelegationTokenResponse getDelegationToken(
    GetDelegationTokenRequest request) throws IOException {
  return null;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:6,代码来源:TestRPCFactories.java

示例8: testGetHSDelegationToken

import org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse; //导入依赖的package包/类
@Test(timeout=20000)
public void testGetHSDelegationToken() throws Exception {
  try {
    Configuration conf = new Configuration();

    // Setup mock service
    InetSocketAddress mockRmAddress = new InetSocketAddress("localhost", 4444);
    Text rmTokenSevice = SecurityUtil.buildTokenService(mockRmAddress);

    InetSocketAddress mockHsAddress = new InetSocketAddress("localhost", 9200);
    Text hsTokenSevice = SecurityUtil.buildTokenService(mockHsAddress);

    // Setup mock rm token
    RMDelegationTokenIdentifier tokenIdentifier = new RMDelegationTokenIdentifier(
        new Text("owner"), new Text("renewer"), new Text("real"));
    Token<RMDelegationTokenIdentifier> token = new Token<RMDelegationTokenIdentifier>(
        new byte[0], new byte[0], tokenIdentifier.getKind(), rmTokenSevice);
    token.setKind(RMDelegationTokenIdentifier.KIND_NAME);

    // Setup mock history token
    org.apache.hadoop.yarn.api.records.Token historyToken =
        org.apache.hadoop.yarn.api.records.Token.newInstance(new byte[0],
          MRDelegationTokenIdentifier.KIND_NAME.toString(), new byte[0],
          hsTokenSevice.toString());
    GetDelegationTokenResponse getDtResponse =
        Records.newRecord(GetDelegationTokenResponse.class);
    getDtResponse.setDelegationToken(historyToken);

    // mock services
    MRClientProtocol mockHsProxy = mock(MRClientProtocol.class);
    doReturn(mockHsAddress).when(mockHsProxy).getConnectAddress();
    doReturn(getDtResponse).when(mockHsProxy).getDelegationToken(
        any(GetDelegationTokenRequest.class));

    ResourceMgrDelegate rmDelegate = mock(ResourceMgrDelegate.class);
    doReturn(rmTokenSevice).when(rmDelegate).getRMDelegationTokenService();

    ClientCache clientCache = mock(ClientCache.class);
    doReturn(mockHsProxy).when(clientCache).getInitializedHSProxy();

    Credentials creds = new Credentials();

    YARNRunner yarnRunner = new YARNRunner(conf, rmDelegate, clientCache);

    // No HS token if no RM token
    yarnRunner.addHistoryToken(creds);
    verify(mockHsProxy, times(0)).getDelegationToken(
        any(GetDelegationTokenRequest.class));

    // No HS token if RM token, but secirity disabled.
    creds.addToken(new Text("rmdt"), token);
    yarnRunner.addHistoryToken(creds);
    verify(mockHsProxy, times(0)).getDelegationToken(
        any(GetDelegationTokenRequest.class));

    conf.set(CommonConfigurationKeys.HADOOP_SECURITY_AUTHENTICATION,
        "kerberos");
    UserGroupInformation.setConfiguration(conf);
    creds = new Credentials();

    // No HS token if no RM token, security enabled
    yarnRunner.addHistoryToken(creds);
    verify(mockHsProxy, times(0)).getDelegationToken(
        any(GetDelegationTokenRequest.class));

    // HS token if RM token present, security enabled
    creds.addToken(new Text("rmdt"), token);
    yarnRunner.addHistoryToken(creds);
    verify(mockHsProxy, times(1)).getDelegationToken(
        any(GetDelegationTokenRequest.class));

    // No additional call to get HS token if RM and HS token present
    yarnRunner.addHistoryToken(creds);
    verify(mockHsProxy, times(1)).getDelegationToken(
        any(GetDelegationTokenRequest.class));
  } finally {
    // Back to defaults.
    UserGroupInformation.setConfiguration(new Configuration());
  }
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:81,代码来源:TestYARNRunner.java


注:本文中的org.apache.hadoop.mapreduce.v2.api.protocolrecords.GetDelegationTokenResponse类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。