This is an automated email from the ASF dual-hosted git repository. ferhui pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push: new f1d5652 HDFS-15668. RBF: Fix RouterRPCMetrics annocation and document misplaced error. Contributed by Hongbing Wang. f1d5652 is described below commit f1d56523599bd94e594734440b90b5352bf8b4ee Author: Hui Fei <fer...@apache.org> AuthorDate: Tue Nov 10 13:07:22 2020 +0800 HDFS-15668. RBF: Fix RouterRPCMetrics annocation and document misplaced error. Contributed by Hongbing Wang. --- hadoop-common-project/hadoop-common/src/site/markdown/Metrics.md | 4 ++-- .../hadoop/hdfs/server/federation/metrics/FederationRPCMetrics.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/Metrics.md b/hadoop-common-project/hadoop-common/src/site/markdown/Metrics.md index 43a3f33..18d3263 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/Metrics.md +++ b/hadoop-common-project/hadoop-common/src/site/markdown/Metrics.md @@ -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 | diff --git a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/metrics/FederationRPCMetrics.java b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/metrics/FederationRPCMetrics.java index b16a6c0..dd92725 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/metrics/FederationRPCMetrics.java +++ b/hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/metrics/FederationRPCMetrics.java @@ -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; --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org