Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-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 19181D3C7 for ; Mon, 10 Sep 2012 22:13:34 +0000 (UTC) Received: (qmail 15083 invoked by uid 500); 10 Sep 2012 22:13:32 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 14993 invoked by uid 500); 10 Sep 2012 22:13:32 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 14703 invoked by uid 99); 10 Sep 2012 22:13:32 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2012 22:13:32 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BFDB83530F; Mon, 10 Sep 2012 22:13:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: xedin@apache.org To: commits@cassandra.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [12/13] git commit: Bump stack to 180k. Patch by brandonwilliams reviewed by jbellis for CASSANDRA-4631 Message-Id: <20120910221331.BFDB83530F@tyr.zones.apache.org> Date: Mon, 10 Sep 2012 22:13:31 +0000 (UTC) Bump stack to 180k. Patch by brandonwilliams reviewed by jbellis for CASSANDRA-4631 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/567146e4 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/567146e4 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/567146e4 Branch: refs/heads/trunk Commit: 567146e49201259f8c51dc7c84cbb8717e3c60c1 Parents: 76e092b Author: Brandon Williams Authored: Fri Sep 7 10:59:56 2012 -0500 Committer: Brandon Williams Committed: Fri Sep 7 11:01:59 2012 -0500 ---------------------------------------------------------------------- conf/cassandra-env.sh | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/567146e4/conf/cassandra-env.sh ---------------------------------------------------------------------- diff --git a/conf/cassandra-env.sh b/conf/cassandra-env.sh index 6fa37ed..95760dd 100644 --- a/conf/cassandra-env.sh +++ b/conf/cassandra-env.sh @@ -184,12 +184,8 @@ if [ "`uname`" = "Linux" ] ; then # thread-per-client. (Best practice is for client connections to # be pooled anyway.) Only do so on Linux where it is known to be # supported. - if startswith "$JVM_VERSION" '1.7.' - then - JVM_OPTS="$JVM_OPTS -Xss180k" - else - JVM_OPTS="$JVM_OPTS -Xss160k" - fi + # u34 and greater need 180k + JVM_OPTS="$JVM_OPTS -Xss180k" fi echo "xss = $JVM_OPTS"