Supporting Multi-LoRA inferencing via JetStream server#221
Merged
Conversation
Collaborator
mailvijayasingh
left a comment
There was a problem hiding this comment.
Looked at it at high level, left some comments. Will take a deeper look again.
vipannalla
reviewed
Mar 10, 2025
Collaborator
vipannalla
left a comment
There was a problem hiding this comment.
Thanks for the PR, its a bit longish and I'd have preferred you to send the adapter_tensorstore.py and related code as a separate PR since its isolated enough along with the unittests before sending the the PR to integrate it into orchestrator.
I've some initial comments.
Bslabe123
reviewed
Mar 17, 2025
vipannalla
approved these changes
Mar 18, 2025
Collaborator
vipannalla
left a comment
There was a problem hiding this comment.
Looks good for initial version
vipannalla
approved these changes
Apr 13, 2025
jyj0w0
approved these changes
Apr 14, 2025
jyj0w0
pushed a commit
that referenced
this pull request
Apr 16, 2025
Change to ubuntu-lastest since ubuntu-20.04 is deprecated Change to ubuntu-lastest since ubuntu-20.04 is deprecated Change to ubuntu-lastest since ubuntu-20.04 is deprecated Move prefix cache from MaxText (#239) Retry grpc async request (#240) The exception raised by asyncio task is not welled catch. If the server is not ready, it cause the benchmark serving blocked forever without noticed. Retry the connection to the server. Adding PyTests in JetStream unit test workflow for code coverage. (#242) Supporting Multi-LoRA inferencing via JetStream server (#221) Supporting Multi-LoRA inferencing via JetStream server following [LLM Inference gateway API protocols](https://github.com/kubernetes-sigs/gateway-api-inference-extension/tree/main/docs/proposals/003-model-server-protocol#inference-api-protocol). - Implemented an adapter_tensorstore to load, store, manage and unload the adapter weights - Added and exposed [required metrics](https://github.com/kubernetes-sigs/gateway-api-inference-extension/tree/main/docs/proposals/003-model-server-protocol#metrics-reporting) at prometheus endpoint - Added multi_lora_decoding service with corresponding APIs as per the [requirement](https://github.com/kubernetes-sigs/gateway-api-inference-extension/tree/main/docs/proposals/003-model-server-protocol#inference-api-protocol). - Implemented single LoRA functionality support.
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
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.
Supporting Multi-LoRA inferencing via JetStream server following LLM Inference gateway API protocols.