Skip to content
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

[Metrics] Add vLLM streaming support for metrics #329

Merged
merged 1 commit into from
Mar 14, 2025

Conversation

JeffLuoo
Copy link
Contributor

@JeffLuoo JeffLuoo commented Feb 13, 2025

Address #178

@k8s-ci-robot k8s-ci-robot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. labels Feb 13, 2025
@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Feb 13, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @JeffLuoo. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Copy link

netlify bot commented Feb 13, 2025

Deploy Preview for gateway-api-inference-extension ready!

Name Link
🔨 Latest commit d479c3d
🔍 Latest deploy log https://app.netlify.com/sites/gateway-api-inference-extension/deploys/67d1ce81fbe5db000876cc1c
😎 Deploy Preview https://deploy-preview-329--gateway-api-inference-extension.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@k8s-ci-robot k8s-ci-robot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Feb 13, 2025
@ahg-g
Copy link
Contributor

ahg-g commented Feb 13, 2025

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Feb 13, 2025
@k8s-ci-robot k8s-ci-robot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Feb 19, 2025
@JeffLuoo JeffLuoo marked this pull request as ready for review February 19, 2025 22:18
@JeffLuoo JeffLuoo changed the title WIP: [Metrics] Add streaming support for metrics [Metrics] Add streaming support for metrics Feb 19, 2025
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Feb 19, 2025
@JeffLuoo
Copy link
Contributor Author

It seems the change needs to rebase on top of #372.

@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 20, 2025
@JeffLuoo
Copy link
Contributor Author

cc: @liu-cong @ahg-g

@JeffLuoo JeffLuoo force-pushed the support-streaming branch 3 times, most recently from 00c54e0 to a90bd84 Compare February 20, 2025 18:48
@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 20, 2025
@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 21, 2025
@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 4, 2025
@kfswain
Copy link
Collaborator

kfswain commented Mar 4, 2025

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 4, 2025
@kfswain
Copy link
Collaborator

kfswain commented Mar 4, 2025

/hold

@k8s-ci-robot k8s-ci-robot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Mar 4, 2025
@kfswain
Copy link
Collaborator

kfswain commented Mar 4, 2025

/remove-approve
/remove-lgtm

Sorry to be a stickler, I think we should hold on this. We are shooting for an RC tomorrow and I think we can refactor how we handle streaming here. Following PRs should help.

@k8s-ci-robot k8s-ci-robot removed lgtm "Looks good to me", indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Mar 4, 2025
if reqCtx.Streaming {
logger.V(logutil.DEBUG).Info("Processing HandleResponseBody")

responseText := string(body.ResponseBody.Body)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We seem to throw these stream chunks away after this loop, what if your data is split between 2 chunks? you have no guarantee that will/wont happen

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't quite get what you mean. Isn't streaming intended to break down messages into different chunks? E.g.

HTTP/1.1 200 OK
date: Wed, 05 Mar 2025 22:02:33 GMT
server: uvicorn
content-type: text/event-stream; charset=utf-8
x-went-into-resp-headers: true
transfer-encoding: chunked

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":"\n","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" Write","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" a","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" summary","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" of","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" the","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":" plot","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":".","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":"\n","logprobs":null,"finish_reason":null,"stop_reason":null}],"usage":null}

data: {"id":"cmpl-33e790a5-7f21-42a9-8d71-6531a679f4a5","object":"text_completion","created":1741212154,"model":"tweet-summary-1","choices":[{"index":0,"text":"Write","logprobs":null,"finish_reason":"length","stop_reason":null}],"usage":null}

data: [DONE]

and the for loop of Process will iterate over all chunks until the streaming is completed.

@JeffLuoo JeffLuoo force-pushed the support-streaming branch from ed0c231 to 0b8f14f Compare March 5, 2025 22:00
@JeffLuoo JeffLuoo requested review from kfswain and liu-cong March 5, 2025 22:04
@JeffLuoo JeffLuoo force-pushed the support-streaming branch from 0b8f14f to b82103b Compare March 10, 2025 17:47
@JeffLuoo JeffLuoo changed the title [Metrics] Add streaming support for metrics [Metrics] Add vLLM streaming support for metrics Mar 10, 2025
@@ -124,7 +124,11 @@ func (s *Server) Process(srv extProcPb.ExternalProcessor_ProcessServer) error {
metrics.RecordInputTokens(reqCtx.Model, reqCtx.ResolvedTargetModel, reqCtx.Response.Usage.PromptTokens)
metrics.RecordOutputTokens(reqCtx.Model, reqCtx.ResolvedTargetModel, reqCtx.Response.Usage.CompletionTokens)
}
loggerVerbose.Info("Request context after HandleResponseBody", "context", reqCtx)
if reqCtx.Streaming {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this check is needed, consider removing

Copy link
Contributor Author

@JeffLuoo JeffLuoo Mar 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is to prevent logs being emitted too often. If the envoy proxy is set to STREAMED, each response chunk will print a line of log. So a response with 1000 chunks will have 1000 lines of such information with Info level.

@@ -138,7 +142,11 @@ func (s *Server) Process(srv extProcPb.ExternalProcessor_ProcessServer) error {
}
}

loggerVerbose.Info("Response generated", "response", resp)
if !reqCtx.Streaming {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here also

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above, this is to prevent noisy logs.

@JeffLuoo JeffLuoo force-pushed the support-streaming branch from b82103b to d479c3d Compare March 12, 2025 18:12
@JeffLuoo JeffLuoo requested a review from kfswain March 12, 2025 18:13
@ahg-g
Copy link
Contributor

ahg-g commented Mar 14, 2025

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Mar 14, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ahg-g, JeffLuoo

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 14, 2025
@ahg-g
Copy link
Contributor

ahg-g commented Mar 14, 2025

/hold cancel

@k8s-ci-robot k8s-ci-robot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Mar 14, 2025
@k8s-ci-robot k8s-ci-robot merged commit 28ea321 into kubernetes-sigs:main Mar 14, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants