-
Notifications
You must be signed in to change notification settings - Fork 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
[BugFix][Refactor] Fix some bugs and refine codes for large scale simulator test #93
Open
s5u13b
wants to merge
55
commits into
main
Choose a base branch
from
request_timestamps
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.
Open
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
183676f
Refine logger output text
s5u13b 43a9577
Customize prefix for actor logs
s5u13b d0779d8
Upgrade logger to vLLM v0.6.6.post1
s5u13b 1f6938a
Reorganize logger
s5u13b 6fa2cd3
Remove date format
s5u13b 1b1598d
Add constants module
s5u13b 00aef3d
Log ray id for logging
s5u13b 6fa01fc
Refine logging handlers configuration
s5u13b 8fb6dac
Fix lint
s5u13b 1890445
Refine logger
s5u13b 0edd964
Optimize constants
s5u13b 9ca22eb
Fix constants
s5u13b fef0cd6
Refactor
s5u13b b101bcd
Fix benchmark_serving
s5u13b 25016df
Minors
s5u13b 4108477
Minors
s5u13b 61a30d3
Add poll instance infos and migration tasks log
s5u13b c5ee9ef
Minors
s5u13b d43fac5
Minors
s5u13b 92b7f1d
Minors
s5u13b 72feec3
Fix
s5u13b b7a600b
Minors
s5u13b d8d17c2
Fix
s5u13b 1b8bff9
Minors
s5u13b b9b445c
Fix
s5u13b c55b2cd
Minors
s5u13b 1cdba8e
Reorg simulator files
s5u13b c0545ea
Minors
s5u13b 37eadf5
Assert enable_scaling
s5u13b 467b49b
Minors
s5u13b 9e5aa22
Set max_instances for auto scale up
s5u13b 7156b7e
Add retry bind address for zmq server
s5u13b cf588bb
Fix lint
s5u13b 5888e58
Fix unit test
s5u13b 3651cf8
Refine dispatch scheduler implementation
s5u13b 5c545a6
Support power-of-k-choice for dispatch
s5u13b 1d74b1b
Fix lint
s5u13b 7d28e36
Fix lint
s5u13b d4028be
Fix global scheduler unit test
s5u13b c358075
Fix entrypoints unit test
s5u13b 6a68c94
Squashed commit of the following:
s5u13b 8d29dc0
Fix host, num_cpus, serve
s5u13b cffff07
Minors
s5u13b c715e02
Simulator test done
s5u13b 26e2618
Fix manager unit test
s5u13b 76b2fd6
Fix init_instances and simulator test
s5u13b 24c9df8
Fix simulator test
s5u13b ea91e07
Minors
s5u13b 13e68b1
Fix ip address
s5u13b aec7700
Refine instance ready & migration size sort
s5u13b ff1f317
Fix lint
s5u13b bf7769c
Refine timestamps
s5u13b c91f34f
Resort manager and launcher functions & Fix test_manager
s5u13b 2c4cc50
Fix lint
s5u13b 4b38e5e
Fix correctness test
s5u13b 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
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
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
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
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
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
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
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.
I don't recommend using the term power-of-k-choices here. It's a well-established concept in the specific context of decentralized load balancing. But here it seems to me that you are only doing some sort of randomizing inside a centralized scheduler. Calling it power-of-k-choices is pretty misleading.