zentol closed pull request #7062: [FLINK-10825][tests] Increase request-backoff
for high-parallelism e2e test
URL: https://github.com/apache/flink/pull/7062
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/docs/_includes/generated/task_manager_configuration.html
b/docs/_includes/generated/task_manager_configuration.html
index 16c5d98f8be..63bfb043ea4 100644
--- a/docs/_includes/generated/task_manager_configuration.html
+++ b/docs/_includes/generated/task_manager_configuration.html
@@ -125,12 +125,12 @@
<tr>
<td><h5>taskmanager.network.request-backoff.initial</h5></td>
<td style="word-wrap: break-word;">100</td>
- <td>Minimum backoff for partition requests of input channels.</td>
+ <td>Minimum backoff in milliseconds for partition requests of
input channels.</td>
</tr>
<tr>
<td><h5>taskmanager.network.request-backoff.max</h5></td>
<td style="word-wrap: break-word;">10000</td>
- <td>Maximum backoff for partition requests of input channels.</td>
+ <td>Maximum backoff in milliseconds for partition requests of
input channels.</td>
</tr>
<tr>
<td><h5>taskmanager.numberOfTaskSlots</h5></td>
diff --git
a/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
b/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
index 98fa47f6697..6d3ac4515b2 100644
---
a/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
+++
b/flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
@@ -316,7 +316,7 @@
key("taskmanager.network.request-backoff.initial")
.defaultValue(100)
.withDeprecatedKeys("taskmanager.net.request-backoff.initial")
- .withDescription("Minimum backoff for partition
requests of input channels.");
+ .withDescription("Minimum backoff in milliseconds for
partition requests of input channels.");
/**
* Maximum backoff for partition requests of input channels.
@@ -325,7 +325,7 @@
key("taskmanager.network.request-backoff.max")
.defaultValue(10000)
.withDeprecatedKeys("taskmanager.net.request-backoff.max")
- .withDescription("Maximum backoff for partition
requests of input channels.");
+ .withDescription("Maximum backoff in milliseconds for
partition requests of input channels.");
/**
* Boolean flag to enable/disable more detailed metrics about
inbound/outbound network queue
diff --git
a/flink-end-to-end-tests/test-scripts/test_high_parallelism_iterations.sh
b/flink-end-to-end-tests/test-scripts/test_high_parallelism_iterations.sh
index 582b5a0af0d..93668d87a2f 100755
--- a/flink-end-to-end-tests/test-scripts/test_high_parallelism_iterations.sh
+++ b/flink-end-to-end-tests/test-scripts/test_high_parallelism_iterations.sh
@@ -34,6 +34,7 @@ set_conf "taskmanager.memory.segment-size" "8kb"
set_conf "taskmanager.network.netty.server.numThreads" "1"
set_conf "taskmanager.network.netty.client.numThreads" "1"
+set_conf "taskmanager.network.request-backoff.max" "60000"
set_conf "taskmanager.numberOfTaskSlots" "1"
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services