The Dynamo KV Router intelligently routes requests by evaluating their computational costs across different workers. It considers both decoding costs (from active blocks) and prefill costs (from newly computed blocks). Optimizing the KV Router is critical for achieving maximum throughput and minimum latency in distributed inference setups.
To launch the Dynamo frontend with the KV Router:
python -m dynamo.frontend --router-mode kv --http-port 8000This command:
- Launches the Dynamo frontend service with KV routing enabled
- Exposes the service on port 8000 (configurable)
- Automatically handles all backend workers registered to the Dynamo endpoint
Backend workers register themselves using the register_llm API, after which the KV Router automatically:
- Tracks the state of all registered workers
- Makes routing decisions based on KV cache overlap
- Balances load across available workers
The KV Router supports several key configuration options:
-
--kv-cache-block-size <size>: Sets the KV cache block size (default: backend-specific). Larger blocks reduce overlap detection granularity but improve memory efficiency. This should match your backend configuration. -
--router-temperature <float>: Controls routing randomness (default: 0.0)0.0: Deterministic selection of the best worker> 0.0: Probabilistic selection using softmax sampling- Higher values increase randomness, helping prevent worker saturation
-
--kv-events/--no-kv-events: Controls how the router tracks cached blocks (default:--kv-events)--kv-events: Uses real-time events from workers for accurate cache tracking--no-kv-events: Uses approximation based on routing decisions (lower overhead, less accurate)
For a complete list of available options:
python -m dynamo.frontend --helpThe KV Router tracks two key metrics for each worker:
-
Potential Active Blocks: The number of blocks that would be used for decoding if a request is routed to a worker. This includes both existing active blocks and new blocks from the incoming request.
-
Potential New Prefill Blocks: The number of tokens that need to be computed from scratch on a worker, calculated as:
- New prefill tokens = Total input tokens - (Overlap blocks × Block size)
- Potential prefill blocks = New prefill tokens / Block size
The router maintains block information through two complementary systems:
-
Active Decoding Blocks: Tracked locally by the router throughout the request lifecycle:
- Incremented when adding a new request
- Updated during token generation
- Decremented upon request completion
-
Cached Blocks: Maintained globally by the KvIndexer using a prefix tree built from worker-reported KV events. This provides accurate overlap information for routing decisions.
The KV Router's routing decision is based on a simple cost function:
logit = kv_overlap_score_weight × potential_prefill_blocks + potential_active_blocks
Where:
- Lower logit values are better (less computational cost)
- The router uses softmax sampling with optional temperature to select workers
The kv-overlap-score-weight parameter (default: 1.0) controls the balance between prefill and decode optimization:
-
Higher values (> 1.0): Emphasize reducing prefill cost
- Prioritizes routing to workers with better cache hits
- Optimizes for Time To First Token (TTFT)
- Best for workloads where initial response latency is critical
-
Lower values (< 1.0): Emphasize decode performance
- Distributes active decoding blocks more evenly
- Optimizes for Inter-Token Latency (ITL)
- Best for workloads with long generation sequences
The router uses KV events from workers by default to maintain an accurate global view of cached blocks. You can disable this with the --no-kv-events flag:
-
With KV Events (default):
- Calculates overlap accurately using actual cached blocks
- Provides higher accuracy with event processing overhead
- Recommended for production deployments
-
Without KV Events (--no-kv-events):
- Uses ApproxKvIndexer to estimate cached blocks from routing decisions
- Assumes blocks from recent requests remain cached
- Reduces overhead at the cost of routing accuracy
- Suitable for testing or when event processing becomes a bottleneck
- Prefill-heavy workloads (long prompts, short generations): Increase
kv-overlap-score-weight - Decode-heavy workloads (short prompts, long generations): Decrease
kv-overlap-score-weight
The router logs the cost calculation for each worker:
Formula for worker_1: 125.3 = 1.0 * 100.5 + 25.0 (cached_blocks: 15)
This shows:
- Total cost (125.3)
- Overlap weight × prefill blocks (1.0 × 100.5)
- Active blocks (25.0)
- Cached blocks that contribute to overlap (15)
The router_temperature parameter controls routing randomness:
- 0.0 (default): Deterministic selection of the best worker
- > 0.0: Probabilistic selection, higher values increase randomness
- Useful for preventing worker saturation and improving load distribution
- Begin with default settings
- Monitor TTFT and ITL metrics
- Adjust
kv-overlap-score-weightto meet your performance goals:- To reduce TTFT: Increase the weight
- To reduce ITL: Decrease the weight
- If you observe severe load imbalance, increase the temperature setting