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

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

Repository: hbase
Updated Branches:
  refs/heads/branch-1 8ea7a364b -> c7e1d67df
  refs/heads/branch-1.3 b3a2a00af -> b88a03fb9
  refs/heads/branch-2 8ad76bbc8 -> 50d930113
  refs/heads/master d7febd54d -> 5cd7f630c


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/master
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();


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

Posted by el...@apache.org.
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();


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

Posted by el...@apache.org.
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();


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

Posted by el...@apache.org.
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/50d93011
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/50d93011
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/50d93011

Branch: refs/heads/branch-2
Commit: 50d930113672697eff6f3b9f35b6bbd35cfd6262
Parents: 8ad76bb
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:35:12 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/50d93011/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 1f8c2bf..1035c18 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -1769,7 +1769,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/50d93011/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();