[nightly] Deflaky nightly test many_nodes_actor_test (#18582)

This commit is contained in:
Yi Cheng 2021-09-20 22:43:48 -07:00 committed by GitHub
parent 0704b825ff
commit fc6a739e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

View file

@ -111,6 +111,7 @@ jobs:
TRAVIS_COMMIT: ${{ github.sha }}
TRAVIS_JOB_ID: ${{ github.run_id }}
run: |
# Multi thread in windowns for grpc not working now
function clean_up() {
echo "Performing cleanup"
if [ "${GITHUB_EVENT_NAME}" != "pull_request" ]; then ./ci/travis/upload_build_info.sh; fi

View file

@ -325,4 +325,5 @@
run:
timeout: 7200
prepare: python wait_cluster.py 500 5400
script: python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000 && python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000 --fail --no-report && python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000 --no-report
script: python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000
# TODO(yic): Add extra test for python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000 --fail --no-report && python many_nodes_tests/actor_test.py --cpus-per-actor=0.1 --total-actors=10000 --no-report

View file

@ -216,8 +216,14 @@ RAY_CONFIG(int32_t, maximum_profile_table_rows_count, 10 * 1000)
/// message.
RAY_CONFIG(uint32_t, object_store_get_max_ids_to_print_in_warning, 20)
// TODO: fix win32 timeout in ci and unify these two.
#ifdef _MSC_VER
/// Number of threads used by rpc server in gcs server.
RAY_CONFIG(uint32_t, gcs_server_rpc_server_thread_num, 1)
#else
/// Number of threads used by rpc server in gcs server.
RAY_CONFIG(uint32_t, gcs_server_rpc_server_thread_num, 8)
#endif
/// Allow up to 5 seconds for connecting to gcs service.
/// Note: this only takes effect when gcs service is enabled.
RAY_CONFIG(int64_t, gcs_service_connect_retries, 50)