Load average is high but the CPU looks idle
Linux counts uninterruptible processes in the load average, so a storage or NFS problem produces a huge load figure with almost no CPU use.
What you see
uptime shows a load of 30 on an 8-core box, but top shows the CPU 95% idle. The machine feels sluggish and some commands hang.
What is actually wrong
Processes stuck in D state waiting on I/O — a slow or failing disk, a hung NFS mount, or a saturated storage path. Occasionally very high context switching.
Codes and articles
The fix
Separate CPU load from I/O wait
Load is high and CPU is not. The load average alone cannot tell you which, so start by splitting them.
Look at the CPU breakdown. The %wa column is I/O wait.
top -bn2 -d1 | grep -E '^%Cpu' | tail -1vmstat 1 5
In vmstat, the 'b' column counts processes blocked on I/O. If b is high and 'r' is low, no amount of CPU would help.
List the processes actually in uninterruptible sleep.
ps -eo state,pid,user,wchan:30,cmd | awk '$1 ~ /D/'The wchan column names the kernel function they are stuck in — nfs_wait, io_schedule and similar point straight at the subsystem.
Find which device is saturated.
iostat -xz 1 5%util near 100 with a high await means that device is the bottleneck. A high await with low %util usually means the storage behind it, not the disk itself.
Attribute the I/O to a process.
sudo iotop -oPa -n 5Check for hung NFS mounts, a very common cause of unkillable D-state processes.
mount -t nfs,nfs4sudo dmesg -T | grep -i 'nfs.*not responding' | tail
Look for kernel hung-task warnings, which name the stuck process and its stack.
sudo dmesg -T | grep -iA10 'hung_task\|blocked for more than' | tail -40
uptime; vmstat 1 3Related faults
Where this stops. This write-up was written and checked by hand. It says what each step changes, how to confirm it worked and how to reverse it, and anything destructive is flagged before you reach it. If it does not match what your machine is doing, search the Support Centre for the exact code or message — and when something needs a person, get in touch.