Skip to content

Commit

Permalink
Revert "[Core] Shorten the membership checking time to 5 seconds. (ra…
Browse files Browse the repository at this point in the history
  • Loading branch information
rkooo567 authored and architkulkarni committed May 16, 2023
1 parent f1d9f41 commit 5cc4011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ray/common/ray_config_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ RAY_CONFIG(bool, kill_idle_workers_of_terminated_job, true)
// Example: RAY_preload_python_modules=tensorflow,pytorch
RAY_CONFIG(std::vector<std::string>, preload_python_modules, {})

// By default, raylet send a self liveness check to GCS every 5s
RAY_CONFIG(int64_t, raylet_liveness_self_check_interval_ms, 5000)
// By default, raylet send a self liveness check to GCS every 60s
RAY_CONFIG(int64_t, raylet_liveness_self_check_interval_ms, 60000)

// Instruct the CoreWorker to kill its child processes while
// it exits. This prevents certain classes of resource leaks
Expand Down

0 comments on commit 5cc4011

Please sign in to comment.