Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 60BAA200CA6 for ; Mon, 29 May 2017 11:30:29 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5F70B160BD6; Mon, 29 May 2017 09:30:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id AAD07160BCE for ; Mon, 29 May 2017 11:30:28 +0200 (CEST) Received: (qmail 78575 invoked by uid 500); 29 May 2017 09:30:27 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 78566 invoked by uid 99); 29 May 2017 09:30:27 -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; Mon, 29 May 2017 09:30:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B3A11E03B3; Mon, 29 May 2017 09:30:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Mon, 29 May 2017 09:30:29 -0000 Message-Id: In-Reply-To: <70b94f8c5c2343de9129eba3de987430@git.apache.org> References: <70b94f8c5c2343de9129eba3de987430@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/24] ignite git commit: TcpCommunicationSpi: increased default idle timeout. archived-at: Mon, 29 May 2017 09:30:29 -0000 TcpCommunicationSpi: increased default idle timeout. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8a6bc9e6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8a6bc9e6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8a6bc9e6 Branch: refs/heads/ignite-5075-cc Commit: 8a6bc9e61677e3b1b75684233a4693921e991db7 Parents: d911848 Author: sboikov Authored: Fri May 26 12:07:40 2017 +0300 Committer: sboikov Committed: Fri May 26 12:07:40 2017 +0300 ---------------------------------------------------------------------- .../apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8a6bc9e6/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java index 5ec9a6e..2e35c6e 100755 --- a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java +++ b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java @@ -267,8 +267,8 @@ public class TcpCommunicationSpi extends IgniteSpiAdapter implements Communicati /** Default port which node sets listener for shared memory connections (value is 48100). */ public static final int DFLT_SHMEM_PORT = -1; - /** Default idle connection timeout (value is 30000ms). */ - public static final long DFLT_IDLE_CONN_TIMEOUT = 30000; + /** Default idle connection timeout (value is 10min). */ + public static final long DFLT_IDLE_CONN_TIMEOUT = 10 * 60_000; /** Default socket send and receive buffer size. */ public static final int DFLT_SOCK_BUF_SIZE = 32 * 1024;