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

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

Introduction

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

Prototype

@Public
@Stable
public abstract String getKind();

Source Link

Document

Get the token kind.

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  ww .ja  va2  s . c  o  m
    amrmToken.setService(ClientRMProxy.getAMRMTokenService(getConfig()));
}