Skip to content

Commit

Permalink
HADOOP-18364. All method metrics related to the RPC protocol should b…
Browse files Browse the repository at this point in the history
…e initialized. (#4624). Contributed by Shuyan Zhang.

Reviewed-by: Erik Krogen <xkrogen@apache.org>
Reviewed-by: Chao Sun <sunchao@apache.org>
Signed-off-by: He Xiaoqiao <hexiaoqiao@apache.org>
  • Loading branch information
zhangshuyan0 authored Aug 4, 2022
1 parent 8eebf40 commit dbf73e1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void init(Class<?> protocol) {
return;
}
protocolCache.add(protocol);
for (Method method : protocol.getDeclaredMethods()) {
for (Method method : protocol.getMethods()) {
String name = method.getName();
LOG.debug(name);
addMetricIfNotExists(name);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
import java.util.EnumSet;
import java.util.List;
import java.util.Random;

import org.apache.hadoop.hdfs.server.namenode.NameNodeRpcServer;
import org.apache.hadoop.ipc.metrics.RpcDetailedMetrics;
import org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableList;

import org.slf4j.Logger;
Expand Down Expand Up @@ -1128,4 +1131,14 @@ public void testEditLogTailing() throws Exception {
}

}

@Test
public void testNNRPCMetricIntegrity() {
RpcDetailedMetrics metrics =
((NameNodeRpcServer) cluster.getNameNode()
.getRpcServer()).getClientRpcServer().getRpcDetailedMetrics();
MetricsRecordBuilder rb = getMetrics(metrics.name());
// CommitBlockSynchronizationNumOps should exist.
assertCounter("CommitBlockSynchronizationNumOps", 0L, rb);
}
}

0 comments on commit dbf73e1

Please sign in to comment.