Add job-specific timeouts to GHA test jobs#20730
Merged
rapids-bot[bot] merged 4 commits intorapidsai:mainfrom Nov 26, 2025
Merged
Add job-specific timeouts to GHA test jobs#20730rapids-bot[bot] merged 4 commits intorapidsai:mainfrom
rapids-bot[bot] merged 4 commits intorapidsai:mainfrom
Conversation
Adds timeout commands to all CI test scripts to prevent indefinite hangs. Timeout values are set at 2-3x observed runtimes from recent successful test runs, providing sufficient safety margin while preventing resource waste.
galipremsagar
approved these changes
Nov 25, 2025
gforsyth
approved these changes
Nov 25, 2025
Contributor
Author
|
/merge |
Contributor
Author
|
/merge |
TomAugspurger
pushed a commit
to TomAugspurger/pygdf
that referenced
this pull request
Nov 26, 2025
## Summary Adds timeout commands to all CI test scripts to prevent indefinite hangs, following the pattern established in rapidsai/cuml#7533. ## Changes Adds `timeout` commands to test execution in 13 CI scripts: - C++ tests: 30m (run_cudf_ctests, run_cudf_examples, run_cudf_kafka_ctests, run_cudf_benchmark_smoketests) - C++ memcheck: 2h (observed max: 70 min) - Java tests: 30m (observed max: 9 min) - Python cudf tests: 40m each (observed max: 14 min) - Python other tests: 30m each (observed max: 13 min) - Wheel cudf tests: 30m each (observed max: 14 min) - Wheel cudf-polars tests: 1h (observed max: 30 min) - Wheel dask-cudf tests: 15m (observed max: 6 min) - cudf-polars polars tests: 30m (observed max: 13 min) - cudf-polars with rapidsmpf: 15m (observed max: 6 min) - narwhals tests: 15m each (observed max: 4 min) - notebooks tests: 10m per notebook (observed max: 3 min) - third-party integration tests: 45m (observed max: 23 min) ## Timeout Selection Timeout values are set at 2-3x observed runtimes from recent successful test runs (analyzed from run 19673854267 and others), providing sufficient safety margin while preventing resource waste from hung tests. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Gil Forsyth (https://github.com/gforsyth) URL: rapidsai#20730
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds timeout commands to all CI test scripts to prevent indefinite hangs, following the pattern established in rapidsai/cuml#7533.
Changes
Adds
timeoutcommands to test execution in 13 CI scripts:Timeout Selection
Timeout values are set at 2-3x observed runtimes from recent successful test runs (analyzed from run 19673854267 and others), providing sufficient safety margin while preventing resource waste from hung tests.