惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Diagnosing KubeAPIErrorBudgetBurn: When a 7-Year-Old Disk...
Kashish Lakh · 2026-05-24 · via DEV Community

If you manage Kubernetes on bare metal or on prem environments, you'll eventually encounter the KubeAPIErrorBudgetBurn alert from the kube-prometheus-stack.

Recently, this alert fired in our cluster. The availability dropped to 90.9%, and the error budget was rapidly depleting.

Kubernetes API Server Grafana Dashboard

This alert is driven by latency and timeouts, not just HTTP 5xx errors. Even a 200 OK response will burn the error budget if it exceeds the latency threshold. Our alert was firing in bursts 5 minute short burns and 1 hour long burns indicating periodic latency spikes rather than a constant load issue.

Here is the step-by-step RCA of how a hardware level failure manifested as a Kubernetes API SLO violation, and how we tracked it down.

Validating Compute and Network

The immediate assumption during an API server degradation is resource exhaustion. I checked the standard metrics:

  • CPU & Memory: Stable, no throttling.
  • PID Pressure: Normal.
  • Network & Kubelet: Healthy.

With compute ruled out, the next logical bottleneck for API server latency is its backing datastore: etcd.

Investigating etcd

Running a standard health check against the etcd master node initially returned a healthy response.

 k exec -i etcd-master-node-one -- sh
ETCDCTL_API=3 etcdctl \
  --cacert=/etc/kubernetes/pki/etcd/ca.crt \
  --cert=/etc/kubernetes/pki/etcd/server.crt \
  --key=/etc/kubernetes/pki/etcd/server.key \
  endpoint health --write-out=table
+----------------+--------+-------------+-------+
|    ENDPOINT    | HEALTH |    TOOK     | ERROR |
+----------------+--------+-------------+-------+
| 127.0.0.1:2379 |   true | 15.763264ms |       |
+----------------+--------+-------------+-------+

Enter fullscreen mode Exit fullscreen mode

However, looking directly at the etcd container logs revealed a completely different story.

apply request took too long
took: 409ms
expected-duration: 100ms
prefix: "read-only range"

Enter fullscreen mode Exit fullscreen mode

and:

agreement among raft nodes before linearized reading (duration: 400ms)

Enter fullscreen mode Exit fullscreen mode

Even read-only operations were stalling. Linearizable reads were waiting on Raft agreement for up to 400ms, and writes were taking 100-180ms. Because every Kubernetes API call (including leader elections and controller loops) goes through etcd, these stalls were causing the API server to time out.

Secondary components confirmed this. CoreDNS logged that local health requests took over 1s, and metrics-server threw http: Handler timeout errors. These weren't the root cause; they were symptoms of the API server waiting on etcd.

Checking the Prometheus metrics for etcd WAL (Write Ahead Log) confirmed severe latency.

Prometheus metrics showing etcd latency

Our p99 fsync duration was sitting between 300ms and 500ms. For a healthy etcd cluster backed by SSDs, p99 fsync should strictly be under 10ms.

Isolating the Disk IO

We knew etcd was slow to write to disk. The question was whether it was an application-level contention issue or a physical hardware problem.

Looking at the node's metrics, we saw severe disk IO utilization spikes that perfectly matched our alert windows.

Disk IO grafana dashboard

Running df -h /var/lib/etcd confirmed etcd was mounted on /dev/sda, sharing the disk with other workloads (including Longhorn).

df -h /var/lib/etcd
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2       1.8T  435G  1.3T  27% /

Enter fullscreen mode Exit fullscreen mode

To rule out or confirm hardware degradation, I dropped below the OS layer and ran a long SMART test directly on the drive using smartctl -t long /dev/sda.

Two attributes immediately stood out:

  1. 188 Command_Timeout: 85
188 Command_Timeout         0x0032   100   100   000    Old_age   Always       -       85

Enter fullscreen mode Exit fullscreen mode

  1. 9 Power_On_Hours: 62247
  9 Power_On_Hours          0x0032   100   100   001    Old_age   Always       -       62247

Enter fullscreen mode Exit fullscreen mode

A Command_Timeout value greater than zero is a critical hardware failure indicator. It means the system sent commands to the disk, but the disk controller or NAND flash cells physically failed to respond within the timeout window.

The Power_On_Hours translated to 7.1 years of continuous operation, pushing the drive well past a standard datacenter lifecycle. The Percent_Lifetime_Remain was down to 9%.

The Root Cause Chain

The RCA was conclusively a hardware failure cascading up to the control plane:

  1. The dying SSD experienced physical command timeouts.

  2. fsync operations stalled, causing etcd_disk_wal_fsync_duration_seconds to spike >300ms.

  3. etcd missed Raft heartbeats, causing temporary leader loss.

  4. kube-apiserver requests timed out waiting for etcd.

  5. KubeAPIErrorBudgetBurn alert triggered.

The Fix

The immediate remediation was simple: replace the failing drive. Once swapped, the fsync p99 dropped back below 10ms, and the error budget burn halted.

One note on interim mitigation: Moving etcd to a dedicated disk doesn't require downtime if you do it as a rolling change. Update the --data-dir path in /etc/kubernetes/manifests/etcd.yaml, let kubelet restart etcd on the new path, verify cluster health, and repeat on the remaining masters. The cluster stays operational throughout.

How to Catch This Early

Three monitoring gaps made this incident worse than it needed to be. Going forward, here is the new baseline for bare-metal clusters:

1. Alert on etcd WAL fsync p99, not just etcd health.
endpoint health is not a useful alerting signal for disk-related degradation. The metric that actually shows the problem is:

- alert: EtcdHighFsyncDuration
  expr: histogram_quantile(0.99, rate(etcd_disk_wal_fsync_duration_seconds_bucket[5m])) > 0.05
  for: 10m
  annotations:
    summary: "etcd WAL fsync p99 above 50ms on {{ $labels.instance }}"

Enter fullscreen mode Exit fullscreen mode

Alert at 50ms. Page at 100ms. By 300ms, you're already in incident territory.

2. Monitor disk IO saturation per node.
node_exporter exposes node_disk_io_time_seconds_total and node_disk_io_time_weighted_seconds_total. If you're running etcd on shared storage with IO heavy workloads like Longhorn, alert when IO utilization on the etcd node is consistently above 50%.

3. Run smartctl as a metric.
This is the one most teams never do. smartctl_exporter can expose SMART attributes as Prometheus metrics. Once you have Command_Timeout as a metric, you can alert the moment it becomes non-zero:

- alert: DiskCommandTimeout
  expr: smartctl_device_attribute{attribute_name="Command_Timeout"} > 0
  annotations:
    summary: "Disk command timeouts on {{ $labels.instance }}  check for hardware failure"

Enter fullscreen mode Exit fullscreen mode

The Lesson

Kubernetes abstracts away hardware so completely that it's easy to forget hardware exists.

The control plane is pods. etcd is a pod. The API server is a pod. Everything is orchestrated, monitored, and auto restarted. The abstraction layer is so good that when something goes wrong, the instinct is always to look upward at the pods, at the controllers, at the networking.

But pods run on nodes. Nodes run on disks. And a disk that has been running continuously for 7.1 years, logging 85 command timeouts in its own firmware, doesn't care about your SLO dashboards. It fails at the speed of physics, one fsync at a time.

The investigation for this incident touched Prometheus metrics, etcd internals, Raft consensus, IO scheduling, and hardware SMART data. That's four distinct layers below the original alert. Most Kubernetes runbooks don't go past layer two.

The most important diagnostic tool I used wasn't in any Kubernetes runbook. It was a command that talks directly to disk firmware, and it told me in two lines what three hours of Prometheus investigation couldn't.

Sometimes the answer is below the stack. You have to be willing to go there.

Running on-prem Kubernetes? Add etcd_disk_wal_fsync_duration_seconds_bucket to your alerting rules today. You might not have a dying disk but now you'd know if you did.