From uima-user-return-1782-apmail-incubator-uima-user-archive=incubator.apache.org@incubator.apache.org Fri Dec 12 04:16:53 2008 Return-Path: Delivered-To: apmail-incubator-uima-user-archive@locus.apache.org Received: (qmail 10470 invoked from network); 12 Dec 2008 04:16:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Dec 2008 04:16:52 -0000 Received: (qmail 61986 invoked by uid 500); 12 Dec 2008 04:17:05 -0000 Delivered-To: apmail-incubator-uima-user-archive@incubator.apache.org Received: (qmail 61964 invoked by uid 500); 12 Dec 2008 04:17:05 -0000 Mailing-List: contact uima-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: uima-user@incubator.apache.org Delivered-To: mailing list uima-user@incubator.apache.org Received: (qmail 61952 invoked by uid 99); 12 Dec 2008 04:17:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Dec 2008 20:17:05 -0800 X-ASF-Spam-Status: No, hits=2.8 required=10.0 tests=HTML_MESSAGE,HTML_OBFUSCATE_05_10,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of dan.mccreary@gmail.com designates 209.85.146.183 as permitted sender) Received: from [209.85.146.183] (HELO wa-out-1112.google.com) (209.85.146.183) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2008 04:16:44 +0000 Received: by wa-out-1112.google.com with SMTP id l24so597731waf.12 for ; Thu, 11 Dec 2008 20:16:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:mime-version:content-type; bh=pk8GuF1mGGqmkIr9dKBnQ9/yEUkear1dPjbhqTDdboM=; b=C/3xR8mgn1Fv+iHHT0tY1edG3eqpr8AaBoks3trnxSWdPplThNg3Nnu7d6UsjV8y6C WEaGOHEhxmTUOlMsRJ7w8aELwmkpsSjGbQOotLUs61iPd0SCSMjMsCeG9iScEiM8DTx9 FL7VWh6qzYa2yT2HFhWStVyYtv6utzlftRXN0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:mime-version:content-type; b=KwBJ96fulFZ4YoV8Fv1PWfUDMR8xSuRs3aOOdaK3FU7M98uU2b6ORQZqBrj7gT308N natr/Q5bZUvudZu/tb8euZYgKfZIVKLmB1CrgrAlLWlCHodIlCyqtG8sAgyeSIB/+wac SwxCkHVGlF3QUxik44swI/cwlryD0wQxDyKqI= Received: by 10.115.32.1 with SMTP id k1mr2406433waj.66.1229055382973; Thu, 11 Dec 2008 20:16:22 -0800 (PST) Received: by 10.114.121.9 with HTTP; Thu, 11 Dec 2008 20:16:22 -0800 (PST) Message-ID: Date: Thu, 11 Dec 2008 22:16:22 -0600 From: "Dan McCreary" Reply-To: dan@danmccreary.com To: uima-user@incubator.apache.org Subject: Getting UIMA to run on 64bit VISTA MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_104369_311683.1229055382974" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_104369_311683.1229055382974 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi UIMA people, Here is the change I made to get UIMA Applications to work under my Microsoft VISTA. It turned out to be very simple. I found that VISTA crashed the Java VM if it did not have enough heap space memory. I suspect that this is due to a process not checking to see if memory was available. To change this all I had to do was run the following: In the file UIMA_HOME/bin/setUimaClassPath.bat change the following line: from @if "%UIMA_JVM_OPTS%"=="" set UIMA_JVM_OPTS=-Xms128M -Xmx*800M* to @if "%UIMA_JVM_OPTS%"=="" set UIMA_JVM_OPTS=-Xms128M -Xmx*1600M * I think that this changes the amount of heap available to *be 1.6GB* not just* .8GM. *We have also been trying to recompile all the sources under VISTA. We have changed the VM parameter in the uimaj-core pom file at: /project/build/plugins/plugin/configuration/argLine from Xmx*800*M to be Xmx*1600*M Special thanks to Loren Cahlander for helping me figure this out.* *We found this by noting that the tests did have Java heap space errors. We are still working on trying to get all the tests to run on VISTA. - Dan* * -- Dan McCreary Senior Enterprise Data Architecture and Strategy Consulting (952) 931-9198 cell: (612) 986-1552 dan@danmccreary.com http://www.danmccreary.com ------=_Part_104369_311683.1229055382974--