Well-lit Path: Intelligent Inference Scheduling
Overview
This guide deploys the recommended out of the box scheduling configuration for most vLLM deployments, reducing tail latency and increasing throughput through load-aware and prefix-cache aware balancing. This can be run on a single GPU that can load Qwen/Qwen3-0.6B.
This profile defaults to the approximate prefix cache aware scorer, which only observes request traffic to predict prefix cache locality. The precise prefix cache aware routing feature improves hit rate by introspecting the vLLM instances for cache entries and will become the default in a future release.
Hardware Requirements
This example out of the box requires 2 Nvidia GPUs of any kind (support determined by the inferencing image used).
Prerequisites
- Have the proper client tools installed on your local system to use this guide.
- Configure and deploy your Gateway control plane.
- Create the
llm-d-hf-token
secret in your target namespace with the keyHF_TOKEN
matching a valid HuggingFace token to pull models.
Installation
Use the helmfile to compose and install the stack. The Namespace in which the stack will be deployed will be derived from the ${NAMESPACE}
environment variable. If you have not set this, it will default to llm-d-inference-scheduler
in this example.
export NAMESPACE=llm-d-inference-scheduler # or any other namespace
cd guides/inference-scheduling
helmfile apply -n ${NAMESPACE}
NOTE: You can set the $RELEASE_NAME_POSTFIX
env variable to change the release names. This is how we support concurrent installs. Ex: RELEASE_NAME_POSTFIX=inference-scheduling-2 helmfile apply -n ${NAMESPACE}
NOTE: This uses Istio as the default provider, see Gateway Options for installing with a specific provider.
Gateway options
To see specify your gateway choice you can use the -e <gateway option>
flag, ex:
helmfile apply -e kgateway -n ${NAMESPACE}
To see what gateway options are supported refer to our gateway provider prereq doc. Gateway configurations per provider are tracked in the gateway-configurations directory.
You can also customize your gateway, for more information on how to do that see our gateway customization docs.
Install HTTPRoute
Follow provider specific instructions for installing HTTPRoute.
Install for "kgateway" or "istio"
kubectl apply -f httproute.yaml
Install for "gke"
kubectl apply -f httproute.gke.yaml
Verify the Installation
- Firstly, you should be able to list all helm releases to view the 3 charts got installed into your chosen namespace:
helm list -n ${NAMESPACE}
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
gaie-inference-scheduling llm-d-inference-scheduler 1 2025-08-24 11:24:53.231918 -0700 PDT deployed inferencepool-v0.5.1 v0.5.1
infra-inference-scheduling llm-d-inference-scheduler 1 2025-08-24 11:24:49.551591 -0700 PDT deployed llm-d-infra-v1.3.0 v0.3.0
ms-inference-scheduling llm-d-inference-scheduler 1 2025-08-24 11:24:58.360173 -0700 PDT deployed llm-d-modelservice-v0.2.7 v0.2.0
- Out of the box with this example you should have the following resources:
kubectl get all -n ${NAMESPACE}
NAME READY STATUS RESTARTS AGE
pod/gaie-inference-scheduling-epp-f8fbd9897-cxfvn 1/1 Running 0 3m59s
pod/infra-inference-scheduling-inference-gateway-istio-6787675b9swc 1/1 Running 0 4m3s
pod/ms-inference-scheduling-llm-d-modelservice-decode-8ff7fd5b58lw9 2/2 Running 0 3m55s
pod/ms-inference-scheduling-llm-d-modelservice-decode-8ff7fd5bt5f9s 2/2 Running 0 3m55s
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/gaie-inference-scheduling-epp ClusterIP 10.16.3.151 <none> 9002/TCP,9090/TCP 3m59s
service/gaie-inference-scheduling-ip-18c12339 ClusterIP None <none> 54321/TCP 3m59s
service/infra-inference-scheduling-inference-gateway-istio LoadBalancer 10.16.1.195 10.16.4.2 15021:30274/TCP,80:32814/TCP 4m3s
NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/gaie-inference-scheduling-epp 1/1 1 1 4m
deployment.apps/infra-inference-scheduling-inference-gateway-istio 1/1 1 1 4m4s
deployment.apps/ms-inference-scheduling-llm-d-modelservice-decode 2/2 2 2 3m56s
NAME DESIRED CURRENT READY AGE
replicaset.apps/gaie-inference-scheduling-epp-f8fbd9897 1 1 1 4m
replicaset.apps/infra-inference-scheduling-inference-gateway-istio-678767549 1 1 1 4m4s
replicaset.apps/ms-inference-scheduling-llm-d-modelservice-decode-8ff7fd5b8 2 2 2 3m56s
NOTE: This assumes no other guide deployments in your given ${NAMESPACE}
and you have not changed the default release names via the ${RELEASE_NAME}
environment variable.
Using the stack
For instructions on getting started making inference requests see our docs
Cleanup
To remove the deployment:
# From examples/inference-scheduling
helmfile destroy -n ${NAMESPACE}
# Or uninstall manually
helm uninstall infra-inference-scheduling -n ${NAMESPACE}
helm uninstall gaie-inference-scheduling -n ${NAMESPACE}
helm uninstall ms-inference-scheduling -n ${NAMESPACE}
NOTE: If you set the $RELEASE_NAME_POSTFIX
environment variable, your release names will be different from the command above: infra-$RELEASE_NAME_POSTFIX
, gaie-$RELEASE_NAME_POSTFIX
and ms-$RELEASE_NAME_POSTFIX
.
NOTE: You do not need to specify your environment
with the -e <environment>
flag to helmfile
for removing a installation of the guide, even if you use a non-default option. You do, however, have to set the -n ${NAMESPACE}
otherwise it may not cleanup the releases in the proper namespace.
Cleanup HTTPRoute
Follow provider specific instructions for deleting HTTPRoute.
Cleanup for "kgateway" or "istio"
kubectl delete -f httproute.yaml
Cleanup for "gke"
kubectl delete -f httproute.gke.yaml
Customization
For information on customizing a guide and tips to build your own, see our docs
This content is automatically synced from guides/inference-scheduling/README.md in the llm-d/llm-d repository.
📝 To suggest changes, please edit the source file or create an issue.