YARN-6112. UpdateCallDuration is calculated only when debug logging is enabled. (Yufei Gu via kasha)

This commit is contained in:
Karthik Kambatla 2017-02-09 13:09:32 -08:00
parent 5fb723bb77
commit 9b85053583
2 changed files with 0 additions and 12 deletions

View File

@ -50,9 +50,6 @@ public class FSOpDurations implements MetricsSource {
@Metric("Duration for a update thread run")
MutableRate updateThreadRun;
@Metric("Duration for an update call")
MutableRate updateCall;
@Metric("Duration for a preempt call")
MutableRate preemptCall;
@ -87,7 +84,6 @@ public class FSOpDurations implements MetricsSource {
continuousSchedulingRun.setExtended(isExtended);
nodeUpdateCall.setExtended(isExtended);
updateThreadRun.setExtended(isExtended);
updateCall.setExtended(isExtended);
preemptCall.setExtended(isExtended);
INSTANCE.isExtended = isExtended;
@ -110,10 +106,6 @@ public class FSOpDurations implements MetricsSource {
updateThreadRun.add(value);
}
public void addUpdateCallDuration(long value) {
updateCall.add(value);
}
public void addPreemptCallDuration(long value) {
preemptCall.add(value);
}

View File

@ -350,7 +350,6 @@ public class FairScheduler extends
protected void update() {
try {
writeLock.lock();
long start = getClock().getTime();
FSQueue rootQueue = queueMgr.getRootQueue();
@ -373,9 +372,6 @@ public class FairScheduler extends
rootMetrics.getAvailableVirtualCores()) +
" Demand: " + rootQueue.getDemand());
}
long duration = getClock().getTime() - start;
fsOpDurations.addUpdateCallDuration(duration);
}
} finally {
writeLock.unlock();