High load average with low CPU usage
The expensive part of high load average with low cpu usage is rarely the first command. It is the untested assumption that sends an operator toward the wrong layer. This guide replaces that assumption with a bounded diagnostic sequence.
Linux performance is a queueing problem expressed through CPU, memory, storage, network, and scheduler behavior. Start with pressure and latency, then identify the responsible workload.
What this question is really asking
The search intent behind this problem is finding uninterruptible I/O, runnable queues, and blocked tasks. That wording matters because it sets the boundary of the investigation. A vague request to “fix production” invites unrelated changes; a precise question produces a testable hypothesis and a clear finish line.
Establish the recovery path first. Know how to regain access, restore the previous artifact or configuration, and contact the system owner. Then record current state before a restart or deploy erases it.
Start with evidence, not remediation
Run a compact read-only sequence:
uptime
vmstat 1 5
ps -eo state,pid,comm,wchan:32 --sort=state
iostat -xz 1 5
Each command should answer one question. Do not collect output simply because it looks technical. Mark what confirms normal behavior, what contradicts the working theory, and what is still unknown. If a command is unavailable, record that fact rather than silently replacing it with a riskier action.
The central interpretation for this case is: Linux load includes runnable tasks and tasks in uninterruptible sleep. Storage, network filesystems, and kernel waits can raise load while CPU remains idle.
Build the failure chain
Describe the system as a path from the user to the dependency that completes the request. Then place each observation on that path. A strong explanation accounts for the symptom, the timing, and why healthy-looking components did not prevent the failure.
Use this sequence:
- Reproduce the exact external symptom.
- Bound which hosts, tenants, regions, or requests are affected.
- Compare desired configuration with effective runtime state.
- Read the smallest log window around the first failure.
- Check saturation, errors, traffic, and recent changes.
- State one hypothesis and the observation that could disprove it.
- Choose the smallest reversible test.
If the evidence does not converge, widen one boundary at a time. Jumping from application logs to a fleet-wide restart skips the layers most likely to explain the problem.
What experienced operators resist
They resist changing configuration from memory when the effective runtime state can be inspected. They resist deleting state to clear an alert. They resist declaring recovery from a process status rather than the original user journey.
Most importantly, they resist solving two hypotheses at once. One reversible test produces evidence; five simultaneous edits produce a mystery.
Make the repair safely
Write the proposed command, expected effect, verification, and rollback before executing it. Validate syntax before reload. Keep a recovery session open during access or firewall work. For data changes, confirm backup age and restoration procedure—not merely that a backup job reported success.
After the change, test the original symptom from outside the host. Then check the adjacent failure modes: latency, errors, resource pressure, retry volume, and data correctness. “The process started” is not the same as “the service recovered.”
Turn this article into a runbook
Preserve the smallest reproducible example and the output that distinguished the root cause from nearby symptoms. Link the final fix to monitoring that would expose recurrence earlier.
For the underlying model, consult Linux kernel administration documentation. Product behavior and defaults change, so first-party documentation should win over copied snippets.
Related Tryssh guides
Continue with linux performance first 10 minutes, linux high cpu, and linux high memory. These connect the immediate symptom to access safety, incident response, and durable operating practice.
Investigate it with Tryssh
Tryssh is a native macOS SSH workspace built for this evidence-first loop. Its copilot can run safe read-only checks, retain host-specific context, and explain combined output. The visible terminal remains separate, SSH secrets stay in the macOS Keychain, and commands that change state wait for explicit approval.
That boundary is especially useful under pressure: automation gathers facts quickly, while the operator remains responsible for blast radius. Download Tryssh for macOS and rehearse the runbook on a non-production host before the next incident.