Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
d726a7b0
Unverified
Commit
d726a7b0
authored
Dec 07, 2025
by
Nick Hill
Committed by
GitHub
Dec 08, 2025
Browse files
[BugFix] Unblock use of LoRA with data parallel mode (#30220)
Signed-off-by:
Nick Hill
<
nhill@redhat.com
>
parent
344b50d5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vllm/v1/metrics/loggers.py
vllm/v1/metrics/loggers.py
+4
-1
No files found.
vllm/v1/metrics/loggers.py
View file @
d726a7b0
...
...
@@ -952,7 +952,10 @@ class PrometheusStatLogger(AggregateStatLoggerBase):
self
.
gauge_lora_info
:
Gauge
|
None
=
None
if
vllm_config
.
lora_config
is
not
None
:
if
len
(
self
.
engine_indexes
)
>
1
:
raise
NotImplementedError
(
"LoRA in DP mode is not supported yet."
)
logger
.
warning
(
"vllm:lora_requests_info prometheus metrics may be "
"incorrect/misleading with data parallel deployments."
)
self
.
labelname_max_lora
=
"max_lora"
self
.
labelname_waiting_lora_adapters
=
"waiting_lora_adapters"
self
.
labelname_running_lora_adapters
=
"running_lora_adapters"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment