You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ca...@apache.org on 2021/09/27 21:06:43 UTC

[samza] branch master updated: SAMZA-2697: Increase build time max heap (#1538)

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

cameronlee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/master by this push:
     new a433ce4  SAMZA-2697: Increase build time max heap (#1538)
a433ce4 is described below

commit a433ce4c167c8c1d8bb491dd173b62025ffefaa5
Author: Jon Bringhurst <jo...@bringhurst.org>
AuthorDate: Mon Sep 27 14:06:37 2021 -0700

    SAMZA-2697: Increase build time max heap (#1538)
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 86b7423..6facb18 100644
--- a/build.gradle
+++ b/build.gradle
@@ -206,7 +206,7 @@ project(":samza-core_$scalaSuffix") {
 
   test {
     // some unit tests use embedded zookeeper, so adding some extra memory for those
-    maxHeapSize = "1560m"
+    maxHeapSize = "2385m"
     jvmArgs = ["-XX:+UseConcMarkSweepGC", "-server"]
   }
 }