Skip to content

Commit

Permalink
[CI] Increase target time for test_result_throughput_cluster (ray-p…
Browse files Browse the repository at this point in the history
…roject#32062)

ray-project#31337 has become flaky again due to a low timeout. This PR follows ray-project#31338 and increases the timeout.
Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
  • Loading branch information
cadedaniel authored and edoakes committed Mar 22, 2023
1 parent 2c30a05 commit 3026c29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion release/ray_release/alerts/tune_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def handle_result(
target_time = 900 if not was_smoke_test else 400
elif test_name == "result_throughput_cluster":
target_terminated = 1000
target_time = 135
target_time = 160
elif test_name == "result_throughput_single_node":
target_terminated = 96
target_time = 120
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Test owner: krfricke
Acceptance criteria: Should run faster than 135 seconds.
Acceptance criteria: Should run faster than 160 seconds.
Theoretical minimum time: 100 seconds
"""
Expand All @@ -31,11 +31,11 @@ def main():
results_per_second = 0.5
trial_length_s = 100

max_runtime = 130
max_runtime = 160

if _is_ray_cluster():
# Add constant overhead for SSH connection
max_runtime = 130
max_runtime = 160

timed_tune_run(
name="result throughput cluster",
Expand Down

0 comments on commit 3026c29

Please sign in to comment.