-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[serve] Detect node updates #9828
Conversation
Can one of the admins verify this patch? |
Test FAILed. |
Test FAILed. |
Test FAILed. |
Test FAILed. |
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.
LGTM. Two items we need to do for future work:
- We should begin to add typing to improve readability. For example,
self.routers
can be typed asDict[str, ActorHandle]
- We should starting to abstract out the
checkpoint->start_if_needed->stop_if_needed->checkpoint
procedure as it's started to get used in places.
Lint is failing on Tune code. I think those are fixed by a471214. Can you merge master? |
Test FAILed. |
Test FAILed. |
Why are these changes needed?
Adds an initial control loop that runs every 1s to detect new nodes in the cluster and add routers to them. Also detects removed nodes and removes corresponding actors from them.
Related issue number
Checks
scripts/format.sh
to lint the changes in this PR.