Assuming identical Docker images guarantee identical environments
Docker containers share the host Linux kernel, NVIDIA kernel modules, and PCIe hardware topology, which vary across hosts.
Operator task guide
When identical containers succeed on Node 0 but fail on Node 14, compare host-level kernel, driver, topology, and PCIe configurations between the golden and defective node.
Isolate subtle divergences such as driver minor versions, PCIe link generation downgrade, CPU NUMA socket memory binding, and sysctl network buffer settings.
Unattended OS upgrades or partial node reboots frequently leave different hosts running mismatched kernel modules or library ABIs, breaking inter-node collectives.
nvidia-smi --query-gpu=driver_version --format=csv,noheader
cat /proc/driver/nvidia/versionVerify that every GPU on both nodes has negotiated its maximum bus speed (such as Gen5 x16). A degraded riser or marginal lane drops bandwidth to Gen3 or Gen1.
lspci -vvv | rg -E '(LnkCap|LnkSta):.*Speed.*Width'If a GPU on one node is bound to a remote CPU socket across the UPI/QPI interconnect rather than its local NUMA node, host-to-device memory transfers suffer severe latency.
nvidia-smi topo -m
numactl --hardwareDistributed training requires expanded network receive and transmit buffers. Ensure host sysctls match across all nodes in the partition.
sysctl net.core.rmem_max net.core.wmem_max net.ipv4.tcp_rmem
sysctl vm.max_map_count| Signal | What it means | Next action |
|---|---|---|
| Driver version 535.129 on Node 14 vs 535.154 on Node 0 | Driver minor version mismatch causing collective transport fallback | Synchronize NVIDIA driver and CUDA user-space versions across the fleet. |
| PCIe link speed 8GT/s (Gen3) instead of 32GT/s (Gen5) | Hardware link negotiation defect on the host motherboard | Reseat GPU card or mark host for hardware vendor maintenance. |
| NUMA affinity crossing CPU sockets on one host | Process launcher failed to pin processes to local NUMA node | Configure numactl or framework launcher with local socket binding. |
| Container /dev/shm default 64MB on one host | Docker or Kubernetes container runtime configuration variance | Mount dshm volume with sufficient shared memory for PyTorch collectives. |
Docker containers share the host Linux kernel, NVIDIA kernel modules, and PCIe hardware topology, which vary across hosts.
Single-node tests often pass because they do not stress multi-node network buffers, cross-socket UPI links, or inter-host collectives.
NCCL transport selections can fall back from NVLink to shared memory when peer nodes run divergent driver releases.
Compare cluster environments and configuration logs in your browser.
Generate unified communication variables across heterogeneous hosts.
Validate topology, PCIe speeds, and bandwidth before launching jobs.
Maintain configuration consistency across cloud rental fleets.
Containers share the underlying host kernel, driver modules, and hardware bus topologies. If one host has a degraded PCIe slot, mismatched driver patch, or improper NUMA pinning, the containerized workload fails despite identical user code.
In multi-node training, gradients must be transferred from GPU memory to host NICs. If a GPU drops from Gen5 to Gen1 or Gen3, host-to-device transfers bottleneck the entire global all-reduce communication step.
Run a peer configuration diff between a working node and the failing node. Compare lspci link capabilities, driver versions, and network sysctls to isolate the divergent hardware or operating system setting in minutes.
Paste the logs for an answer-first diagnosis, evidence request and verification step.
Diagnose the incident