You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2019/03/31 13:19:00 UTC

[zeppelin] branch master updated: [HOTFIX] Increase memory for maven-surefire-plugin to avoid OOM

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a8667c  [HOTFIX] Increase memory for maven-surefire-plugin to avoid OOM
1a8667c is described below

commit 1a8667c655bb848fd2d07e1fe94092190454a5dd
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sun Mar 31 15:06:04 2019 +0800

    [HOTFIX] Increase memory for maven-surefire-plugin to avoid OOM
---
 spark/interpreter/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark/interpreter/pom.xml b/spark/interpreter/pom.xml
index 9a35057..d32e3bd 100644
--- a/spark/interpreter/pom.xml
+++ b/spark/interpreter/pom.xml
@@ -460,7 +460,7 @@
         <configuration>
           <forkCount>1</forkCount>
           <reuseForks>false</reuseForks>
-          <argLine>-Xmx1536m -XX:MaxPermSize=256m</argLine>
+          <argLine>-Xmx2048m -XX:MaxPermSize=256m</argLine>
           <excludes>
             <exclude>**/SparkRInterpreterTest.java</exclude>
             <exclude>${pyspark.test.exclude}</exclude>