You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by vr...@apache.org on 2017/12/19 15:31:23 UTC

[apex-core] branch master updated (646674b -> 2e4a772)

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

vrozov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/apex-core.git.


    from 646674b  APEXCORE-800 Disable the disk health checker service for StramMiniClusterTest
     new d40033a  APEXCORE-798 Exclude log4j.properties from engine-test.jar
     new 2e4a772  APEXCORE-800 Disable the disk health checker service for StramMiniClusterTest

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:
 engine/pom.xml                                                       | 2 +-
 engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@apex.apache.org" <co...@apex.apache.org>'].

[apex-core] 02/02: APEXCORE-800 Disable the disk health checker service for StramMiniClusterTest

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

vrozov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apex-core.git

commit 2e4a7728a9ba5ac98fa93c7460bb48bd5d1d0b98
Author: Vlad Rozov <vr...@apache.org>
AuthorDate: Fri Dec 15 19:10:44 2017 -0800

    APEXCORE-800 Disable the disk health checker service for StramMiniClusterTest
---
 engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java b/engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java
index bbb7c1c..fb02593 100644
--- a/engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java
+++ b/engine/src/test/java/com/datatorrent/stram/StramMiniClusterTest.java
@@ -129,6 +129,7 @@ public class StramMiniClusterTest
     conf.set("yarn.scheduler.capacity.root.queues", "default");
     conf.set("yarn.scheduler.capacity.root.default.capacity", "100");
     conf.setBoolean(YarnConfiguration.NM_DISK_HEALTH_CHECK_ENABLE, false);
+    conf.setFloat(YarnConfiguration.NM_MAX_PER_DISK_UTILIZATION_PERCENTAGE, 100.0F);
     conf.set(YarnConfiguration.NM_ADMIN_USER_ENV, String.format("JAVA_HOME=%s,CLASSPATH=%s", System.getProperty("java.home"), getTestRuntimeClasspath()));
     conf.set(YarnConfiguration.NM_ENV_WHITELIST, YarnConfiguration.DEFAULT_NM_ENV_WHITELIST.replaceAll("JAVA_HOME,*", ""));
 

-- 
To stop receiving notification emails like this one, please contact
"commits@apex.apache.org" <co...@apex.apache.org>.

[apex-core] 01/02: APEXCORE-798 Exclude log4j.properties from engine-test.jar

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

vrozov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apex-core.git

commit d40033a9bf160cd484ad696b8c7d9d3c7fa96acb
Author: Vlad Rozov <vr...@apache.org>
AuthorDate: Fri Dec 15 09:24:06 2017 -0800

    APEXCORE-798 Exclude log4j.properties from engine-test.jar
---
 engine/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/engine/pom.xml b/engine/pom.xml
index 4294c8a..93e7d97 100644
--- a/engine/pom.xml
+++ b/engine/pom.xml
@@ -49,7 +49,7 @@
           </execution>
         </executions>
         <configuration>
-          <excludes>
+          <excludes combine.children="append">
             <!-- never include into jar (used in minicluster test) -->
             <exclude>**/yarn-site.xml</exclude>
           </excludes>

-- 
To stop receiving notification emails like this one, please contact
"commits@apex.apache.org" <co...@apex.apache.org>.