92

As of today, my maven compile fails.

[INFO] [ERROR] Unexpected
[INFO] java.lang.OutOfMemoryError: Java heap space
[INFO]  at java.util.Arrays.copyOfRange(Arrays.java:2694)
[INFO]  at java.lang.String.<init>(String.java:203)
[INFO]  at java.lang.String.substring(String.java:1877)

[ERROR] Out of memory; to increase the amount of memory, use the -Xmx flag at startup (java -Xmx128M ...)

As of yesterday I had successfully run a maven compile.

As of today, I just bumped up my heap to 3 GB. Also, I only changed 2-3 minor lines of code, so I don't understand this 'out of memory' error.

vagrant@dev:/vagrant/workspace$ echo $MAVEN_OPTS
-Xms1024m -Xmx3000m -Dmaven.surefire.debug=-Xmx3000m

EDIT: I tried the poster's comment by changing my failed module's pom.xml. But I got the same maven build error.

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.5</source>
            <target>1.5</target>
            <fork>true</fork>
            <meminitial>1024m</meminitial>
            <maxmem>2024m</maxmem>
       </configuration>
    </plugin>
A_Di-Matteo
  • 23,746
  • 7
  • 79
  • 112
Kevin Meredith
  • 38,251
  • 58
  • 190
  • 340
  • 1
    Could you provide more of the stacktrace? I'm curious to see what might be causing a String initialization to run out of memory. Setting heap size in MAVEN_OPTS sounds like the way to go but my guess is that somewhere there is a ridiculously large String that you might just not be allocating enough for `-Xmx`. – Edward Samson Sep 27 '12 at 06:24

14 Answers14

142

What kind of 'web' module are you talking about? Is it a simple war and has packaging type war?

If you are not using Google's web toolkit (GWT) then you don't need to provide any gwt.extraJvmArgs

Forking the compile process might be not the best idea, because it starts a second process which ignores MAVEN_OPTS altogether, thus making analysis more difficult.

So I would try to increase the Xmx by setting the MAVEN_OPTS

export MAVEN_OPTS="-Xmx3000m"

And don't fork the compiler to a different process

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.5</source>
        <target>1.5</target>
   </configuration>
</plugin>

Increasing -XX:MaxPermSize=512m should not be required because if perm size is the reason of the problem, then I would expect the error java.lang.OutOfMemoryError: PermGen space

If that does not solve your problem, then you can create heap dumps for further analysis by adding -XX:+HeapDumpOnOutOfMemoryError. Additionally, you can use jconsole.exe in your java bin directory to connect to the jvm while the compilation is running and see what is going on inside the jvm's heap.

Another Idea (may be a stupid one) which came up to me, do you have enough RAM inside your machine? Defining the memory size is nice, but if your host has only 4GB and then you might have the problem that Java is not able to use the defined Memory because it is already used by the OS, Java, MS-Office...

TwiN
  • 2,887
  • 1
  • 16
  • 29
vach
  • 1,735
  • 1
  • 10
  • 7
  • thanks for your reply. Does your suggestion to remove the forked JVM also apply for the 'maven-surefire-plugin?' I tried your suggestion to bump up my MAVEN_OPTS memory to 3000. My maven-compiler did not have a setting for a forked JVM, so I did not need to change anything there. And yes, my Guest VM has 4 GB of RAM. The host machine has 8 GB RAM. – Kevin Meredith Sep 24 '12 at 12:43
  • 2
    by the way, the mvn build failed again with your suggestions. – Kevin Meredith Sep 24 '12 at 12:53
  • 1
    Usually I try to avoid process forking as long as I don't get it running. If your system has only 4GB then ~1 GB is used by OS. So you have 3GB rest. If maven starts with Xms=1GB then rest of free Memory is 2GB. Next the compiler fork started with Xms=1GB .... that reduces the free memory to 1GB. Now you can substract PermGen Memory 128MB, the forked failsafe-plugin process, ... As you can see your Xmx setting most probably could never be used be the JVM since the memory is simple not free. Have you tried using JConsole? and HeapDumpOnOutOfMemoryError? – vach Sep 24 '12 at 14:40
  • I removed the Xms1024m from my MAVEN_OPTS, yet the mvn build still failed. I added the "HeapDump..." to my MAVEN_OPTS, but I'm not sure where the dump gets printed. Looking into JConsole now. – Kevin Meredith Sep 24 '12 at 15:30
  • Dumps are plces in the jvms directory – vach Sep 24 '12 at 20:28
  • No results for vagrant@dev:~/bin/jdk1.7.0_07$ find /home/vagrant/bin/jdk1.7.0_07 -name "jvms" -type d... Any idea where else it could live? Thanks – Kevin Meredith Sep 25 '12 at 14:57
  • I mean jvm's directory. The installation directory of the java used to trigger the maven build. – vach Sep 25 '12 at 19:16
  • Would you happen to know the name of the file? Also, by installation directory, do you mean my JAVA_HOME? – Kevin Meredith Sep 25 '12 at 20:47
  • I cd'd to $JAVA_HOME, and then ran this command, vagrant@dev:~/bin/jdk1.7.0_07$ ls -Rl | grep "Sep". But I got no results, so I conclude that no log was created. – Kevin Meredith Sep 26 '12 at 01:51
  • Actually, I ran jconsole. Maven has a java process. Maven spawned another java process when compiling the maven module that's responsible for killing my build. However, when the build died, both java processes were using roughly 500 and 300 MB, respectively. That's well below the max mem values I configured. – Kevin Meredith Sep 26 '12 at 16:02
  • Then there must be another java process forked while the build is running. – vach Sep 26 '12 at 18:00
37

Answering late to mention yet another option rather than the common MAVEN_OPTS environment variable to pass to the Maven build the required JVM options.

Since Maven 3.3.1, you could have an .mvn folder as part of the concerned project and a jvm.config file as perfect place for such an option.

two new optional configuration files .mvn/jvm.config and .mvn/maven.config, located at the base directory of project source tree. If present, these files will provide default jvm and maven options. Because these files are part of the project source tree, they will be present in all project checkouts and will be automatically used every time the project is build.

As part of the official release notes

In Maven it is not simple to define JVM configuration on a per project base. The existing mechanism based on an environment variable MAVEN_OPTS and the usage of ${user.home}/.mavenrc is an other option with the drawback of not being part of the project.

Starting with this release you can define JVM configuration via ${maven.projectBasedir}/.mvn/jvm.config file which means you can define the options for your build on a per project base. This file will become part of your project and will be checked in along with your project. So no need anymore for MAVEN_OPTS, .mavenrc files. So for example if you put the following JVM options into the ${maven.projectBasedir}/.mvn/jvm.config file:

-Xmx2048m -Xms1024m -XX:MaxPermSize=512m -Djava.awt.headless=true

The main advantage of this approach is that the configuration is isolated to the concerned project and applied to the whole build as well, and less fragile than MAVEN_OPTS for other developers working on the same project (forgetting to setting it).
Moreover, the options will be applied to all modules in case of a multi-module project.

Community
  • 1
  • 1
A_Di-Matteo
  • 23,746
  • 7
  • 79
  • 112
14

I got same problem trying to compile "clean install" using a Lowend 512Mb ram VPS and good CPU. Run OutOfMemory and killed script repeatly.

I used export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=350m" and worked.

Still getting some other compiling failure because is the first time i need Maven, but OutOfMemory problem has gone.

m3nda
  • 1,725
  • 2
  • 29
  • 40
11

Add option

-XX:MaxPermSize=512m

to MAVEN_OPTS

maven-compiler-plugin options

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.5.1</version>
    <configuration>
      <fork>true</fork>
      <meminitial>1024m</meminitial>
      <maxmem>2024m</maxmem>
    </configuration>
  </plugin>
Ilya
  • 27,538
  • 18
  • 104
  • 148
  • 2
    I actually added the option, -XX:MaxPermSize=1024m, after making this post. But I still got an out of memory error. Another SO post mentioned that I need to add an option to maven-surefire-plugin's argLine to bump up the memory used by forked threads. I increased it to -Xms256m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=512m – Kevin Meredith Sep 19 '12 at 17:08
  • I should've mentioned that... No, the maven build still failed. – Kevin Meredith Sep 19 '12 at 17:13
  • Add all this properties to `maven-compilier-plugin` and increase `-XX:MaxPermSize`, `Xmx` should be = `XX:MaxPermSize` – Ilya Sep 20 '12 at 16:18
  • Also use option true in `maven-compilier-plugin` – Ilya Sep 20 '12 at 16:23
  • I tried that (please see original post), but my mvn build still failed. – Kevin Meredith Sep 20 '12 at 17:38
  • Run build without tests... `mvn clean install -Dmaven.test.skip=true` – Ilya Sep 20 '12 at 17:46
  • Same error... [INFO] [ERROR] Unexpected [INFO] java.lang.OutOfMemoryError: Java heap space [INFO] at java.util.Arrays.copyOfRange(Arrays.java:2694) – Kevin Meredith Sep 20 '12 at 17:56
  • run with `--debug` option and get tail of log with StackTrace. OutOfMemory in copyOfRange it's interesting – Ilya Sep 20 '12 at 18:10
  • Actually, I saw this: https://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException --> means that my POM file might be configured incorrectly. But why do I also see an Out of Memory problem? – Kevin Meredith Sep 20 '12 at 18:29
  • run maven with aditional opt `-Dgwt.extraJvmArgs=` and args like for JVM (`Xmx`, `MaxPermSise`, etc) – Ilya Sep 20 '12 at 18:39
  • `mvn clean install -Dgwt.extraJvmArgs=-Xms1024m -Xmx1024m` or `mvn clean install -Dgwt.extraJvmArgs="-Xms1024m -Xmx1024m"` – Ilya Sep 20 '12 at 18:41
  • I tried your options, but I still got out of memory errors. Also, the end of my mvn build says, "http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException." I grabbed the failed module's pom.xml from a co-worker. His pom.xml file should be good. Now I'm curious whether I have a bad pom.xml file or an out of memory problem... – Kevin Meredith Sep 20 '12 at 19:33
  • Try build each child module and then `mvn package` on parent – Ilya Sep 20 '12 at 19:35
  • You said ` I only changed 2-3 minor lines of code`. If you revert this lines, do you get outofmemory? – Ilya Sep 20 '12 at 19:36
  • After I reverted all of my changes, I still got the out of memory and mojoExecutor errors. I'm trying to build each child module now. – Kevin Meredith Sep 20 '12 at 19:56
  • I successfully compiled all modules except for the 'web' module. This mvn build failed due to the same "out of memory" error as when I tried to build all packages together. Note: to build a module individually, I used >mvn install -pl -am -DskipTests=true -Dmaven.test.skip=true – Kevin Meredith Sep 21 '12 at 15:00
  • MaxPermSize is deprecated, shold have no effect on newer JDKs. `OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in 8.0` – Hannes Schneidermayer Dec 10 '20 at 11:04
5

I got same problem when compiling Druid.io, increasing the MaxDirectMemorySize finally worked.

export MAVEN_OPTS="-Xms8g -Xmx8g -XX:MaxDirectMemorySize=4096m"
hahakubile
  • 5,202
  • 4
  • 25
  • 18
  • Curious, MaxDirectMemorySize is ostensibly unbounded by default (i.e. you added a limit, not adjusted a preexisting one). – Tomer Gabel Jun 18 '17 at 11:04
5
_JAVA_OPTIONS="-Xmx3G" mvn clean install
Suraj Rao
  • 28,186
  • 10
  • 88
  • 94
DeviceManager
  • 61
  • 1
  • 2
4

This below configuration working in my case

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>${maven-surefire-plugin.version}</version>
    <configuration>
        <verbose>true</verbose>
        <fork>true</fork>
        <argLine>-XX:MaxPermSize=500M</argLine>
    </configuration>
</plugin>

Try to use -XX:MaxPermSize instead of -XX:MaxPermGen

Narayan Yerrabachu
  • 1,486
  • 1
  • 13
  • 27
3

What type of OS are you running on?

In order to assign more than 2GB of ram it needs to be at least a 64bit OS.

Then there is another problem. Even if your OS has Unlimited RAM, but that is fragmented in a way that not a single free block of 2GB is available, you'll get out of memory exceptions too. And keep in mind that the normal Heap memory is only part of the memory the VM process is using. So on a 32bit machine you will probably never be able to set Xmx to 2048MB.

I would also suggest to set min an max memory to the same value, because in this case as soon as the VM runs out of memory the frist time 1GB is allocated from the start, the VM then allocates a new block (assuming it increases with 500MB blocks) of 1,5GB after that is allocated, it would copy all the stuff from block one to the new one and free Memory after that. If it runs out of Memory again the 2GB are allocated and the 1,5 GB are then copied, temporarily allocating 3,5GB of memory.

Christofer Dutz
  • 2,275
  • 1
  • 21
  • 31
2

While building the project on Unix/Linux platform, set Maven options syntax as below. Notice that single qoutation signs, not double qoutation.

export MAVEN_OPTS='-Xmx512m -XX:MaxPermSize=128m'
ÖMER TAŞCI
  • 458
  • 4
  • 7
0

Using .mvn/jvm.config worked for me plus has the added benefit of being linked with the project.

colinbes
  • 339
  • 2
  • 13
0

This happens in big projects on Windows when cygwin or other linux emulator is used(git bash). By some coincidence, both does not work on my project, what is an big open source project. In a sh script, a couple of mvn commands are called. The memory size grows to heap size bigger that specified in Xmx and most of the time in a case second windows process is started. This is making the memory consumption even higher.

The solution in this case is to use batch file and reduced Xmx size and then the maven operations are successful. If there is interest I can reveal more details.

zhrist
  • 799
  • 5
  • 21
0

Someone has already mentioned the problem with the 32 bit OS. In my case the problem was that I was compiling with 32 bit JDK.

user2046211
  • 316
  • 1
  • 4
  • 20
0

Increasing the memory size in the environment variable 'MAVEN_OPTS' will help resolve this issue. For me, increasing from -Xmx756M to -Xmx1024M worked.

Nidhi
  • 1
  • 1
0

Need to install jar files as well so that build can save memory in getting local jars.

Below command work for me after trying all those "MAVEN_OPTS" environment variable.

run "mvn clean install -U" on terminal from the root folder of the project.