SYSTEM Cited by 1 source
SMR drives (Shingled Magnetic Recording)¶
Definition¶
Shingled Magnetic Recording (SMR) is a hard-drive recording format that overlaps adjacent tracks on the platter surface like roof shingles, packing more tracks into the same radial distance and thereby increasing areal density beyond what conventional (perpendicular magnetic recording, PMR) drives can achieve. The tradeoff: the overlap means a new write on one track destroys the shingle above it, so random rewrites require reading back and re- writing the entire band of overlapping tracks. SMR drives therefore prefer large sequential writes and penalize random small writes.
Why SMR exists¶
Conventional PMR hit an areal-density wall — the write head has to be wide enough to magnetize a track reliably, but read heads can be narrower. SMR exploits this asymmetry: write wide, read narrow, but overlap adjacent writes so only a narrow stripe of each track remains "exposed" for reading. Net areal-density gain: ~10–25% per generation at equivalent process tech, without the laser-assisted write head required by HAMR.
Cost: the write-amplification envelope¶
Because writing a track destroys data in neighboring tracks, SMR drives organize the platter into zones (bands of contiguous shingled tracks). To modify any data within a zone, the drive must:
- Read all tracks in the zone into buffer.
- Erase the zone.
- Rewrite the zone end-to-end with the modified data in place.
For workloads that are append-heavy and read-mostly — archival, backup, content-delivery caches, cold storage, large sequential writes — SMR is nearly free. For small-random-write workloads — OLTP, frequent updates, small-file churn — SMR is a disaster.
Modern SMR deployments pair the drives with software that enforces the append-only / sequential-write discipline above the drive: log- structured filesystems, object stores that never rewrite in place, garbage-collection schedulers that compact zones in the background.
Flavors¶
- Drive-managed SMR (DM-SMR) — the drive exposes a standard block interface and hides the shingled-zone management internally, similar to how SSDs hide flash-block erase cycles. Pays the write- amplification cost silently and unpredictably. Suitable for consumer/archival.
- Host-managed SMR (HM-SMR) — the drive exposes zones as a first-class concept (via ZAC/ZBC commands); the host filesystem is responsible for the append-only discipline. Predictable performance but requires software support.
- Host-aware SMR (HA-SMR) — hybrid; drive enforces but host can optionally hint.
Large-scale operators (Dropbox, Seagate's hyperscaler customers) typically use HM-SMR with custom software.
Seen in production¶
Dropbox — >99% of storage fleet on SMR (2025)¶
Dropbox began adopting SMR in 2018; by 2022 SMR was ~25% of the fleet, by 2025 >99%. The migration is detailed in Four years of SMR storage. Dropbox's Magic Pocket block-storage stack is designed around append-only semantics that fit SMR naturally.
In the 2025 7th-generation hardware rollout, Dropbox was a first-mover on Western Digital's Ultrastar HC690, a 32 TB 11-platter SMR drive — roughly 10% more capacity than the previous generation in the same standard 3.5" casing. SMR is explicitly called out as what makes 30+ TB drive capacities possible today.
The vibration envelope¶
High-platter-count SMR drives (11 platters in the HC690) narrow the mechanical tolerance window considerably. The read/write head flies at nanometer precision; the 10k-RPM fans cooling a dense server induce vibration; the resulting position error signal (PES) cumulates; worst case, a write fault forces the drive to retry. This tightens the thermal/acoustic envelope for any system deploying dense SMR fleets and is a primary driver of co-developed storage chassis (see systems/sonic).
Where SMR doesn't fit¶
- Transactional databases (small random writes dominate).
- Scratch/temp/spill disks (unpredictable workload shapes).
- Anywhere sub-millisecond write latency matters per-operation.
What's next: HAMR¶
Heat-assisted magnetic recording uses a laser-heated write head to flip ever-smaller magnetic grains, unlocking another areal-density step beyond SMR. Dropbox's 2025 post names HAMR as the next generation's forcing function — it will push areal density further and tighten the acoustic/thermal envelope still more.
Seen in¶
- sources/2025-08-08-dropbox-seventh-generation-server-hardware — Dropbox 7th-gen storage: >99% SMR adoption across Magic Pocket; 32 TB Ultrastar HC690 (11-platter SMR) first-mover adoption; vibration envelope framing.