What Is an SMR Drive? How It Works and When to Avoid It

An SMR drive is a hard disk drive that uses shingled magnetic recording, a method of writing data in overlapping tracks to squeeze more storage onto each platter. The name comes from the visual resemblance to roof shingles: each new track partially overlaps the one before it, leaving only a narrow strip of the previous track exposed for reading. This overlap lets manufacturers pack tracks closer together, boosting capacity by up to 20% or more compared to traditional drives of the same physical size. The tradeoff is a significant penalty when the drive needs to rewrite or modify existing data.

How SMR Writing Works

Traditional hard drives, called CMR (conventional magnetic recording) drives, write data in parallel tracks with small gaps between them. Each track is independent: the drive can read or write any single track without touching its neighbors. This is straightforward and keeps speeds consistent.

SMR drives take a different approach. The write head lays down a wide track, then shifts over by only a fraction of that width before writing the next one. The new track covers most of the previous track, leaving just a thin residual strip. That thin strip is still wide enough for the read head to pick up the data, because reading a narrow track is physically easier than writing one. The write head only needs one sharp edge instead of two, which allows a stronger magnetic field and tighter spacing.

The result is higher track density, which translates directly into more storage capacity. But it creates a fundamental constraint: you can’t rewrite a single track without destroying the data on the overlapping tracks that came after it. To change even a small piece of data, the drive has to read the neighboring tracks, rewrite the target track, and then rewrite all the affected neighbors. This process is called a read-merge-write operation, and it’s the root cause of SMR’s biggest weakness.

The Write Speed Problem

Sequential writes, where data flows in a long continuous stream, work well on SMR drives. The head simply lays down one shingled track after another, and performance stays normal. The trouble starts with random writes, the kind that happen when your operating system updates small files, moves data around, or handles many applications writing simultaneously.

Each random write triggers a chain reaction of reads and rewrites across neighboring tracks. This is called write amplification: one small write request forces the drive to do far more actual writing behind the scenes. In practice, this can cause write speeds to drop dramatically. Users have reported latencies jumping from single-digit milliseconds to 1,000 or even 10,000 milliseconds per operation during heavy random writes, with effective transfer rates falling to kilobytes per second.

To mask this problem, SMR drives include a media cache, a section of the disk that uses conventional (non-overlapping) recording. When non-sequential writes come in, the drive temporarily redirects them to this cache area, which sits on the faster outer tracks of the platter. Later, during idle time, the drive migrates that cached data back to its proper location in the shingled zones through a cleanup process. This works well for light, bursty workloads. But if writes keep coming faster than the drive can clean up, the cache fills, and performance drops sharply until the drive catches up. Flushing a full cache can take around 30 minutes on some models.

SMR vs. CMR: Capacity and Cost

The whole point of SMR is density. As of 2025, the largest commercial SMR drive in a standard 3.5-inch form factor holds 36 TB (Seagate’s Exos M series), while the largest CMR drive in the same size tops out at 30 TB. In the 2.5-inch laptop size, SMR drives reach 3 TB or more, versus 2.4 TB for CMR. Because SMR can store the same amount of data on fewer platters, or more data on the same number, the cost per terabyte tends to be lower.

For buyers, this means SMR drives offer the best price-to-capacity ratio when raw storage space is the priority. If you need the biggest drive for the least money and your workload fits, SMR makes financial sense.

Three Types of SMR Management

Not all SMR drives handle the shingling complexity the same way. There are three approaches, and they determine how much the drive hides from your computer’s operating system.

  • Drive-managed (DM-SMR): The drive handles everything internally. It looks like a normal hard drive to your computer, redirecting writes to the media cache and cleaning up on its own. This is the most common type in consumer drives. The downside is unpredictable performance dips when the cache fills, with no way for your system to anticipate or prevent them.
  • Host-managed (HM-SMR): The operating system takes full control of where and how data gets written to the shingled zones. This requires specialized software or file system support, but it eliminates surprise slowdowns because the system knows exactly how the drive works. These are typically found in data center environments.
  • Host-aware (HA-SMR): A middle ground. The drive can accept random writes like a drive-managed model, but it also exposes its zone layout to the operating system. Software that understands SMR can optimize writes, while software that doesn’t will still function normally. In practice, most consumer applications don’t take advantage of this.

Where SMR Drives Work Well

SMR drives excel in “write once, read many” scenarios. If you’re building a media library, storing backups, archiving photos and videos, or keeping cold data that rarely changes, an SMR drive performs just fine. The sequential writes that fill the drive initially go at normal speed, and reads are unaffected by the shingled layout since the read head simply follows the narrow exposed strips.

Surveillance systems that record continuous video streams are another good fit, since the writes are sequential and predictable. Large-scale cloud storage providers also use SMR drives for archival tiers where data is written in bulk and accessed infrequently.

Where SMR Drives Cause Problems

Active workloads are where SMR falls apart. Using an SMR drive as your main desktop or laptop drive means the operating system is constantly writing small files, updating metadata, and managing swap space. All of this triggers the random-write penalty. The experience feels like a drive that intermittently freezes or crawls.

Traditional RAID arrays are particularly problematic. RAID rebuilds involve heavy sustained writes across all drives simultaneously, exactly the kind of workload that overwhelms an SMR drive’s cache. A drive that can’t keep up during a rebuild can cause the entire array to degrade or fail. If you’re building a NAS with RAID, stick to CMR drives for both data and parity. The one exception is systems like Unraid, where SMR drives can work as data-only disks (not parity) since they’re written to independently and infrequently.

Writing many small files is especially punishing. Each tiny file triggers filesystem metadata updates alongside the data itself, creating scattered writes across the platter. File systems like ext4 and NTFS, which weren’t designed with shingling in mind, amplify this problem.

How to Tell if a Drive Is SMR

Manufacturers haven’t always been transparent about which drives use SMR. Western Digital faced backlash in 2020 for shipping SMR drives in its WD Red NAS line without clear labeling. Today, most manufacturers publish CMR/SMR lists on their websites. Seagate maintains a public product list that identifies the recording technology for each model.

If you already have a drive and want to check, Linux users can try the sg_rep_zones command from the sg3_utils package, which queries the drive’s zone configuration. A positive response confirms host-managed or host-aware SMR. However, drive-managed SMR drives may not respond to this command at all, since they’re designed to look like conventional drives. Checking the manufacturer’s spec sheet or product database is often the most reliable method. When shopping, look for “CMR” or “PMR” (perpendicular magnetic recording, the same thing as CMR) in the specifications if you want to avoid SMR.