Revert "HADOOP-17995. Stale record should be remove when DataNodePeerMetrics#dumpSendPacketDownstreamAvgInfoAsJson (#3630)" (#3697)
This commit is contained in:
parent
3d1ca6f6dc
commit
8e9ad2d7af
@ -179,11 +179,8 @@ public void snapshot(MetricsRecordBuilder builder, boolean all) {
|
||||
long totalCount = 0;
|
||||
|
||||
for (final SumAndCount sumAndCount : entry.getValue()) {
|
||||
if (Time.monotonicNow() - sumAndCount.getSnapshotTimeStamp()
|
||||
< recordValidityMs) {
|
||||
totalCount += sumAndCount.getCount();
|
||||
totalSum += sumAndCount.getSum();
|
||||
}
|
||||
totalCount += sumAndCount.getCount();
|
||||
totalSum += sumAndCount.getSum();
|
||||
}
|
||||
|
||||
if (totalCount != 0) {
|
||||
|
@ -122,16 +122,10 @@ public void testRemoveStaleRecord() throws Exception {
|
||||
GenericTestUtils.waitFor(
|
||||
() -> rollingAverages.getStats(numSamples).size() > 0, 500, 5000);
|
||||
assertEquals(3, rollingAverages.getStats(numSamples).size());
|
||||
String json = peerMetrics.dumpSendPacketDownstreamAvgInfoAsJson();
|
||||
for (String peerAddr : peerAddrList) {
|
||||
assertThat(json, containsString(peerAddr));
|
||||
}
|
||||
/* wait for stale report to be removed */
|
||||
GenericTestUtils.waitFor(
|
||||
() -> rollingAverages.getStats(numSamples).isEmpty(), 500, 10000);
|
||||
assertEquals(0, rollingAverages.getStats(numSamples).size());
|
||||
json = peerMetrics.dumpSendPacketDownstreamAvgInfoAsJson();
|
||||
assertEquals("{}", json);
|
||||
|
||||
/* dn can report peer metrics normally when it added back to cluster */
|
||||
for (String peerAddr : peerAddrList) {
|
||||
@ -144,10 +138,6 @@ public void testRemoveStaleRecord() throws Exception {
|
||||
GenericTestUtils.waitFor(
|
||||
() -> rollingAverages.getStats(numSamples).size() > 0, 500, 10000);
|
||||
assertEquals(3, rollingAverages.getStats(numSamples).size());
|
||||
json = peerMetrics.dumpSendPacketDownstreamAvgInfoAsJson();
|
||||
for (String peerAddr : peerAddrList) {
|
||||
assertThat(json, containsString(peerAddr));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user