Search in sources :

Example 1 with TGetDelegationTokenReq

use of org.apache.hive.service.rpc.thrift.TGetDelegationTokenReq in project hive by apache.

the class ThriftCLIServiceClient method getDelegationToken.

@Override
public String getDelegationToken(SessionHandle sessionHandle, HiveAuthFactory authFactory, String owner, String renewer) throws HiveSQLException {
    TGetDelegationTokenReq req = new TGetDelegationTokenReq(sessionHandle.toTSessionHandle(), owner, renewer);
    try {
        TGetDelegationTokenResp tokenResp = cliService.GetDelegationToken(req);
        checkStatus(tokenResp.getStatus());
        return tokenResp.getDelegationToken();
    } catch (Exception e) {
        throw new HiveSQLException(e);
    }
}
Also used : HiveSQLException(org.apache.hive.service.cli.HiveSQLException) TGetDelegationTokenReq(org.apache.hive.service.rpc.thrift.TGetDelegationTokenReq) TGetDelegationTokenResp(org.apache.hive.service.rpc.thrift.TGetDelegationTokenResp) HiveSQLException(org.apache.hive.service.cli.HiveSQLException) TException(org.apache.thrift.TException)

Example 2 with TGetDelegationTokenReq

use of org.apache.hive.service.rpc.thrift.TGetDelegationTokenReq in project hive by apache.

the class HiveConnection method getDelegationToken.

public String getDelegationToken(String owner, String renewer) throws SQLException {
    TGetDelegationTokenReq req = new TGetDelegationTokenReq(sessHandle, owner, renewer);
    try {
        TGetDelegationTokenResp tokenResp = client.GetDelegationToken(req);
        Utils.verifySuccess(tokenResp.getStatus());
        return tokenResp.getDelegationToken();
    } catch (TException e) {
        throw new SQLException("Could not retrieve token: " + e.getMessage(), " 08S01", e);
    }
}
Also used : TException(org.apache.thrift.TException) SQLException(java.sql.SQLException) TGetDelegationTokenReq(org.apache.hive.service.rpc.thrift.TGetDelegationTokenReq) TGetDelegationTokenResp(org.apache.hive.service.rpc.thrift.TGetDelegationTokenResp)

Aggregations

TGetDelegationTokenReq (org.apache.hive.service.rpc.thrift.TGetDelegationTokenReq)2 TGetDelegationTokenResp (org.apache.hive.service.rpc.thrift.TGetDelegationTokenResp)2 TException (org.apache.thrift.TException)2 SQLException (java.sql.SQLException)1 HiveSQLException (org.apache.hive.service.cli.HiveSQLException)1