Description
The metrics (renewalFailures and renewalFailuresTotal) in the following code snippet are not printable.
metrics.renewalFailuresTotal.incr(); final long tgtEndTime = tgt.getEndTime().getTime(); LOG.warn("Exception encountered while running the renewal " + "command for {}. (TGT end time:{}, renewalFailures: {}," + "renewalFailuresTotal: {})", getUserName(), tgtEndTime, metrics.renewalFailures, metrics.renewalFailuresTotal, ie);
The output of the code is like the following:
2017-01-12 12:23:14,062 WARN security.UserGroupInformation (UserGroupInformation.java:run(1012)) - Exception encountered while running the renewal command for foo@EXAMPLE.COM. (TGT end time:1484252600000, renewalFailures: org.apache.hadoop.metrics2.lib.MutableGaugeInt@323aa7f9,renewalFailuresTotal: org.apache.hadoop.metrics2.lib.MutableGaugeLong@c8af058)
ExitCodeException exitCode=1: kinit: krb5_cc_get_principal: No credentials cache file found
Attachments
Issue Links
- breaks
-
HADOOP-13590 Retry until TGT expires even if the UGI renewal thread encountered exception
- Resolved