Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

* TokenNotFoundException 

 

DescribeTokenRequest
Code Block
DescribeTokenRequest => 


DescribeTokenResponse

Code Block
DelegationTokenResponse => ErrorCode [TokenDetails]
  ErrorCode => INT16
  TokenDetails => Owner IssueDateMs ExpiryDateMs TokenId HMAC [Renewer]
    Owner => String
    IssueDateMs  => INT64
    ExpiryDateMs => INT64
    TokenId => String 
    HMAC => bytes
    Renewer => String

Field

Description

Owner

Kakfa Principal which requested the delegation token

IssueDateMs

timestamp (in msec) when this token was generated. Unit is milliseconds since beginning of the epoch (midnight Jan 1, 1970 (UTC)).

ExpiryDateMs

timestamp (in msec) at which this token expires. Unit is milliseconds since beginning of the epoch (midnight Jan 1, 1970 (UTC)).

TokenId

Sequence number to ensure uniqueness 

HMAC
Keyed-hash message authentication code
Renewer
Renewers list
Possible Error Codes
* DelegationTokenDisabledException
Configuration options

The following options will be added to KafkaConfig.java and can be configured as properties for Kafka server:

...