LOOK Algorithm
Look disk scheduling is another type of disk scheduling algorithm. Look scheduling is an enhanced version of SCAN disk scheduling. Look disk scheduling is the same as SCAN disk scheduling, but in this scheduling, instead of going till the last track, we go till the last request and then change the direction.
Advantages :
-
In Look disk scheduling, there is no starvation.
-
Look disk scheduling offers low variance in waiting time and response time.
-
Look disk scheduling offers better performance as compared to the SCAN disk scheduling.
-
In look disk scheduling, there is no requirement of disk head to move till the end to the disk when we do not have any request to be serviced.
Disadvantages :
-
In look disk scheduling, there is more overhead to find the end request.
-
Look disk scheduling is not used in case of more load.