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/f7c3a3dd Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f7c3a3dd Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f7c3a3dd Branch: refs/heads/hbase-12439 Commit: f7c3a3dd55c6adae51840d052434f8daf64b269c Parents: 94937dd Author: Andrey Stepachev <[email protected]> Authored: Thu May 14 13:08:04 2015 +0100 Committer: Andrey Stepachev <[email protected]> Committed: Thu May 14 13:08:04 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/f7c3a3dd/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 9bf3e51..fdd9e92 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 @@ -284,7 +284,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";
