-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[WIP] Actor Group API #7712
[WIP] Actor Group API #7712
Conversation
Can one of the admins verify this patch? |
Test FAILed. |
Test FAILed. |
@yuyiming what's the status of this / the supporting Ray core design? Placement groups are very important for us too and we're going to allocate a significant amount of time to help out. |
Can one of the admins verify this patch? |
Going to close these now that we have the real implementation PR out. |
Documents for Actor Group Design and API:
Why are these changes needed?
Ray has provided a mechanism for managing individual Actors, while the relationship between Actors is rarely considered in Ray design. It is hard to manipulate multiple Actors as a whole, such as creating 3 Actors in the same physical machine, etc.
This PR introduces Actor Group API, including Placement Group and Life Cycle Group, to manage the placement and the life cycle of Actors in group manner.
[WIP] There is also a common library API called Actor Group in this PR, to which some auto-generated codes are not added yet.
Related issue number
Checks
scripts/format.sh
to lint the changes in this PR.