Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Shorten the membership checking time to 5 seconds. #34769

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 60s
RAY_CONFIG(int64_t, raylet_liveness_self_check_interval_ms, 60000)
// By default, raylet send a self liveness check to GCS every 5s
RAY_CONFIG(int64_t, raylet_liveness_self_check_interval_ms, 5000)

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