Technology Quote by Brendan Gregg
““Beyond 60% utilization, the average response time doubles. By 80%, it has tripled. As disk I/O latency is often the bounding resource for an application, increasing the average latency by double or higher can have a significant negative effect on application performance. This is why disk utilization can become a problem well before it reaches 100%, as it is a queueing system where requests (typically) cannot be interrupted and must wait their turn.””
About This Quote
Source Technical Talk: Disk Utilization and Latency, 2020
High disk usage sharply increases latency because I/O is a queue; performance degrades long before full capacity.
In simple terms: More disk use means slower response times.
Monitor and limit disk load.
Themes
Mood
Type
When to use this quote
- database servers
- cloud storage
- high‑traffic web services
Key Concepts
Questions to Reflect On
- What metrics reveal early saturation?
- How can you redesign to reduce I/O contention?
Ignoring other resources may mask the issue.