A1K28 commented on code in PR #35915:
URL: https://github.com/apache/beam/pull/35915#discussion_r2291291191
##########
.github/workflows/beam_PreCommit_Python.yml:
##########
@@ -53,6 +53,23 @@ env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GE_CACHE_USERNAME }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
+ # Aggressive stability settings for flaky CI environment
+ PYTHONHASHSEED: "0"
+ OMP_NUM_THREADS: "1"
+ OPENBLAS_NUM_THREADS: "1"
+ # gRPC stability - more conservative for unstable networks
+ GRPC_ARG_KEEPALIVE_TIME_MS: "10000"
+ GRPC_ARG_KEEPALIVE_TIMEOUT_MS: "15000"
+ GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS: "1"
+ GRPC_ARG_HTTP2_MAX_PINGS_WITHOUT_DATA: "0"
+ GRPC_ARG_MAX_RECONNECT_BACKOFF_MS: "30000"
+ # Beam-specific - very generous timeouts
+ BEAM_RETRY_MAX_ATTEMPTS: "5"
+ BEAM_RETRY_INITIAL_DELAY_MS: "5000"
+ BEAM_RETRY_MAX_DELAY_MS: "120000"
Review Comment:
My apologies, I was supposed to implement these in the code. I will fix this
in the next PR. Currently, you are right, they don't do anything, since i
didn't write necessary code for it.
--
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]