You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2018/05/22 22:10:37 UTC

hbase git commit: HBASE-20486 Change default throughput controller to PressureAwareThroughputController

Repository: hbase
Updated Branches:
  refs/heads/branch-1 210b90604 -> 6d1aa2800


HBASE-20486 Change default throughput controller to PressureAwareThroughputController

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/6d1aa280
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/6d1aa280
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/6d1aa280

Branch: refs/heads/branch-1
Commit: 6d1aa2800bdd772c23a5ffb396ee02a8f5d6403e
Parents: 210b906
Author: Xu Cang <xc...@salesforce.com>
Authored: Mon May 21 17:39:40 2018 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Tue May 22 12:43:31 2018 -0700

----------------------------------------------------------------------
 .../throttle/CompactionThroughputControllerFactory.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/6d1aa280/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/throttle/CompactionThroughputControllerFactory.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/throttle/CompactionThroughputControllerFactory.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/throttle/CompactionThroughputControllerFactory.java
index d7e567f..74b9012 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/throttle/CompactionThroughputControllerFactory.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/throttle/CompactionThroughputControllerFactory.java
@@ -37,7 +37,7 @@ public final class CompactionThroughputControllerFactory {
   }
 
   private static final Class<? extends ThroughputController>
-      DEFAULT_THROUGHPUT_CONTROLLER_CLASS = NoLimitThroughputController.class;
+      DEFAULT_THROUGHPUT_CONTROLLER_CLASS = PressureAwareCompactionThroughputController.class;
 
   // for backward compatibility and may not be supported in the future
   private static final String DEPRECATED_NAME_OF_PRESSURE_AWARE_THROUGHPUT_CONTROLLER_CLASS =