You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by cr...@apache.org on 2014/04/25 21:42:25 UTC

git commit: SAMZA-250; bump heap for integration tests

Repository: incubator-samza
Updated Branches:
  refs/heads/master ac4feb22f -> b285feebf


SAMZA-250; bump heap for integration tests


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

Branch: refs/heads/master
Commit: b285feebf29cfce949fb2fa4745bfd861bf31414
Parents: ac4feb2
Author: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Authored: Fri Apr 25 12:42:18 2014 -0700
Committer: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Committed: Fri Apr 25 12:42:18 2014 -0700

----------------------------------------------------------------------
 build.gradle | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/b285feeb/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index f8d0709..65d95d4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -92,7 +92,9 @@ project(":samza-kafka_$scalaVersion") {
 
   test {
     // Bump up the heap so we can start ZooKeeper and Kafka brokers.
-    maxHeapSize = "2048m"
+    minHeapSize = "4096m"
+    maxHeapSize = "4096m"
+    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server", "-d64"]
   }
 }
 
@@ -239,7 +241,9 @@ project(":samza-test_$scalaVersion") {
     // Bump up the heap so we can start ZooKeeper and Kafka brokers. Also 
     // required for TestSamzaContainerPerformance when a high thread count 
     // with a lot of inputs is used.
+    minHeapSize = "4096m"
     maxHeapSize = "4096m"
+    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server", "-d64"]
 
     // Forward all samza.* system properties to test subprocesses. This is 
     // useful for configuring TestSamzaContainerPerformance from the CLI.