Return-Path: X-Original-To: apmail-openmeetings-commits-archive@www.apache.org Delivered-To: apmail-openmeetings-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 E2F64DF1E for ; Sat, 16 Mar 2013 18:20:16 +0000 (UTC) Received: (qmail 55659 invoked by uid 500); 16 Mar 2013 18:20:16 -0000 Delivered-To: apmail-openmeetings-commits-archive@openmeetings.apache.org Received: (qmail 55617 invoked by uid 500); 16 Mar 2013 18:20:16 -0000 Mailing-List: contact commits-help@openmeetings.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openmeetings.apache.org Delivered-To: mailing list commits@openmeetings.apache.org Received: (qmail 55299 invoked by uid 99); 16 Mar 2013 18:20:15 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Mar 2013 18:20:15 +0000 Date: Sat, 16 Mar 2013 18:20:15 +0000 (UTC) From: "Marius van Voorden (JIRA)" To: commits@openmeetings.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (OPENMEETINGS-569) Faulty highperf settings in bat script MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/OPENMEETINGS-569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13604337#comment-13604337 ] Marius van Voorden commented on OPENMEETINGS-569: ------------------------------------------------- I want to add a patch to this, since it would be trivial. But for the life of me, I can't find the damn script anywhere in the source! > Faulty highperf settings in bat script > -------------------------------------- > > Key: OPENMEETINGS-569 > URL: https://issues.apache.org/jira/browse/OPENMEETINGS-569 > Project: Openmeetings > Issue Type: Bug > Affects Versions: 2.0 Apache Incubator Release, 2.1 Apache Release > Environment: Windows > Reporter: Marius van Voorden > Priority: Minor > Fix For: 2.0 Apache Incubator Release, 2.1 Apache Release > > Original Estimate: 0h > Remaining Estimate: 0h > > The current red5-highperf.bat has the following java options: > set JAVA_OPTS= -Xmx768m -Xms256 -Xmn512m -Xss256k -XX:+AggressiveOpts -XX:+DisableExplicitGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:SurvivorRatio=16 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -Djava.net.preferIPv4Stack=true > There are two issues: > Xms256 is missing an "m" > Xms needs to be larger than or equal to Xmn > Suggested fix: > set JAVA_OPTS= -Xmx768m -Xms512m -Xmn512m -Xss256k -XX:+AggressiveOpts -XX:+DisableExplicitGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:SurvivorRatio=16 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -Djava.net.preferIPv4Stack=true -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira