FSDP Ignores User-Defined NCCL Timeout with Device Mesh
When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`. Instead, they silently default to the standard PyTorch 30-minute timeout.
When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication.
- Symptom
torch.distributed.DistBackendError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp- Root cause
- When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`.
- Recommended fix
- Pass timeout directly to device_mesh initialization device_mesh = init_device_mesh('cuda', mesh_shape, timeout=timedelta(minutes=120)) This explicitly passes the desired timeout to the underlying process groups created by the device mesh, ensuring FSDP respects the longer limit.
- How Denpex helps
- Denpex matches FSDP Ignores User-Defined NCCL Timeout with Device Mesh across every rank in a distributed run and reports which rank failed first, so you act on the initiating node instead of the loudest one.
What this failure is
FSDP Ignores User-Defined NCCL Timeout with Device Mesh is a Network failure seen during ML training runs. When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`. Instead, they silently default to the standard PyTorch 30-minute timeout. Common tags: NCCL Timeout.
Is this what broke your run? Paste your log.
You're reading about FSDP Ignores User-Defined NCCL Timeout with Device Mesh. Paste your own crash log or traceback below and get the real root cause for YOUR run, not this generic entry. No account, no card. Logs are masked at ingress and never saved to account history.
Want 14 days on the Scale plan?
Request an evaluation code. A verified workplace organization activates up to 50 diagnoses a day, alerts, history, and follow-up questions. No credit card or automatic subscription.
Why it happens (the mechanism)
The user explicitly configures the timeout globally, so they assume the network is actually dead or hardware failed when a timeout occurs, rather than realizing it's a hardcoded default overriding their setting.
What you'll observe
- Watchdog caught collective operation timeout
- torch.distributed.DistBackendError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp
- ncclTimeout: unhandled system error
Common symptoms and what they mean
| Symptom | Why it happens |
|---|---|
| Long-running validation steps or checkpoint saves cause the training job to hang and then crash with a NCCL timeout exactly at 30 minutes, despite the user setting a higher timeout (e.g., 2 hours) in `init_process_group`. | When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`. Instead, they silently default to the standard PyTorch 30-minute timeout. |
| The issue primarily occurs when using `device_mesh` or `HYBRID_SHARD` strategies in FSDP. | When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`. Instead, they silently default to the standard PyTorch 30-minute timeout. |
Which systems are affected
- PyTorch FSDP
- NCCL
- Process Group
How to confirm this is the problem
Use this checklist to test the hypothesis against a small reproduction. No single line proves the root cause, so preserve the preceding events and compare one variable at a time.
- ✓Check the exact duration from the last successful step to the crash (if it is exactly 1800s / 30m, it's the default timeout).
- ✓Run with `TORCH_DISTRIBUTED_DEBUG=DETAIL` and check the initialized process groups.
Searchable error signature
torch.distributed.DistBackendError: NCCL error in: ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp
ncclTimeout: unhandled system error
Watchdog caught collective operation timeoutUse this text as a lookup key in logs and upstream issue trackers. It is not presented as a captured customer log. Confirm the cause from your own preceding events, versions, configuration and the cited references.
The fix and the prevention pattern
The root cause is on this page and stays free. A free account adds the exact remediation steps, saved history, and the fix on every entry in the encyclopedia.
Sign up free. Unlock the full analysisNo credit card. Daily allowance follows verified trust tier. Instant access.
Diagnose this failure in VS Code
Select the traceback or open the failed terminal, then run Denpex locally to see the initiating rank, collateral failures, exact fix, and verification command without uploading the log.
Install the free VS Code extensionNCCL errors in context
NCCL is where a distributed job reports failure, which is not the same as where it failed. The hub lists every common NCCL error next to what it actually indicates, and the environment variables that tell them apart.
Compare every nccl error side by sideRoot cause
- When FSDP uses `device_mesh` or certain sharding strategies like `HYBRID_SHARD`, it creates its own internal sub-process groups for inter-node and intra-node communication. These internally created process groups do not inherit the custom `timeout` specified by the user in `dist.init_process_group()`. Instead, they silently default to the standard PyTorch 30-minute timeout.
The fix and how to prevent it
Evaluate Denpex on your own logs
Request a Scale evaluation code. A verified workplace organization activates 14 days with up to 50 diagnoses a day. Every account keeps its current diagnosis allowance and gets a verification path. No card or automatic subscription.
Don't just read the fix, diagnose your run
The encyclopedia tells you what went wrong. Denpex tells you what went wrong in YOUR training run. With your logs, your config, and your stack.