-
Notifications
You must be signed in to change notification settings - Fork 4
Add megatron_ray_fault_tolerant example with comprehensive fault tolerance implementation #19
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
Open
xyuzh
wants to merge
18
commits into
anyscale:main
Choose a base branch
from
xyuzh:megatron_ray_fault_tolerant
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
- Update Ray base image to 2.51.1 and vLLM to 0.11.0 - Add boto3 dependency for S3 operations - Update transformers to 4.57.1 for compatibility - Configure compute resources with auto-selection (max 520 CPU, 128 GPU) - Add disk size configuration options for customer-hosted deployments - Implement robust URL validation and error handling - Add base64 image encoding for Arrow serialization - Add JPEG format validation and 128x128 image resizing - Scale model replicas from 1 to 32 for higher throughput - Optimize batch sizes and memory usage for large-scale processing - Implement session pooling for HTTP requests with retry logic - Add timestamp-based output paths to /mnt/shared_storage - Add run.sh script for job submission with HF_TOKEN
…rance - Implements PPO-style training with Megatron and Ray - Features automatic actor recovery from failures - Includes backup actor pool for seamless replacement - Supports DP, TP, PP, and CP parallelism - Distributed checkpoint saving/loading - Process group re-initialization after failures - Added comprehensive documentation in README files
wujinspire
reviewed
Nov 19, 2025
megatron_ray_fault_tolerant/main.py
Outdated
| pipeline_model_parallel_size: int = 1 | ||
| context_parallel_size: int = 1 | ||
| expert_model_parallel_size: int = 1 | ||
| expert_tensor_parallel_size: int = 1 |
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.
Need a large scale recover system
wujinspire
reviewed
Nov 19, 2025
| BasicType = Union[int, float, str, bool] | ||
|
|
||
|
|
||
| @ray.remote(num_gpus=1) |
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.
Also need actual GPU actors.
…rance - Implements PPO-style training with Megatron and Ray - Features automatic actor recovery from failures - Includes backup actor pool for seamless replacement - Supports DP, TP, PP, and CP parallelism - Distributed checkpoint saving/loading - Process group re-initialization after failures - Added comprehensive documentation in README files
2929546 to
dffc213
Compare
dffc213 to
9932155
Compare
… with > 2 nodes now, but that is ok
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR adds a new production-ready example demonstrating fault-tolerant distributed training using Megatron and Ray. The implementation showcases how to build resilient ML training systems that can automatically recover from actor failures without losing progress.
What's New
🆕 megatron_ray_fault_tolerant Example
A complete implementation of PPO-style distributed training with enterprise-grade fault tolerance:
Key Features
Fault Tolerance Architecture
Distributed Training Capabilities
MeshDispatch: Smart data sharding across device meshPassThroughDispatch: Broadcast operations to all workersTesting & Validation
The example includes a built-in fault tolerance demonstration:
Run the demo:
use
run.shSubmit to Anyscale:
anyscale job submit -f job.yamlResource Requirements:
Use Cases
Related Work
This example builds on:
Future Enhancements
Note: This example requires GPU resources and cloud storage configuration. See the README for detailed setup instructions.