Planner Guide

View as Markdown

The Dynamo Planner is an autoscaling controller that adjusts prefill and decode engine replica counts at runtime to meet latency SLAs. It reads traffic signals (Prometheus metrics or load predictor output) and engine performance profiles to decide when to scale up or down.

For a quick overview, see the Planner overview. For architecture internals, see Planner Design.

Scaling Modes

The planner supports three optimization targets that determine how scaling decisions are made:

  • throughput (default): Uses static thresholds on queue depth and KV cache utilization. No SLA targets or profiling needed. Works out of the box.
  • latency: Same approach as throughput but with more aggressive thresholds — scales up earlier and tolerates less queuing. Ideal for latency-sensitive workloads.
  • sla: Uses regression-based performance models with specific TTFT/ITL targets. Supports both throughput-based (predictive) and load-based (reactive) scaling modes. For advanced users who need precise SLA control.

When to use which:

  • Start with throughput (the default) — it works immediately with no configuration.
  • Switch to latency if your workload has strict latency requirements and you prefer to over-provision rather than queue.
  • Use sla when you have pre-deployment profiling data and want to target specific TTFT/ITL values.

PlannerConfig Reference

The planner is configured via a PlannerConfig JSON/YAML object. When using the profiler, this is placed under the features.planner section of the DGDR spec:

1features:
2 planner:
3 mode: disagg
4 backend: vllm
5 # optimization_target defaults to "throughput" — works out of the box

For SLA-based scaling:

1features:
2 planner:
3 optimization_target: sla
4 enable_throughput_scaling: true
5 enable_load_scaling: false
6 pre_deployment_sweeping_mode: rapid
7 mode: disagg
8 backend: vllm

Optimization Target

FieldTypeDefaultDescription
optimization_targetstringthroughputthroughput: scale based on queue/utilization thresholds. latency: aggressive low-latency thresholds. sla: regression-based scaling with ttft/itl targets.

When optimization_target is throughput or latency, load-based scaling is automatically enabled and throughput-based scaling is disabled. The ttft/itl fields are ignored.

Scaling Mode Fields (SLA mode)

FieldTypeDefaultDescription
enable_throughput_scalingbooltrueEnable throughput-based scaling (requires pre-deployment performance data). Only used when optimization_target: sla.
enable_load_scalingboolfalseEnable load-based scaling. Only used when optimization_target: sla.

At least one scaling mode must be enabled when using optimization_target: sla.

Pre-Deployment Sweeping

FieldTypeDefaultDescription
pre_deployment_sweeping_modestringrapidHow to generate engine performance data: rapid (AIC simulation, ~30s), thorough (real GPUs, 2-4h), or none (skip).

When throughput-based scaling is enabled, the planner needs engine performance data. At startup, it first tries to fetch self-benchmark results from the get_perf_metrics Dynamo endpoint (see PR #7779). If unavailable, it falls back to profiler-generated data (npz or JSON) at profile_results_dir. Both sources are converted to ForwardPassMetrics and fed into the FPM regression model.

Throughput-Based Scaling Settings

FieldTypeDefaultDescription
throughput_adjustment_intervalint180Seconds between throughput-based scaling decisions.
min_endpointint1Minimum number of engine endpoints to maintain.
max_gpu_budgetint8Maximum total GPUs the planner may allocate.
ttftfloat500.0TTFT SLA target (ms) for scaling decisions.
itlfloat50.0ITL SLA target (ms) for scaling decisions.

Load-Based Scaling Settings

FieldTypeDefaultDescription
load_adjustment_intervalint5Seconds between FPM regression updates and load-based scaling decisions. Even when only throughput scaling is enabled, live FPM observations are fed into the regression at this interval. Must be shorter than throughput_adjustment_interval.
max_num_fpm_samplesint64Maximum retained FPM observations for regression.
fpm_sample_bucket_sizeint16Number of buckets for observation retirement (must be a perfect square).
load_scaling_down_sensitivityint80Scale-down sensitivity 0–100 (0=never, 100=aggressive).
load_metric_samplesint10Number of metric samples to collect per decision.
load_min_observationsint5Minimum observations before making scaling decisions.

General Settings

FieldTypeDefaultDescription
modestringdisaggPlanner mode: disagg, prefill, decode, or agg.
backendstringvllmBackend: vllm, sglang, trtllm, or mocker.
environmentstringkubernetesRuntime environment: kubernetes, virtual, or global-planner.
namespacestringenv DYN_NAMESPACEKubernetes namespace for the deployment.

Traffic Prediction Settings

FieldTypeDefaultDescription
load_predictorstringarimaPrediction method: constant, arima, kalman, or prophet.
load_predictor_log1pboolfalseApply log1p transform to load data before prediction.
prophet_window_sizeint50Window size (seconds) for Prophet predictor.
load_predictor_warmup_tracestringnullPath to a warmup trace file for bootstrapping predictions.

Kalman Filter Settings

FieldTypeDefaultDescription
kalman_q_levelfloat1.0Process noise for level component.
kalman_q_trendfloat0.1Process noise for trend component.
kalman_rfloat10.0Measurement noise.
kalman_min_pointsint5Minimum data points before Kalman predictions activate.

Diagnostics Reports

FieldTypeDefaultDescription
report_interval_hoursfloat or null24.0Generate an HTML diagnostics report every N hours (simulated time). Set to null to disable periodic report generation.
report_output_dirstring./planner_reportsDirectory for HTML diagnostics reports.
live_dashboard_portint8080Port for the live diagnostics dashboard HTTP server. Set to 0 to disable. When enabled, visit http://host:port/ to view a real-time Plotly report of accumulated snapshots.

The same diagnostic signals surfaced in these reports are also exported as Prometheus metrics under the dynamo_planner_* prefix—for example estimated TTFT/ITL (dynamo_planner_estimated_ttft_ms, dynamo_planner_estimated_itl_ms), per-engine capacity and FPM queue depths, and load/throughput scaling decision enums.

Integration with Profiler

When the profiler runs with planner enabled, it:

  1. Selects the best prefill and decode engine configurations
  2. Generates engine performance data (prefill TTFT vs ISL, decode ITL vs KV-cache utilization)
  3. Saves the PlannerConfig and performance data into separate Kubernetes ConfigMaps
  4. Adds the planner service to the generated DGD, configured to read from those ConfigMaps

The planner receives its config via --config /path/to/planner_config.json which is mounted from the planner-config-XXXX ConfigMap. Profiling data is mounted from the planner-profile-data-XXXX ConfigMap.

See the Profiler Guide for the full profiling workflow and how to configure pre-deployment sweeping.

Hierarchical Deployments

If you want one public endpoint for a model but multiple private DGDs optimized for different request classes, use a hierarchical deployment:

  • one control DGD with Frontend, GlobalRouter, and GlobalPlanner
  • one or more prefill pool DGDs
  • one or more decode pool DGDs

In the current workflow, run profiling independently for each intended pool, then compose the final control DGD plus pool DGDs manually. See the Global Planner Guide.

See Also