You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org> on 2005/07/15 03:30:11 UTC

[jira] Created: (GERONIMO-761) Transient failures during full rebuild (OOM?)

Transient failures during full rebuild (OOM?)
---------------------------------------------

         Key: GERONIMO-761
         URL: http://issues.apache.org/jira/browse/GERONIMO-761
     Project: Geronimo
        Type: Bug
  Components: buildsystem  
    Versions: 1.0-M3    
    Reporter: Aaron Mulder


I can't often run a full "maven -o m:rebuild-all" and make it all the way through.  Usually, it dies around the time of the Geronimo assembly module.  The errors vary, but include:
 - bootstrap:bootstrap null
 - error in plugin script
A subsequent "maven -o" completes successfully (having it skip tests/itests to begin with also works), leading me to believe that somehow the amount of work starves the VM of something, probably memory, but slightly smaller quantities of work don't.  Though after the plugin error the next build complains about a bad plugin cache and has a lot of stack traces complaining about JEXL errors, but after that things are back to normal.

Someone reported a similar error to the user or dev list, but I think their message was still different from mine.

This happens to me on Linux (SuSE Pro 9.3) with JDK 1.4.2_08 and on Mac (OS X 10.4.1 and 10.4.2) with JDK 1.4.2_07.  I have not tried extending the Maven memory settings like we used to recommend for JDK 1.5.

I wonder if making more of the tests fork would help.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (GERONIMO-761) Transient failures during full rebuild (OOM?)

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-761?page=comments#action_12316152 ] 

Aaron Mulder commented on GERONIMO-761:
---------------------------------------

Could the plugin problem be caused by plugins generated by the M4 branch that are unavailable during a clean build of HEAD or vice versa?

> Transient failures during full rebuild (OOM?)
> ---------------------------------------------
>
>          Key: GERONIMO-761
>          URL: http://issues.apache.org/jira/browse/GERONIMO-761
>      Project: Geronimo
>         Type: Bug
>   Components: buildsystem
>     Versions: 1.0-M3
>     Reporter: Aaron Mulder

>
> I can't often run a full "maven -o m:rebuild-all" and make it all the way through.  Usually, it dies around the time of the Geronimo assembly module.  The errors vary, but include:
>  - bootstrap:bootstrap null
>  - error in plugin script
> A subsequent "maven -o" completes successfully (having it skip tests/itests to begin with also works), leading me to believe that somehow the amount of work starves the VM of something, probably memory, but slightly smaller quantities of work don't.  Though after the plugin error the next build complains about a bad plugin cache and has a lot of stack traces complaining about JEXL errors, but after that things are back to normal.
> Someone reported a similar error to the user or dev list, but I think their message was still different from mine.
> This happens to me on Linux (SuSE Pro 9.3) with JDK 1.4.2_08 and on Mac (OS X 10.4.1 and 10.4.2) with JDK 1.4.2_07.  I have not tried extending the Maven memory settings like we used to recommend for JDK 1.5.
> I wonder if making more of the tests fork would help.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (GERONIMO-761) Transient failures during full rebuild (OOM?)

Posted by "Dain Sundstrom (JIRA)" <de...@geronimo.apache.org>.
     [ http://issues.apache.org/jira/browse/GERONIMO-761?page=all ]
     
Dain Sundstrom closed GERONIMO-761:
-----------------------------------


> Transient failures during full rebuild (OOM?)
> ---------------------------------------------
>
>          Key: GERONIMO-761
>          URL: http://issues.apache.org/jira/browse/GERONIMO-761
>      Project: Geronimo
>         Type: Bug
>   Components: buildsystem
>     Versions: 1.0-M3
>     Reporter: Aaron Mulder
>      Fix For: 1.0-M3

>
> I can't often run a full "maven -o m:rebuild-all" and make it all the way through.  Usually, it dies around the time of the Geronimo assembly module.  The errors vary, but include:
>  - bootstrap:bootstrap null
>  - error in plugin script
> A subsequent "maven -o" completes successfully (having it skip tests/itests to begin with also works), leading me to believe that somehow the amount of work starves the VM of something, probably memory, but slightly smaller quantities of work don't.  Though after the plugin error the next build complains about a bad plugin cache and has a lot of stack traces complaining about JEXL errors, but after that things are back to normal.
> Someone reported a similar error to the user or dev list, but I think their message was still different from mine.
> This happens to me on Linux (SuSE Pro 9.3) with JDK 1.4.2_08 and on Mac (OS X 10.4.1 and 10.4.2) with JDK 1.4.2_07.  I have not tried extending the Maven memory settings like we used to recommend for JDK 1.5.
> I wonder if making more of the tests fork would help.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (GERONIMO-761) Transient failures during full rebuild (OOM?)

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-761?page=comments#action_12315906 ] 

Aaron Mulder commented on GERONIMO-761:
---------------------------------------

Adding memory options to my Maven startup script (MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m") did not solve the problem.  Still received:

BUILD FAILED
File...... /Users/ammulder/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
Element... maven:reactor
Line...... 217
Column.... 9
Error reading plugin script
Total time: 21 minutes 59 seconds
Finished at: Thu Jul 14 22:38:08 EDT 2005

Someone else reported the same problem, and turned off tests to work around it, but just running another partial build still works for me.

> Transient failures during full rebuild (OOM?)
> ---------------------------------------------
>
>          Key: GERONIMO-761
>          URL: http://issues.apache.org/jira/browse/GERONIMO-761
>      Project: Geronimo
>         Type: Bug
>   Components: buildsystem
>     Versions: 1.0-M3
>     Reporter: Aaron Mulder

>
> I can't often run a full "maven -o m:rebuild-all" and make it all the way through.  Usually, it dies around the time of the Geronimo assembly module.  The errors vary, but include:
>  - bootstrap:bootstrap null
>  - error in plugin script
> A subsequent "maven -o" completes successfully (having it skip tests/itests to begin with also works), leading me to believe that somehow the amount of work starves the VM of something, probably memory, but slightly smaller quantities of work don't.  Though after the plugin error the next build complains about a bad plugin cache and has a lot of stack traces complaining about JEXL errors, but after that things are back to normal.
> Someone reported a similar error to the user or dev list, but I think their message was still different from mine.
> This happens to me on Linux (SuSE Pro 9.3) with JDK 1.4.2_08 and on Mac (OS X 10.4.1 and 10.4.2) with JDK 1.4.2_07.  I have not tried extending the Maven memory settings like we used to recommend for JDK 1.5.
> I wonder if making more of the tests fork would help.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (GERONIMO-761) Transient failures during full rebuild (OOM?)

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
     [ http://issues.apache.org/jira/browse/GERONIMO-761?page=all ]
     
Aaron Mulder resolved GERONIMO-761:
-----------------------------------

    Fix Version: 1.0-M3
     Resolution: Fixed

plugin script issue is caused by switching between M4 and HEAD or vice versa -- the old version is left in the cache but removed from the repo, causing Maven to barf.  We might be able to avoid this by have the clean-repo target remove the cached plugins too?

Other problems don't seem to have recurred since bumping the memory settings.

> Transient failures during full rebuild (OOM?)
> ---------------------------------------------
>
>          Key: GERONIMO-761
>          URL: http://issues.apache.org/jira/browse/GERONIMO-761
>      Project: Geronimo
>         Type: Bug
>   Components: buildsystem
>     Versions: 1.0-M3
>     Reporter: Aaron Mulder
>      Fix For: 1.0-M3

>
> I can't often run a full "maven -o m:rebuild-all" and make it all the way through.  Usually, it dies around the time of the Geronimo assembly module.  The errors vary, but include:
>  - bootstrap:bootstrap null
>  - error in plugin script
> A subsequent "maven -o" completes successfully (having it skip tests/itests to begin with also works), leading me to believe that somehow the amount of work starves the VM of something, probably memory, but slightly smaller quantities of work don't.  Though after the plugin error the next build complains about a bad plugin cache and has a lot of stack traces complaining about JEXL errors, but after that things are back to normal.
> Someone reported a similar error to the user or dev list, but I think their message was still different from mine.
> This happens to me on Linux (SuSE Pro 9.3) with JDK 1.4.2_08 and on Mac (OS X 10.4.1 and 10.4.2) with JDK 1.4.2_07.  I have not tried extending the Maven memory settings like we used to recommend for JDK 1.5.
> I wonder if making more of the tests fork would help.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira