17
Garth Gibson, 05/07/2009 1 Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks Garth Gibson www.pdl.cmu.edu May 7, 2009

Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Embed Size (px)

Citation preview

Page 1: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Garth Gibson, 05/07/2009

1

Directions for Shingled-Write and TDMR System Architectures:Synergies with Solid-State Disks

Garth Gibson www.pdl.cmu.edu

May 7, 2009

Page 2: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Short BioCo-author, A Case for RAID, 1988Professor, CS & ECE, CMU, 1991-Systems Thrust Leader, DSSC, CMU, 1990sFounder, Parallel Data Lab, CMU, 1993Founder & CTO, Panasas Inc, 1999

HPC storage @ Los Alamos, BP, Intel, Boeing, NIH, Ferrari, Citadel

Co-Instigator, SCSI OSD & IETF Parallel NFS stdsStorage Networking Industry Tech Council, 2000sSteering Cmte, File & Storage Tech (FAST) ConfPI, DOE Petascale Data Storage Inst., 2006-

Garth Gibson, 05/07/2009www.pdl.cmu.edu 2

Page 3: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Shingled-Writing

Garth’s simple world viewHAMR, BPMR:big changes in fab/assemblyShingled-writing does not need big changes

Shingle-writing meansPartially overwriting tracks, for closer pitchInability to modify one embedded sector without rewriting cross-track neighbors

Garth Gibson, 05/07/2009www.pdl.cmu.edu 3

Page 4: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Loss of Update-in-placeBanding of shingles

Last track is wider,capacity overheadTracks per band(@ 90% overlap):1% ov => 1000 & 10% ov => 100

Modifying a random sector in a band of 100 tracks Avg. of 50 revs to rewrite overlapped tracks!

Garth Gibson, 05/07/2009www.pdl.cmu.edu 4

Page 5: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Writing System ModelShingled-write disk is N bands, each of order 1 GBAppend to end of a band has today’s performanceOverwriting non-end of band “deletes” rest of band

Writing start of band deletes prior contentPerformance prohibitive to update-in-place at all

Can systems software cope with this?No

Garth Gibson, 05/07/2009www.pdl.cmu.edu 5

Page 6: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

File Systems 101File systems store structured dataMetadata (block lists, attributes, …)

are generally smallPage-at-a-time

from OSDisk fragments

with deleteSmall writes b/c

Metadata!Hole filling

Garth Gibson, 05/07/2009www.pdl.cmu.edu 6

/

dirc

data

dira dirb

Namespace

filedirectories

Direct Block 1

Direct Block 2

Direct Block 12

Data

Data

Data

Indirect Block

Double-IndirectBlock

(lbn 576)

(lbn 344)

(lbn 968)

(lbn 632)

(lbn 1944)

(lbn 480)

(lbn 96)

(lbn 176)

(lbn 72). . .

. . .

Data Block 13

Data Block 14

Data Block N. . .

Data

Data

Data

Indirect Block 1

Indirect Block 2

. . .

Data Block N+1

Data Block N+2. . .

Data Block Q+1

Data

Data

Data

File/DirectoryStructure

Page 7: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

& Files are SmallCDF of general file sizeHistorically

> 75% < 32KBToday’s supercomputers

60-99% < 1MB< 0.1% > 1GB

Most space in largefiles, but noavoiding thesmall ones

Garth Gibson, 05/07/2009www.pdl.cmu.edu 77

Page 8: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

System Model for Hard DisksHard disk is a memory model: billions of sectorsFile system allocation is search for free sectors

To avoid “losing” space, small holes writtenDurability/fault tolerance forces prompt writing

Metadata is small and often written

Storage performance improvement is always:“Make disk writes larger by merging data”

But can’t fundamentally avoid small writes

Garth Gibson, 05/07/2009www.pdl.cmu.edu 8

Page 9: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Same Problem for FlashFlash SSD organized as “bands” of “sectors”Must pre-erase band before programming dataHide erase in FTLSimple products

rewrite bandon all writes

Smart productsremap LBNdynamically

Garth Gibson, 05/07/2009www.pdl.cmu.edu 9

Page 10: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Shingled-write needs “FTL”Use embedded processor to translate full SCSI/ATA

command set to “append” & “rewrite”Host “overwrite” is append and record new location

Prior location is now “wasted space”Overprovision space to absorb waste

Background cleaning rewrites live part of bandsSame as today’s defrag toolsNew TRIM command to expose waste

Not new: 1992 Log-structured file system paperNetApp, Panasas use remapping disk layout

Garth Gibson, 05/07/2009www.pdl.cmu.edu 10

Page 11: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Example: Flash Write SpeedsMeasuring today’s simple and smart flash SSDs

100x – 1000x more small writes per secondRemapping can rescue Shingled-writing disks!

Garth Gibson, 05/07/2009www.pdl.cmu.edu 11

Page 12: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Shingled-write w/ translationIts just code !Okay, that means a faster CPU and more DRAMand Complexity!

But you can startwith flashtranslationcode

Hire from FusionIOalumni !

Garth Gibson, 05/07/2009www.pdl.cmu.edu 12

Page 13: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

What About Reading?Reading a shingle involves signal processing in

two dimensions (TD) – down and cross trackOne approach to TDMR involves gathering signal

from 1-2 adjacent tracks on both sidesMeans 3 to 5 revs to read a single sector

3x – 5x lower small random read ratesRemapping on write probably doesn’t help

Read traffic depends more on applicationsthan on system software/translation layer

Garth Gibson, 05/07/2009www.pdl.cmu.edu 13

Page 14: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

SummaryShingled-written disk is N bands of sequentially

written sectors, each of order GBDisk can still offer normal commands, write speed

using “translation layer” embedded codeTake Flash SSD FTL as starting pointFlash-inspired TRIM command helps

TDMR reading a bigger problem3-5 revs per small read hard to hideThis could reduce market acceptance

Garth Gibson, 05/07/2009www.pdl.cmu.edu 14

Page 15: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

A Little More on SSD & DisksSSD performance !!

Big impact onsystems coming

Hybrid SSD+DiskCost of Disk bitsSpeed of SSDCompelling!

SSD hybrid could“solve” TDMRspeed issues

Garth Gibson, 05/07/2009www.pdl.cmu.edu 15

Random Read

Random Write

Page 16: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

Garth Gibson, 05/07/2009www.pdl.cmu.edu 16

www.pdl.cmu.edu

Page 17: Directions for Shingled-Write and TDMR System ... Gibson-Intermag-05-07-09.pdf · Directions for Shingled-Write and TDMR System Architectures: Synergies with Solid-State Disks

A few referencesRosenblum, M., J. Ousterhout, “The Design and Implementation of a Log-

Structured File System,” ACM Trans. on Computer Systems, v10, n1, 1992.

Gal, E., Toledo, S., “Algorithms and data structures for flash memories,” ACM Computing Surveys, v37, n2, June 2005.

Agrawal, N., Prabhakaran, V., Wobber, T., Davis, J. D., Manasse, M., Panigrahy, R., “Design tradeoffs for SSD performance,” USENIX 2008 Annual Technical Conference, Boston MA, June 2008.

Polte, M., J. Simsa, “Enabling Enterprise Solid State Disk Performance,” Integrating Solid-state Memory into the Storage Hierarchy (WISH09), 2009.

www.pdl.cmu.edu and www.cs.cmu.edu/~garth

Garth Gibson, 05/07/2009www.pdl.cmu.edu 17