Presentation is loading. Please wait.

Presentation is loading. Please wait.

CS 162 Section Lecture 8. What happens when you issue a read() or write() request?

Similar presentations


Presentation on theme: "CS 162 Section Lecture 8. What happens when you issue a read() or write() request?"— Presentation transcript:

1 CS 162 Section Lecture 8

2 What happens when you issue a read() or write() request?

3 Life Cycle of An I/O Request Device Driver Top Half Device Driver Bottom Half Device Hardware Kernel I/O Subsystem User Program

4 When should you return from the read()/write() call?

5 Interface Timing Blocking Interface: “Wait” –When request data (e.g., read() system call), put process to sleep until data is ready –When write data (e.g., write() system call), put process to sleep until device is ready for data Non-blocking Interface: “Don’t Wait” –Returns quickly from read or write request with count of bytes successfully transferred to kernel –Read may return nothing, write may write nothing Asynchronous Interface: “Tell Me Later” –When requesting data, take pointer to user’s buffer, return immediately; later kernel fills buffer and notifies user –When sending data, take pointer to user’s buffer, return immediately; later kernel takes data and notifies user

6 Magnetic Disk Characteristic Cylinder: all the tracks under the head at a given point on all surfaces Read/write data is a three-stage process: –Seek time: position the head/arm over the proper track (into proper cylinder) –Rotational latency: wait for the desired sector to rotate under the read/write head –Transfer time: transfer a block of bits (sector) under the read-write head Disk Latency = Queuing Time + Controller time + Seek Time + Rotation Time + Xfer Time Highest Bandwidth: –Transfer large group of blocks sequentially from one track Sector Track Cylinder Head Platter Software Queue (Device Driver) Hardware Controller Media Time (Seek+Rot+Xfer) Request Result

7 We have a disk with the following parameters: 1TB in size 7200 RPM, Data transfer rate of 40 Mbytes/s (40 × 10 6 bytes/sec) Average seek time of 6ms ATA Controller with 2ms controller initiation time A block size of 4Kbytes (4096 bytes) What is the average time to read a random block from the disk?

8 Disk Performance Examples Assumptions: –Ignoring queuing and controller times for now –Avg seek time of 5ms, –7200RPM  Time for one rotation: 8ms –Transfer rate of 4MByte/s, sector size of 1 KByte Read sector from random place on disk: –Seek (5ms) + Rot. Delay (4ms) + Transfer (0.25ms) –Approx 10ms to fetch/put data: 100 KByte/sec Read sector from random place in same cylinder: –Rot. Delay (4ms) + Transfer (0.25ms) –Approx 5ms to fetch/put data: 200 KByte/sec Read next sector on same track: –Transfer (0.25ms): 4 MByte/sec Key to using disk effectively (especially for file systems) is to minimize seek and rotational delays

9 SSD –No penalty for random access –Rule of thumb: writes 10x more expensive than reads, and erases 10x more expensive than writes (read 25μs) –Limited drive lifespan –Controller maintains pool of empty pages by coalescing used sectors (read, erase, write), also reserve some % of capacity –Controller uses ECC, performs wear leveling –OS may provide TRIM information about “deleted” sectors (normally only file system knows about unallocated blocks, not the disk drive)

10 How will you allocate space on disk?

11

12 What is the purpose of a File System?

13 File System Transforms blocks into Files and Directories Optimize for access and usage patterns Maximize sequential access, allow efficient random access

14 Linked Allocation: File-Allocation Table (FAT)

15 If entry size is 16 bits What is the max size of the FAT?

16 Given a 512 byte block, What is the max size of the FS?

17 What is the space overhead of FAT?

18 Multilevel Indexed Files (UNIX 4.1)

19 Where are the i-nodes stored?

20

21 What are problems with multi-level indexed files?

22 Directory Structure

23 What can the FS do to improve performance?

24 Bitmap of free blocks

25 Variable sized splits

26 Cylinder Groups

27 File System Caching Optimizations for sequential access: –Try to store consecutive blocks of a file near each other –Store inode near data blocks –Try to locate directory near the inodes it points to Buffer cache used to increase file system performance –Read Ahead Prefetching and Delayed Writes Key Idea: Exploit locality by caching data in memory –Name translations: Mapping from paths  inodes –Disk blocks: Mapping from block address  disk content Buffer Cache: Memory used to cache kernel resources, including disk blocks and name translations –Can contain “dirty” blocks (blocks yet on disk) –Size: adjust boundary dynamically so that the disk access rates for paging and file access are balanced

28 File System Caching (cont’d) Delayed Writes: Writes to files not immediately sent out to disk –Instead, write() copies data from user space buffer to kernel buffer (in cache) »Enabled by presence of buffer cache: can leave written file blocks in cache for a while »If some other application tries to read data before written to disk, file system will read from cache –Flushed to disk periodically (e.g. in UNIX, every 30 sec) –Advantages: »Disk scheduler can efficiently order lots of requests »Disk allocation algorithm can be run with correct size value for a file »Some files need never get written to disk! (e..g temporary scratch files written /tmp often don’t exist for 30 sec) –Disadvantages »What if system crashes before file has been written out? »Worse yet, what if system crashes before a directory file has been written out? (lose pointer to inode!)

29 Log Structured and Journaled File Systems Better reliability through use of log –All changes are treated as transactions –A transaction is committed once it is written to the log »Data forced to disk for reliability »Process can be accelerated with NVRAM –Although File system may not be updated immediately, data preserved in the log Difference between “Log Structured” and “Journaled” –In a Log Structured file system, data stays in log form –In a Journaled file system, Log used for recovery For Journaled system: –Log used to asynchronously update filesystem »Log entries removed after used –After crash: »Remaining transactions in the log performed (“Redo”) »Modifications done in way that can survive crashes Examples of Journaled File Systems: –Ext3 (Linux), XFS (Unix), HDFS (Mac), NTFS (Windows), etc.

30 Key Value Store Very large scale storage systems Two operations –put(key, value) –value = get(key) Challenges –Fault Tolerance  replication –Scalability  serve get()’s in parallel; replicate/cache hot tuples –Consistency  quorum consensus to improve put() performance

31 Key Value Store Also called a Distributed Hash Table (DHT) Main idea: partition set of key-values across many machines key, value …

32 Chord Lookup Each node maintains pointer to its successor Route packet (Key, Value) to the node responsible for ID using successor pointers E.g., node=4 lookups for node responsible for Key=37 4 20 32 35 8 15 44 58 lookup(37) node=44 is responsible for Key=37

33 Chord Highly scalable distributed lookup protocol Each node needs to know about O(log(M)), where m is the total number of nodes Guarantees that a tuple is found in O(log(M)) steps Highly resilient: works with high probability even if half of nodes fail


Download ppt "CS 162 Section Lecture 8. What happens when you issue a read() or write() request?"

Similar presentations


Ads by Google