HADOOP-14166. Reset the DecayRpcScheduler AvgResponseTime metric to zero when queue is not used. Contributed by Surendra Singh Lilhore.

This commit is contained in:
Brahma Reddy Battula 2017-05-25 01:27:13 +08:00
parent b7a0c0e701
commit dcf4559ebd
1 changed files with 2 additions and 0 deletions

View File

@ -618,6 +618,8 @@ void updateAverageResponseTime(boolean enableDecay) {
} else {
responseTimeAvgInLastWindow.set(i, averageResponseTime);
}
} else {
responseTimeAvgInLastWindow.set(i, 0);
}
responseTimeCountInLastWindow.set(i, responseTimeCount);
if (LOG.isDebugEnabled()) {