Early Experience and Evaluation of File Systems on SSD with Database Applications

Size: px
Start display at page:

Download "Early Experience and Evaluation of File Systems on SSD with Database Applications"

Transcription

1 Early Experience and Evaluation of File Systems on SSD with Database Applications Yongkun WANG, Kazuo GODA, Miyuki NAKANO, Masaru KITSUREGAWA The University of Tokyo 1

2 Outline Motivation Flash SSD Basic Performance Study Performance Evaluation by TPC C Benchmark Conclusion and Future Work 2

3 Motivation Flash SSDs are likely to be used in enterprise storage platforms for achieving high performance in data intensive applications IO path management techniques should be evaluated carefully Existing systems are designed for traditional hard disks IO performance features of flash SSD are different from that of hard disk For better utilization of SSDs in DBMS Evaluate basic performance of SSDs Evaluate performance of IO path in conventional DBMS With different file systems and IO schedulers 3

4 Flash SSD Flash SSD (Solid State Drive) A package of multiple flash memory chips FTL (Flash Translation Layer) provides block device emulation Performance properties of flash Memory (Samsung K9XXG8UXM) READ (4KB) takes 25us PROGRAM (4KB) takes 2us ERASE (256KB) takes 15us Erase before program design can lead to poor performance in a normal in place write system Flash SSD SATA Port Bus FTL Controller Chip SDRAM Buffer Flash Memory Bus NAND NAND Flash Flash Flash Memory Memory Memory Chip NAND NAND Flash Flash Flash Memory Memory Memory Chip NAND NAND Flash Flash Flash Memory Memory Memory Chip 4

5 Outline Motivation Flash SSD Basic Performance Study Performance Evaluation by TPC C Benchmark Conclusion and Future Work 5

6 Purpose of Basic Performance Study Clarify the performance between SSD and HDD Clarify the performance difference among SSDs Clarify the erase problem on SSDs 6

7 Experimental System Dell Precision 39 Workstation Dual core Intel Core 2 Duo 1.86GHz 2GB Memory SATA 3.Gbps Controller CentOS bit Kernel Hard Disk (HDD) Hitachi HDS7217, 3.5, 72RPM, 32M Cache, 75GB Flash SSD Mtron PRO 75 SLC, GB Flash SSD Intel X25 E SLC, GB Flash SSD OCZ VERTEX EX SLC, GB Inside each device, read ahead pre fetching and write back caching are enabled

8 Micro Benchmark One million requests for each case Request Size: 512B to 256KB Access patterns Sequential Read/Write Random Read/Write Mixed Random (5% Read plus 5% write) Number of outstanding IOs One outstanding IO: submit one IO request at a time 3 outstanding IOs: submit 3 IO requests at a time 8

9 Basic Performance of Flash SSDs ~ Sequential Access ~ IO Throughput [MB/s] K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K64K128K256K IO Size [bytes] IO Size [bytes] IO Size [bytes] IO Size [bytes] HDD Mtron Intel OCZ 1% Read 1% Write The read throughput of Intel s SSD and OCZ s SSD is much higher The write throughput of Intel s SSD is higher Write throughput of Intel s SSD drops quickly after the request size is larger than 32KB The performance gap between read and write throughput of OCZ s SSD is large 9

10 Basic Performance of Flash SSDs ~ Random Access (Single outstanding IO) ~ IO Throughput [K IOPS] K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K 128K 256K 512 1K 2K 4K 8K 16K 32K 64K 128K 256K512 1K 2K 4K 8K 16K 32K 64K128K256K IO Size [bytes] IO Size [bytes] IO Size [bytes] IO Size [bytes] HDD Mtron The read IOPS of SSD is much higher than that of HDD. Intel OCZ The performance of random write drops drastically on Mtron s SSD and OCZ s SSD. The performance of mixed access also drops drastically on Mtron s SSD and OCZ s SSD. [Bathtub effect, by Freitas on FAST21 tutorial] % Read Read 1% Write Write 5% MixRead 5% Write 1

11 Basic Performance of Flash SSDs ~ Random Access (3 outstanding IOs) ~ IO Throughput [K IOPS] K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K128K256K 512 1K 2K 4K 8K 16K 32K 64K128K256K IO Size [bytes] IO Size [bytes] IO Size [bytes] IO Size [bytes] HDD Mtron Intel OCZ 1% Read Read (3 outstanding IOs) 1% Read Read (one outstanding IOs) The read throughput is improved Intel s SSD and OCZ SSD. 11

12 Basic Performance of Flash SSDs ~ Response Time Distribution of 4KB Random Access ~ Cumulative Frequency [%] Response Time [us] 1 HDD Mtron Random Read (blue line) Most of random reads could complete in a very small range of response times on SSDs Random Write (red line) Response Time [us] The random write behavior is different among three SSDs Response Time [us] Response Time [us] Intel OCZ 1% Read Read 1% Write Write 5% MixRead 5% Write 12

13 Outline Motivation Flash SSD Basic Performance Study Performance Evaluation by TPC C Benchmark Conclusion and Future Work 13

14 Purpose of Evaluation By TPC C Provide evaluation on the IO behaviors of SSDs running an actual database application Two file systems, two DBMSs and four IO schedulers Investigate the detailed behavior of IO path 14

15 Experimental System Dell Precision 39 Workstation Dual core Intel Core 2 Duo 1.86GHz 2GB Memory SATA 3.Gbps Controller CentOS bit Kernel Hard Disk (HDD) Hitachi HDS7217, 3.5, 72RPM, 32M Cache, 75GB Flash SSD Mtron PRO 75 SLC, GB Flash SSD Intel X25 E SLC, GB Flash SSD OCZ VERTEX EX SLC, GB Inside each device, read ahead pre fetching and write back caching are enabled

16 System Configuration TPC C benchmark 5.1 Database settings MySQL: InnoDB Commercial DBMS File system options Ext2fs (ext2) Nilfs2 IO scheduler No operation (Noop) Anticipatory Deadline Completely Fair Queuing (CFQ) Kernel Tracer Database Application (TPC-C Benchmark) DBMS (MySQL, Commercial DBMS) OS kernel File System (, ) IO Schedulers Device Driver (SATA) Disk for OS HDD for Database Flash SSDs for Database 16

17 Configuration of TPC C Benchmark 3 warehouses, with 3 virtual users Key and Think time was DBMS configuration for TPC C benchmark Commercial DBMS MySQL(InnoDB) Data buffer size 8MB 4MB Log buffer size 5MB 2MB Data block size 4KB 16KB Data file fixed, 5.5GB, database size is 2.7GB Synchronous IO Yes Yes Log flushing method flushing log at transaction commit 17

18 File Systems Ext2fs (ext2) In place update Seek then read Seek then update a b c d read write data page Buffer c b d a Disk Nilfs2 An example of log structured file system Seek then read Random writes => sequential writes a b c d obsolete data page Buffer c b d a a b c d Disk 18

19 Experimental Study Transaction Throughput IO Throughput Buffer Size Workload Property IO Scheduler 19

20 Transaction Throughput Intel s SSD is better than HDD. Mtron s SSD is better than HDD with LFS. OCZ s SSD is better than HDD with. The performance difference is caused by the combination of SSDs and file system Transaction Throughput [tpm] 14, 12, 1, 8, 6, 4, 2, HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL 2

21 IO Path Investigation Logical IO is captured at the system call level, where DBMS call the service routine of OS kernel. Physical IO is captured at the device driver level, where the IO requests are sorted and merged, ready to be served by the device. Logical IO Kernel Tracer Physical IO Database Application (TPC-C Benchmark) DBMS (MySQL, Commercial DBMS) OS kernel File System (, ) IO Schedulers Device Driver (SATA) Disk for OS HDD for Database Flash SSDs for Database 21

22 Logical IO Throughput The transaction throughput follows the results of the logical IO throughput. Transaction Throughput Logical IO Throughput Write Read Transaction Throughput [tpm] 14, 12, 1, 8, 6, 4, 2, Read/Write Rate by DBMS [MB/s] HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS 22 MySQL

23 Physical IO Throughput Logical IO Throughput Physical IO Throughput Write Read Write Read HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL HDD Mtron Intel OCZ HDD Mtron Intel OCZ 23 Commercial DBMS MySQL Read/Write Rate by DBMS [MB/s] Read/Write Rate to device [MB/s]

24 Physical IO Throughput (Read) Large amount of reads are absorbed by the file system buffer cache Logical IO Throughput Physical IO Throughput Write Read Write Read HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL HDD Mtron Intel OCZ HDD Mtron Intel OCZ 24 Commercial DBMS MySQL Read/Write Rate by DBMS [MB/s] Read/Write Rate to device [MB/s]

25 Physical IO Throughput (Write,) Large amount of reads are absorbed by the file system buffer cache. For, write throughput are almost the same between logical throughput and physical throughput. ( Synchronous IO) Logical IO Throughput Physical IO Throughput Write Read Write Read HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL HDD Mtron Intel OCZ HDD Mtron Intel OCZ 25 Commercial DBMS MySQL Read/Write Rate by DBMS [MB/s] Read/Write Rate to device [MB/s]

26 Physical IO Throughput (Write, ) Large amount of reads are absorbed by the file system buffer cache. For, write throughput are almost the same between logical throughput and physical throughput. ( Synchronous IO) LFS() produces additional writes at the physical IO layer, which has a serious impact on the overall transaction throughput. Logical IO Throughput Physical IO Throughput Write Read Write Read Read/Write Rate by DBMS [MB/s] Read/Write Rate to device [MB/s] HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL HDD Mtron Intel OCZ HDD Mtron Intel OCZ 26 Commercial DBMS MySQL

27 Physical IO Size The average request size of Physical IO Read Size () Write Size () Read Size () Write Size () Average Read/Write Size [bytes] 6, 5, 4, 3, 2, 1, 18,392 17, , ,352 HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL 27

28 Physical IO Size (HDD, Mtron) The average request size of Physical IO The avg. write size of LFS is much larger than that of, which is beneficial for hard disk and some SSD such as Mtron s SSD HDD Read Size () Write Size () IO Throughput [MB/s] Average Read/Write Size [bytes] 6, 5, 4, 3, 2, 1, Read Size () Write Size () 18,392 17, , ,352 HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS MySQL IO Throughput [MB/s] ,24 2,48 4,96 8,192 16,384 32,768 65, ,72 262,144 IO Size [bytes] Mtron 512 1,24 2,48 4,96 8,192 16,384 32,768 65, ,72 262,144 IO Size [bytes] 28

29 Physical IO Size (Intel, OCZ) The average request size of Physical IO The avg. write size of LFS is much larger than that of, which is beneficial for hard disk and some SSD such as Mtron s SSD. Large write size is not beneficial on Intel s and OCZ s SSD, as shown in the basic performance study. This helps to explain the inferior transaction throughput on. Average Read/Write Size [bytes] 6, 5, 4, 3, 2, 1, Read Size () Read Size () 18,392 17, ,115 HDD Mtron Intel OCZ HDD Mtron Intel OCZ Commercial DBMS Write Size () Write Size () MySQL 186,352 IO Throughput [MB/s] IO Throughput [MB/s] Intel 512 1,24 2,48 4,96 8,192 16,384 32,768 65, ,72 262,144 IO Size [bytes] OCZ ,24 2,48 4,96 8,192 16,384 32,768 65, ,72 262,144 IO Size [bytes]

30 Database Buffer Size (Mtron) The throughput is improved when increasing the buffer size Commercial DBMS MySQL 18, 4, 16, 3,5 Transaction Throughput [tpm] 14, 12, 1, 8, 6, 4, 2, Transaction Throughput [tpm] 3, 2,5 2, 1,5 1, 5 8M 16M 32M 64M 128M 256M 512M 1G Buffer Size [bytes] 4M 8M 16M 32M 64M 128M 256M 512M 1G3 Buffer Size [bytes]

31 Workload Property Measure with three types of workloads Speedup of over is increasing when the percentage of readwrite transactions is increased 25, speedup 12 Transaction Type IO Property read intensive % of mix normal write intensive New Order Read Write Payment Read Write Delivery Read Write Stock Level Read Only Order Status Read Only Transaction Throughput [tpm] 2, 15, 1, 5, read normal write intensive intensive read normal write intensive intensive speedup Commercial DBMS Buffer Size [bytes] MySQL 31

32 IO Schedulers Noop No operation Anticipatory Merge the IO requests, and re order in an elevation manner Deadline Impose the deadline for each request Completely Fair Queuing (CFQ) Balance the service time of IOs among processes 32

33 Transaction Throughput with IO Schedulers IO scheduling does not affect the transaction throughput largely. Transaction Throughput [tpm] Noop Anticipatory Deadline CFQ Mtron Intel OCZ Mtron Intel OCZ Commercial DBMS MySQL 33

34 Conclusion and Future Work We study the basic performance characteristics of flash SSDs We measure and analyze the application performance and the IO behavior on three flash SSDs and two file systems with TPC C benchmark. Transaction Throughput Logical IO Throughput Physical IO Throughput We plan to study IO path management techniques for database applications running on flash SSDs. 34

35 Q&A Thank you very much! 35

USB Flash Drives as an Energy Efficient Storage Alternative

USB Flash Drives as an Energy Efficient Storage Alternative USB s as an Energy Efficient Storage Alternative Olga Mordvinova, Julian Martin Kunkel, Christian Baun, Thomas Ludwig and Marcel Kunze University of Heidelberg Karlsruhe Institute of Technology University

More information

An Overview of Flash Storage for Databases

An Overview of Flash Storage for Databases An Overview of Flash Storage for Databases Vadim Tkachenko Morgan Tocker http://percona.com MySQL CE Apr 2010 -2- Introduction Vadim Tkachenko Percona Inc, CTO and Lead of Development Morgan Tocker Percona

More information

Virtuoso and Database Scalability

Virtuoso and Database Scalability Virtuoso and Database Scalability By Orri Erling Table of Contents Abstract Metrics Results Transaction Throughput Initializing 40 warehouses Serial Read Test Conditions Analysis Working Set Effect of

More information

Indexing on Solid State Drives based on Flash Memory

Indexing on Solid State Drives based on Flash Memory Indexing on Solid State Drives based on Flash Memory Florian Keusch MASTER S THESIS Systems Group Department of Computer Science ETH Zurich http://www.systems.ethz.ch/ September 2008 - March 2009 Supervised

More information

FIOS: A Fair, Efficient Flash I/O Scheduler. Stan Park and Kai Shen presented by Jason Gevargizian

FIOS: A Fair, Efficient Flash I/O Scheduler. Stan Park and Kai Shen presented by Jason Gevargizian FIOS: A Fair, Efficient Flash I/O Scheduler Stan Park and Kai Shen presented by Jason Gevargizian Flash devices NAND Flash devices are used for storage aka Solid-state Drives (SSDs) much higher I/O performance

More information

Flash for Databases. September 22, 2015 Peter Zaitsev Percona

Flash for Databases. September 22, 2015 Peter Zaitsev Percona Flash for Databases September 22, 2015 Peter Zaitsev Percona In this Presentation Flash technology overview Review some of the available technology What does this mean for databases? Specific opportunities

More information

Energy aware RAID Configuration for Large Storage Systems

Energy aware RAID Configuration for Large Storage Systems Energy aware RAID Configuration for Large Storage Systems Norifumi Nishikawa norifumi@tkl.iis.u-tokyo.ac.jp Miyuki Nakano miyuki@tkl.iis.u-tokyo.ac.jp Masaru Kitsuregawa kitsure@tkl.iis.u-tokyo.ac.jp Abstract

More information

Managing Storage Space in a Flash and Disk Hybrid Storage System

Managing Storage Space in a Flash and Disk Hybrid Storage System Managing Storage Space in a Flash and Disk Hybrid Storage System Xiaojian Wu, and A. L. Narasimha Reddy Dept. of Electrical and Computer Engineering Texas A&M University IEEE International Symposium on

More information

AirWave 7.7. Server Sizing Guide

AirWave 7.7. Server Sizing Guide AirWave 7.7 Server Sizing Guide Copyright 2013 Aruba Networks, Inc. Aruba Networks trademarks include, Aruba Networks, Aruba Wireless Networks, the registered Aruba the Mobile Edge Company logo, Aruba

More information

Energy Efficient Storage Management Cooperated with Large Data Intensive Applications

Energy Efficient Storage Management Cooperated with Large Data Intensive Applications Energy Efficient Storage Management Cooperated with Large Data Intensive Applications Norifumi Nishikawa #1, Miyuki Nakano #2, Masaru Kitsuregawa #3 # Institute of Industrial Science, The University of

More information

Choosing Storage Systems

Choosing Storage Systems Choosing Storage Systems For MySQL Peter Zaitsev, CEO Percona Percona Live MySQL Conference and Expo 2013 Santa Clara,CA April 25,2013 Why Right Choice for Storage is Important? 2 because Wrong Choice

More information

DELL SOLID STATE DISK (SSD) DRIVES

DELL SOLID STATE DISK (SSD) DRIVES DELL SOLID STATE DISK (SSD) DRIVES STORAGE SOLUTIONS FOR SELECT POWEREDGE SERVERS By Bryan Martin, Dell Product Marketing Manager for HDD & SSD delltechcenter.com TAB LE OF CONTENTS INTRODUCTION 3 DOWNFALLS

More information

Speeding Up Cloud/Server Applications Using Flash Memory

Speeding Up Cloud/Server Applications Using Flash Memory Speeding Up Cloud/Server Applications Using Flash Memory Sudipta Sengupta Microsoft Research, Redmond, WA, USA Contains work that is joint with B. Debnath (Univ. of Minnesota) and J. Li (Microsoft Research,

More information

N8103-149/150/151/160 RAID Controller. N8103-156 MegaRAID CacheCade. Feature Overview

N8103-149/150/151/160 RAID Controller. N8103-156 MegaRAID CacheCade. Feature Overview N8103-149/150/151/160 RAID Controller N8103-156 MegaRAID CacheCade Feature Overview April 2012 Rev.1.0 NEC Corporation Contents 1 Introduction... 3 2 Types of RAID Controllers... 3 3 New Features of RAID

More information

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts.

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts. Overview Introduction Solid State Drives (SSDs) are fast becoming a real force with respect to storage in the computer industry. With no moving parts, storage is no longer bound by mechanical barriers

More information

Accelerating Server Storage Performance on Lenovo ThinkServer

Accelerating Server Storage Performance on Lenovo ThinkServer Accelerating Server Storage Performance on Lenovo ThinkServer Lenovo Enterprise Product Group April 214 Copyright Lenovo 214 LENOVO PROVIDES THIS PUBLICATION AS IS WITHOUT WARRANTY OF ANY KIND, EITHER

More information

QuickSpecs. HP Solid State Drives (SSDs) for Workstations. Overview

QuickSpecs. HP Solid State Drives (SSDs) for Workstations. Overview Introduction Solid State Drives (SSDs) are fast becoming a real force with respect to storage in the computer industry. With no moving parts, storage is no longer bound by mechanical barriers to higher

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

Using Synology SSD Technology to Enhance System Performance Synology Inc. Using Synology SSD Technology to Enhance System Performance Synology Inc. Synology_SSD_Cache_WP_ 20140512 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges...

More information

Sistemas Operativos: Input/Output Disks

Sistemas Operativos: Input/Output Disks Sistemas Operativos: Input/Output Disks Pedro F. Souto (pfs@fe.up.pt) April 28, 2012 Topics Magnetic Disks RAID Solid State Disks Topics Magnetic Disks RAID Solid State Disks Magnetic Disk Construction

More information

Optimizing SQL Server Storage Performance with the PowerEdge R720

Optimizing SQL Server Storage Performance with the PowerEdge R720 Optimizing SQL Server Storage Performance with the PowerEdge R720 Choosing the best storage solution for optimal database performance Luis Acosta Solutions Performance Analysis Group Joe Noyola Advanced

More information

Accelerating Enterprise Applications and Reducing TCO with SanDisk ZetaScale Software

Accelerating Enterprise Applications and Reducing TCO with SanDisk ZetaScale Software WHITEPAPER Accelerating Enterprise Applications and Reducing TCO with SanDisk ZetaScale Software SanDisk ZetaScale software unlocks the full benefits of flash for In-Memory Compute and NoSQL applications

More information

Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator

Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator enterprise White Paper Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator Performance Test Results for Analytical (OLAP) and Transactional (OLTP) SQL Server 212 Loads Allon

More information

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts.

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts. Overview Introduction Solid State Drives (SSDs) are fast becoming a real force with respect to storage in the computer industry. With no moving parts, storage is no longer bound by mechanical barriers

More information

SUPERTALENT PCI EXPRESS RAIDDRIVE PERFORMANCE WHITEPAPER

SUPERTALENT PCI EXPRESS RAIDDRIVE PERFORMANCE WHITEPAPER RAIDDrive PCIe SSD Performance SUPERTALENT PCI EXPRESS RAIDDRIVE PERFORMANCE WHITEPAPER PCI EXPRESS SOLID STATE DRIVE Copyright 2009, Super Talent Technology. All rights reserved. All trademarks property

More information

HP Z Turbo Drive PCIe SSD

HP Z Turbo Drive PCIe SSD Performance Evaluation of HP Z Turbo Drive PCIe SSD Powered by Samsung XP941 technology Evaluation Conducted Independently by: Hamid Taghavi Senior Technical Consultant June 2014 Sponsored by: P a g e

More information

An Analysis on Empirical Performance of SSD-based RAID

An Analysis on Empirical Performance of SSD-based RAID An Analysis on Empirical Performance of SSD-based RAID Chanhyun Park, Seongjin Lee, and Youjip Won Department of Computer and Software, Hanyang University, Seoul, Korea {parkch0708 insight yjwon}@hanyang.ac.kr

More information

Boosting Database Batch workloads using Flash Memory SSDs

Boosting Database Batch workloads using Flash Memory SSDs Boosting Database Batch workloads using Flash Memory SSDs Won-Gill Oh and Sang-Won Lee School of Information and Communication Engineering SungKyunKwan University, 27334 2066, Seobu-Ro, Jangan-Gu, Suwon-Si,

More information

2 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card w/ 2 msata Slots and HyperDuo SSD Tiering

2 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card w/ 2 msata Slots and HyperDuo SSD Tiering 2 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card w/ 2 msata Slots and HyperDuo SSD Tiering StarTech ID: PEXMSATA3422 The PEXMSATA3422 PCI Express SATA Card helps you improve the overall speed

More information

Enterprise Flash Drive

Enterprise Flash Drive Enterprise Flash Drive A evolução do armazenamento de dados Tutorial sobre as tecnonologias SSD (Solid State Disk) e sua implantação pela engenharia da EMC, denominado EFD (Enterprise Flash Drive), onde

More information

QuickSpecs. PCIe Solid State Drives for HP Workstations

QuickSpecs. PCIe Solid State Drives for HP Workstations Introduction Storage technology with NAND media is outgrowing the bandwidth limitations of the SATA bus. New high performance Storage solutions will connect directly to the PCIe bus for revolutionary performance

More information

Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage

Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage This document describes why and how to use SmartCache in Oracle OLTP database to accelerate the transaction performance. SmartCache

More information

LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment

LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment Evaluation report prepared under contract with LSI Corporation Introduction Interest in solid-state storage (SSS) is high, and IT

More information

Intel Solid- State Drive Data Center P3700 Series NVMe Hybrid Storage Performance

Intel Solid- State Drive Data Center P3700 Series NVMe Hybrid Storage Performance Intel Solid- State Drive Data Center P3700 Series NVMe Hybrid Storage Performance Hybrid Storage Performance Gains for IOPS and Bandwidth Utilizing Colfax Servers and Enmotus FuzeDrive Software NVMe Hybrid

More information

FIOS: A Fair, Efficient Flash I/O Scheduler

FIOS: A Fair, Efficient Flash I/O Scheduler FIOS: A Fair, Efficient Flash I/O Scheduler Stan Park Kai Shen University of Rochester 1/21 Background Flash is widely available as mass storage, e.g. SSD $/GB still dropping, affordable high-performance

More information

Outline. CS 245: Database System Principles. Notes 02: Hardware. Hardware DBMS ... ... Data Storage

Outline. CS 245: Database System Principles. Notes 02: Hardware. Hardware DBMS ... ... Data Storage CS 245: Database System Principles Notes 02: Hardware Hector Garcia-Molina Outline Hardware: Disks Access Times Solid State Drives Optimizations Other Topics: Storage costs Using secondary storage Disk

More information

Solid State Drive Architecture

Solid State Drive Architecture Solid State Drive Architecture A comparison and evaluation of data storage mediums Tyler Thierolf Justin Uriarte Outline Introduction Storage Device as Limiting Factor Terminology Internals Interface Architecture

More information

Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array

Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array Evaluation report prepared under contract with Lenovo Executive Summary Even with the price of flash

More information

Samsung Solid State Drive RAPID mode

Samsung Solid State Drive RAPID mode Samsung Solid State Drive RAPID mode White Paper 2013 Samsung Electronics Co. Improving System Responsiveness with Samsung RAPID mode Innovative solution pairs advanced SSD technology with cutting-edge

More information

Disk Schedulers for Solid State Drives

Disk Schedulers for Solid State Drives Disk Schedulers for Solid State Drives Jaeho Kim School of Computer Science University of Seoul kjhnet7@uos.ac.kr Jongmoo Choi Division of Information and CS Dankook University choijm@dankook.ac.kr Yongseok

More information

4 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card with HyperDuo SSD Tiering

4 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card with HyperDuo SSD Tiering 4 Port PCI Express 2.0 SATA III 6Gbps RAID Controller Card with HyperDuo SSD Tiering StarTech ID: PEXSAT34RH The PEXSAT34RH 4-Port PCI Express 2.0 SATA Controller Card with HyperDuo adds 4 AHCI SATA III

More information

SSD Write Performance IOPS Confusion Due to Poor Benchmarking Techniques

SSD Write Performance IOPS Confusion Due to Poor Benchmarking Techniques SSD Write Performance IOPS Confusion Due to Poor Benchmarking Techniques Dominique A. Heger dheger@dhtusa.com www.dhtusa.com Introduction Over the last few years, the proliferation of solid state disk

More information

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION A DIABLO WHITE PAPER AUGUST 2014 Ricky Trigalo Director of Business Development Virtualization, Diablo Technologies

More information

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1 Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System

More information

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Database Solutions Engineering By Murali Krishnan.K Dell Product Group October 2009

More information

CAVE: Channel-Aware Buffer Management Scheme for Solid State Disk

CAVE: Channel-Aware Buffer Management Scheme for Solid State Disk CAVE: Channel-Aware Buffer Management Scheme for Solid State Disk Sung Kyu Park, Youngwoo Park, Gyudong Shim, and Kyu Ho Park Korea Advanced Institute of Science and Technology (KAIST) 305-701, Guseong-dong,

More information

Why are state-of-the-art flash-based multi-tiered storage systems performing poorly for HTTP video streaming?

Why are state-of-the-art flash-based multi-tiered storage systems performing poorly for HTTP video streaming? Why are state-of-the-art flash-based multi-tiered storage systems performing poorly for HTTP video streaming? Moonkyung Ryu Hyojun Kim Umakishore Ramachandran Georgia Institute of Technology Contents Background

More information

How To Write On A Flash Memory Flash Memory (Mlc) On A Solid State Drive (Samsung)

How To Write On A Flash Memory Flash Memory (Mlc) On A Solid State Drive (Samsung) Using MLC NAND in Datacenters (a.k.a. Using Client SSD Technology in Datacenters) Tony Roug, Intel Principal Engineer SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA.

More information

PCI Express SATA III RAID Controller Card with Mini-SAS Connector (SFF-8087) - HyperDuo SSD Tiering

PCI Express SATA III RAID Controller Card with Mini-SAS Connector (SFF-8087) - HyperDuo SSD Tiering PCI Express SATA III RAID Controller Card with Mini-SAS Connector (SFF-8087) - HyperDuo SSD Tiering StarTech ID: PEXSAT34SFF The PEXSAT34SFF PCI Express 2.0 SATA Controller Card enables 4 AHCI SATA III

More information

Scaling from Datacenter to Client

Scaling from Datacenter to Client Scaling from Datacenter to Client KeunSoo Jo Sr. Manager Memory Product Planning Samsung Semiconductor Audio-Visual Sponsor Outline SSD Market Overview & Trends - Enterprise What brought us to NVMe Technology

More information

Flash Performance in Storage Systems. Bill Moore Chief Engineer, Storage Systems Sun Microsystems

Flash Performance in Storage Systems. Bill Moore Chief Engineer, Storage Systems Sun Microsystems Flash Performance in Storage Systems Bill Moore Chief Engineer, Storage Systems Sun Microsystems 1 Disk to CPU Discontinuity Moore s Law is out-stripping disk drive performance (rotational speed) As a

More information

How To Improve Write Speed On An Nand Flash Memory Flash Drive

How To Improve Write Speed On An Nand Flash Memory Flash Drive White Paper Apacer and Diskeeper Corporation The Best Gets Better Apacer and Diskeeper Corporation The Best Gets Better Table of Contents Overview 1 The Problem 1 Problem Analysis 1 The Software Solution:

More information

Using Synology SSD Technology to Enhance System Performance. Based on DSM 5.2

Using Synology SSD Technology to Enhance System Performance. Based on DSM 5.2 Using Synology SSD Technology to Enhance System Performance Based on DSM 5.2 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD Cache as Solution...

More information

FAST 11. Yongseok Oh <ysoh@uos.ac.kr> University of Seoul. Mobile Embedded System Laboratory

FAST 11. Yongseok Oh <ysoh@uos.ac.kr> University of Seoul. Mobile Embedded System Laboratory CAFTL: A Content-Aware Flash Translation Layer Enhancing the Lifespan of flash Memory based Solid State Drives FAST 11 Yongseok Oh University of Seoul Mobile Embedded System Laboratory

More information

Deep Dive: Maximizing EC2 & EBS Performance

Deep Dive: Maximizing EC2 & EBS Performance Deep Dive: Maximizing EC2 & EBS Performance Tom Maddox, Solutions Architect 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved What we ll cover Amazon EBS overview Volumes Snapshots

More information

Cartal-Rijsbergen Automotive Improves SQL Server Performance and I/O Database Access with OCZ s PCIe-based ZD-XL SQL Accelerator

Cartal-Rijsbergen Automotive Improves SQL Server Performance and I/O Database Access with OCZ s PCIe-based ZD-XL SQL Accelerator enterprise Case Study Cartal-Rijsbergen Automotive Improves SQL Server Performance and I/O Database Access with OCZ s PCIe-based ZD-XL SQL Accelerator ZD-XL SQL Accelerator Significantly Boosts Data Warehousing,

More information

SATA II 3Gb/s SSD. SSD630 Benefits. Enhanced Performance. Applications

SATA II 3Gb/s SSD. SSD630 Benefits. Enhanced Performance. Applications SATA II 3Gb/s SSD SSD630 Benefits Super slim thickness of 7mm Fully compatible with devices and OS that support the SATA II 3Gb/s standard Non-volatile Flash Memory for outstanding data retention Built-in

More information

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts.

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts. Overview Introduction Solid State Drives (SSDs) are fast becoming a real force with respect to storage in the computer industry. With no moving parts, storage is no longer bound by mechanical barriers

More information

TEST REPORT Dell PERC H700 average percentage win in IOPS over FEBRUARY 2006 Dell PERC 6/i across RAID 5 and RAID 10. Internal HDD tests

TEST REPORT Dell PERC H700 average percentage win in IOPS over FEBRUARY 2006 Dell PERC 6/i across RAID 5 and RAID 10. Internal HDD tests Dell 6Gbps vs. 3Gbps RAID controller performance comparison Test report commissioned by Dell Inc. January 2010 Executive summary We compared the performance of the 6Gbps Dell PowerEdge RAID Controller

More information

Journal of Systems Architecture

Journal of Systems Architecture Journal of Systems Architecture 57 (211) 354 365 Contents lists available at ScienceDirect Journal of Systems Architecture journal homepage: www.elsevier.com/locate/sysarc A comprehensive study of energy

More information

LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment

LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment Evaluation report prepared under contract with LSI Corporation Introduction Interest in solid-state storage (SSS) is high, and

More information

Databases Acceleration with Non Volatile Memory File System (NVMFS) PRESENTATION TITLE GOES HERE Saeed Raja SanDisk Inc.

Databases Acceleration with Non Volatile Memory File System (NVMFS) PRESENTATION TITLE GOES HERE Saeed Raja SanDisk Inc. bases Acceleration with Non Volatile Memory File System (NVMFS) PRESENTATION TITLE GOES HERE Saeed Raja SanDisk Inc. MySQL? Widely used Open Source Relational base Management System (RDBMS) Popular choice

More information

document describes why and how to migrate DB2 objects to Dorado Storage System. designed to eliminate IO bottleneck.

document describes why and how to migrate DB2 objects to Dorado Storage System. designed to eliminate IO bottleneck. Accelerate DB2 Performance by Migrating Objects to Dorado Using solid storage in DB2 database makes the performance speed up with less power consumption. This document describes why and how to migrate

More information

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts.

SSDs tend to be more rugged than hard drives with respect to shock and vibration because SSDs have no moving parts. Introduction Solid State Drives (SSDs) are fast becoming a real force with respect to storage in the computer industry. With no moving parts, storage is no longer bound by mechanical barriers to higher

More information

Data Center Storage Solutions

Data Center Storage Solutions Data Center Storage Solutions Enterprise software, appliance and hardware solutions you can trust When it comes to storage, most enterprises seek the same things: predictable performance, trusted reliability

More information

Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology

Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology Evaluation report prepared under contract with NetApp Introduction As flash storage options proliferate and become accepted in the enterprise,

More information

An Exploration of Hybrid Hard Disk Designs Using an Extensible Simulator

An Exploration of Hybrid Hard Disk Designs Using an Extensible Simulator An Exploration of Hybrid Hard Disk Designs Using an Extensible Simulator Pavan Konanki Thesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment

More information

Certification Document bluechip STORAGEline R54300s NAS-Server 03/06/2014. bluechip STORAGEline R54300s NAS-Server system

Certification Document bluechip STORAGEline R54300s NAS-Server 03/06/2014. bluechip STORAGEline R54300s NAS-Server system bluechip STORAGEline R54300s NAS-Server system Executive summary After performing all tests, the Certification Document bluechip STORAGEline R54300s NAS-Server system has been officially certified according

More information

The Data Placement Challenge

The Data Placement Challenge The Data Placement Challenge Entire Dataset Applications Active Data Lowest $/IOP Highest throughput Lowest latency 10-20% Right Place Right Cost Right Time 100% 2 2 What s Driving the AST Discussion?

More information

Understanding endurance and performance characteristics of HP solid state drives

Understanding endurance and performance characteristics of HP solid state drives Understanding endurance and performance characteristics of HP solid state drives Technology brief Introduction... 2 SSD endurance... 2 An introduction to endurance... 2 NAND organization... 2 SLC versus

More information

COS 318: Operating Systems. Storage Devices. Kai Li and Andy Bavier Computer Science Department Princeton University

COS 318: Operating Systems. Storage Devices. Kai Li and Andy Bavier Computer Science Department Princeton University COS 318: Operating Systems Storage Devices Kai Li and Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318/ Today s Topics! Magnetic disks!

More information

Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card

Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card Version 1.0 April 2011 DB15-000761-00 Revision History Version and Date Version 1.0, April 2011 Initial

More information

Benchmarking Cassandra on Violin

Benchmarking Cassandra on Violin Technical White Paper Report Technical Report Benchmarking Cassandra on Violin Accelerating Cassandra Performance and Reducing Read Latency With Violin Memory Flash-based Storage Arrays Version 1.0 Abstract

More information

QuickSpecs. HP Z Turbo Drive

QuickSpecs. HP Z Turbo Drive Overview Introduction Storage technology with NAND media is outgrowing the bandwidth limitations of the SATA bus. New high performance storage solutions will connect directly to the PCIe bus for revolutionary

More information

Flash-Friendly File System (F2FS)

Flash-Friendly File System (F2FS) Flash-Friendly File System (F2FS) Feb 22, 2013 Joo-Young Hwang (jooyoung.hwang@samsung.com) S/W Dev. Team, Memory Business, Samsung Electronics Co., Ltd. Agenda Introduction FTL Device Characteristics

More information

Solid State Storage in a Hard Disk Package. Brian McKean, LSI Corporation

Solid State Storage in a Hard Disk Package. Brian McKean, LSI Corporation Solid State Storage in a Hard Disk Package Brian McKean, LSI Corporation SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individual members may

More information

As enterprise data requirements continue

As enterprise data requirements continue Storage Introducing the Dell PERC 6 Family of SAS RAID ControlLers By Bhanu Prakash Dixit Sanjay Tiwari Kedar Vaze Joe H. Trickey III The Dell PowerEdge Expandable RAID Controller (PERC) 6 family of enterprise-class

More information

F600Q 8Gb FC Storage Performance Report Date: 2012/10/30

F600Q 8Gb FC Storage Performance Report Date: 2012/10/30 F600Q 8Gb FC Storage Performance Report Date: 2012/10/30 Table of Content IO Feature Highlights Test Configurations Maximum IOPS & Best Throughput Maximum Sequential IOPS Test Configurations Random IO

More information

1. Computer System Structure and Components

1. Computer System Structure and Components 1 Computer System Structure and Components Computer System Layers Various Computer Programs OS System Calls (eg, fork, execv, write, etc) KERNEL/Behavior or CPU Device Drivers Device Controllers Devices

More information

System Architecture. CS143: Disks and Files. Magnetic disk vs SSD. Structure of a Platter CPU. Disk Controller...

System Architecture. CS143: Disks and Files. Magnetic disk vs SSD. Structure of a Platter CPU. Disk Controller... System Architecture CS143: Disks and Files CPU Word (1B 64B) ~ 10 GB/sec Main Memory System Bus Disk Controller... Block (512B 50KB) ~ 100 MB/sec Disk 1 2 Magnetic disk vs SSD Magnetic Disk Stores data

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

Using Synology SSD Technology to Enhance System Performance Synology Inc. Using Synology SSD Technology to Enhance System Performance Synology Inc. Synology_WP_ 20121112 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD

More information

Fusion iomemory iodrive PCIe Application Accelerator Performance Testing

Fusion iomemory iodrive PCIe Application Accelerator Performance Testing WHITE PAPER Fusion iomemory iodrive PCIe Application Accelerator Performance Testing SPAWAR Systems Center Atlantic Cary Humphries, Steven Tully and Karl Burkheimer 2/1/2011 Product testing of the Fusion

More information

2011 DASM Tablet Computer Systems Benchmark Report

2011 DASM Tablet Computer Systems Benchmark Report 2011 DASM Tablet Computer Systems Benchmark Report James D Mullen Author Forest Health Technology Enterprise Team Building A, Suite 331 2150 Centre Ave Fort Collins, CO 80526 1891 Contents EXECUTIVE SUMMARY...

More information

Mini PCIe SSD - mpdm. RoHS Compliant. Product Specifications. August 15 th, 2012. Version 1.0

Mini PCIe SSD - mpdm. RoHS Compliant. Product Specifications. August 15 th, 2012. Version 1.0 RoHS Compliant Mini PCIe SSD - mpdm Product Specifications August 15 th, 2012 Version 1.0 Apacer Technology Inc. 4 th Fl., 75 Hsin Tai Wu Rd., Sec.1, Hsichih, New Taipei City, Taiwan 221 Tel: +886-2-2698-2888

More information

Chapter 11 I/O Management and Disk Scheduling

Chapter 11 I/O Management and Disk Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Chapter 11 I/O Management and Disk Scheduling Dave Bremer Otago Polytechnic, NZ 2008, Prentice Hall I/O Devices Roadmap Organization

More information

Express5800 Scalable Enterprise Server Reference Architecture. For NEC PCIe SSD Appliance for Microsoft SQL Server

Express5800 Scalable Enterprise Server Reference Architecture. For NEC PCIe SSD Appliance for Microsoft SQL Server Express5800 Scalable Enterprise Server Reference Architecture For NEC PCIe SSD Appliance for Microsoft SQL Server An appliance that significantly improves performance of enterprise systems and large-scale

More information

Methods to achieve low latency and consistent performance

Methods to achieve low latency and consistent performance Methods to achieve low latency and consistent performance Alan Wu, Architect, Memblaze zhongjie.wu@memblaze.com 2015/8/13 1 Software Defined Flash Storage System Memblaze provides software defined flash

More information

HP Smart Array Controllers and basic RAID performance factors

HP Smart Array Controllers and basic RAID performance factors Technical white paper HP Smart Array Controllers and basic RAID performance factors Technology brief Table of contents Abstract 2 Benefits of drive arrays 2 Factors that affect performance 2 HP Smart Array

More information

IT Platforms for Utilization of Big Data

IT Platforms for Utilization of Big Data Hitachi Review Vol. 63 (2014), No. 1 46 IT Platforms for Utilization of Big Yasutomo Yamamoto OVERVIEW: The growing momentum behind the utilization of big in social and corporate activity has created a

More information

Qsan Document - White Paper. Performance Monitor Case Studies

Qsan Document - White Paper. Performance Monitor Case Studies Qsan Document - White Paper Performance Monitor Case Studies Version 1.0 November 2014 Copyright Copyright@2004~2014, Qsan Technology, Inc. All rights reserved. No part of this document may be reproduced

More information

Jae Woo Choi, Dong In Shin, Young Jin Yu, Hyunsang Eom, Heon Young Yeom. Seoul National Univ. TAEJIN INFOTECH

Jae Woo Choi, Dong In Shin, Young Jin Yu, Hyunsang Eom, Heon Young Yeom. Seoul National Univ. TAEJIN INFOTECH Jae Woo Choi, Dong In Shin, Young Jin Yu, Hyunsang Eom, Heon Young Yeom Seoul National Univ. TAEJIN INFOTECH Host Computer (initiator) SAN with High-Speed Network + Fast Storage = Fast SAN Environment???

More information

COS 318: Operating Systems. Storage Devices. Kai Li Computer Science Department Princeton University. (http://www.cs.princeton.edu/courses/cos318/)

COS 318: Operating Systems. Storage Devices. Kai Li Computer Science Department Princeton University. (http://www.cs.princeton.edu/courses/cos318/) COS 318: Operating Systems Storage Devices Kai Li Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/) Today s Topics Magnetic disks Magnetic disk performance

More information

Benchmarking Hadoop & HBase on Violin

Benchmarking Hadoop & HBase on Violin Technical White Paper Report Technical Report Benchmarking Hadoop & HBase on Violin Harnessing Big Data Analytics at the Speed of Memory Version 1.0 Abstract The purpose of benchmarking is to show advantages

More information

Computer Engineering and Systems Group Electrical and Computer Engineering SCMFS: A File System for Storage Class Memory

Computer Engineering and Systems Group Electrical and Computer Engineering SCMFS: A File System for Storage Class Memory SCMFS: A File System for Storage Class Memory Xiaojian Wu, Narasimha Reddy Texas A&M University What is SCM? Storage Class Memory Byte-addressable, like DRAM Non-volatile, persistent storage Example: Phase

More information

Nasir Memon Polytechnic Institute of NYU

Nasir Memon Polytechnic Institute of NYU Nasir Memon Polytechnic Institute of NYU SSD Drive Technology Overview SSD Drive Components NAND FLASH Microcontroller SSD Drive Forensics Challenges Overview SSD s are fairly new to the market Whereas

More information

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 412, University of Maryland. Guest lecturer: David Hovemeyer.

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 412, University of Maryland. Guest lecturer: David Hovemeyer. Guest lecturer: David Hovemeyer November 15, 2004 The memory hierarchy Red = Level Access time Capacity Features Registers nanoseconds 100s of bytes fixed Cache nanoseconds 1-2 MB fixed RAM nanoseconds

More information

A Data De-duplication Access Framework for Solid State Drives

A Data De-duplication Access Framework for Solid State Drives JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 28, 941-954 (2012) A Data De-duplication Access Framework for Solid State Drives Department of Electronic Engineering National Taiwan University of Science

More information

HP 80 GB, 128 GB, and 160 GB Solid State Drives for HP Business Desktop PCs Overview. HP 128 GB Solid State Drive (SSD)

HP 80 GB, 128 GB, and 160 GB Solid State Drives for HP Business Desktop PCs Overview. HP 128 GB Solid State Drive (SSD) Overview Models SATA 3 GB/second Interface Drives HP 80 GB Solid State Drive (SSD) HP 160 GB Solid State Drive (SSD) SATA 6 GB/second Interface Drives HP 128 GB Solid State Drive (SSD) BM848AA BW321AA

More information

Bringing Greater Efficiency to the Enterprise Arena

Bringing Greater Efficiency to the Enterprise Arena Bringing Greater Efficiency to the Enterprise Arena Solid State Drive Samsung Semiconductor Inc. Tony Kim @ CES 2011 Flash Forward: @ Flash CES Memory 2011 Storage Solutions What is SSD? Solid State Drive

More information

Benefits of Solid-State Storage

Benefits of Solid-State Storage This Dell technical white paper describes the different types of solid-state storage and the benefits of each. Jeff Armstrong Gary Kotzur Rahul Deshmukh Contents Introduction... 3 PCIe-SSS... 3 Differences

More information

Technologies Supporting Evolution of SSDs

Technologies Supporting Evolution of SSDs Technologies Supporting Evolution of SSDs By TSUCHIYA Kenji Notebook PCs equipped with solid-state drives (SSDs), featuring shock and vibration durability due to the lack of moving parts, appeared on the

More information