Skip to content

DataLoader Deadlock from Silent Worker OOM

When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.

Quick answer

When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer.

Symptom
RuntimeError: DataLoader worker (pid(s) X) exited unexpectedly
Root cause
When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.
Recommended fix
Increase Docker shared memory docker run --shm-size=8g ... Provides enough shared memory for PyTorch to pass tensors between workers via IPC.
How Denpex helps
Denpex matches DataLoader Deadlock from Silent Worker OOM 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.
Environment#DataLoader Deadlock

What this failure is

DataLoader Deadlock from Silent Worker OOM is a Environment failure seen during ML training runs. When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely. Common tags: DataLoader Deadlock.

Live diagnosis, no signup

Is this what broke your run? Paste your log.

You're reading about DataLoader Deadlock from Silent Worker OOM. 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.

training_logs.txt
No log to hand? Try one:

3 free diagnoses/day

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.

Evaluate one incident

Why it happens (the mechanism)

Looks like a deadlock or GPU issue because the GPU is starving, but it's actually an Out Of Memory error inside a container's shared memory limit.

What you'll observe

  • Bus error (core dumped)
  • RuntimeError: DataLoader worker (pid(s) X) exited unexpectedly

Common symptoms and what they mean

SymptomWhy it happens
Dataloader hangs waiting for data from a worker that no longer exists.When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.
Sometimes throws a Bus Error if shared memory (/dev/shm) runs out.When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.
Silent hang if Linux OOM killer terminates the child process without the parent receiving the signal correctly in older PyTorch versions.When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.

Which systems are affected

  • PyTorch
  • Docker
  • Linux OS

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 system logs for OOM killer: `dmesg -T | grep -i oom`
  • Check Docker container stats for memory/shm limits: `df -h /dev/shm`

Searchable error signature

search key
RuntimeError: DataLoader worker (pid(s) X) exited unexpectedly

Use 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 analysis

No 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 extension

Root cause

  • When a PyTorch DataLoader worker exceeds available memory (often due to small Docker `/dev/shm`), it is silently killed by the OS OOM killer. The parent process is waiting on a multiprocessing Queue for data from this worker. Because the worker died without sending an EOF or error state, the parent hangs indefinitely.

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.

We send a single-use code tied to that address. Static provider and TLD rules do not reject valid addresses. Account trust determines the benefit after signup.

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.