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:13 UTC

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

Branch: refs/heads/branch-1
Commit: c7e1d67df7cbf75ceabca76a558372c451e1b777
Parents: 8ea7a36
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:39:44 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/c7e1d67d/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 a29e9c8..5908359 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -1599,7 +1599,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/c7e1d67d/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 4071fed..18f9232 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
@@ -233,7 +233,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();