I/O scheduling

Input/output (I/O) scheduling is the method that computer operating systems use to decide which order block I/O operations will be submitted to storage volumes. I/O Scheduling is sometimes called 'disk scheduling'.

Purpose

I/O schedulers can have many purposes depending on the goal of the I/O scheduler. Some common ones are:

  • To minimize time wasted by hard disk seeks
  • To prioritize a certain processes' I/O requests
  • To give a share of the disk bandwidth to each running process
  • To guarantee that certain requests will be issued before a particular deadline
↑Jump back a section

Implementation

I/O Scheduling usually has to work with hard disks which share the property that there is long access time for requests which are far away from the current position of the disk head (this operation is called a seek). To minimize the effect this has on system performance, most I/O schedulers implement a variant of the elevator algorithm which re-orders the incoming randomly ordered requests into the order in which they will be found on the disk.

↑Jump back a section

Common disk I/O scheduling disciplines

↑Jump back a section

References

↑Jump back a section

Read in another language

This page is available in 6 languages

Last modified on 27 February 2013, at 21:26