feat(io): single-transfer chunking + adaptive multi-NIC striping#351
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
A single RDMA transfer was posted as one WR on one QP/NIC, capping at single-outstanding bandwidth (~28 GB/s) regardless of message size. This PR:
chunkByteschunks (default 64KB, capped bymaxChunks) and round-robin them across the session's QPs to pipeline. Messages ≤chunkBytesare unchanged. Enabling chunking uses the inline post path (single posting thread), avoiding worker-thread handoff latency.All new behavior is config/env gated.
Performance
All numbers: 2 nodes, 400G ionic, qp_per_transfer=4, op=write (deployment config).
GPU memory (single NIC) — before =
main(4 worker), after = chunking (auto single-worker inline)A single QP never saturates the NIC (~28 GB/s) even at GB scale; chunking lifts it to the PCIe/line ceiling (~47 GB/s). GPU multi-NIC is PCIe-bound (single GPU Gen5x16 ≈ one NIC) → defaults to 1.
Host/CPU memory (chunking on) — multi-NIC + QP-depth scaling
Host DRAM has no single-x16 chokepoint, so throughput scales with both NIC count and QPs-per-NIC across NUMA-local NICs.
Single transfer (8 MB block):
Batch write (256 × 1 MB blocks), peak BW @ 1 MB block:
qp_per_transfer=4over 4 NICs is only 1 QP/NIC; raisingqp_per_transferlets chunking spread more QPs/NIC and unlocks the headroom above.Tests