You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2015/05/17 04:01:01 UTC

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

Branch: refs/heads/0.98
Commit: 9e750369b0cfba95b5a60f6fcb7c4e14c706dd08
Parents: a110c2a
Author: Andrey Stepachev <oc...@gmail.com>
Authored: Thu May 14 13:08:04 2015 +0100
Committer: Andrew Purtell <ap...@apache.org>
Committed: Sat May 16 19:00:14 2015 -0700

----------------------------------------------------------------------
 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/9e750369/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 3fc2e8d..d24b88f 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
@@ -279,7 +279,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 = 60000;
 
   /** Used to construct the name of the log directory for a region server */
   public static final String HREGION_LOGDIR_NAME = "WALs";