[ krysalis-Bugs-808773 ] HotSpot Virtual Machine Error

"SourceForge.net" <[email protected]>
Newsgroups gmane.comp.krysalis.devel
Message-ID <[email protected]>
Bugs item #808773, was opened at 2003-09-18 11:24
Message generated for change (Settings changed) made by chalko
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=423515&aid=808773&group_id=36516

Category: site
Group: unspecified
>Status: Closed
>Resolution: Out of Date
Priority: 5
Submitted By: Bharat (bxg018400)
Assigned to: Nobody/Anonymous (nobody)
Summary: HotSpot Virtual Machine Error

Initial Comment:
I am using Centipede (automated build system).

I run a multithread application which has to process the 
big data in the memory. But I got two error messages. 
Anybody knows when and what may cause the followng 
error? 

-site:
Deleting 
directory /app/ci/views/sample_proj2/dummy_vob/proj/bu
ild/sample_proj2/work/forrest
Created 
dir: /app/ci/views/sample_proj2/dummy_vob/proj/build/sa
mple_proj2/work/forrest
Copying 79 files 
to /app/ci/views/sample_proj2/dummy_vob/proj/build/sam
ple_proj2/forrest/site
Copied 1 empty directory 
to /app/ci/views/sample_proj2/dummy_vob/proj/build/sam
ple_proj2/forrest/site
Created 
dir: /app/ci/views/sample_proj2/dummy_vob/proj/build/sa
mple_proj2/forrest/site/skin/images
Copying 22 files 
to /app/ci/views/sample_proj2/dummy_vob/proj/build/sam
ple_proj2/forrest/site/skin/images
Copying 3 files 
to /app/ci/views/sample_proj2/dummy_vob/proj/build/sam
ple_proj2/forrest/site/skin
Copied 2 empty directories 
to /app/ci/views/sample_proj2/dummy_vob/proj/build/sam
ple_proj2/forrest/site/skin

Setup...#
# HotSpot Virtual Machine Error, Unexpected Signal 11
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 4F533F534F4C415249530E435050079A 01
#
# Problematic Thread: prio=5 tid=0x2a570 nid=0x1 
runnable 
#

BUILD FAILED
file:///app/ci/metrics/forrest/forrest.build.xml:557: Java 
returned: 6

Total time: 14 seconds
Java Result: 1

HERE IS WHAT MY TARGET IN forrest.build.xml is:

&lt;target name=&quot;-site&quot; depends=&quot;init, -prepare-classpath&quot;
     if=&quot;project.content.present&quot;&gt;
    &lt;!-- clean out the temp space, if we don't cocoon 
fails on this
         actually clears the cache, not yet clear why it is 
really needed? --&gt;
    &lt;delete dir=&quot;${project.work-dir}&quot;/&gt;
    &lt;mkdir dir=&quot;${project.work-dir}&quot;/&gt;

    &lt;parallel&gt;

      &lt;java classname=&quot;org.apache.cocoon.Main&quot;
        fork=&quot;true&quot;
        dir=&quot;.&quot;
        failonerror=&quot;true&quot;
        classpathref=&quot;forrest.cp&quot;&gt;
        &lt;jvmarg value=&quot;-Xmx1500m&quot;/&gt;
		&lt;!--jvmarg value=&quot;-verbose:gc&quot;/--
&gt;    
        &lt;jvmarg
          value=&quot;-
Djava.endorsed.dirs=${forrest.home}/lib/endorsed${path.
separator}${java.endorsed.dirs}&quot;/&gt;
        &lt;arg value=&quot;-c${project.ctxt-dir}&quot;/&gt;   &lt;!-- input 
to the process --&gt;
        &lt;arg value=&quot;-d${project.site-dir}&quot;/&gt;   &lt;!-- output 
to be put --&gt;
        &lt;arg value=&quot;-w${project.work-dir}&quot;/&gt;   &lt;!-- temp 
dir to use for e.g. cache --&gt;
        &lt;arg value=&quot;-u${project.debuglevel}&quot;/&gt; &lt;!-- 
threshold for log messages --&gt;
        &lt;arg value=&quot;-C${project.ctxt-dir}/WEB-
INF/cocoon.xconf&quot;/&gt;      &lt;!-- cocoon.xconf file to use --
&gt;
        &lt;arg value=&quot;-b${project.brokenlinkfile}&quot;/&gt;  &lt;!-- 
output list of broken links --&gt;
        &lt;arg value=&quot;-k${project.ctxt-dir}/WEB-
INF/logkit.xconf&quot;/&gt;  &lt;!-- output list of broken links --&gt;
        &lt;arg value=&quot;${project.start-uri}&quot;/&gt;              &lt;!-- 
starting page --&gt;
        &lt;arg value=&quot;-V&quot; /&gt;                          &lt;!-- be 
verbose --&gt;
        &lt;arg value=&quot;-server&quot;/&gt;
        &lt;arg value=&quot;-
Xrunhprof:heap=all,file=/app/ci/metrics/javaheap.txt&quot;/&gt;
      &lt;/java&gt;
      &lt;sequential&gt;
        &lt;!-- 
        | Copy all non-xdocs content across, as we 
cannot rely on crawling to
        | discover the whole URI space.  Note: we are 
emulating the sitemap here;
        | please ensure they keep in synch.
        --&gt;
        &lt;property name=&quot;skindir&quot; location=&quot;${project.ctxt-
dir}/skins/${project.skin}&quot;/&gt;
        &lt;copy toDir=&quot;${project.site-dir}&quot; filtering=&quot;false&quot;
          overwrite=&quot;true&quot; failonerror=&quot;false&quot;&gt;
          &lt;fileset dir=&quot;${project.ctxt-dir}/content&quot;&gt;
            &lt;exclude name=&quot;xdocs/**&quot;/&gt;
          &lt;/fileset&gt;
          &lt;fileset dir=&quot;${project.ctxt-dir}/resources&quot; 
includes=&quot;images&quot;/&gt;
        &lt;/copy&gt;

        &lt;!-- Copy skin images --&gt;
        &lt;mkdir dir=&quot;${project.site-dir}/skin/images&quot;/&gt;
        &lt;copy toDir=&quot;${project.site-dir}/skin/images&quot; 
filtering=&quot;false&quot; overwrite=&quot;true&quot;
          failonerror=&quot;false&quot;&gt;
          &lt;fileset dir=&quot;${skindir}/images&quot;/&gt;
        &lt;/copy&gt;

        &lt;!-- Copy all other non-resource files --&gt;
        &lt;copy toDir=&quot;${project.site-dir}/skin&quot; 
filtering=&quot;false&quot;
          overwrite=&quot;true&quot;
          failonerror=&quot;false&quot;&gt;
          &lt;mapper type=&quot;flatten&quot;/&gt;
          &lt;fileset dir=&quot;${skindir}&quot;&gt;
            &lt;exclude name=&quot;images/**&quot;/&gt;
            &lt;exclude name=&quot;xslt/**&quot;/&gt;
          &lt;/fileset&gt;
        &lt;/copy&gt;

      &lt;/sequential&gt;
    &lt;/parallel&gt;
    &lt;echo&gt;
------------------------------
Static site generated at:
  ${project.site-dir}

Please check the file
${project.brokenlinkfile}
for any broken links in the generated site.
------------------------------
    &lt;/echo&gt;
  &lt;/target&gt;


----------------------------------------------------------------------

Comment By: Nick Chalko (chalko)
Date: 2003-09-18 13:48

Message:
Logged In: YES 
user_id=27898

Not much we can do about a JVM error, are you using the
latest version.  Report the error to sun.
Also why are you running forrest in parallel with copy of
other files to the site dir?


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=423515&aid=808773&group_id=36516


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.