You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ba...@apache.org on 2021/10/18 23:41:36 UTC

[systemds] branch master updated (d08996a -> d140659)

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

baunsgaard pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git.


    from d08996a  [SYSTEMDS-3173] Fix Prod instruction
     new 797c0e4  [MINOR] Change github actions tests runner memory allocation
     new d140659  [MINOR] Set safer lower number of threads in tests

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/entrypoint.sh | 2 ++
 pom.xml              | 5 ++---
 2 files changed, 4 insertions(+), 3 deletions(-)

[systemds] 01/02: [MINOR] Change github actions tests runner memory allocation

Posted by ba...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 797c0e4a1e557f63bf2b902955077dd3ef01a59b
Author: baunsgaard <ba...@tugraz.at>
AuthorDate: Tue Oct 19 01:37:31 2021 +0200

    [MINOR] Change github actions tests runner memory allocation
---
 docker/entrypoint.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index 192c701..706bdbf 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -24,6 +24,8 @@
 
 cd /github/workspace
 
+export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"
+
 log="/tmp/sysdstest.log"
 mvn -ntp test-compile 2>&1 | grep -E "BUILD|Total time:|---|Building SystemDS"
 mvn -ntp test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=$1 2>&1 | grep -v "already exists in destination." | tee $log

[systemds] 02/02: [MINOR] Set safer lower number of threads in tests

Posted by ba...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d14065994b56414185f520a41d0c17c05601ca36
Author: baunsgaard <ba...@tugraz.at>
AuthorDate: Tue Oct 19 01:39:16 2021 +0200

    [MINOR] Set safer lower number of threads in tests
    
    In some cases of test execution we still run out of memory,
    to reduce the likelihood this commit further reduce the memory budget
    of individual forks to 3 GB and reduce the parallelization to 2.
    
    For local test execution this also seems fine, since many of the tests
    use parallel instructions as well, utilizing the CPU.
---
 pom.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f54ed8a..e9933f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,7 +53,7 @@
 		<rerun.failing.tests.count>2</rerun.failing.tests.count>
 		<jacoco.skip>true</jacoco.skip>
 		<automatedtestbase.outputbuffering>false</automatedtestbase.outputbuffering>
-		<argLine>-Xms3300m -Xmx3300m -Xmn330m</argLine>
+		<argLine>-Xms3000m -Xmx3000m -Xmn300m</argLine>
 		<enableStats>false</enableStats>
 	</properties>
 
@@ -290,8 +290,7 @@
 				<configuration>
 					<skipTests>${maven.test.skip}</skipTests>
 					<parallel>classes</parallel>
-					<threadCount>12</threadCount>
-					<!-- 1C means the number of threads times 1 possible maximum forks for testing-->
+					<threadCount>2</threadCount>
 					<forkCount>1C</forkCount>
 					<reuseForks>false</reuseForks>
 					<reportFormat>brief</reportFormat>