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 3BC8C200B85 for ; Thu, 15 Sep 2016 17:58:52 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3A5B0160ADC; Thu, 15 Sep 2016 15:58:52 +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 88940160ABA for ; Thu, 15 Sep 2016 17:58:51 +0200 (CEST) Received: (qmail 85706 invoked by uid 500); 15 Sep 2016 15:58:50 -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 85693 invoked by uid 99); 15 Sep 2016 15:58:50 -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; Thu, 15 Sep 2016 15:58:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9D8DFE0159; Thu, 15 Sep 2016 15:58:50 +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: Thu, 15 Sep 2016 15:58:50 -0000 Message-Id: <93260f9b37b149c29bc5a76a710c4724@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/5] ignite git commit: nio balance archived-at: Thu, 15 Sep 2016 15:58:52 -0000 Repository: ignite Updated Branches: refs/heads/ignite-comm-balance [created] 5ebb7ebb9 nio balance Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/07392611 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/07392611 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/07392611 Branch: refs/heads/ignite-comm-balance Commit: 073926115d53e9b42908e597a9ed9f61a042c348 Parents: acc890a Author: sboikov Authored: Thu Sep 15 13:13:38 2016 +0300 Committer: sboikov Committed: Thu Sep 15 13:13:38 2016 +0300 ---------------------------------------------------------------------- .../java/org/apache/ignite/internal/util/nio/GridNioServer.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/07392611/modules/core/src/main/java/org/apache/ignite/internal/util/nio/GridNioServer.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/util/nio/GridNioServer.java b/modules/core/src/main/java/org/apache/ignite/internal/util/nio/GridNioServer.java index ccd0ae4..52df65b 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/util/nio/GridNioServer.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/util/nio/GridNioServer.java @@ -106,6 +106,9 @@ public class GridNioServer { private static final int WRITE_BUF_LIMIT = GridNioSessionMetaKey.nextUniqueKey(); /** */ + private static final boolean NIO_SES_BALANCE_ENABLED = IgniteSystemProperties.getBoolean("IGNITE_NIO_SES_BALANCE_ENABLED", true); + + /** */ private static final boolean DISABLE_KEYSET_OPTIMIZATION = IgniteSystemProperties.getBoolean(IgniteSystemProperties.IGNITE_NO_SELECTOR_OPTS);