InfiniBand Topology Provider
Topograph provides two variations of InfiniBand provider. Both discover the IB fabric switch tree using ibnetdiscover, which is useful for any cluster — CPU-only, mixed, or GPU-accelerated — where topology-aware scheduling across an InfiniBand fabric improves workload performance. NVLink domain discovery is an additional capability that applies only to nodes with NVLink-connected NVIDIA GPUs.
Why automate IB discovery? Hand-maintaining IB topology — a static topology.conf or a set of hand-applied node labels — is feasible at ~32 nodes with a stable network and a careful operator. It does not scale. At 1,000 nodes with InfiniBand fabric churn, NVLink partitions shifting with tenant allocation, and a constant background rate of link degradation and node cycling, manual maintenance becomes the dominant source of scheduling misplacement. Topograph keeps topology data current as the cluster changes, removing that burden.
The choice of which to use depends on the specifics of the deployment environment:
- Use
infiniband-bmfor bare-metal clusters (e.g. Slurm) - Use
infiniband-k8sfor Kubernetes clusters
If NetQ is deployed in your environment, consider using the NetQ provider instead — it discovers topology via the NetQ management API rather than directly from the fabric, which avoids node access requirements and is the standard approach for Spectrum-X environments.
For Multi-Node NVLink (MNNVL) Kubernetes clusters (e.g. GB200 NVL72), do not substitute the DRA provider when backend-fabric locality matters. The DRA provider is limited to Slinky topology/block output, requires nvidia.com/gpu.clique to already be present on every participating node, and discovers only NVLink partition membership. It does not discover the InfiniBand or Ethernet switch fabric between partitions, so it cannot guide placement when a workload spans more than one NVLink partition. Use infiniband-k8s (or NetQ, when available) to include that fabric hierarchy.
Both variants are presently single-region only (multi-region requests return a 400 Bad Request error). No CSP credentials are required.
Output
Both variants produce the same topology representation, and are in turn consumed by whichever engine you configure:
- Slurm engine (
engine: slurm) — writes atopology.conffile describing the switch tree, used by the Slurm topology plugin for topology-aware scheduling - Kubernetes engine (
engine: k8s) — appliesfabric.topograph.run/labels to nodes reflecting their position in the switch hierarchy and (where applicable) their NVLink domain - NFD engine (
engine: nfd) — publishes topology as Node Feature DiscoveryNodeFeatureandNodeFeatureGroupcustom resources - Slinky engine (
engine: slinky) — writes topology data to a Kubernetes ConfigMap for Slurm-on-Kubernetes deployments
See the engine documentation (docs/engines/) for details on each output format.
infiniband-bm (Bare-Metal)
Prerequisites
pdshmust be installed on the node running Topograph and able to reach at least one node per IB fabric segment — Topograph discovers the full fabric from a single entry point per segment, so every node does not need to be reachable via pdshibnetdiscovermust be available on cluster nodes (invoked viapdshwithsudo) — part of the standardinfiniband-diagspackage (dnf install infiniband-diags/apt install infiniband-diags), expected to already be present on any properly configured IB system- NVIDIA GPU driver required on nodes with NVLink-connected GPUs when
accelerator.source: nvidia-smiis configured. Nodes without accelerator-domain data are still included in the IB switch tree.
How It Works
- Runs
sudo ibnetdiscoverviapdshon one node per IB fabric segment to map the full switch tree - When the
acceleratorsection selectsnvidia-smi, runsnvidia-smi --query-gpu=fabric.clusterUuid,fabric.cliqueId --format=csv,noheaderviapdshacross all nodes to collect NVLink partition IDs. Identical rows returned for multiple GPUs are merged, unavailable (N/A) fields are rejected, and the CSV pair is normalized toClusterUUID.CliqueId— the same format asnvidia.com/gpu.cliqueset by the GPU Operator device plugin on MNNVL systems. - Combines the switch tree and any NVLink clique data into the topology graph
Configuration
No credentials are required. Set provider: infiniband-bm in your Topograph config:
Accelerator discovery is independent of InfiniBand fabric discovery and is
disabled when the accelerator section is omitted or empty. Bare-metal
deployments support nvidia-smi or none:
Verifying the Output
After triggering topology generation, query the result endpoint:
For the Slurm engine, verify the generated topology.conf reflects the expected switch hierarchy. See the Slurm engine documentation for details.
infiniband-k8s (Kubernetes)
Prerequisites
- Topograph deployed via Helm — when
accelerator.sourceisnvidia-smi, the node-data-broker DaemonSet collects NVLink partition IDs from each node and stores them as Kubernetes node annotations (topograph.run/cluster-id). Withkubernetes-labelornone, the broker skips that collection. - The default
ghcr.io/nvidia/topographimage includesibnetdiscover(Alpinerdma-core). No separate InfiniBand image is required. IB deployments typically run the broker privileged and mount host/sys/classsoibnetdiscovercan reach IB devices — seevalues.k8s.ib-example.yaml. - NVIDIA GPU Operator — standard on NVIDIA GPU Kubernetes clusters; manages the device plugin DaemonSet used to read NVLink clique IDs. Required only for NVLink domain discovery; on clusters without NVLink-connected GPUs this does not apply and the provider will still discover the IB switch tree.
How It Works
- Runs
ibnetdiscoverby exec-ing into a node-data-broker pod on each node to map the switch tree - When
provider.params.acceleratoris non-empty, resolves accelerator domains independently using itssource:nvidia-smireads the broker-writtentopograph.run/cluster-idannotation,kubernetes-labelreads a configured Node label, andnoneexplicitly disables accelerator discovery. Omitting the section or using an empty object also disables it. NVL partition IDs useClusterUUID.CliqueId, the same format asnvidia.com/gpu.clique. - Combines the switch tree and any NVLink clique data into the topology graph
Configuration
No credentials are required. The provider uses the in-cluster service account automatically.
Set provider: infiniband-k8s in your Topograph config:
Parameters
Topology request parameters
The following optional parameters can be passed in the topology request payload:
For a manual request, keep accelerator.source consistent with the source configured for the deployed node-data-broker. In particular, source: nvidia-smi reads the broker-written topograph.run/cluster-id annotation; it does not execute nvidia-smi or change the broker’s GPU Operator workload target.
Helm node-data-broker settings
The following settings select the GPU Operator workload used by the node-data-broker when provider.params.accelerator.source is nvidia-smi. They are deployment settings and cannot be changed by a topology request:
With Helm, configure the accelerator source under provider.params. The chart writes the provider configuration to both the node-data-broker and node-observer ConfigMaps, keeping chart-generated topology requests aligned with broker collection. When the source is nvidia-smi, omitted gpuOperatorNamespace and devicePluginDaemonSet values are rendered as gpu-operator and nvidia-device-plugin-daemonset, respectively. The chart also drops the broker’s GPU Operator pod-exec permissions when the source is not nvidia-smi:
To use a non-default GPU Operator namespace or device-plugin DaemonSet:
The node-data-broker applies node annotations once when its pod starts. Restart the broker pod to re-apply them after relevant node or provider metadata changes.
If ibnetdiscover needs extra config files, the chart can render ConfigMaps and mount them into the node-data-broker pods:
Example request payload with nodeSelector:
Verifying the Output
After topology generation, inspect the node labels applied by Topograph:
See the Kubernetes engine documentation for details on the label schema.