For general TensorRT-LLM features and configuration, see the Reference Guide.
In disaggregated serving architectures, KV cache must be transferred between prefill and decode workers. TensorRT-LLM supports two methods for this transfer:
Start the disaggregated service: See Disaggregated Serving to learn how to start the deployment.
By default, TensorRT-LLM uses NIXL (NVIDIA Inference Xfer Library) with UCX (Unified Communication X) as backend for KV cache transfer between prefill and decode workers. NIXL is NVIDIA’s high-performance communication library designed for efficient data transfer in distributed GPU environments.
TensorRT-LLM supports two NIXL communication backends: UCX and LIBFABRIC. By default, UCX is used if no backend is explicitly specified. Dynamo currently supports both backends. For AWS EFA deployments, UCX with SRD transport is the tested and recommended backend (see AWS EFA below).
TensorRT-LLM can also leverage UCX (Unified Communication X) directly for KV cache transfer between prefill and decode workers. To enable UCX as the KV cache transfer backend, set cache_transceiver_config.backend: UCX in your engine configuration YAML file.
The environment variable TRTLLM_USE_UCX_KVCACHE=1 with cache_transceiver_config.backend: DEFAULT does not enable UCX. You must explicitly set backend: UCX in the configuration.
On AWS, UCX uses the SRD (Scalable Reliable Datagram) transport over EFA devices. NIXL discovers EFA rdmap* devices automatically through UCX — no NIXL-level configuration changes are needed.
Image options:
p5.48xlarge):See Release Artifacts for all available EFA images.
tensorrtllm-runtime image and mount the EFA SDK from the host node. This is what we tested on GB200 NVL72:EFA resource requests:
Required environment variables for EFA workers (set on both prefill and decode):
FI_EFA_ENABLE_SHM_TRANSFER must be 0. SHM transfers break NIXL GPU buffer registrations.Security context: AWS EFA currently requires privileged mode:
When running multinode decode, the decode leader launches workers via mpirun -> mgmn_worker_node, which loads TRT-LLM’s bundled NIXL rather than the system nixl_cu13. The container’s default NIXL_PLUGIN_DIR points to system plugins that are ABI-incompatible with TRT-LLM’s bundled NIXL. Override this on the decode service only:
Do not set this on prefill workers — they use nixl_cu13 which is compatible with the system plugins.
On GB200 NVL72 racks, NCCL requires a ComputeDomain CR for proper cuMem/NVLS initialization. Without it, workers fail with NCCL error 'unhandled system error' during model loading.
Both prefill and decode services must include ResourceClaims:
Required NCCL environment variables for GB200:
After deployment, confirm NIXL is using SRD over EFA in the worker logs:
Expected output:
srd/rdmap* confirms SRD transport over EFA devicesrdmap entries correspond to one EFA device per GPU