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 2015/01/26 23:02:37 UTC

samza git commit: SAMZA-426; support 32 bit JVMs when running tests

Repository: samza
Updated Branches:
  refs/heads/master a71af9f97 -> 8ae92c6bd


SAMZA-426; support 32 bit JVMs when running tests


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

Branch: refs/heads/master
Commit: 8ae92c6bde319cb5683d4fdc8eae58824376c5f5
Parents: a71af9f
Author: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Authored: Mon Jan 26 14:02:28 2015 -0800
Committer: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Committed: Mon Jan 26 14:02:28 2015 -0800

----------------------------------------------------------------------
 build.gradle | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/8ae92c6b/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 2016330..e119db1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -165,9 +165,9 @@ project(":samza-kafka_$scalaVersion") {
 
   test {
     // Bump up the heap so we can start ZooKeeper and Kafka brokers.
-    minHeapSize = "2560m"
-    maxHeapSize = "2560m"
-    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server", "-d64"]
+    minHeapSize = "1560m"
+    maxHeapSize = "1560m"
+    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server"]
   }
 }
 
@@ -385,9 +385,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 = "2560m"
-    maxHeapSize = "2560m"
-    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server", "-d64"]
+    minHeapSize = "1560m"
+    maxHeapSize = "1560m"
+    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server"]
 
     // Forward all samza.* system properties to test subprocesses. This is
     // useful for configuring TestSamzaContainerPerformance from the CLI.