You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by oc...@apache.org on 2015/06/02 12:00:15 UTC

[8/8] hbase git commit: HBASE-13647 Default value for hbase.client.operation.timeout is too high

HBASE-13647 Default value for hbase.client.operation.timeout is too high


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

Branch: refs/heads/branch-1.1.0
Commit: 6eefd87eb6408f0b85f2d0d442f89e7d95e6c00b
Parents: e860c66
Author: Andrey Stepachev <oc...@gmail.com>
Authored: Tue Jun 2 10:58:59 2015 +0100
Committer: Andrey Stepachev <oc...@gmail.com>
Committed: Tue Jun 2 10:59:38 2015 +0100

----------------------------------------------------------------------
 hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/6eefd87e/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index a2e36c4..dccc28c 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -280,7 +280,7 @@ public final class HConstants {
     "hbase.client.meta.operation.timeout";
 
   /** Default HBase client operation timeout, which is tantamount to a blocking call */
-  public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = Integer.MAX_VALUE;
+  public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT = 1200000;
 
   /** Used to construct the name of the log directory for a region server */
   public static final String HREGION_LOGDIR_NAME = "WALs";