HinterBuild logoHinterBuild
AI Systems · 10 min read

vLLM in Production: PagedAttention, Continuous Batching, and

vLLM in Production guidance for engineers: compare architecture choices, avoid failure modes, and ship a measurable, reliable production implementation.

Muhammad Abdul Sami, author

Muhammad Abdul Sami

· 10 min read

  • LLM
  • LLM Serving
  • Evaluation
  • Cost Optimization

Table of Contents:

What Is vLLM and Why Use It?

Short answer: vLLM is an open-source LLM inference server optimized for high throughput via PagedAttention and continuous batching — typically achieving 2-10x higher throughput than naive implementations at the same latency budget.

After deploying LLM serving infrastructure for production systems at HinterBuild, the pattern is clear: naive serving wastes 50-80% of GPU memory on fragmented KV cache. vLLM solves this with PagedAttention, a memory management technique that eliminates fragmentation and enables much higher batch sizes.

Key Takeaways:

  • PagedAttention manages KV cache in fixed-size blocks like OS virtual memory — eliminates fragmentation
  • Continuous batching adds/removes requests mid-batch — no waiting for slowest completion
  • 2-24x throughput improvement over HuggingFace text-generation-inference on high-concurrency workloads
  • Works with Llama, Mistral, Qwen, Phi, and 50+ models via HuggingFace integration
  • Production-ready with OpenAI-compatible API, multi-GPU support, and quantization

For teams building LLM serving infrastructure or AI agent systems at scale, vLLM is the default choice in 2026.


PagedAttention: The Core Innovation

The KV Cache Fragmentation Problem

In transformer inference, each token's key (K) and value (V) vectors must be cached for all future tokens in that sequence. For a 7B model with 4096 context length, a single sequence's KV cache consumes ~1.2 GB.

Naive allocation pre-reserves max context length per sequence:

Sequence A (128 tokens, 2048 max): [████░░░░░░░░░░░░] 938 MB wasted
Sequence B (512 tokens, 2048 max): [████████░░░░░░░░] 768 MB wasted
Sequence C (64 tokens, 2048 max):  [██░░░░░░░░░░░░░░] 978 MB wasted

Result: 60-80% of GPU memory wasted on unused buffer space. Batch size limited by worst-case allocation, not actual usage.

PagedAttention Solution

PagedAttention manages KV cache in fixed-size blocks (default 16 tokens), allocated dynamically as sequences grow:

python
class PagedKVCache:
    def __init__(self, block_size: int = 16):
        self.block_size = block_size
        self.physical_blocks: list[torch.Tensor] = []
        self.block_tables: dict[int, list[int]] = {}  # seq_id -> block IDs

    def allocate_block(self) -> int:
        """Allocate a new physical KV cache block."""
        block = torch.zeros((self.block_size, num_heads, head_dim), device="cuda")
        self.physical_blocks.append(block)
        return len(self.physical_blocks) - 1

    def map_sequence(self, seq_id: int, num_tokens: int) -> None:
        """Map logical sequence to physical blocks."""
        num_blocks = (num_tokens + self.block_size - 1) // self.block_size
        self.block_tables[seq_id] = [
            self.allocate_block() for _ in range(num_blocks)
        ]

Benefits:

  • Near-zero fragmentation — allocate only what's used
  • Memory sharing for prefix caching (multiple sequences with same prompt)
  • 2-4x higher batch sizes at same GPU memory budget
  • Dynamic growth as sequences generate tokens

vLLM's C++/CUDA implementation optimizes this further with kernel fusion and attention recomputation across pages.


Continuous Batching Explained

Static Batching (Naive Approach)

Traditional serving batches requests, runs inference, waits for all sequences to complete:

Batch 1: [Req A (50 tokens), Req B (200 tokens), Req C (30 tokens)]
         Wait for B to finish (200 tokens) ← A and C idle
         Return all results
Batch 2: [Next requests...]

Problem: GPU sits idle while shortest requests wait. Throughput bottlenecked by longest sequence.

Continuous Batching (vLLM)

Continuous batching removes finished sequences and adds new ones every iteration:

Iteration 1: [A, B, C, D, E] → B finishes → remove B, add F
Iteration 2: [A, C, D, E, F] → A, C finish → remove, add G, H
Iteration 3: [D, E, F, G, H] → E finishes → ...

Implementation:

python
from vllm import LLM, SamplingParams

llm = LLM(
    model="meta-llama/Llama-3.1-8B-Instruct",
    tensor_parallel_size=1,
    max_model_len=4096,
    gpu_memory_utilization=0.9,  # Use 90% VRAM for KV cache
)

prompts = [
    "Explain quantum computing",
    "Write a Python function for binary search",
    "Summarize the Roman Empire",
]

sampling_params = SamplingParams(
    temperature=0.7,
    top_p=0.9,
    max_tokens=256,
)

# vLLM internally uses continuous batching
outputs = llm.generate(prompts, sampling_params)

for output in outputs:
    print(f"Prompt: {output.prompt}")
    print(f"Generated: {output.outputs[0].text}\n")

Result: Average latency stays low (50-200ms for first token) while throughput scales linearly with batch size — no waiting for slowest request.

For API serving, deploy with Kubernetes autoscaling to match load dynamically.


Quantization and Memory Optimization

Quantization Support

vLLM supports AWQ (4-bit) and GPTQ quantization for 2-4x memory reduction:

yaml
# vllm-deployment.yaml — 4-bit quantized Llama 3.1 70B
apiVersion: apps/v1
kind: Deployment
metadata:
  name: vllm-llama-70b
spec:
  replicas: 2
  template:
    spec:
      containers:
      - name: vllm
        image: vllm/vllm-openai:v0.6.0
        args:
        - --model
        - casperhansen/llama-3.1-70b-instruct-awq
        - --quantization
        - awq
        - --tensor-parallel-size
        - "4"  # 4x A100 40GB
        - --max-model-len
        - "8192"
        - --gpu-memory-utilization
        - "0.95"
        resources:
          limits:
            nvidia.com/gpu: "4"
ModelPrecisionVRAM (Single GPU)Throughput (tok/s)
Llama 3.1 8BFP1618 GB1200
Llama 3.1 8BAWQ 4-bit6 GB1800
Llama 3.1 70BFP16140+ GB (multi-GPU)400
Llama 3.1 70BAWQ 4-bit40 GB (4x A100)900

For LLM inference optimization, quantization typically reduces cost by 60-75% with <2% quality degradation.

Tensor Parallelism

Distribute model across multiple GPUs:

python
llm = LLM(
    model="meta-llama/Llama-3.1-70B-Instruct",
    tensor_parallel_size=4,  # Split across 4 GPUs
    pipeline_parallel_size=1,
)

When to use:

  • Tensor parallel: Model doesn't fit on single GPU (70B+)
  • Pipeline parallel: Very deep models, less common

Monitor with observability tooling to detect GPU imbalance.


Production Deployment on Kubernetes

Complete vLLM Deployment

yaml
# vllm-service.yaml
apiVersion: v1
kind: Service
metadata:
  name: vllm-api
  namespace: llm-serving
spec:
  type: ClusterIP
  ports:
  - port: 8000
    targetPort: 8000
    name: http
  selector:
    app: vllm

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: vllm-llama-8b
  namespace: llm-serving
spec:
  replicas: 3
  strategy:
    type: RollingUpdate
    rollingUpdate:
      maxSurge: 1
      maxUnavailable: 0
  selector:
    matchLabels:
      app: vllm
  template:
    metadata:
      labels:
        app: vllm
    spec:
      nodeSelector:
        node.kubernetes.io/instance-type: g5.2xlarge  # AWS A10G GPU
      tolerations:
      - key: nvidia.com/gpu
        operator: Exists
        effect: NoSchedule
      containers:
      - name: vllm
        image: vllm/vllm-openai:v0.6.0
        args:
        - --model
        - meta-llama/Llama-3.1-8B-Instruct
        - --max-model-len
        - "4096"
        - --gpu-memory-utilization
        - "0.90"
        - --host
        - "0.0.0.0"
        - --port
        - "8000"
        - --disable-log-requests
        env:
        - name: HUGGING_FACE_HUB_TOKEN
          valueFrom:
            secretKeyRef:
              name: hf-token
              key: token
        ports:
        - containerPort: 8000
          name: http
        resources:
          requests:
            nvidia.com/gpu: "1"
            memory: 24Gi
            cpu: "4"
          limits:
            nvidia.com/gpu: "1"
            memory: 32Gi
        livenessProbe:
          httpGet:
            path: /health
            port: 8000
          initialDelaySeconds: 120
          periodSeconds: 30
        readinessProbe:
          httpGet:
            path: /health
            port: 8000
          initialDelaySeconds: 60
          periodSeconds: 10

Horizontal Pod Autoscaling

yaml
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: vllm-hpa
  namespace: llm-serving
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: vllm-llama-8b
  minReplicas: 2
  maxReplicas: 10
  metrics:
  - type: Pods
    pods:
      metric:
        name: vllm_num_requests_running
      target:
        type: AverageValue
        averageValue: "8"  # Scale when avg running requests > 8

Deploy with Kubernetes platform engineering best practices for GPU cluster management.

OpenAI-Compatible API

vLLM exposes OpenAI API format:

python
import openai

client = openai.OpenAI(
    base_url="http://vllm-api.llm-serving.svc.cluster.local:8000/v1",
    api_key="not-used",
)

response = client.chat.completions.create(
    model="meta-llama/Llama-3.1-8B-Instruct",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Explain PagedAttention in one sentence."},
    ],
    temperature=0.7,
    max_tokens=100,
)

print(response.choices[0].message.content)

This enables drop-in replacement for AI agent tool calling and production AI systems.


Real Performance Benchmarks

Test Setup

  • Model: Llama 3.1 8B Instruct
  • Hardware: AWS g5.2xlarge (A10G 24GB)
  • Workload: Mixed lengths (128-512 tokens output), 95% confidence intervals
  • Comparison: vLLM v0.6.0 vs TGI v2.2.0
MetricvLLMText-Generation-Inference
Throughput (req/s)47.221.3
Time to First Token (p50)142ms218ms
Time to First Token (p95)389ms612ms
Tokens/second (generation)1843892
Max batch size12832
GPU memory usage18.4 GB22.1 GB

Result: vLLM delivered 2.2x higher throughput at 35% lower latency with 17% less VRAM.

Production Metrics (Our Deployment)

From a production customer support routing system serving 1.2M requests/day:

python
# Prometheus metrics export
# HELP vllm_time_to_first_token_seconds Time to first token
# TYPE vllm_time_to_first_token_seconds histogram
vllm_time_to_first_token_seconds_bucket{le="0.1"} 142301
vllm_time_to_first_token_seconds_bucket{le="0.2"} 389472
vllm_time_to_first_token_seconds_bucket{le="0.5"} 421893
vllm_time_to_first_token_seconds_sum 89234.12
vllm_time_to_first_token_seconds_count 423847

# HELP vllm_request_success_total Successfully completed requests
# TYPE vllm_request_success_total counter
vllm_request_success_total 1187293

# HELP vllm_request_failure_total Failed requests
# TYPE vllm_request_failure_total counter
vllm_request_failure_total 1847  # 0.15% failure rate

Monitor with observability systems and alert on SLO violations.

For benchmarking your workload, see LLM serving benchmarks.


Common Issues and Solutions

Issue 1: OOM (Out of Memory) on GPU

Symptoms: CUDA out of memory errors during inference.

Solutions:

python
# Reduce GPU memory utilization
llm = LLM(
    model="meta-llama/Llama-3.1-8B-Instruct",
    gpu_memory_utilization=0.85,  # Default 0.9 — try 0.8-0.85
    max_model_len=2048,           # Reduce max context if not needed
)

# Or use quantization
llm = LLM(
    model="casperhansen/llama-3.1-8b-instruct-awq",
    quantization="awq",
)

Issue 2: Low Throughput Despite GPU Not Saturated

Cause: Batch size too small (not enough concurrent requests).

Solution:

yaml
# Increase max batch size
args:
- --max-num-batched-tokens
- "8192"  # Default 2048 — increase for higher throughput
- --max-num-seqs
- "256"   # Max sequences in batch

Test with load generator to find saturation point:

bash
# Locust load test
pip install locust

cat > locustfile.py << 'EOF'
from locust import HttpUser, task, between
import json

class VLLMUser(HttpUser):
    wait_time = between(0.1, 0.5)

    @task
    def generate(self):
        self.client.post("/v1/completions", json={
            "model": "meta-llama/Llama-3.1-8B-Instruct",
            "prompt": "Explain PagedAttention",
            "max_tokens": 100,
        })
EOF

locust -f locustfile.py --host http://vllm-api:8000

Issue 3: High Time-to-First-Token Variance

Cause: Cold start or scheduler contention.

Solutions:

yaml
# Warm up deployment before routing traffic
lifecycle:
  postStart:
    exec:
      command:
      - /bin/sh
      - -c
      - |
        sleep 30
        curl -X POST http://localhost:8000/v1/completions \
          -H "Content-Type: application/json" \
          -d '{"model":"meta-llama/Llama-3.1-8B-Instruct","prompt":"Hi","max_tokens":1}'

Issue 4: Model Download Timeout

Symptoms: Pod fails to start within timeout.

Solution: Use init container to download model before main container starts:

yaml
initContainers:
- name: download-model
  image: vllm/vllm-openai:v0.6.0
  command:
  - python3
  - -c
  - |
    from huggingface_hub import snapshot_download
    snapshot_download("meta-llama/Llama-3.1-8B-Instruct", cache_dir="/model-cache")
  env:
  - name: HF_TOKEN
    valueFrom:
      secretKeyRef:
        name: hf-token
        key: token
  volumeMounts:
  - name: model-cache
    mountPath: /model-cache

For infrastructure automation, deploy with cloud DevOps best practices.


Primary references: official documentation, official documentation, official documentation, official documentation.

Operating vLLM in Production as a System

The implementation is only one part of vLLM in Production. A production design also needs an explicit contract for inputs, outputs, ownership, and failure behavior. Write that contract before selecting a library. It should identify which component validates input, where state lives, what may be retried, and which result is authoritative when two components disagree. This prevents a convenient prototype boundary from silently becoming the long-term architecture.

Start with a representative baseline. Capture request shape, traffic distribution, dependency latency, error classes, and the quality signal users actually care about. Averages hide the cases that cause incidents, so keep percentiles and segment measurements by workload type. Record the configuration and dataset version beside every result. Without that context, a faster or more accurate run cannot be reproduced and should not be used to approve a rollout.

Define the failure model

List failures by where they originate: invalid input, capacity exhaustion, dependency timeout, partial state change, malformed output, and semantically wrong output. Each class needs a different response. Validation errors should fail immediately. Transient dependency failures may be retried with a budget and jitter. An operation that may have committed must use an idempotency key or reconciliation step before retrying. A syntactically valid but incorrect result belongs in evaluation and review, not a blind retry loop.

Set a deadline for the complete operation and derive smaller budgets for each dependency. Local timeouts that add up to more than the caller's deadline merely create abandoned work. Propagate cancellation where the protocol supports it. Bound every queue, retry loop, context buffer, and concurrency pool; an unbounded safety mechanism becomes a second outage during overload.

Design a degraded mode before it is needed. Depending on the workload, that can mean returning a cached answer, selecting a simpler path, placing work in a durable queue, or asking for human review. The degraded response must be visible in telemetry and, where it changes meaning, visible to the caller. Silent fallback makes quality regressions almost impossible to diagnose.

Measure the decision, not just the component

Use three layers of signals. System metrics cover latency, throughput, saturation, and errors. Correctness metrics measure whether the result satisfies its contract. Business or user metrics show whether the system solved the intended problem. Improving only one layer can move the others backward, so release criteria should name acceptable movement for all three.

Attach a reason code to every route, rejection, fallback, and retry. Include version identifiers for configuration, code, model, schema, and data when relevant. Logs should let an engineer reconstruct a decision without storing secrets or raw personal data. Traces should cross process boundaries, while metrics should remain low-cardinality enough to operate reliably.

Alert on symptoms that require action, not every internal anomaly. A useful alert names the affected service objective, links to a runbook, and distinguishes a customer-visible incident from exhausted headroom. Dashboards serve a different purpose: they support diagnosis and capacity planning. Treating a dashboard as an alerting strategy leaves failures undiscovered until someone happens to look.

Roll out with reversible steps

Ship vLLM in Production behind a versioned interface and a kill switch. Begin with offline replay using production-shaped, privacy-safe samples. Then use shadow execution when duplicate work has acceptable cost and side effects can be suppressed. A small canary should exercise the real dependency graph before traffic expands. Compare the canary with the baseline by cohort rather than mixing both populations into one aggregate.

Promotion gates should be written before the rollout. Include a minimum sample size or observation window, maximum regression in tail latency and error rate, and a correctness threshold. Roll back automatically when a hard safety boundary is crossed; use manual review for ambiguous quality movement. Preserve enough evidence from both paths to explain why the gate passed or failed.

Configuration deserves the same discipline as code. Review changes, validate them before activation, keep an immutable history, and make rollback a single operation. If a deployment changes code and configuration together, record both versions. Otherwise an incident responder may roll back the binary while leaving the triggering configuration active.

Capacity and cost controls

Model capacity in units the bottleneck understands: concurrent connections, tokens, queue jobs, database transactions, GPU memory, or bytes in flight. Convert the expected traffic distribution into those units and include burst behavior. Then load-test the first constrained dependency, not merely the public endpoint. A system that accepts more work than it can finish within its deadline is overloaded even if CPU utilization looks comfortable.

Cost is also a reliability limit. Add per-request attribution, tenant or workflow budgets, and a global circuit breaker for unexpectedly expensive paths. Review unit economics at the same granularity as performance; a cheap median can conceal a small class of requests responsible for most spend. Optimize only after measuring, because reducing context, replicas, validation, or redundancy can trade visible cost for less visible risk.

Production readiness review

Before launch, ask an engineer who did not build the feature to follow the runbook through one simulated failure. Verify backups or checkpoints by restoring them, not by checking that a job reported success. Exercise credential rotation, dependency unavailability, bad configuration, and rollback. Assign an owner for each alarm and a date for reviewing thresholds after real traffic arrives.

The final architecture document should be short enough to remain current. Keep the decision, rejected alternatives, invariants, dependency contracts, dashboards, and rollback procedure. Link detailed experiments rather than pasting them into the document. Teams that need help turning this review into an operable service can use our vLLM in Production engineering support.

Frequently Asked Questions

What is vLLM and why is it faster than other LLM servers?

vLLM is an LLM inference server optimized for high throughput via PagedAttention (eliminates KV cache fragmentation) and continuous batching (removes finished requests mid-batch). This achieves 2-10x higher throughput than naive implementations.

Does PagedAttention affect generation quality?

No. PagedAttention is a memory management optimization — it changes how KV cache is stored, not what is computed. Generation results are identical to standard attention.

Can I use vLLM with proprietary models?

vLLM supports any HuggingFace-format model. For proprietary models (GPT-4, Claude), use their native APIs. For custom fine-tuned models, convert to HuggingFace format.

How does vLLM compare to Triton Inference Server?

See our Triton vs vLLM comparison. Summary: vLLM is easier for LLM-only workloads; Triton supports multi-framework serving (TensorRT, ONNX, PyTorch).

What's the minimum GPU for vLLM in production?

  • 7B models: 1x A10G (24GB) or T4 (16GB with quantization)
  • 13B models: 1x A100 (40GB) or 2x A10G with tensor parallelism
  • 70B models: 4x A100 (40GB) or 2x A100 (80GB)

How do I serve multiple LoRA adapters with vLLM?

See our LoRA adapter serving guide. vLLM supports dynamic LoRA loading with shared base model.

Can vLLM handle 100K+ requests per day?

Yes. Our production deployments handle 1M+ req/day per 3-pod cluster (8B model). Scale horizontally with Kubernetes autoscaling and load balancing.

Does vLLM support streaming responses?

Yes, via Server-Sent Events (SSE):

python
import requests

response = requests.post(
    "http://vllm-api:8000/v1/completions",
    json={
        "model": "meta-llama/Llama-3.1-8B-Instruct",
        "prompt": "Explain AI",
        "max_tokens": 200,
        "stream": True,
    },
    stream=True,
)

for line in response.iter_lines():
    if line:
        print(line.decode())

See streaming LLM responses for production patterns.


Conclusion

vLLM is the most practical open-source LLM serving solution for production in 2026. PagedAttention eliminates KV cache fragmentation, continuous batching maximizes GPU utilization, and OpenAI-compatible API makes integration trivial.

The deployment playbook:

  1. Start with 8B quantized model on single A10G GPU
  2. Deploy on Kubernetes with HPA and readiness probes
  3. Load test to find saturation point and tune batch size
  4. Monitor TTFT p95 and throughput — alert on regressions
  5. Scale horizontally before vertical (more pods, not bigger GPUs)

At HinterBuild, we deploy and optimize LLM serving infrastructure at scale:

Contact us to design your LLM serving architecture.

Free consultation

Book a free consultation call on vLLM & LLM serving optimization

30-minute call with the HinterBuild team. Discuss your project, architecture questions, or next steps — no obligation.

Book a meeting

Keep reading