You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by el...@apache.org on 2017/07/25 22:45:14 UTC

[4/4] 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/b88a03fb
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b88a03fb
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b88a03fb

Branch: refs/heads/branch-1.3
Commit: b88a03fb9ca192cb7da836726cbda44d13b691db
Parents: b3a2a00
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:42:52 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/b88a03fb/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 6a20895..e28f355 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -1545,7 +1545,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/b88a03fb/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 b6fc5bd..5d6df74 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
@@ -232,7 +232,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 Counter requestCount = new Counter();