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

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

Repository: hbase
Updated Branches:
  refs/heads/master 841c7cf26 -> 56166b669


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

Branch: refs/heads/master
Commit: 56166b669e366ada53359f82b5bf6654f5387b63
Parents: 841c7cf
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:58:59 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/56166b66/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 80c1268..674ef6e 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
@@ -281,7 +281,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";