You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/07/29 23:52:07 UTC

[29/47] hbase git commit: HBASE-18023 Update row threshold warning from 1k to 5k (addendum)

HBASE-18023 Update row threshold warning from 1k to 5k (addendum)


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

Branch: refs/heads/HBASE-18426
Commit: 5cd7f630c21c32b183ec23adcfcd16595d7e72a3
Parents: d7febd5
Author: Josh Elser <el...@apache.org>
Authored: Tue Jul 25 11:56:03 2017 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Tue Jul 25 18:27:53 2017 -0400

----------------------------------------------------------------------
 hbase-common/src/main/resources/hbase-default.xml                  | 2 +-
 .../java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5cd7f630/hbase-common/src/main/resources/hbase-default.xml
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml
index c4148a1..87a36c1 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -1770,7 +1770,7 @@ possible configurations would overwhelm and obscure the important.
    </property>
    <property>
     <name>hbase.rpc.rows.warning.threshold</name>
-    <value>1000</value>
+    <value>5000</value>
     <description>
       Number of rows in a batch operation above which a warning will be logged.
     </description>

http://git-wip-us.apache.org/repos/asf/hbase/blob/5cd7f630/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
index d84c5e2..e881882 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
@@ -258,7 +258,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
   /**
    * Default value of {@link RSRpcServices#BATCH_ROWS_THRESHOLD_NAME}
    */
-  static final int BATCH_ROWS_THRESHOLD_DEFAULT = 1000;
+  static final int BATCH_ROWS_THRESHOLD_DEFAULT = 5000;
 
   // Request counter. (Includes requests that are not serviced by regions.)
   final LongAdder requestCount = new LongAdder();