HBASE-22562 Remove dead code: skipControl

Signed-off-by: Reid Chan <reidchan@apache.org>
This commit is contained in:
Josh Elser 2019-06-12 19:15:14 -04:00
parent b7f60bc87f
commit 3d64cf1203
3 changed files with 0 additions and 23 deletions

View File

@ -143,13 +143,4 @@ public class PressureAwareCompactionThroughputController extends PressureAwareTh
+ throughputDesc(getMaxThroughput()) + ", activeCompactions=" + activeOperations.size()
+ "]";
}
@Override
protected boolean skipControl(long deltaSize, long controlSize) {
if (deltaSize < controlSize) {
return true;
} else {
return false;
}
}
}

View File

@ -128,10 +128,4 @@ public class PressureAwareFlushThroughputController extends PressureAwareThrough
return "DefaultFlushController [maxThroughput=" + throughputDesc(getMaxThroughput())
+ ", activeFlushNumber=" + activeOperations.size() + "]";
}
@Override
protected boolean skipControl(long deltaSize, long controlSize) {
// for flush, we control the flow no matter whether the flush size is small
return false;
}
}

View File

@ -137,14 +137,6 @@ public abstract class PressureAwareThroughputController extends Configured imple
return sleepTime;
}
/**
* Check whether to skip control given delta size and control size
* @param deltaSize Delta size since last control
* @param controlSize Size limit to perform control
* @return a boolean indicates whether to skip this control
*/
protected abstract boolean skipControl(long deltaSize, long controlSize);
@Override
public void finish(String opName) {
ActiveOperation operation = activeOperations.remove(opName);