SlideShare a Scribd company logo
SSD-Bondi.pptx
Storage Capacity: 3.75 MB
Physical Size: 87.9 ft3
Price for storage: 15,000$/MB
Seek Time: 600 ms
Rotational Speed: 1200 RPM
Storage Capacity: 80GB – 3 TB
Physical Size: .002 ft3
Price for storage: 10¢/ GB
Seek Time: 9ms
Rotational Speed: 7200-10000 RPM
SSD-Bondi.pptx
WD VelociRaptor:
 Storage Capacity: 600GB
 Price: 289.99$
 Price for storage: 48¢/ GB
 Seek Time: 7ms
 Rotational Speed: 10000 RPM
 Sequential Read/Write: 157 MB/s
 Random Read: 1 MB/s
 Random Write: 1 MB/s
 IOPS: 905
Storage Capacity: 60GB-240GB
Price: $209.99(120 GB)
Price for storage: 1.74$/GB
Sequential Read: 265.5 MB/s
Sequential Write: 251.9 MB/s
Random Read: 62 MB/s
Random Write: 164.9 MB/s
IOps: 50,000
Why is there so much hype about SSDs?
• Speed?
• Reliability?
• Ability to tell future?
• Making Vista usable?
• +5 armor immunity to random access latency?
First SSD not in 2007, more like 1976…
• Only had capacity of 2 MB
Fast-forward to 2007:
• NAND Flash (Invented in 1980)
 Non-Volatile Storage System
 Used in USB Flash Drives, MP3 Players & SSDs
 Multiple types: Single Level Cell(SLC) & Multi Level
Cell(MLC)
 Guess and Check reading and writing
SLC Flash MLC Flash
 Apply Voltage
 Wait for Reaction
• Return Result or
• Apply More Voltage, Repeat
Difference?
• Since there are only 2 possible values of SLC it
only takes 1 voltage to return a 0 or 1
• MLC requires a maximum of 3 different voltages to
assure that the value will be found.
• Random Read Speeds:
 SLC: 25 µs MLC: 50 µs
• Random Write Speeds:
 SLC: 250 µs MLC: 900 µs
SSD-Bondi.pptx
We’ve all used SSDs before, the same
technology is used in USB Flash Drives
and they only function around 5-40MB/s.
What if we use 10 USB Flash Drives in
raid as a HDD?
• Anywhere between 40GB – 320GB
• Possible access speed of 50-400MB/s
Each SSD board contains any number of
NAND ICs, chip used to store data, all
depending on how expensive the board is.
Each SDD board also contains any
number of support channels, normally one
per NAND IC, which allows the controller
to communicate to each NAND IC.
SSD-Bondi.pptx
The sheer speed of a SSD comes from the
fact that it can access each of its NAND IC
at exactly the same time.
While Platter HDDs like to have
reads/writes to be in the same location for
future access SSDs would rather have the
data spread evenly across all of its NAND
ICs for maximum accessibility.
You have it all in an SSD:
• Almost instantaneous read and write times
• The ability to read or write in multiple locations at
once
• The speed of the drive scales extremely well with
the number of NAND ICs on board
But…
To erase the value in flash memory the
original voltage must be reset to neutral
before a new voltage can be applied,
known as write amplification.
Random Erase Speed:
• SLC 2ms per block MLC 2ms per block
What is this block stuff?
1 or 2 bits does us no good
Pages!!!
• 1 Page = 4KB coincidence?
Block = 128 Pages = 512 KB
Plane = 1024 Blocks = 512 MB
• Depending on the board the combining keeps
going up until you get a single chip, NAND IC, on
the board
 Wait a sec, we can write and read a single page of
data from a SSD but we have to delete an entire block
to release it?
 I guess its ok since we are able to write to individual
pages on the SSD, oh there’s one more thing the page
has to be empty before we can write to it…crap.
 To make matters worse, a standard MLC can only be
erased 10,000 times before it goes bad.
 Solution: Lets not actually delete files when they are
deleted on the OS, much like a platter drive.
 Rather then deleting the block and writing the modified
block with the new page back in the original location
just write the modified block to another location in
memory.
 Believe it or not drives were actually shipped with this
solution, never thinking about what happened when
the drive filled up.
 After the drive filled up the amount of time to write a
block of data went from 250 µs to 250 µs + 2ms since
it also had to delete a block. This actually made the
SSDs slower then a regular platter drive when writing.
• Hypothetical SSD:
 Page Size: 4KB
 Block Size: 5 Pages
 Drive Size: 1 Block
 Read Speed: 2 KB/s
 Write Speed: 1 KB/s
Lets write a 4kb text file to the brand new
SSD.
Now lets write an 8kb pic file to the almost
brand new SSD, thankfully there's space.
Now lets delete the txt file in the first page.
 Finally lets write a 12kb pic to the SSD. How
long should it take? 1 kb/s write speed
What’s wrong here?
• The OS is told there are 3 open pages on the SSD
when there are only 2 available.
• Time for the SSD to do some fancy footwork to
open up the space.
 Banking on the quality of the SSD hopefully it has an
onboard cache otherwise it has to use ram, taking
much longer and consuming CPU cycles.
Step 1: Read block into
cache
Step 2: Delete page from
cache
Step 3: Write new pic into
cache
Step 4: Delete the old
block on SSD
Step 5: Write cache to
SSD
 The OS only thought it was writing 12 KBs of
data when in fact the SSD had to read 12
KBs and then write 20KBs, the entire block.
 Since the SSD is quite slow the operation
should have taken 12 secs but actually took
26 seconds, resulting in a write speed of
.46KB/s not 1KB/s
 That’s one hefty cut to the performance of the
drive, how could we fix the problem and save
SSDs from an early grave?
 Why not just delete the file when it is deleted from
the OS, or a relatively short time afterwards, and
clear the page in the block out?
 Actually this fixes the problem of running out of
space, but what happens when we try to overwrite
a file, ie saving an updated word document?
 Unfortunately there is no way around having to
read the block containing the original file into
cache and deleting it, however there is a choice to
do it before or after the write. Which is better?
So what happens when I want to do a
fresh install of my OS on the HDD?
Should I just follow the standard reformat
option and install like normal?
Believe it or not there is actually a
command for “trimming” the entire drive so
it appears brand new, except for the fact
that the life span of each NAND cell has
been decreased by one.
• Intel and many of the SSD manufactures supports
a command called HDD ERASE that permanently
deletes the data on the drive.
Data Recovery?
• On a standard HDD data recovery of deleted files
is quite easy because the actual bits are still on
the HDD since the HDD doesn’t actually delete
them.
• What happens with TRIM?
 Severely reduces the possibility of locating deleted files
on the drive, making computer forensics impossible.
 Surprisingly there isn't much difference
between the NAND Flash memory used in
each SSD since it is all made by 4 different
providers, each using the same design.
 The true difference in the drive is the
controller that is being used, it’s actually the
controller that decides which algorithms to
use and how to manage memory.
 Intel:
• From the get go in 2007 intel has had the strongest
grip on the market of SSDs, they produce their own
controller and the NAND Flash Memory.
 Garbage:
• There were quite a few companies that started up and
died quickly trying to create controllers that beat Intel
and they all failed except
 Sand Force:
• Arguable the best controller on the market right now
any company that has a SSD that performs well is
using a Sand Force controller, except for Intel who is
trying to catch up.
 http://www.newegg.com/Product/Productcompare.aspx?Submit=ENE&N=100006519%2050001550%2040000636&IsNod
eId=1&srchInDesc=2&page=1&bop=And&ActiveSearchResult=True&CompareItemList=636|20-227-550^20-227-550-
TS%2C20-227-542^20-227-542-TS
 Both drives are actually identical when it
comes to the die, but have different versions
of the Sand Force controller on them.
 The only real difference between the drives
is that the Vertex has the ability to support
50,000 IOPS while the Agility can only
support 20,000 IOPS.
Sand Force has released information
about a new controller they have been
developing claiming to literally double the
output of the current controller and SSD on
the market.
Doubling come on, I’ve always believed if
something is to good to be true it probably
is. Well its true.
Storage Capacity: 120GB-360GB
Price: $499.99(240 GB)
Price for storage: 2.08$/GB
Sequential Read: 413.5 MB/s
Sequential Write: 371.4 MB/s
Random Read: 68.8 MB/s
Random Write: 332.5 MB/s
IOps: 60,000
Lets say the SSD
• Saves 10 Mins per day of your computing time
• For 7 Days a week
• That’s 60 Hours a year
• Minimum wage = 7.25$/hr
• Total Savings: 440$ a year
Its strange to think about it that way but
here’s proof as to how it can work that way.
Guess what I have today?
• OCZ Revodrive in a computer that actually has
the power to use the drive.
Pros:
SSDs are extremely fast
SSDs are easy to use
SSDs are the future of media storage
Cons:
SSDs are expensive
SSDs are constantly upgrading
SSDs are complicated to understand

More Related Content

PPTX
Ssd(solid state drive )
PPTX
SSDs, IMDGs and All the Rest - Jax London
PPTX
How to randomly access data in close-to-RAM speeds but a lower cost with SSD’...
PDF
Cassandra Day Chicago 2015: DataStax Enterprise & Apache Cassandra Hardware B...
PPT
SSD PPT BY SAURABH
PPTX
Get Your GeekOn With Ron - Session Two: Local Storage vs Centralized Storage ...
DOCX
Solid State Drives - Seminar Report for Semester 6 Computer Engineering - VIT...
PDF
Why does my choice of storage matter with cassandra?
Ssd(solid state drive )
SSDs, IMDGs and All the Rest - Jax London
How to randomly access data in close-to-RAM speeds but a lower cost with SSD’...
Cassandra Day Chicago 2015: DataStax Enterprise & Apache Cassandra Hardware B...
SSD PPT BY SAURABH
Get Your GeekOn With Ron - Session Two: Local Storage vs Centralized Storage ...
Solid State Drives - Seminar Report for Semester 6 Computer Engineering - VIT...
Why does my choice of storage matter with cassandra?

Similar to SSD-Bondi.pptx (20)

PDF
seminar.pdf
PDF
Nachos 2
PDF
Nachos 2
PPT
Solid state drives
PDF
SSD Seminar Report
DOCX
3 5 SSD
PDF
S3
PDF
Demystifying SSD, Mark Smith, S3
DOCX
What is the average rotational latency of this disk drive What seek.docx
PPTX
Open Source Data Deduplication
PPTX
Accelerating hbase with nvme and bucket cache
PPTX
SSD - Solid State Drive PPT by Atishay Jain
PPTX
Solid state drive (ssd)
PDF
Dell whitepaper busting solid state storage myths
PPTX
Introduction to Hard Disk Drive by Vishal Garg
PPTX
Getting The Most Out Of Your Flash/SSDs
PDF
SSD based storage tuning for databases
PDF
Database performance tuning for SSD based storage
PPTX
Solid State Drives (SSDs) -What it Takes to Make Data Go Away
PDF
Presentation database on flash
seminar.pdf
Nachos 2
Nachos 2
Solid state drives
SSD Seminar Report
3 5 SSD
S3
Demystifying SSD, Mark Smith, S3
What is the average rotational latency of this disk drive What seek.docx
Open Source Data Deduplication
Accelerating hbase with nvme and bucket cache
SSD - Solid State Drive PPT by Atishay Jain
Solid state drive (ssd)
Dell whitepaper busting solid state storage myths
Introduction to Hard Disk Drive by Vishal Garg
Getting The Most Out Of Your Flash/SSDs
SSD based storage tuning for databases
Database performance tuning for SSD based storage
Solid State Drives (SSDs) -What it Takes to Make Data Go Away
Presentation database on flash
Ad

Recently uploaded (20)

PDF
Cell Biology Basics: Cell Theory, Structure, Types, and Organelles | BS Level...
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
DOCX
UPPER GASTRO INTESTINAL DISORDER.docx
PDF
Landforms and landscapes data surprise preview
PPTX
How to Manage Loyalty Points in Odoo 18 Sales
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
From loneliness to social connection charting
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Open Quiz Monsoon Mind Game Prelims.pptx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
Mga Unang Hakbang Tungo Sa Tao by Joe Vibar Nero.pdf
PDF
Module 3: Health Systems Tutorial Slides S2 2025
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
LDMMIA Reiki Yoga S2 L3 Vod Sample Preview
PPTX
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
PPTX
IMMUNIZATION PROGRAMME pptx
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Cell Biology Basics: Cell Theory, Structure, Types, and Organelles | BS Level...
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
UPPER GASTRO INTESTINAL DISORDER.docx
Landforms and landscapes data surprise preview
How to Manage Loyalty Points in Odoo 18 Sales
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
From loneliness to social connection charting
Week 4 Term 3 Study Techniques revisited.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Open Quiz Monsoon Mind Game Prelims.pptx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Mga Unang Hakbang Tungo Sa Tao by Joe Vibar Nero.pdf
Module 3: Health Systems Tutorial Slides S2 2025
human mycosis Human fungal infections are called human mycosis..pptx
LDMMIA Reiki Yoga S2 L3 Vod Sample Preview
UNDER FIVE CLINICS OR WELL BABY CLINICS.pptx
IMMUNIZATION PROGRAMME pptx
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Ad

SSD-Bondi.pptx

  • 2. Storage Capacity: 3.75 MB Physical Size: 87.9 ft3 Price for storage: 15,000$/MB Seek Time: 600 ms Rotational Speed: 1200 RPM
  • 3. Storage Capacity: 80GB – 3 TB Physical Size: .002 ft3 Price for storage: 10¢/ GB Seek Time: 9ms Rotational Speed: 7200-10000 RPM
  • 5. WD VelociRaptor:  Storage Capacity: 600GB  Price: 289.99$  Price for storage: 48¢/ GB  Seek Time: 7ms  Rotational Speed: 10000 RPM  Sequential Read/Write: 157 MB/s  Random Read: 1 MB/s  Random Write: 1 MB/s  IOPS: 905
  • 6. Storage Capacity: 60GB-240GB Price: $209.99(120 GB) Price for storage: 1.74$/GB Sequential Read: 265.5 MB/s Sequential Write: 251.9 MB/s Random Read: 62 MB/s Random Write: 164.9 MB/s IOps: 50,000
  • 7. Why is there so much hype about SSDs? • Speed? • Reliability? • Ability to tell future? • Making Vista usable? • +5 armor immunity to random access latency?
  • 8. First SSD not in 2007, more like 1976… • Only had capacity of 2 MB Fast-forward to 2007: • NAND Flash (Invented in 1980)  Non-Volatile Storage System  Used in USB Flash Drives, MP3 Players & SSDs  Multiple types: Single Level Cell(SLC) & Multi Level Cell(MLC)  Guess and Check reading and writing
  • 9. SLC Flash MLC Flash  Apply Voltage  Wait for Reaction • Return Result or • Apply More Voltage, Repeat
  • 10. Difference? • Since there are only 2 possible values of SLC it only takes 1 voltage to return a 0 or 1 • MLC requires a maximum of 3 different voltages to assure that the value will be found. • Random Read Speeds:  SLC: 25 µs MLC: 50 µs • Random Write Speeds:  SLC: 250 µs MLC: 900 µs
  • 12. We’ve all used SSDs before, the same technology is used in USB Flash Drives and they only function around 5-40MB/s. What if we use 10 USB Flash Drives in raid as a HDD? • Anywhere between 40GB – 320GB • Possible access speed of 50-400MB/s
  • 13. Each SSD board contains any number of NAND ICs, chip used to store data, all depending on how expensive the board is. Each SDD board also contains any number of support channels, normally one per NAND IC, which allows the controller to communicate to each NAND IC.
  • 15. The sheer speed of a SSD comes from the fact that it can access each of its NAND IC at exactly the same time. While Platter HDDs like to have reads/writes to be in the same location for future access SSDs would rather have the data spread evenly across all of its NAND ICs for maximum accessibility.
  • 16. You have it all in an SSD: • Almost instantaneous read and write times • The ability to read or write in multiple locations at once • The speed of the drive scales extremely well with the number of NAND ICs on board But…
  • 17. To erase the value in flash memory the original voltage must be reset to neutral before a new voltage can be applied, known as write amplification. Random Erase Speed: • SLC 2ms per block MLC 2ms per block What is this block stuff?
  • 18. 1 or 2 bits does us no good Pages!!! • 1 Page = 4KB coincidence? Block = 128 Pages = 512 KB Plane = 1024 Blocks = 512 MB • Depending on the board the combining keeps going up until you get a single chip, NAND IC, on the board
  • 19.  Wait a sec, we can write and read a single page of data from a SSD but we have to delete an entire block to release it?  I guess its ok since we are able to write to individual pages on the SSD, oh there’s one more thing the page has to be empty before we can write to it…crap.  To make matters worse, a standard MLC can only be erased 10,000 times before it goes bad.  Solution: Lets not actually delete files when they are deleted on the OS, much like a platter drive.
  • 20.  Rather then deleting the block and writing the modified block with the new page back in the original location just write the modified block to another location in memory.  Believe it or not drives were actually shipped with this solution, never thinking about what happened when the drive filled up.  After the drive filled up the amount of time to write a block of data went from 250 µs to 250 µs + 2ms since it also had to delete a block. This actually made the SSDs slower then a regular platter drive when writing.
  • 21. • Hypothetical SSD:  Page Size: 4KB  Block Size: 5 Pages  Drive Size: 1 Block  Read Speed: 2 KB/s  Write Speed: 1 KB/s
  • 22. Lets write a 4kb text file to the brand new SSD.
  • 23. Now lets write an 8kb pic file to the almost brand new SSD, thankfully there's space.
  • 24. Now lets delete the txt file in the first page.
  • 25.  Finally lets write a 12kb pic to the SSD. How long should it take? 1 kb/s write speed
  • 26. What’s wrong here? • The OS is told there are 3 open pages on the SSD when there are only 2 available. • Time for the SSD to do some fancy footwork to open up the space.  Banking on the quality of the SSD hopefully it has an onboard cache otherwise it has to use ram, taking much longer and consuming CPU cycles.
  • 27. Step 1: Read block into cache Step 2: Delete page from cache Step 3: Write new pic into cache Step 4: Delete the old block on SSD Step 5: Write cache to SSD
  • 28.  The OS only thought it was writing 12 KBs of data when in fact the SSD had to read 12 KBs and then write 20KBs, the entire block.  Since the SSD is quite slow the operation should have taken 12 secs but actually took 26 seconds, resulting in a write speed of .46KB/s not 1KB/s  That’s one hefty cut to the performance of the drive, how could we fix the problem and save SSDs from an early grave?
  • 29.  Why not just delete the file when it is deleted from the OS, or a relatively short time afterwards, and clear the page in the block out?  Actually this fixes the problem of running out of space, but what happens when we try to overwrite a file, ie saving an updated word document?  Unfortunately there is no way around having to read the block containing the original file into cache and deleting it, however there is a choice to do it before or after the write. Which is better?
  • 30. So what happens when I want to do a fresh install of my OS on the HDD? Should I just follow the standard reformat option and install like normal?
  • 31. Believe it or not there is actually a command for “trimming” the entire drive so it appears brand new, except for the fact that the life span of each NAND cell has been decreased by one. • Intel and many of the SSD manufactures supports a command called HDD ERASE that permanently deletes the data on the drive.
  • 32. Data Recovery? • On a standard HDD data recovery of deleted files is quite easy because the actual bits are still on the HDD since the HDD doesn’t actually delete them. • What happens with TRIM?  Severely reduces the possibility of locating deleted files on the drive, making computer forensics impossible.
  • 33.  Surprisingly there isn't much difference between the NAND Flash memory used in each SSD since it is all made by 4 different providers, each using the same design.  The true difference in the drive is the controller that is being used, it’s actually the controller that decides which algorithms to use and how to manage memory.
  • 34.  Intel: • From the get go in 2007 intel has had the strongest grip on the market of SSDs, they produce their own controller and the NAND Flash Memory.  Garbage: • There were quite a few companies that started up and died quickly trying to create controllers that beat Intel and they all failed except  Sand Force: • Arguable the best controller on the market right now any company that has a SSD that performs well is using a Sand Force controller, except for Intel who is trying to catch up.
  • 35.  http://www.newegg.com/Product/Productcompare.aspx?Submit=ENE&N=100006519%2050001550%2040000636&IsNod eId=1&srchInDesc=2&page=1&bop=And&ActiveSearchResult=True&CompareItemList=636|20-227-550^20-227-550- TS%2C20-227-542^20-227-542-TS  Both drives are actually identical when it comes to the die, but have different versions of the Sand Force controller on them.  The only real difference between the drives is that the Vertex has the ability to support 50,000 IOPS while the Agility can only support 20,000 IOPS.
  • 36. Sand Force has released information about a new controller they have been developing claiming to literally double the output of the current controller and SSD on the market. Doubling come on, I’ve always believed if something is to good to be true it probably is. Well its true.
  • 37. Storage Capacity: 120GB-360GB Price: $499.99(240 GB) Price for storage: 2.08$/GB Sequential Read: 413.5 MB/s Sequential Write: 371.4 MB/s Random Read: 68.8 MB/s Random Write: 332.5 MB/s IOps: 60,000
  • 38. Lets say the SSD • Saves 10 Mins per day of your computing time • For 7 Days a week • That’s 60 Hours a year • Minimum wage = 7.25$/hr • Total Savings: 440$ a year Its strange to think about it that way but here’s proof as to how it can work that way.
  • 39. Guess what I have today? • OCZ Revodrive in a computer that actually has the power to use the drive.
  • 40. Pros: SSDs are extremely fast SSDs are easy to use SSDs are the future of media storage Cons: SSDs are expensive SSDs are constantly upgrading SSDs are complicated to understand