Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3E62117694 for ; Tue, 2 Jun 2015 09:59:08 +0000 (UTC) Received: (qmail 12746 invoked by uid 500); 2 Jun 2015 09:59:08 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 12706 invoked by uid 500); 2 Jun 2015 09:59:08 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 12697 invoked by uid 99); 2 Jun 2015 09:59:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2015 09:59:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AC834DFF4C; Tue, 2 Jun 2015 09:59:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: octo47@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-13647 Default value for hbase.client.operation.timeout is too high Date: Tue, 2 Jun 2015 09:59:07 +0000 (UTC) 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 Authored: Tue Jun 2 10:58:59 2015 +0100 Committer: Andrey Stepachev 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";