Multinode Deployment Guide#

This guide explains how to deploy Dynamo workloads across multiple nodes. Multinode deployments enable you to scale compute-intensive LLM workloads across multiple physical machines, maximizing GPU utilization and supporting larger models.

Overview#

Dynamo supports multinode deployments through the multinode section in resource specifications. This allows you to:

  • Distribute workloads across multiple physical nodes

  • Scale GPU resources beyond a single machine

  • Support large models requiring extensive tensor parallelism

  • Achieve high availability and fault tolerance

Basic requirements#

  • Kubernetes Cluster: Version 1.24 or later

  • GPU Nodes: Multiple nodes with NVIDIA GPUs

  • High-Speed Networking: InfiniBand, RoCE, or high-bandwidth Ethernet (recommended for optimal performance)

Advanced Multinode Orchestration#

Using Grove (default)#

For sophisticated multinode deployments, Dynamo integrates with advanced Kubernetes orchestration systems:

  • Grove: Network topology-aware gang scheduling and auto-scaling for AI workloads

  • KAI-Scheduler: Kubernetes native scheduler optimized for AI workloads at scale

These systems provide enhanced scheduling capabilities including topology-aware placement, gang scheduling, and coordinated auto-scaling across multiple nodes.

Features Enabled with Grove:

  • Declarative composition of AI workloads

  • Multi-level horizontal auto-scaling

  • Custom startup ordering for components

  • Resource-aware rolling updates

KAI-Scheduler is a Kubernetes native scheduler optimized for AI workloads at large scale.

Features Enabled with KAI-Scheduler:

  • Gang scheduling

  • Network topology-aware pod placement

  • AI workload-optimized scheduling algorithms

  • GPU resource awareness and allocation

  • Support for complex scheduling constraints

  • Integration with Grove for enhanced capabilities

  • Performance optimizations for large-scale deployments

Prerequisites#
  • Grove installed on the cluster

  • (Optional) KAI-Scheduler installed on the cluster with default queue name dynamo created. You can use a different queue name by setting the nvidia.com/kai-scheduler-queue annotation on the DGD resource.

KAI-Scheduler is optional but recommended for advanced scheduling capabilities.

Using LWS and Volcano#

LWS is a simple multinode deployment mechanism that allows you to deploy a workload across multiple nodes.

Volcano is a Kubernetes native scheduler optimized for AI workloads at scale. It is used in conjunction with LWS to provide gang scheduling support.

Core Concepts#

Orchestrator Selection Algorithm#

Dynamo automatically selects the best available orchestrator for multinode deployments using the following logic:

When Both Grove and LWS are Available:#

  • Grove is selected by default (recommended for advanced AI workloads)

  • LWS is selected if you explicitly set nvidia.com/enable-grove: "false" annotation on your DGD resource

When Only One Orchestrator is Available:#

  • The installed orchestrator (Grove or LWS) is automatically selected

Scheduler Integration:#

  • With Grove: Automatically integrates with KAI-Scheduler when available, providing:

    • Advanced queue management via nvidia.com/kai-scheduler-queue annotation

    • AI-optimized scheduling policies

    • Resource-aware workload placement

  • With LWS: Uses Volcano scheduler for gang scheduling and resource coordination

Configuration Examples:#

Default (Grove with KAI-Scheduler):

apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment
metadata:
  name: my-multinode-deployment
  annotations:
    nvidia.com/kai-scheduler-queue: "gpu-intensive"  # Optional: defaults to "dynamo"
spec:
  # ... your deployment spec

Force LWS usage:

apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment
metadata:
  name: my-multinode-deployment
  annotations:
    nvidia.com/enable-grove: "false"
spec:
  # ... your deployment spec

The multinode Section#

The multinode section in a resource specification defines how many physical nodes the workload should span:

apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment
metadata:
  name: my-multinode-deployment
spec:
  # ... your deployment spec
  services:
    my-service:
      ...
      multinode:
        nodeCount: 2
      resources:
        limits:
          gpu: "2"            # 2 GPUs per node

GPU Distribution#

The relationship between multinode.nodeCount and gpu is multiplicative:

  • multinode.nodeCount: Number of physical nodes

  • gpu: Number of GPUs per node

  • Total GPUs: multinode.nodeCount × gpu

Example:

  • multinode.nodeCount: "2" + gpu: "4" = 8 total GPUs (4 GPUs per node across 2 nodes)

  • multinode.nodeCount: "4" + gpu: "8" = 32 total GPUs (8 GPUs per node across 4 nodes)

Tensor Parallelism Alignment#

The tensor parallelism (tp-size or --tp) in your command/args must match the total number of GPUs:

# Example: 2 multinode.nodeCount × 4 GPUs = 8 total GPUs
apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment
metadata:
  name: my-multinode-deployment
spec:
  # ... your deployment spec
  services:
    my-service:
      ...
      multinode:
        nodeCount: 2
      resources:
        limits:
          gpu: "4"
      extraPodSpec:
        mainContainer:
          ...
          args:
            # Command args must use tp-size=8
            - "--tp-size"
            - "8"  # Must equal multinode.nodeCount × gpu

Backend-Specific Operator Behavior#

When you deploy a multinode workload, the Dynamo operator automatically applies backend-specific configurations to enable distributed execution. Understanding these automatic modifications helps troubleshoot issues and optimize your deployments.

vLLM Backend#

For vLLM multinode deployments, the operator automatically configures Ray for distributed inference:

Leader Node#

  • Ray Head: The operator prepends ray start --head --port=6379 to your existing command

  • Probes: All health probes remain active (liveness, readiness, startup)

Worker Nodes#

  • Ray Worker: The command is replaced with ray start --address=<leader-hostname>:6379 --block

  • Probes: All probes (liveness, readiness, startup) are automatically removed since workers don’t expose health endpoints

Compilation Cache Support#

When a volume mount is configured with useAsCompilationCache: true, the operator automatically sets:

  • VLLM_CACHE_ROOT: Environment variable pointing to the cache mount point

SGLang Backend#

For SGLang multinode deployments, the operator injects distributed training parameters:

Leader Node#

  • Distributed Flags: Injects --dist-init-addr <leader-hostname>:29500 --nnodes <count> --node-rank 0

  • Probes: All health probes remain active

Worker Nodes#

  • Distributed Flags: Injects --dist-init-addr <leader-hostname>:29500 --nnodes <count> --node-rank <dynamic-rank>

    • The node-rank is automatically determined from the pod’s stateful identity

  • Probes: All probes (liveness, readiness, startup) are automatically removed

Note: The operator intelligently injects these flags regardless of your command structure (direct Python commands or shell wrappers).

TensorRT-LLM Backend#

For TensorRT-LLM multinode deployments, the operator configures MPI-based communication:

Leader Node#

  • SSH Configuration: Automatically sets up SSH keys and configuration from a Kubernetes secret

  • MPI Command: Wraps your command in an mpirun command with:

    • Proper host list including all worker nodes

    • SSH configuration for passwordless authentication on port 2222

    • Environment variable propagation to all nodes

    • Activation of the Dynamo virtual environment

  • Probes: All health probes remain active

Worker Nodes#

  • SSH Daemon: Replaces your command with SSH daemon setup and execution

    • Generates host keys in user-writable directories (non-privileged)

    • Configures SSH daemon to listen on port 2222

    • Sets up authorized keys for leader access

  • Probes:

    • Liveness and Startup: Removed (workers run SSH daemon, not the main application)

    • Readiness: Replaced with TCP socket check on SSH port 2222

      • Initial Delay: 20 seconds

      • Period: 20 seconds

      • Timeout: 5 seconds

      • Failure Threshold: 10

Additional Configuration#

  • Environment Variable: OMPI_MCA_orte_keep_fqdn_hostnames=1 is added to all nodes

  • SSH Volume: Automatically mounts the SSH keypair secret (typically named mpirun-ssh-key-<deployment-name>)

Important: TensorRT-LLM requires an SSH keypair secret to be created before deployment. The secret name follows the pattern mpirun-ssh-key-<component-name>.

Compilation Cache Configuration#

The operator supports compilation cache volumes for backend-specific optimization:

Backend

Support Level

Environment Variables

Default Mount Point

vLLM

Fully Supported

VLLM_CACHE_ROOT

User-specified

SGLang

Partial Support

None (pending upstream)

User-specified

TensorRT-LLM

Partial Support

None (pending upstream)

User-specified

To enable compilation cache, add a volume mount with useAsCompilationCache: true in your component specification. For vLLM, the operator will automatically configure the necessary environment variables. For other backends, volume mounts are created, but additional environment configuration may be required until upstream support is added.

Next Steps#

For additional support and examples, see the working multinode configurations in:

These examples demonstrate proper usage of the multinode section with corresponding gpu limits and correct tp-size configuration.