pnowojski commented on code in PR #27659:
URL: https://github.com/apache/flink/pull/27659#discussion_r2993028924
##########
flink-tests/src/test/java/org/apache/flink/test/checkpointing/EventTimeWindowCheckpointingITCase.java:
##########
@@ -263,6 +265,14 @@ protected Configuration createClusterConfig() throws
IOException {
Configuration config = new Configuration();
config.set(RpcOptions.FRAMESIZE, MAX_MEM_STATE_SIZE + "b");
+ // FLINK-38727: Add timeout configurations to handle slow TaskManager
registration
+ // under CI load, preventing premature NoResourceAvailableException
+ config.set(JobManagerOptions.SLOT_REQUEST_TIMEOUT,
Duration.ofMinutes(5));
+ config.set(
+ ResourceManagerOptions.STANDALONE_CLUSTER_STARTUP_PERIOD_TIME,
+ Duration.ofMinutes(2));
Review Comment:
Here, I think you are actually decreasing the timeout from 5 to 2 minutes?
##########
flink-tests/src/test/java/org/apache/flink/test/checkpointing/EventTimeWindowCheckpointingITCase.java:
##########
@@ -263,6 +265,14 @@ protected Configuration createClusterConfig() throws
IOException {
Configuration config = new Configuration();
config.set(RpcOptions.FRAMESIZE, MAX_MEM_STATE_SIZE + "b");
+ // FLINK-38727: Add timeout configurations to handle slow TaskManager
registration
+ // under CI load, preventing premature NoResourceAvailableException
+ config.set(JobManagerOptions.SLOT_REQUEST_TIMEOUT,
Duration.ofMinutes(5));
Review Comment:
Isn't 5 minutes the current default value?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]