Lecture 22: Mass Storage

Total Page:16

File Type:pdf, Size:1020Kb

Lecture 22: Mass Storage Lecture 22: Mass Storage Fall 2019 Jason Tang Slides based upon Operating System Concept slides, http://codex.cs.yale.edu/avi/os-book/OS9/slide-dir/index.html Copyright Silberschatz, Galvin, and Gagne, 2013 "1 Topics • Mass Storage Systems! • Disk Scheduling! • Disk Management! • Boot Process "2 Mass Storage Systems • After startup, OS loads programs from secondary storage into main memory:! • ROM / EPROM / EEPROM / FPGA! • Magnetic hard disk! • Non-volatile random-access memory (NVRAM) ! • Tape drive ! • Or others: boot CD, Zip drive, punch card, … "3 EPROM • Erasable programmable read-only memory! • Manufacturer or OEM burns image into EPROM! • Use in older computing systems and in modern embedded systems "4 Magnetic Hard Disk (HDD) • Spindle motor spins a stack$ of platters coated with$ magnetic material! • Spins from 5400 to over$ 10000 RPMs! • Actuator motor moves a disk$ head over the platters, to$ sense polarity of the track$ underneath https://www.technobu%alo.com/2012/11/24/western-digital- "5 expands-high-performance-wd-black-hard-drive-line-to-4tb/ Magnetic Hard Disk (HDD) • Transfer rate: rate which data flow between drive and computer! • Positioning time (random-access time): time to move disk arm to desired cylinder (seek time) plus time for desired sector to rotate under disk head (rotational latency)! • Head crash: when disk head hits platter! • Attached to computer via a bus: SCSI, IDE, SATA, Fibre Channel, USB, Thunderbolt, others! • Host controller in computer uses bus to talk to disk controller "6 Magnetic Hard Disk Performance • Average access time = average seek time + average latency! • Server-grade hard disks average 5 ms (3 ms seek time + 2 ms latency)! • Average I/O time = average access time + (transfer size / transfer rate) + controller overhead! • Example: transfer 4 KB data with 9 ms average access time, 1 Gb/s transfer rate, 0.1 ms controller overhead! = 9 ms + (4 KB & (1 GB / 1000&1000 KB) & (8 b / 1B) / (1 Gb/s)) + 0.1 ms! = 9.100032 ms (or about 100,000 times slower than modern RAM) "7 Non-Volatile RAM (NVRAM) • Used in modern computers for secondary storage, like a magnetic hard drive! • Also known as flash memory, flash drive, or solid-state drive (SSD)! • Two variants: NAND flash (most common) or NOR flash! • Requires less power, much faster than magnetic hard disk! • Does not su%er from head crash! • Block erasure: must erase entire block at a time! • Memory wear: may only erase the same block finite times (usually over 10,000) "8 Tape Drive • Early read/write secondary storage medium! • Linear search: tape drive had to fast-forward or rewind spool of tape to correct place; very slow! • Can hold up to 200 TB! • Transfer rate on order of 140 MB/s$ (40 times slower than hard disk)! • Origin of tar (“tape archive”) command "9 Disk Structure • Addressed as large 1-dimensional array of logical blocks! • Block is smallest unit of transfer; HDD is usually 512 or 4096 bytes, NAND flash anywhere from 512 bytes to 128 KiB! • On HDD, sector 0 is first sector on first track on outermost cylinder! • Logical to physical addressing tricky, due to bad sectors! • For HDD, non-constant number of sectors per track due to constant platter rotational speed "10 I/O Scheduling • Just as OS has a process scheduler to decide which process to run next, OS has an I/O scheduler to decide which disk operation to perform next! • On HDD, minimize seek time, by decreasing physical distance that platter must rotate and for disk arm to move to correct cylinder! • On SSD, combine requests a%ecting the same block! • Disk bandwidth: total number of bytes transferred, divided by total time between start of first request to completion of last transfer! • While data being transferred via DMA, OS can do other things "11 Disk Scheduling • Disk I/O request includes input or output mode, disk address, memory address, number of sectors to transfer! • OS maintains queue of requests! • Idle disk can immediately work on I/O request, while requests are queued for a busy disk! • Optimization algorithms only make sense when a queue exists! • HDD controllers have small bu%ers and can manage a queue of I/O requests "12 FCFS Scheduling (HDD) • Example: requests for cylinders 98, 183, 37, 122, 14, 124, 65, 67; head is currently on cylinder 53! • Requests serviced first-come, first-serve! • Note wild swing between cylinders 37 to 122 to 14; would be faster if 37 and 14 were serviced consecutively "13 SSTF (HDD) • Shortest Seek Time first selects request with minimum seek time from current head position! • Form of shortest-job first scheduling, but may starve a request "14 SCAN (HDD) • Disk arm starts at one end of disk, moves towards other end, servicing requests until it reaches other end; head then reverses direction! • Also known as elevator algorithm! • Works well if requests are uniformly dense; a large density of requests at other end of disk will wait the longest "15 Circular SCAN (C-SCAN) (HDD) • More uniform wait time than SCAN! • When head reaches one end, return to beginning of disk instead of reversing direction! • Treats cylinders as circular list that wraps around from last cylinder to first "16 LOOK and Circular-LOOK (C-LOOK) (HDD) • Arm only goes as far as last request in each direction, then reverses direction immediately, without going all of the way to end of disk! • C-LOOK is LOOK with circular list "17 Disk Management (HDD) • Low-level formatting: dividing a disk into sectors that disk controller can read and write! • Each sector holds header information, data, plus error correction code (ECC)! • Usually done by manufacturer! • Usually, disk is partitioned into one or more groups of cylinders, where each partition treated as a logical disk! • Logical formatting: creating a file system "18 Disk Management (SSD) • On flash drives, can flip a single bit from 1 to 0, but reverse not physically possible! • Must instead erase entire flash sector (flip all bits in that sector from 0 to 1)! • Erasing is slow, from 1 ms per sector for NAND flash up to 5 s for NOR flash! • No such thing as low-level formatting a flash drive, though file systems still exist! • File systems optimized for SSDs operate very differently than ones designed for HDDs "19 Bad Blocks • For HDD, bad blocks discovered during low-level initialization! • HDD controller automatically skips over that block when formatting disk! • For SSD, bad blocks discovered during erase, when a bit stays stuck at 0! • OS or SSD controller marks block as bad, so that it will not be used later! • Bad blocks can also be found during operations, when controller/OS calculates a di%erent checksum during a read! • Spare sectors: extra space not normally allocated, used when replacing a bad sector "20 BIOS versus UEFI • At startup, ROM firmware loads OS from a known location within secondary storage into main memory Feature BIOS UEFI Floppy, hard disk, Any, including Storage System CD-ROM PXE boot Partition Table MBR GPT Maximum Hard 2.1 TB 9.4 ZB Disk Size Security None Secure Boot "21 BIOS versus UEFI https://phoenixts.com/blog/uefi-vs-legacy-bios/ "22 BIOS versus UEFI http://teck-in.blogspot.com/2013/09/who-invented-uefi.html "23.
Recommended publications
  • United States Patent (10) Patent N0.: US 7,290,102 B2 Lubbers Et A]
    US007290102B2 (12) United States Patent (10) Patent N0.: US 7,290,102 B2 Lubbers et a]. (45) Date of Patent: Oct. 30, 2007 (54) POINT IN TIME STORAGE COPY 5,184,281 A 2/1993 Samarov et al. 5,513,314 A 4/1996 Kandasamy et al. (75) Inventors: Clark E. Lubbers, Colorado Springs, 5,815,371 A 9/ 1998 Jeiffies et a1~ CO (US); James M. Reiser, Colorado 5,815,649 A 9/1998 Utter et al' Springs’ CO (Us); Anuja Korgaonkars 5,822,777 A 10/1998 Les-hem et al. Colorado Springs CO Randy L 5,832,222 A 11/1998 DZladosZ et al. Roberson New £30m Richeg/ FL (US)_' 5,835,700 A 11/1998 Carbonneau et al. ’ ’ ’ 5,923,876 A 7/1999 Teague Robert G- Bean, Monument, CO (Us) 5,987,622 A 11/1999 L0 Verso et al. 5,996,089 A 11/1999 Mann et a1. (73) Assignee: Hewlett-Packard Development 6,033,639 A 3/2000 Schmidt et a1, Company, LP, Houston, TX (US) (Continued) ( * ) Notice: Subject to any disclaimer, the term of this patent is extended or adjusted under 35 OTHER PUBLICATIONS U-S-C- 154(1)) by 360 days- Smart Storage Inc., “SmartStor In?NetTM; Virtual Storage for Today’s E-economy,” Sep. 2000. (21) Appl. N0.: 11/081,061 _ (Contlnued) (22) Filed: Mar‘ 15’ 2005 Primary ExaminerAiary Portka (65) Prior Publication Data (57) ABSTRACT US 2005/0160243 A1 Jul. 21, 2005 A storage system permits Virtual storage of user data by Related US. Application Data implementing a logical disk mapping structure that provides (63) Continuation of application NO‘ 10/080 961 ?led on access to user data stored on physical storage media and Oct 22 2001 HOW Pat NO 6 915 392 Winch is a methods for generating point-in-time copies, or snapshots, con?nue’ltion_il’l_ an of 2'‘ li'cat’ion ’NO ’09/872 597 of logical disks.
    [Show full text]
  • Cortex-A9 Single Core Microarchitecture
    Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 18-600 Foundations of Computer Systems Lecture 10: “The Memory Hierarchy” John P. Shen & Gregory Kesden October 2, 2017 ➢ Required Reading Assignment: • Chapter 6 of CS:APP (3rd edition) by Randy Bryant & Dave O’Hallaron ➢ Recommended Reference: • Sec. 1 & Sec. 3: Bruce Jacob, “The Memory System: You Can't Avoid It, You Can't Ignore It, You Can't Fake It,” Synthesis Lectures on Computer Architecture 2009. 10/02/2017 (© John Shen) 18-600 Lecture #10 1 18-600 Foundations of Computer Systems Lecture 10: “The Memory Hierarchy” A. Memory Technologies B. Main Memory Implementation a. DRAM Organization b. DRAM Operation c. Memory Controller C. Disk Storage Technologies 10/02/2017 (© John Shen) 18-600 Lecture #10 2 From Lec #9 … Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Three Flow Paths of Superscalar Processors ➢ Wide Instruction Fetching ➢ Dynamic Branch Prediction I-cache Branch Instruction FETCH Flow Predictor Instruction ➢ Register Renaming Buffer ➢ Dynamic Scheduling DECODE ➢ Load Bypassing & Forwarding ➢ Speculative Memory Disamb. DISPATCH Integer Floating-point Media Memory Reservation Stations Memory Data EXECUTE Flow Reorder Buffer Register (ROB) Data COMMIT Flow Store D-cache Queue 10/02/2017 (© John Shen) 18-600 Lecture #10 3 From Lec #9 … Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Integrating Map Table with the ARF 9/27/2017 (©J.P. Shen) 18-600 Lecture #9 4 From Lec #9 … Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Reservation Station Implementation + info for executing instruction (opcode, ROB entry, RRF entry…) • Reservation Stations: distributed vs.
    [Show full text]
  • Memory Hierarchy Summary
    Carnegie Mellon Carnegie Mellon Today DRAM as building block for main memory The Memory Hierarchy Locality of reference Caching in the memory hierarchy Storage technologies and trends 15‐213 / 18‐213: Introduction to Computer Systems 10th Lecture, Feb 14, 2013 Instructors: Seth Copen Goldstein, Anthony Rowe, Greg Kesden 1 2 Carnegie Mellon Carnegie Mellon Byte‐Oriented Memory Organization Simple Memory Addressing Modes Normal (R) Mem[Reg[R]] • • • . Register R specifies memory address . Aha! Pointer dereferencing in C Programs refer to data by address movl (%ecx),%eax . Conceptually, envision it as a very large array of bytes . In reality, it’s not, but can think of it that way . An address is like an index into that array Displacement D(R) Mem[Reg[R]+D] . and, a pointer variable stores an address . Register R specifies start of memory region . Constant displacement D specifies offset Note: system provides private address spaces to each “process” . Think of a process as a program being executed movl 8(%ebp),%edx . So, a program can clobber its own data, but not that of others nd th From 2 lecture 3 From 5 lecture 4 Carnegie Mellon Carnegie Mellon Traditional Bus Structure Connecting Memory Read Transaction (1) CPU and Memory CPU places address A on the memory bus. A bus is a collection of parallel wires that carry address, data, and control signals. Buses are typically shared by multiple devices. Register file Load operation: movl A, %eax ALU %eax CPU chip Main memory Register file I/O bridge A 0 Bus interface ALU x A System bus Memory bus I/O Main Bus interface bridge memory 5 6 Carnegie Mellon Carnegie Mellon Memory Read Transaction (2) Memory Read Transaction (3) Main memory reads A from the memory bus, retrieves CPU read word xfrom the bus and copies it into register word x, and places it on the bus.
    [Show full text]
  • Tuning IBM System X Servers for Performance
    Front cover Tuning IBM System x Servers for Performance Identify and eliminate performance bottlenecks in key subsystems Expert knowledge from inside the IBM performance labs Covers Windows, Linux, and VMware ESX David Watts Alexandre Chabrol Phillip Dundas Dustin Fredrickson Marius Kalmantas Mario Marroquin Rajeev Puri Jose Rodriguez Ruibal David Zheng ibm.com/redbooks International Technical Support Organization Tuning IBM System x Servers for Performance August 2009 SG24-5287-05 Note: Before using this information and the product it supports, read the information in “Notices” on page xvii. Sixth Edition (August 2009) This edition applies to IBM System x servers running Windows Server 2008, Windows Server 2003, Red Hat Enterprise Linux, SUSE Linux Enterprise Server, and VMware ESX. © Copyright International Business Machines Corporation 1998, 2000, 2002, 2004, 2007, 2009. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Contents Notices . xvii Trademarks . xviii Foreword . xxi Preface . xxiii The team who wrote this book . xxiv Become a published author . xxix Comments welcome. xxix Part 1. Introduction . 1 Chapter 1. Introduction to this book . 3 1.1 Operating an efficient server - four phases . 4 1.2 Performance tuning guidelines . 5 1.3 The System x Performance Lab . 5 1.4 IBM Center for Microsoft Technologies . 7 1.5 Linux Technology Center . 7 1.6 IBM Client Benchmark Centers . 8 1.7 Understanding the organization of this book . 10 Chapter 2. Understanding server types . 13 2.1 Server scalability . 14 2.2 Authentication services . 15 2.2.1 Windows Server 2008 Active Directory domain controllers .
    [Show full text]
  • POWER7 and POWER7+ Optimization and Tuning Guide
    Front cover POWER7 and POWER7+ Optimization and Tuning Guide Discover simple strategies to optimize your POWER7 environment Analyze and maximize performance with solid solutions Learn about the new POWER7+ processor Brian Hall Steve Munroe Mala Anand Francis P O’Connell Bill Buros Sergio Reyes Miso Cilimdzic Raul Silvera Hong Hua Randy Swanberg Judy Liu Brian Twichell John MacMillan Brian F Veale Sudhir Maddali Julian Wang K Madhusudanan Yaakov Yaari Bruce Mealey ibm.com/redbooks International Technical Support Organization POWER7 and POWER7+ Optimization and Tuning Guide November 2012 SG24-8079-00 Note: Before using this information and the product it supports, read the information in “Notices” on page vii. First Edition (November 2012) This edition pertains to Power Systems servers based on POWER7 and POWER7+ processor-based technology. Specific software levels and firmware levels used are noted throughout the text. © Copyright International Business Machines Corporation 2012. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . vii Trademarks . viii Preface . ix The team who wrote this book . ix Now you can become a published author, too! . xiii Comments welcome. xiv Stay connected to IBM Redbooks . xiv Chapter 1. Optimization and tuning on IBM POWER7 and IBM POWER7+ . 1 1.1 Introduction . 2 1.2 Outline of this guide . 2 1.3 Conventions that are used in this guide . 4 1.4 Background . 4 1.5 Optimizing performance on POWER7 . 5 1.5.1 Lightweight tuning and optimization guidelines. 6 1.5.2 Deployment guidelines . 13 1.5.3 Deep performance optimization guidelines.
    [Show full text]
  • Fasttrak Tx2200 / Tx2300 Tx4200 / Tx4300 User Manual
    FASTTRAK TX2200 / TX2300 TX4200 / TX4300 USER MANUAL Version 1.8 FastTrak TX2200/2300,TX4200/4300 User Manual Copyright © 2005 Promise Technology, Inc. All Rights Reserved. Copyright by Promise Technology, Inc. (Promise Technology). No part of this manual may be reproduced or transmitted in any form without the expressed, written permission of Promise Technology. Trademarks Promise, and the Promise logo are registered in U.S. Patent and Trademark Office. All other product names mentioned herein may be trademarks or registered trademarks of their respective companies. Important data protection information You should back up all data before installing any drive controller or storage peripheral. Promise Technology is not responsible for any loss of data resulting from the use, disuse or misuse of this or any other Promise Technology product. Notice Although Promise Technology has attempted to ensure the accuracy of the content of this manual, it is possible that this document may contain technical inaccuracies, typographical, or other errors. Promise Technology assumes no liability for any error in this publication, and for damages, whether direct, indirect, incidental, consequential or otherwise, that may result from such error, including, but not limited to loss of data or profits. Promise Technology provides this publication “as is” without warranty of any kind, either express or implied, including, but not limited to implied warranties of merchantability or fitness for a particular purpose. The published information in the manual is subject to change without notice. Promise Technology reserves the right to make changes in the product design, layout, and driver revisions without notification to its users. This version of the User Manual supersedes all previous versions.
    [Show full text]
  • Introduction to Computer Systems 15-213/18-243, Spring 2009
    Carnegie Mellon The Memory Hierarchy 15-213: Introduction to Computer Systems 11th Lecture, Feb. 16, 2016 Instructors: Franz Franchetti & Seth Copen Goldstein, Ralf Brown, and Brian Railing Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 1 Carnegie Mellon Today Storage technologies and trends Locality of reference Caching in the memory hierarchy Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 2 Carnegie Mellon Random-Access Memory (RAM) Key features . RAM is traditionally packaged as a chip. Basic storage unit is normally a cell (one bit per cell). Multiple RAM chips form a memory. RAM comes in two varieties: . SRAM (Static RAM) . DRAM (Dynamic RAM) Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 3 Carnegie Mellon SRAM vs DRAM Summary Trans. Access Needs Needs per bit time refresh? EDC? Cost Applications SRAM 4 or 6 1X No Maybe 100x Cache memories DRAM 1 10X Yes Yes 1X Main memories, frame buffers Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 4 Carnegie Mellon Nonvolatile Memories DRAM and SRAM are volatile memories . Lose information if powered off. Nonvolatile memories retain value even if powered off . Read-only memory (ROM): programmed during production . Programmable ROM (PROM): can be programmed once . Eraseable PROM (EPROM): can be bulk erased (UV, X-Ray) . Electrically eraseable PROM (EEPROM): electronic erase capability . Flash memory: EEPROMs. with partial (block-level) erase capability . Wears out after about 100,000 erasings Uses for Nonvolatile Memories . Firmware programs stored in a ROM (BIOS, controllers for disks, network cards, graphics accelerators, security subsystems,…) .
    [Show full text]
  • Introduction to Computer Systems 15-213/18-243, Spring 2009
    Carnegie Mellon The Memory Hierarchy 15-213: Introduction to Computer Systems 11th Lecture, June 11, 2019 Instructor: Brian Railing Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 1 Carnegie Mellon Today Storage technologies and trends Locality of reference Caching in the memory hierarchy Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 2 Carnegie Mellon Random-Access Memory (RAM) Key features . RAM is traditionally packaged as a chip. Basic storage unit is normally a cell (one bit per cell). Multiple RAM chips form a memory. RAM comes in two varieties: . SRAM (Static RAM) . DRAM (Dynamic RAM) Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 3 Carnegie Mellon SRAM vs DRAM Summary Trans. Access Needs Needs per bit time refresh? EDC? Cost Applications SRAM 4 or 6 1X No Maybe 100x Cache memories DRAM 1 10X Yes Yes 1X Main memories, frame buffers Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 4 Carnegie Mellon Enhanced DRAMs Basic DRAM cell has not changed since its invention in 1966. Commercialized by Intel in 1970. DRAM cores with better interface logic and faster I/O : . Synchronous DRAM (SDRAM) . Uses a conventional clock signal instead of asynchronous control . Allows reuse of the row addresses (e.g., RAS, CAS, CAS, CAS) . Double data-rate synchronous DRAM (DDR SDRAM) . Double edge clocking sends two bits per cycle per pin . Different types distinguished by size of small prefetch buffer: – DDR (2 bits), DDR2 (4 bits), DDR3 (8 bits) . By 2010, standard for most server and desktop systems .
    [Show full text]
  • Spheras Storage Director Installation & User Guide
    Spheras Storage Director Installation and User Document Name: Guide Part Number MAN-00005-UG Revision 1.0 Revision History Rev Approved Date Change Description Reviewed By 1.0 ECO-3679 Sep., 2003 Released with SPHSSD 2.1 CCB Table 1 Revision History 2 Spheras Storage Director Installation and User Guide Contents Contents - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3 List of Figures- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 7 Preface - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Proprietary Rights Notice - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Document Description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Disclaimer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 License Restrictions- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Trademark Acknowledgements - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Copyright Notice- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 Chapter 1 Introduction - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 13 1.1 About this Manual - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 13 1.2 Conventions- - - - - - -
    [Show full text]
  • Algorithms and Data Structures for External Memory Algorithms and Data Structures 2:4 for External Memory Jeffrey Scott Vitter
    TCSv2n4.qxd 4/24/2008 11:56 AM Page 1 FnT TCS 2:4 Foundations and Trends® in Theoretical Computer Science Algorithms and Data Structures for External MemoryAlgorithms and Data Structures for Vitter Scott Jeffrey Algorithms and Data Structures 2:4 for External Memory Jeffrey Scott Vitter Data sets in large applications are often too massive to fit completely inside the computer's internal memory. The resulting input/output communication (or I/O) between fast internal memory and slower external memory (such as disks) can be a major performance bottleneck. Algorithms and Data Structures Algorithms and Data Structures for External Memory surveys the state of the art in the design and analysis of external memory (or EM) algorithms and data structures, where the goal is to exploit locality in order to reduce the I/O costs. A variety of EM paradigms are considered for for External Memory solving batched and online problems efficiently in external memory. Jeffrey Scott Vitter Algorithms and Data Structures for External Memory describes several useful paradigms for the design and implementation of efficient EM algorithms and data structures. The problem domains considered include sorting, permuting, FFT, scientific computing, computational geometry, graphs, databases, geographic information systems, and text and string processing. Algorithms and Data Structures for External Memory is an invaluable reference for anybody interested in, or conducting research in the design, analysis, and implementation of algorithms and data structures. This book is originally published as Foundations and Trends® in Theoretical Computer Science Volume 2 Issue 4, ISSN: 1551-305X. now now the essence of knowledge Algorithms and Data Structures for External Memory Algorithms and Data Structures for External Memory Jeffrey Scott Vitter Department of Computer Science Purdue University West Lafayette Indiana, 47907–2107 USA [email protected] Boston – Delft Foundations and TrendsR in Theoretical Computer Science Published, sold and distributed by: now Publishers Inc.
    [Show full text]
  • CS429: Computer Organization and Architecture Storage Technologies
    CS429: Computer Organization and Architecture Storage Technologies Dr. Bill Young Department of Computer Sciences University of Texas at Austin Last updated: November 28, 2017 at 14:31 CS429 Slideset 18: 1 Storage Technologies Random-Access Memory (RAM) Key Features RAM is packaged as a chip The basic storage unit is a cell (one bit per cell) Multiple RAM chips form a memory. Static RAM (SRAM) Each cell stores a bit with a 6-transistor circuit. Retains value indefinitely, as long as kept powered (volatile). Relatively insensitive to disturbances such as electrical noise. Faster but more expensive than DRAM. Dynamic RAM (DRAM) Each cell stores a bit with a capacitor and transistor. Value must be refreshed every 10–100 ms (volatile). Sensitive to disturbances, slower and cheaper than SRAM CS429 Slideset 18: 2 Storage Technologies Random-Access Memory (RAM) (2) Flash RAM (what’s in your ipod and cell phone) Each cell stores 1 or more bits on a “floating-gate” capacitor Keeps state even when power is off (non-volatile). As cheap as DRAM, but much slower RAM Summary Type Trans. Access Persist? Sensitive Cost Applications per bit time SRAM 6 1X No No 100X cache memory DRAM 1 10X No Yes 1X main memory Flash 1/2–1 10000X Yes No 1X disk substitute CS429 Slideset 18: 3 Storage Technologies Conventional DRAM Organization DRAM is typically organized as a d × w array of d supercells of size w bits. 16 x 8 DRAM chip cols 0 1 2 3 0 2 bits 1 / addr rows memory (to CPU) 2 controller 3 8 bits supercell (2, 1) / data internal row buffer CS429 Slideset 18: 4 Storage Technologies Reading DRAM Supercell (2, 1) Step 1(a): Row access strobe (RAS) selects row 2.
    [Show full text]
  • The Logical Disk: a New Approach to Improving File Systems
    The Logical Disk: A New Approach to Improving File Systems Wiebren de Jonge Dept. of Mathematics and Computer Science, Vrije Universiteit, Amsterdam M. Frans Kaashoek and Wilson C. Hsieh Laboratory for Computer Science, MIT, Cambridge, MA Abstract Separating these two concerns has three advantages. First, it leads to a file system structure that makes file sys- The Logical Disk (LD) defines a new interface to disk tems easier to develop, maintain, and modify. Second, it storage that separates file management and disk manage- makes file systems more flexible. Different implementations ment by using logical block numbers and block lists. The of LD can be tailored for different access patterns and dif- LD interface is designed to support multiple file systems ferent disks can run under different implementations of LD. and to allow multiple implementations, both of which are Similarly, different file systems can all share a particular LD important given the increasing use of kernels that support implementation. Third, it allows for efficient solutions to the multiple operating system personalities. I/O bottleneck [Ousterhout and Douglis 1989; Ousterhout A log-structured implementation of LD (LLD) demon- 1990]. LD can transparently reorganize the layout of blocks strates that LD can be implemented efficiently. LLD adds on the disk to reduce access time, similar to other systems about 5% to 10% to the purchase cost of a disk for the main that use logical-block numbers [Vongsathorn and Carson memory it requires. Combining LLD with an existing file 1990; Solworth and Orji 1991; English and Stepanov 1992; system results in a log-structured file system that exhibits Akyürek and Salem 1993].
    [Show full text]