forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 17
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
Doc for Head HA #544
Merged
Doc for Head HA #544
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
c834376
Head HA
acd394c
update
ebe23cb
fix
01d30a4
run head_ha as daemon
a9a76c3
add redis.username
5baf3c4
Add dependency package redis
473ec15
update
7f8965c
Head HA
7119218
update
f454ce4
fix
2d52dd7
run head_ha as daemon
1c818b0
add redis.username
029e423
Add dependency package redis
6a89a35
update
4b67b58
update
b92c8cd
Add doc to introduce HEAD HA
c979417
Merge branch 'main' into head_ha
weiquanlee 67d3f4f
update
93efb54
fix
25f3331
fix
ed98c33
fix
c6e2ba1
fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.. _fault-tolerance-nodes: | ||
|
||
Head High-Availability Feature | ||
==================== | ||
|
||
Head High-Availability Feature (Head HA), which reduces the impact of head-failover in ray clusters by deploying multi heads. | ||
|
||
|
||
Why we need it | ||
---------------- | ||
|
||
In Ray Clusters, the head node is the most important node. It is responsible for managing all the other nodes and tasks. So it is neccessary to make the head node highly available. | ||
|
||
Otherwise, detecting a head node failure and starting a new one usually involves extra time and additional steps. | ||
|
||
Head HA is a simple and effective way to make the head node highly available. | ||
|
||
|
||
How it works | ||
---------------- | ||
The Head High-Availability Feature is implemented through the following steps: | ||
|
||
1. **Simultaneous Initialization:** Two or more head nodes are launched simultaneously. | ||
|
||
2. **Leadership Election:** During the startup process—before initializing the node or starting the head node process—each node connects to Redis and competes for leadership using Redis’s distributed lock mechanism. | ||
|
||
3. **Leader Node Activation:** Only the node that successfully acquires leadership proceeds with starting critical processes such as the `gcs_server` and `dashboard`. | ||
|
||
4. **Standby Node Behavior:** Nodes that fail to gain leadership remain in the competition loop as standby nodes until the leader node encounters a failure. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. may encounter Eviction or network issue |
||
|
||
5. **Periodic Lease Renewal:** After a successful startup, the leader node periodically renews the distributed lock in Redis to maintain its leadership status. Meanwhile, a daemon process monitors the node's leadership status. | ||
|
||
6. **Leader Node Failure Handling:** If the leader node's pod fails entirely or lease renewal fails, the node considers itself as a standby node. It terminates all processes, exits the startup process, and triggers a pod restart via KubeRay. | ||
|
||
7. **Leadership Transition:** When a standby node detects that it has become the new leader, it terminates the competition process and initiates the necessary services (e.g., `gcs_server`, `dashboard`). | ||
|
||
8. **Standby Node Re-entry:** Upon restarting, the previously failed leader node enters the competition loop as a standby node, waiting for the current leader node to fail before taking over. | ||
|
||
|
||
|
||
How to use it | ||
---------------- | ||
To enable it, set the OS environment variable ``RAY_ENABLE_HEAD_HA`` to ``True``. | ||
|
||
|
||
Dependency | ||
---------------- | ||
- Redis is required for the head node to compete for the leadership. | ||
- Kuberay is required for the head node to restart the pod when it fails. And worker nodes must access the head node through the domain name provided by Kuberay to avoid the problem that the head node's ip address is changed. | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'ray clusters ' maybe 'rayclusters', it represents a specific object.