From commits-return-7797-archive-asf-public=cust-asf.ponee.io@trafodion.apache.org Sat Jun 16 19:09:39 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 128BC1807FA for ; Sat, 16 Jun 2018 19:09:33 +0200 (CEST) Received: (qmail 4873 invoked by uid 500); 16 Jun 2018 17:09:33 -0000 Mailing-List: contact commits-help@trafodion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@trafodion.apache.org Delivered-To: mailing list commits@trafodion.apache.org Received: (qmail 4108 invoked by uid 99); 16 Jun 2018 17:09:32 -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; Sat, 16 Jun 2018 17:09:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F3585E11CF; Sat, 16 Jun 2018 17:09:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sureshs@apache.org To: commits@trafodion.apache.org Date: Sat, 16 Jun 2018 17:10:15 -0000 Message-Id: In-Reply-To: <08c34b2c44164fae8ff4de2af25fadbf@git.apache.org> References: <08c34b2c44164fae8ff4de2af25fadbf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [45/50] [abbrv] trafodion git commit: Increased cluster size limit to 1536 nodes. Increased cluster size limit to 1536 nodes. Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/4d05071b Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/4d05071b Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/4d05071b Branch: refs/heads/master Commit: 4d05071b4828d071a7319e32c3235415217c6507 Parents: 1b228a9 Author: Zalo Correa Authored: Mon Jun 4 11:57:45 2018 -0700 Committer: Zalo Correa Committed: Mon Jun 4 11:57:45 2018 -0700 ---------------------------------------------------------------------- core/sqf/export/include/trafconf/trafconfig.h | 2 +- core/sqf/sql/scripts/sqnodes.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/4d05071b/core/sqf/export/include/trafconf/trafconfig.h ---------------------------------------------------------------------- diff --git a/core/sqf/export/include/trafconf/trafconfig.h b/core/sqf/export/include/trafconf/trafconfig.h index 4661840..7888910 100644 --- a/core/sqf/export/include/trafconf/trafconfig.h +++ b/core/sqf/export/include/trafconf/trafconfig.h @@ -50,7 +50,7 @@ #define TC_PERSIST_KEY_MAX 64 #define TC_PERSIST_VALUE_MAX 4096 #define TC_PERSIST_KEYS_VALUE_MAX 4096 -#define TC_NODES_MAX 1024 // This can be higher when needed and +#define TC_NODES_MAX 1536 // This can be higher when needed and // will have performance implications // in the monitor process. // NOTE: Must increment by 64, see http://git-wip-us.apache.org/repos/asf/trafodion/blob/4d05071b/core/sqf/sql/scripts/sqnodes.pm ---------------------------------------------------------------------- diff --git a/core/sqf/sql/scripts/sqnodes.pm b/core/sqf/sql/scripts/sqnodes.pm index 0d09565..c0dc0fa 100644 --- a/core/sqf/sql/scripts/sqnodes.pm +++ b/core/sqf/sql/scripts/sqnodes.pm @@ -279,10 +279,10 @@ sub verifyParse displayStmt($stmtOk); print " Error: node-id not specified\n"; } - elsif ($nodeId > 1023) + elsif ($nodeId > 1535) { displayStmt($stmtOk); - print " Error: node-id must be in the range 0..1023.\n"; + print " Error: node-id must be in the range 0..1535.\n"; } if (@cores == 0) {