Repository: incubator-samza Updated Branches: refs/heads/0.7.0 b6af34560 -> 760f376c5
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/760f376c Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/760f376c Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/760f376c Branch: refs/heads/0.7.0 Commit: 760f376c5a9d362e883d25cf17481dfa6aefc285 Parents: b6af345 Author: Chris Riccomini <[email protected]> Authored: Fri Apr 25 12:42:18 2014 -0700 Committer: Chris Riccomini <[email protected]> Committed: Fri Apr 25 12:42:45 2014 -0700 ---------------------------------------------------------------------- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/760f376c/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 69a6f0e..2d45c12 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"] } } @@ -238,7 +240,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.
