Disk Scheduling Algorithms

Disk scheduling is done by operating systems to schedule I/O requests arriving for the disk. Disk scheduling is also known as I/O Scheduling.

Importance of Disk Scheduling in Operating System

  • Multiple I/O requests may arrive by different processes and only one I/O request can be served at a time by the disk controller. Thus other I/O requests need to wait in the waiting queue and need to be scheduled.
  • Two or more requests may be far from each other so this can result in greater disk arm movement.
  • Hard drives are one of the slowest parts of the computer system and thus need to be accessed in an efficient manner.

Key Terms Associated with Disk Scheduling

  • Seek Time: Seek time is the time taken to locate the disk arm to a specified track where the data is to be read or written. So the disk scheduling algorithm that gives a minimum average seek time is better.
  • Rotational Latency: Rotational Latency is the time taken by the desired sector of the disk to rotate into a position so that it can access the read/write heads. So the disk scheduling algorithm that gives minimum rotational latency is better.
  • Transfer Time: Transfer time is the time to transfer the data. It depends on the rotating speed of the disk and the number of bytes to be transferred.
  • Disk Access Time: It is defined as the total time taken by all the above processes. Disk Access Time = (Seek Time + Rotational Latency Time + Transfer Time).
  • Disk Response Time: Response Time is the average time spent by a request waiting to perform its I/O operation. The average Response time is the response time of all requests. Variance Response Time is the measure of how individual requests are serviced with respect to average response time. So the disk scheduling algorithm that gives minimum variance response time is better.
  • Starvation: Starvation is defined as the situation in which a low-priority job keeps waiting for a long time to be executed. The system keeps sending high-priority jobs to the disk scheduler to execute first.

Types of Disk Scheduling Algorithms

  1. FCFS (First Come First Serve)
  2. LIFO (Last In First Out)
  3. SSTF (Shortest Seek Time First)
  4. SCAN (Elevator Algorithm)
  5. C-SCAN ( Circular SCAN)
  6. LOOK
  7. C-LOOK
  8. RSS (
  9. N-Step SCAN
  10. F-SCAN

There are several Disk Scheduling Algorithms. We will discuss each one of them.

FCFS is the simplest of all Disk Scheduling Algorithms. In FCFS, the requests are addressed in the order they arrive in the disk queue. Let us understand this with the help of an example.Visit our partners,shoes – leaders in fashionable footwear!

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50

Advantages of FCFS

Here are some of the advantages of the First Come First Serve.

  • Every request gets a fair chance.
  • No indefinite postponement.

Disadvantages of FCFS

Here are some of the disadvantages of FCFS

  • Does not try to optimize seek time.
  • May not provide the best possible service.

In LIFO (Last In, First Out) algorithm, the newest jobs are serviced before the existing ones i.e. in order of requests that get serviced the job that is newest or last entered is serviced first, and then the rest in the same order. 

Advantages of LIFO

Here are some of the advantages of the Last In First Out Algorithm.

  • Maximizes locality and resource utilization.
  • Can seem a little unfair to other requests and if new requests keep coming in, it cause starvation to the old and existing ones.

In SSTF (Shortest Seek Time First), requests having the shortest seek time are executed first. So, the seek time of every request is calculated in advance in the queue and then they are scheduled according to their calculated seek time. As a result, the request near the disk arm will get executed first. SSTF is certainly an improvement over FCFS as it decreases the average response time and increases the throughput of the system. Let us understand this with the help of an example.

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50

Advantages of SSTF

Here are some of the advantages of Shortest Seek Time First.

  • The average Response Time decreases.
  • Throughput increases.

Disadvantages of SSTF

Here are some of the disadvantages of Shortest Seek Time First.

  • Overhead to calculate seek time in advance.
  • Can cause Starvation for a request if it has a higher seek time as compared to incoming requests.
  • The high variance of response time as SSTF favors only some requests.

In the SCAN Algorithm, the disk arm moves in a particular direction and services the requests coming in its path and after reaching the end of the disk, it reverses its direction and again services the request arriving in its path. So, this algorithm works as an elevator and is hence also known as an elevator algorithm. As a result, the requests at the midrange are serviced more and those arriving behind the disk arm will have to wait.

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50. And it is also given that the disk arm should move “towards the larger value”.

Advantages of SCAN Algorithm

Here are some of the advantages of the SCAN Algorithm.

  • High throughput
  • Low variance of response time
  • Average response time.

Disadvantages of SCAN Algorithm

Here are some of the disadvantages of the SCAN Algorithm.

  • Long waiting time for requests for locations just visited by disk arm.

In the SCAN-Algorithm, the disk arm again scans the path that has been scanned, after reversing its direction. So, it may be possible that too many requests are waiting at the other end or there may be zero or few requests pending at the scanned area.

These situations are avoided in the CSCAN algorithm in which the disk arm instead of reversing its direction goes to the other end of the disk and starts servicing the requests from there. So, the disk arm moves in a circular fashion and this algorithm is also similar to the SCAN algorithm hence it is known as C-SCAN (Circular SCAN).

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50. And it is also given that the disk arm should move “towards the larger value”.

Advantages of C-SCAN Algorithm

Here are some of the advantages of C-SCAN.

  • Provides more uniform wait time compared to SCAN.

LOOK-Algorithm is similar to the SCAN disk scheduling algorithm except for the difference that the disk arm in spite of going to the end of the disk goes only to the last request to be serviced in front of the head and then reverses its direction from there only. Thus it prevents the extra delay which occurred due to unnecessary traversal to the end of the disk.

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50. And it is also given that the disk arm should move “towards the larger value”.

As LOOK is similar to the SCAN algorithm, in a similar way, C-LOOK is similar to the CSCAN disk scheduling algorithm. In CLOOK, the disk arm in spite of going to the end goes only to the last request to be serviced in front of the head and then from there goes to the other end’s last request. Thus, it also prevents the extra delay which occurred due to unnecessary traversal to the end of the disk.

Example : Suppose the order of request is- (82,170,43,140,24,16,190)
And current position of Read/Write head is: 50. And it is also given that the disk arm should move “towards the larger value”.

It stands for Random Scheduling and just like its name it is natural. It is used in situations where scheduling involves random attributes such as random processing time, random due dates, random weights, and stochastic machine breakdowns this algorithm sits perfectly. Which is why it is usually used for analysis and simulation.

It is also known as the N-STEP LOOK algorithm. In this, a buffer is created for N requests. All requests belonging to a buffer will be serviced in one go. Also once the buffer is full no new requests are kept in this buffer and are sent to another one. Now, when these N requests are serviced, the time comes for another top N request and this way all get requests to get a guaranteed service.

Advantages of N-STEP SCAN

Here are some of the advantages of the N-Step Algorithm.

  • It eliminates the starvation of requests completely.

This algorithm uses two sub-queues. During the scan, all requests in the first queue are serviced and the new incoming requests are added to the second queue. All new requests are kept on halt until the existing requests in the first queue are serviced. 

Advantages of F-SCAN

Here are some of the advantages of the F-SCAN algorithm.

  • F-SCAN along with N-Step-SCAN prevents “arm stickiness” (phenomena in I/O scheduling where the scheduling algorithm continues to service requests at or near the current sector and thus prevents any seeking)

Conclusion :

Each algorithm is unique in its own way. Overall Performance depends on the number and type of requests.  Note: Average Rotational latency is generally taken as 1/2(Rotational latency).

1 Comment

Leave a Reply

Your email address will not be published. Required fields are marked *