HDFS-15668. RBF: Fix RouterRPCMetrics annocation and document misplaced error. Contributed by Hongbing Wang.
This commit is contained in:
parent
95c96605b3
commit
f1d5652359
@ -548,8 +548,8 @@ RouterRPCMetrics shows the statistics of the Router component in Router-based fe
|
||||
|:---- |:---- |
|
||||
| `ProcessingOp` | Number of operations the Router processed internally |
|
||||
| `ProxyOp` | Number of operations the Router proxied to a Namenode |
|
||||
| `ProxyOpFailureStandby` | Number of operations to fail to reach NN |
|
||||
| `ProxyOpFailureCommunicate` | Number of operations to hit a standby NN |
|
||||
| `ProxyOpFailureStandby` | Number of operations to hit a standby NN |
|
||||
| `ProxyOpFailureCommunicate` | Number of operations to fail to reach NN |
|
||||
| `ProxyOpNotImplemented` | Number of operations not implemented |
|
||||
| `RouterFailureStateStore` | Number of failed requests due to State Store unavailable |
|
||||
| `RouterFailureReadOnly` | Number of failed requests due to read only mount point |
|
||||
|
@ -50,9 +50,9 @@ public class FederationRPCMetrics implements FederationRPCMBean {
|
||||
@Metric("Number of operations the Router proxied to a Namenode")
|
||||
private MutableCounterLong proxyOp;
|
||||
|
||||
@Metric("Number of operations to fail to reach NN")
|
||||
private MutableCounterLong proxyOpFailureStandby;
|
||||
@Metric("Number of operations to hit a standby NN")
|
||||
private MutableCounterLong proxyOpFailureStandby;
|
||||
@Metric("Number of operations to fail to reach NN")
|
||||
private MutableCounterLong proxyOpFailureCommunicate;
|
||||
@Metric("Number of operations to hit a client overloaded Router")
|
||||
private MutableCounterLong proxyOpFailureClientOverloaded;
|
||||
|
Loading…
Reference in New Issue
Block a user