This is an automated email from the ASF dual-hosted git repository.
zhengchenyu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 1eaa2ebdf [#1698] fix(test): Increase tests running memory for better
stability (#1726)
1eaa2ebdf is described below
commit 1eaa2ebdf9f43a352c8b30d1e6992400636e2598
Author: RickyMa <[email protected]>
AuthorDate: Wed May 22 17:33:08 2024 +0800
[#1698] fix(test): Increase tests running memory for better stability
(#1726)
### What changes were proposed in this pull request?
Increase tests running memory for better stability.
### Why are the changes needed?
Fix: https://github.com/apache/incubator-uniffle/issues/1698.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Unnecessary.
---
integration-test/common/pom.xml | 2 +-
integration-test/mr/pom.xml | 2 +-
integration-test/spark-common/pom.xml | 2 +-
integration-test/tez/pom.xml | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/integration-test/common/pom.xml b/integration-test/common/pom.xml
index 7f7eab659..42097d524 100644
--- a/integration-test/common/pom.xml
+++ b/integration-test/common/pom.xml
@@ -177,7 +177,7 @@
</systemProperties>
<redirectTestOutputToFile>${test.redirectToFile}</redirectTestOutputToFile>
<useFile>${test.redirectToFile}</useFile>
- <argLine>-ea -Xmx3g</argLine>
+ <argLine>-ea -Xmx5g</argLine>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
diff --git a/integration-test/mr/pom.xml b/integration-test/mr/pom.xml
index a91e25ed8..0eac66864 100644
--- a/integration-test/mr/pom.xml
+++ b/integration-test/mr/pom.xml
@@ -161,7 +161,7 @@
</systemProperties>
<redirectTestOutputToFile>${test.redirectToFile}</redirectTestOutputToFile>
<useFile>${test.redirectToFile}</useFile>
- <argLine>-ea -Xmx3g</argLine>
+ <argLine>-ea -Xmx5g</argLine>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
diff --git a/integration-test/spark-common/pom.xml
b/integration-test/spark-common/pom.xml
index 3cecce2a2..3e373410f 100644
--- a/integration-test/spark-common/pom.xml
+++ b/integration-test/spark-common/pom.xml
@@ -194,7 +194,7 @@
</systemProperties>
<redirectTestOutputToFile>${test.redirectToFile}</redirectTestOutputToFile>
<useFile>${test.redirectToFile}</useFile>
- <argLine>-ea -Xmx3g</argLine>
+ <argLine>-ea -Xmx5g</argLine>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
diff --git a/integration-test/tez/pom.xml b/integration-test/tez/pom.xml
index 8bb19af0a..702568abb 100644
--- a/integration-test/tez/pom.xml
+++ b/integration-test/tez/pom.xml
@@ -166,7 +166,7 @@
</systemProperties>
<redirectTestOutputToFile>${test.redirectToFile}</redirectTestOutputToFile>
<useFile>${test.redirectToFile}</useFile>
- <argLine>-ea -Xmx3g</argLine>
+ <argLine>-ea -Xmx5g</argLine>
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>