duard
Uploaded by
5 SLIDES
188 VUES
50LIKES

Understanding SSDs: The Impact of Multithreading on File I/O Speed

DESCRIPTION

Solid-State Drives (SSDs) significantly outperform traditional Hard Disk Drives (HDDs) in file input/output operations due to their lack of mechanical components like platters and heads. This eliminates seek times and allows for simultaneous read/write operations from multiple NAND flash memory modules. Our analysis contrasts the single-threaded and multithreaded read speeds of SSDs and HDDs, revealing a stark difference in performance—384 MB/s versus 80 MB/s, respectively. Understanding these differences is essential for optimizing storage solutions in computing environments.

1 / 5

Télécharger la présentation

Understanding SSDs: The Impact of Multithreading on File I/O Speed

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SSD Multiprocessing / Multithreading Chak Yee

  2. How are SSDs involved? • File I/O slowest when seeking and writing to hard drive. • SSDs don’t have platters or mechanical heads, thus eliminates seek time.

  3. Single vs. Multithreaded Read MB/s SSD HDD 384.46 MB/s 80.07 MB/s

  4. Cause of Disparity • Multiple read/write requests to HDDs require head to access different parts of the platter. • SSDs can read/write from multiple modules at the same time. (Varies between makers)

  5. Reference • http://www.xbitlabs.com/articles/storage/display/corsair-crucial-intel-ocz-ssd_7.html#sect0 • http://en.wikipedia.org/wiki/Solid-state_drive

More Related