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/02/27 01:21:18 UTC

samza git commit: SAMZA-581; bump memory in samza-test to allow kv test to work

Repository: samza
Updated Branches:
  refs/heads/master 04f7ff7b4 -> 922771ea4


SAMZA-581; bump memory in samza-test to allow kv test to work


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

Branch: refs/heads/master
Commit: 922771ea45641b585927c90bd92077179a9420a3
Parents: 04f7ff7
Author: Chris Riccomini <cr...@apache.org>
Authored: Thu Feb 26 16:21:10 2015 -0800
Committer: Chris Riccomini <cr...@apache.org>
Committed: Thu Feb 26 16:21:10 2015 -0800

----------------------------------------------------------------------
 build.gradle | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/922771ea/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 97d848a..0a268ac 100644
--- a/build.gradle
+++ b/build.gradle
@@ -377,6 +377,13 @@ project(":samza-test_$scalaVersion") {
     testRuntime "org.slf4j:slf4j-simple:$slf4jVersion"
   }
 
+  test {
+    // Bump up the heap so we can run KV store tests.
+    minHeapSize = "1560m"
+    maxHeapSize = "1560m"
+    jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server"]
+  }
+
   tasks.create(name: "releaseTestJobs", dependsOn: configurations.archives.artifacts, type: Tar) {
     description 'Build an integration test tarball'
     compression = Compression.GZIP