-
Notifications
You must be signed in to change notification settings - Fork 107
SLO Aware Routing PD Disaggregation Support #511
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
Open
RishabhSaini
wants to merge
36
commits into
llm-d:main
Choose a base branch
from
RishabhSaini:slo-pd-support
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.
Conversation
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
…hold for PD applies to both the with and without slo
… and lifecyle management
|
🚨 Unsigned commits detected! Please sign your commits. For instructions on how to set up GPG/SSH signing and verify your commits, |
This was referenced Dec 12, 2025
Open
…ion in exploration vs exploitation
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.
Add PD-SLO Scheduling with Independent Prefill/Decode Optimization
Implements SLO-aware scheduling for PD (Prefill-Decode) disaggregated architecture with independent latency prediction and tiered epsilon-greedy selection.
Architecture
PD-SLO Optimizer (
pkg/plugins/scorer/pd_slo_optimizer.go,pd_slo_selection.go): Independent pod scoringbufferedSLO - predictedLatencyfor TTFT and TPOT separatelySLO × sloBufferFactor(default 0.9)latencypredictorpackage)PD-SLO Profile Handler (
pkg/plugins/profile/pd_slo_profile_handler.go): Coordinates dual-profile executionx-slo-ttft-ms,x-slo-tpot-ms)<N non-cached tokensusing prefix cache hit percentageprefixPluginNameparameterx-prefiller-podheader for selected prefill podTelemetry Collection (
pkg/sidecar/proxy/connector_nixlv2.go,status_response_writer.go):x-prefill-ttft-msheader viaheaderInjectorResponseWriterwrapperMetrics (
pkg/metrics/metrics.go): 4 Prometheus metrics track pod selections by headroom outcome, predictor call status, telemetry recording rates, and headroom distribution histogram.Scheduling Flow
Request → Parse SLOs → Calculate prefix cache hit % → Threshold check (skip prefill if mostly cached) → Run prefill profile (select best prefill pod via weighted epsilon-greedy) → Run decode profile (select best decode pod via weighted epsilon-greedy) → Set prefiller header → Route to decode pod
Fallback Behavior
Dependencies
Updated GAIE to custom fork with SLO-aware routing support (
github.com/RishabhSaini/gateway-api-inference-extension) which supports pod_type in training and prediction server.Links to related PRs:
llm-d/llm-d#442
kubernetes-sigs/gateway-api-inference-extension#1993