-
Notifications
You must be signed in to change notification settings - Fork 67
[MLI-4665] Update vllm upgrade process #713
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
5111db5
initial changes
meher-m 3c42d1e
Merge branch 'main' into meher-m/vllm-upgrade
meher-m 71b5d99
reverting some forwarder changes that aren't needed
meher-m 8d30ab3
remove some other unneeded stuff
meher-m 22a0cf9
not sure
meher-m 28cea65
adding cpu
meher-m 6ea87b4
add column
meher-m 5d8a634
add file for db model change
meher-m 5229c55
update readme instructions
meher-m 1b7414c
fix column name
meher-m 494ea1e
reformat
meher-m 43b5054
remove unused commits
meher-m a2e4b50
fix
meher-m 8c4930f
fix readme
meher-m ff8766b
fix types
meher-m 4b2103e
leave the existing variables for backwards compatibility
meher-m 29877c3
edit types
meher-m 24cc393
remove EXTRA ROUTES completely. its not used by the async or triton e…
meher-m 68fd91d
adding FORWARDER_SYNC_ROUTES and FORWARDER_STREAMING_ROUTES to the tr…
meher-m 8b623b3
change to pass unit tests
meher-m cbb0e05
update orm
meher-m fd3ad7a
test change
meher-m 9b59d4d
change test bundle
meher-m fa1a5b3
add debug logs
meher-m edcf542
trying to fix
meher-m 3397278
changes
meher-m c849a5e
cleanup debug code
meher-m ca603dd
reformat
meher-m 9a5f789
remove 1
meher-m 6affb1a
remove 2
meher-m b25e7a7
revert 3
meher-m dcca5a8
reorder params
meher-m 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 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
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
31 changes: 31 additions & 0 deletions
31
...e_server/db/migrations/alembic/versions/2025_09_25_1940-221aa19d3f32_add_routes_column.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| """add routes column | ||
|
|
||
| Revision ID: 221aa19d3f32 | ||
| Revises: e580182d6bfd | ||
| Create Date: 2025-09-25 19:40:24.927198 | ||
|
|
||
| """ | ||
| import sqlalchemy as sa | ||
| from alembic import op | ||
|
|
||
| # revision identifiers, used by Alembic. | ||
| revision = '221aa19d3f32' | ||
| down_revision = 'e580182d6bfd' | ||
| branch_labels = None | ||
| depends_on = None | ||
|
|
||
|
|
||
| def upgrade() -> None: | ||
| op.add_column( | ||
| 'bundles', | ||
| sa.Column('runnable_image_routes', sa.ARRAY(sa.Text), nullable=True), | ||
| schema='hosted_model_inference', | ||
| ) | ||
|
|
||
|
|
||
| def downgrade() -> None: | ||
| op.drop_column( | ||
| 'bundles', | ||
| 'runnable_image_routes', | ||
| schema='hosted_model_inference', | ||
| ) |
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
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
you can remove run_server_worker and run_server, and just use run_server from vllm