×

Difference between SSTF and LOOK Disk Scheduling Algorithm

Shortest Seek Time First / SSTF

Shortest Seek Time First (SSTF) is an acronym for "shortest seek time first." The task request that is closest to the present position of the head or pointer is served by this algorithm. The direction of the head is crucial in estimating total head movement in this case. If there is a tie between requests, the request that confronts it in its current direction will be served by the head. The SSTF algorithm, unlike C-LOOK, is particularly efficient in terms of overall search time. Requests with least time demand are first processed in SSTF. As a result, every request's seek time is computed ahead of time in the queue, and requests are scheduled according to their predicted seek time. As a result, the request that is closest to the disc arm will be processed first. SSTF is a significant improvement over FCFS, since it reduces average response time and enhances system throughput.

It's a suitable batch processing system solution. It does not always assure justice because hunger is a possibility with this schedule. This policy is often unsuitable for interactive systems, as it leads to greater response time fluctuations.

Benefits:

  • When compared to FCFS, it decreases overall seek time.
  • It has a higher throughput and has a shorter average response time and waiting time.

Drawback:

  • There is a cost associated with locating the most recent request.
  • And queries that aren't close to the head may run out of CPU resources.
  • It offers a wide range of response and waiting times.
  • The algorithm is slowed by often changing the orientation of the head.

LOOK Disc Scheduling Algorithm

The LOOK algorithm is a better version of the SCAN algorithm. The head begins serving the first request on one side of the disc and advances to the opposite end of the disc, fulfilling all requests in between. Unlike SCAN, the head goes to the last request instead of the final track, and then the direction is adjusted. It does not, unlike SSTF, serve the task request that is closest to the current head or pointer location. It's identical to the SCAN disc scheduling method, except that instead of travelling to the end of the disc, the disc arm only goes to the last request to be handled in front of the head and then reverses course from there. As a result, the additional time caused by unneeded traversal to the disk's end is avoided.

Benefits:

  • When there are no requests to be served, it does not force the head to move until the end of the disc.
  • When compared to the SCAN Algorithm, it performs better.
  • It does not result in hunger.
  • It has a low reaction time and waiting time variance.

Drawback:

  • There is a cost associated with locating the final requests.
  • It also results in a significant delay for the cylinders that the head has just visited.

Main Difference

S no.SSTFLOOK
1.SCAN Even if there are no requests at the ends, the algorithm scans all of the cylinders on the drive from one end to the other.  Starting with the initial request at one end and ending with the final request at the other, the LOOK Algorithm examines all of the cylinders on the disc.  
2.The performance of the SSTF disc scheduling method is slow.The LOOK disc scheduling technique outperforms SSTF in terms of performance.
3.When compared to the LOOK disc scheduling technique, it decreases overall seek time.The overall seek time has been raised by the LOOK disc scheduling technique.
4.The average response time and waiting time for this method have both high variation.It has a low standard deviation in average waiting and response times.
5.The orientation of the head, as indicated in the picture above, is critical in breaking the tie between requests.When the LOOK disc scheduling algorithm fulfils the final request in one direction, the head's orientation is reversed.
6.There is a cost to identifying the nearest request in the SSTF disc scheduling method.There is a cost to locating end requests in this method.
7.The request that is distant from the head will be starved in the SSTF disc scheduling mechanism.The request that is far from the top of the queue will be starved. Any request is not starved by the LOOK disc scheduling mechanism.
8.Request handling is not as excellent in the SSTF disc scheduling method as it is in the LOOK algorithm.The LOOK disc scheduling technique is more efficient than SSTF at handling requests.

Related Topics

Components of Operating System

Components of Operating System: An operating system is a complex and vast system. We can only create the operating system by dividing it into small parts. Each part must be...

5 minutes read.

Types of Operating System

There are various types of operating system: Simple Batch Operating SystemMultiprogramming batch Operating SystemTime-sharing Operating SystemMultiprocessor Operating SystemDistributed Operating SystemNetwork Operating SystemReal-time Operating SystemMobile Operating System Simple Batch operating system In the simple batch operating system, there is no direct communication between...

6 minutes read.

File Access Methods in Operating System

File Access Methods in OS There are various types of file access methods in the operating system: Sequential Access MethodDirect Access MethodIndex Sequential Access Method Sequential Access Method: - Sequential Access Method is...

3 minutes read.

Process Synchronization | Operating System

Process Synchronization Process Synchronization means managing the process in such a manner so that no two processes have access to share similar data and resources. We can use Process Synchronization in a Multi-Process System...

4 minutes read.

N-Step-SCAN Disk Scheduling

Before you study about N-Step-SCAN Disk Scheduling, it requires prerequisite of what is Disk Scheduling Algorithms: Operating systems use disc scheduling to schedule I/O requests that arrive at the disc....

4 minutes read.

Functions of Operating System

The functions of Operating System are: Process Management Memory Management File Management Device Management Secondary storage Management Security Coordination between other software and users Networking Job Accounting Error detecting aids 1. Process Management Process Management support operating system to create and delete...

3 minutes read.

Advantages of UNIX Operating System

What is UNIX OS? UNIX is a family of multitasking, multiuser operating systems that are used on a wide variety of computer platforms. It was developed in the late 1960s and...

4 minutes read.

Need of Operating System

There are various needs of operating system: Managing Input-Output UnitThe Operating system as a platform for application programsMultitaskingConsistent user interface Managing Input-Output Unit: - With the help of the operating system, the...

2 minutes read.

Difference between Protection and Security in Operating System

Some operating system mechanisms facilitate us to stop tampering with logical and physical resources. Some of these methods are security and protection. Protection and security are distinct concepts, despite the...

3 minutes read.

5 Goals of Operating System

An Operating System (OS) is system software that acts as an interface or bridge between the hardware of a computer and the end user. Operating System reduces the communication barrier between the...

4 minutes read.

Fixed Partitioning in Operating System

Fixed Partitioning in OS Fixed Partitioning is also known as Contiguous memory allocation. Fixed Partitioning is the easiest method, which is used to load more than one process into the main memory. In Fixed...

5 minutes read.

Memory Management in Operating System

The term "Main Memory" refers to the computer's internal physical memory. It is distinguished from external mass storage devices like disk drives by using the term "main." RAM is another...

4 minutes read.

Android Operating System

What is Android Operating System? Android is a Linux-based and open-source operating system mainly established for mobile devices like tablet computers and Smartphones. The Android operating system was established by the...

5 minutes read.

Evolution of Operating System

Evolution of Operating System The evolution of various types of operating systems can be briefly described as follows: Serial Processing Since 1950, the operating system started to be in use. Before 1950, there...

5 minutes read.

Dining Philosophers Problem in Operating System

Edsger Wybe Dijkstra was a well-known Dutch scientist. He was the first person ever to present the Dining Philosophers Problem in the stream of Computer Science. The dining philosophers problem...

5 minutes read.

Process Scheduling in Operating System

Process Scheduling is an essential component of a Multiprogramming Operating System. So now let’s understand how it works by taking a real-life example. Suppose that you want to call someone...

6 minutes read.

Strategies for Handling Deadlock

Strategies for Handling Deadlock The Strategies for handling Deadlock are: Deadlock IgnoranceDeadlock PreventionDeadlock AvoidanceDeadlock Detection and Recovery Deadlock Ignorance Deadlock Ignorance is the most popular deadlock handling strategy. We can use this in the various operating systems for...

2 minutes read.

How to implement Monitors using Semaphores

Monitors Monitor is a type of synchronization device designed to solve difficulties caused by semaphores, such as timing errors. Monitors are the type of data types that are abstract by nature...

2 minutes read.

Single-User Operating System

An operating system designed and intended to be used on a computer or device with a single user at a time is known as a single-user operating system. Devices like...

8 minutes read.

Bit Vector in Operating System

What is Bit vector? Bit vector is one of the most important methods used in the free space management of operating system. Free space management which is used by the operating...

3 minutes read.