You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2017/01/23 06:59:49 UTC

incubator-hivemall git commit: Close #22: Reduced -Xmx and -MaxPermGen to avoid TravisCI build errors

Repository: incubator-hivemall
Updated Branches:
  refs/heads/master 2715bf0a3 -> d95f1e79d


Close #22: Reduced -Xmx and -MaxPermGen to avoid TravisCI build errors


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/d95f1e79
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/d95f1e79
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/d95f1e79

Branch: refs/heads/master
Commit: d95f1e79daa421d738bfe9e6dcc76c7230013406
Parents: 2715bf0
Author: Yuming Wang <wg...@gmail.com>
Authored: Mon Jan 23 15:58:09 2017 +0900
Committer: myui <yu...@gmail.com>
Committed: Mon Jan 23 15:58:09 2017 +0900

----------------------------------------------------------------------
 spark/spark-1.6/pom.xml | 4 ++--
 spark/spark-2.0/pom.xml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/d95f1e79/spark/spark-1.6/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-1.6/pom.xml b/spark/spark-1.6/pom.xml
index 2170ed6..98bff6b 100644
--- a/spark/spark-1.6/pom.xml
+++ b/spark/spark-1.6/pom.xml
@@ -33,7 +33,7 @@
 
 	<properties>
 		<PermGen>64m</PermGen>
-		<MaxPermGen>1024m</MaxPermGen>
+		<MaxPermGen>512m</MaxPermGen>
 		<CodeCacheSize>512m</CodeCacheSize>
 		<main.basedir>${project.parent.basedir}</main.basedir>
 	</properties>
@@ -225,7 +225,7 @@
 					<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
 					<junitxml>.</junitxml>
 					<filereports>SparkTestSuite.txt</filereports>
-					<argLine>-ea -Xmx3g -XX:MaxPermSize=${MaxPermGen} -XX:ReservedCodeCacheSize=${CodeCacheSize}</argLine>
+					<argLine>-ea -Xmx2g -XX:MaxPermSize=${MaxPermGen} -XX:ReservedCodeCacheSize=${CodeCacheSize}</argLine>
 					<stderr/>
 					<environmentVariables>
 						<SPARK_PREPEND_CLASSES>1</SPARK_PREPEND_CLASSES>

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/d95f1e79/spark/spark-2.0/pom.xml
----------------------------------------------------------------------
diff --git a/spark/spark-2.0/pom.xml b/spark/spark-2.0/pom.xml
index 95ffff2..f0937d7 100644
--- a/spark/spark-2.0/pom.xml
+++ b/spark/spark-2.0/pom.xml
@@ -33,7 +33,7 @@
 
 	<properties>
 		<PermGen>64m</PermGen>
-		<MaxPermGen>1024m</MaxPermGen>
+		<MaxPermGen>512m</MaxPermGen>
 		<CodeCacheSize>512m</CodeCacheSize>
 		<main.basedir>${project.parent.basedir}</main.basedir>
 	</properties>
@@ -233,7 +233,7 @@
 					<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
 					<junitxml>.</junitxml>
 					<filereports>SparkTestSuite.txt</filereports>
-					<argLine>-Xmx1024m -XX:MaxPermSize=${MaxPermGen} -XX:ReservedCodeCacheSize=${CodeCacheSize}</argLine>
+					<argLine>-ea -Xmx2g -XX:MaxPermSize=${MaxPermGen} -XX:ReservedCodeCacheSize=${CodeCacheSize}</argLine>
 					<stderr/>
 					<environmentVariables>
 						<SPARK_PREPEND_CLASSES>1</SPARK_PREPEND_CLASSES>