This is an automated email from the ASF dual-hosted git repository.
guoweijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new b1a111c85c1 [hotfix][tests] Decrease the network memory size to make
HybridShuffleITCase more stable
b1a111c85c1 is described below
commit b1a111c85c160ca92fabfc1f219aef03b6da3601
Author: Yuxin Tan <[email protected]>
AuthorDate: Tue Sep 26 16:09:49 2023 +0800
[hotfix][tests] Decrease the network memory size to make
HybridShuffleITCase more stable
---
.../test/java/org/apache/flink/test/runtime/HybridShuffleITCase.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-tests/src/test/java/org/apache/flink/test/runtime/HybridShuffleITCase.java
b/flink-tests/src/test/java/org/apache/flink/test/runtime/HybridShuffleITCase.java
index f5c6b0a609e..7b5471b28b6 100644
---
a/flink-tests/src/test/java/org/apache/flink/test/runtime/HybridShuffleITCase.java
+++
b/flink-tests/src/test/java/org/apache/flink/test/runtime/HybridShuffleITCase.java
@@ -89,7 +89,7 @@ class HybridShuffleITCase extends BatchShuffleITCaseBase {
if (enableNewHybridMode && isSelective) {
// Note that the memory tier of the new mode need more buffers for
the selective mode
-
configuration.setString(TaskManagerOptions.NETWORK_MEMORY_MAX.key(), "256m");
+
configuration.setString(TaskManagerOptions.NETWORK_MEMORY_MAX.key(), "128m");
}
return configuration;
}