Skip to content

Commit 320d09d

Browse files
committed
[SPARK-53605][INFRA] Restore pyspark execution timeout to 2 hours
### What changes were proposed in this pull request? Restore pyspark execution timeout to 2 hours ### Why are the changes needed? after #52564, 2 hours should be enough for pyspark execution ### Does this PR introduce _any_ user-facing change? No, infra-only ### How was this patch tested? ci ### Was this patch authored or co-authored using generative AI tooling? no Closes #52570 from zhengruifeng/restore_120. Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent ed1140f commit 320d09d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,7 @@ jobs:
499499
if: (!cancelled()) && (fromJson(needs.precondition.outputs.required).pyspark == 'true' || fromJson(needs.precondition.outputs.required).pyspark-pandas == 'true')
500500
name: "Build modules: ${{ matrix.modules }}"
501501
runs-on: ubuntu-latest
502-
# TODO(SPARK-53605): Restore pyspark execution timeout to 2 hours after fixing test_pandas_transform_with_state
503-
timeout-minutes: 150
502+
timeout-minutes: 120
504503
container:
505504
image: ${{ needs.precondition.outputs.image_pyspark_url_link }}
506505
strategy:

.github/workflows/python_hosted_runner_test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ jobs:
5959
build:
6060
name: "PySpark test on macos: ${{ matrix.modules }}"
6161
runs-on: ${{ inputs.os }}
62-
# TODO(SPARK-53605): Restore pyspark execution timeout to 2 hours after fixing test_pandas_transform_with_state
63-
timeout-minutes: 150
62+
timeout-minutes: 120
6463
strategy:
6564
fail-fast: false
6665
matrix:

0 commit comments

Comments
 (0)