etcd

Disk Latency Throttling etcd Performance

critical
Resource ContentionUpdated Feb 21, 2026

High disk fsync latency (>10ms) causes etcd performance degradation, leading to slow API responses, leader elections, and cluster instability. This is the most critical performance bottleneck for etcd.

How to detect:

Monitor etcd_disk_wal_fsync_duration_seconds and etcd_disk_backend_commit_duration_seconds histograms. P99 WAL fsync latency should be <10ms, backend commit latency should be <25ms. Check for 'slow fdatasync' messages in logs (indicates >1s latency).

Recommended action:

Move etcd to dedicated SSD storage with low latency. Use iostat to verify disk await times are <10ms. Separate etcd disks from other workloads. Consider NVMe drives for demanding workloads. Enable auto-compaction to reduce database size.