Example usage for org.apache.hadoop.yarn.api.records Token setService

List of usage examples for org.apache.hadoop.yarn.api.records Token setService

Introduction

In this page you can find the example usage for org.apache.hadoop.yarn.api.records Token setService.

Prototype

@Private
    @Unstable
    public abstract void setService(String service);

Source Link

Usage

From source file:disAMS.AMRMClient.Impl.AMRMClientImpl.java

License:Apache License

private void updateAMRMToken(Token token) throws IOException {
    org.apache.hadoop.security.token.Token<AMRMTokenIdentifier> amrmToken = new org.apache.hadoop.security.token.Token<AMRMTokenIdentifier>(
            token.getIdentifier().array(), token.getPassword().array(), new Text(token.getKind()),
            new Text(token.getService()));
    // Preserve the token service sent by the RM when adding the token
    // to ensure we replace the previous token setup by the RM.
    // Afterwards we can update the service address for the RPC layer.
    UserGroupInformation currentUGI = UserGroupInformation.getCurrentUser();
    currentUGI.addToken(amrmToken);/*from   w  w  w .ja v  a  2  s .  co m*/
    amrmToken.setService(ClientRMProxy.getAMRMTokenService(getConfig()));
}